/* ========== Base ========== */

:root {
  --section-padding-y: 40px;
  --section-padding-x: 16px;
  --section-padding-y-pc: 64px;
  --color--primary: #dd0e7b;
  --font-wdxl: "WDXL Lubrifont JP N", system-ui, -apple-system,
    "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  --font-en-mont: "Montserrat", system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-weight: inherit;
}

body {
  margin: 0;
  font-family: "M PLUS 1", -apple-system, BlinkMacSystemFont, "Helvetica Neue",
    Arial, sans-serif;
  line-height: 1.6;
  color: #000;
  background: linear-gradient(90deg, #d82a4f 0%, #835d9e 50%, #61b9be 100%);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}
/* ========== Layout ========== */
.header,
.hero,
.service,
.features,
.results,
.flow,
.faq,
.cta {
  padding: var(--section-padding-y-pc) var(--section-padding-x);
}

/* ========== Footer ========== */
.footer {
  padding: 40px var(--section-padding-x);
  padding-bottom: 100px; /* 固定CTAの高さ分 */
  background: #000;
}

@media (max-width: 380px) {
  .footer {
    padding-bottom: 80px; /* 固定CTAが縦並びになるため */
  }
}

@media (min-width: 769px) {
  .footer {
    padding-bottom: 16px; /* PC版では固定CTAが非表示 */
  }
}

@media (max-width: 380px) {
  .footer {
    padding-bottom: 80px; /* 固定CTAが縦並びになるため */
  }
}

.footer__main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.footer__logo {
  width: 141px;
  height: auto;
}

.footer__sns {
  display: flex;
  gap: 12px;
}

.footer__sns-link {
  display: block;
}

.footer__sns-icon {
  width: 24px;
  height: 24px;
}

.footer__copyright {
  font-size: 10px;
  text-align: left;
  color: #fff;
}

/* ========== Page ========== */
.page-bg {
  background: linear-gradient(180deg, #c72c6c, #6aa9b8);
  min-height: 100vh;
}

.page-inner {
  max-width: 375px;
  margin: 0 auto;
  background: #000;
}

/* ========== Header（共通ベース） ========== */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--section-padding-x);
}

.header__menu {
  background: none;
  border: none;
  width: 32px;
  height: 24px;
  position: relative;
  cursor: pointer;
  z-index: 1001;
}

.header__menu-bar {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.header__menu-bar:nth-child(1) {
  top: 0;
}

.header__menu-bar:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.header__menu-bar:nth-child(3) {
  bottom: 0;
}

/* メニューが開いたらハンバーガーをXに変形 */
.header__menu.is-open .header__menu-bar:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.header__menu.is-open .header__menu-bar:nth-child(2) {
  opacity: 0;
}

.header__menu.is-open .header__menu-bar:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

/* ナビゲーションオーバーレイ */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center; /* 中央揃え */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

/* オーバーレイ内のコンテンツを375px幅に制限 */
.nav-overlay__header {
  width: 100%;
  max-width: 375px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
}

.nav-overlay__logo {
  flex: 1;
}

.nav-overlay__logo img {
  height: 32px;
}

.nav-overlay__close {
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  position: relative;
  cursor: pointer;
}

.nav-overlay__close-bar {
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}

.nav-overlay__close-bar:nth-child(1) {
  transform: translateY(-50%) rotate(45deg);
}

.nav-overlay__close-bar:nth-child(2) {
  transform: translateY(-50%) rotate(-45deg);
}

.nav-overlay__list {
  list-style: none;
  padding: 0 16px;
  text-align: left;
}
@media (min-width: 1100px) {
  .nav-overlay__list li {
    margin: 10px;
  }
}

/* オーバーレイメニュー内のリストを375px幅に */
.nav-overlay .nav-overlay__list {
  width: 100%;
  max-width: 375px;
  margin: 40px auto 0 auto;
  padding: 0 16px;
}

.nav-overlay__list li {
  margin: 0;
}

.nav-overlay__link {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 1.6px;
  font-weight: 600;
  white-space: nowrap;

  width: 100%;
  padding: 14px 0;
  margin-left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: opacity 0.3s ease;
  /* border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
}
@media (min-width: 1100px) {
  /* PC版メニューフォント小さく */
  .nav-overlay__link {
    font-size: 18px;
    padding: 6px 0;
  }

  /* PC版：矢印アイコンとテキストの間隔を広げる */
  .nav-overlay__link::after {
    margin-left: 16px;
  }
}

.nav-overlay__link::after {
  content: "";
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background: url("../imgs/menu_arrow.svg") no-repeat center / contain;
}

.nav-overlay__link:hover {
  opacity: 0.7;
}

/* メニュー開いた時のスクロール無効 */
body.menu-open {
  overflow: hidden;
}

/* ===== SP用ヘッダー（375pxの中・上部に出す） ===== */

.header--sp {
  width: 100%;
  height: 52px;
  padding: 0 var(--section-padding-x);
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.3s ease;
}

.header--sp.is-scrolled {
  background: rgba(0, 0, 0, 0.4);
}

/* SP固定ヘッダー：ロゴ小さくしてスクロール時の重なりの為影付ける */
@media (max-width: 1099px) {
  .header__logo img {
    height: 32px;
    filter: drop-shadow(0 4px 16px rgba(20, 74, 94, 0.5));
  }
}

/* ===== PC用ヘッダー（右上に出す） ===== */

.header--pc {
  display: none;
}

/* ===== PC時の切り替え ===== */

@media (min-width: 1100px) {
  /* PC版ロゴ大きく */
  .header__logo img {
    width: 200px;
  }

  /* SP用は消す */
  .header--sp {
    display: none;
  }

  /* ハンバーガーメニューを非表示 */
  .header__menu {
    display: none;
  }

  /* ナビゲーションオーバーレイも非表示 */
  .nav-overlay {
    display: none;
  }

  /* PC版：mainとヘッダーを横並びにする */
  .page-inner {
    display: flex;
    justify-content: center; /* space-evenly */
    flex-direction: row-reverse;
    align-items: center;
    gap: 8vw;
    max-width: none;
    padding: 40px;
    background: transparent;
    min-height: 100vh; /* ビューポートの高さを確保して中央揃えを有効に */
  }

  /* PC用ヘッダーを表示 */
  .header--pc {
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 20vh;
    align-self: flex-start;
    z-index: 10;
    width: 320px;
    flex-shrink: 0;
    order: 1; /* 左側に配置 */
  }

  /* PC用ヘッダーのロゴとメニュー群の間 */
  .header--pc .nav-overlay__list {
    margin-top: 26px;
  }

  /* PC用ヘッダーの相談ボタン */

  .header-pc__contact-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 26px;

    padding: 12px;
    border-radius: 999px;
    font-weight: bold;
    text-align: center;
    font-size: 1.3rem;
    letter-spacing: 1.6px;
    font-weight: 600;

    background: var(--color--primary);
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  }

  .header-pc__contact-btn img {
    width: 1.6rem;
    height: auto;
  }

  .header-pc__contact-btn:hover {
    opacity: 0.7;
  }

  /* mainを角丸で表示 */
  main {
    position: relative;
    max-width: 375px;
    width: 375px;
    flex-shrink: 0;
    background: #000;
    overflow: visible;
    order: 2; /* 右側に配置 */
    border-radius: 16px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.8);
  }

  /* heroに上部角丸を適用 */
  main > .hero {
    border-radius: 16px 16px 0 0;
  }

  /* footerに下部角丸を適用 */
  main > .footer {
    border-radius: 0 0 16px 16px;
  }

  /* PLANセクションのはみ出し用 */
  main > .plan {
    position: relative;
    z-index: 1;
  }
}

/* ========== Hero ========== */
/* ===== Hero Base ===== */
.hero {
  position: relative;
  background: #000;
  color: #fff;
  padding: 0;
  margin-bottom: 15px;
  overflow: hidden;
}

/* ===== Hero カルーセル（横スクロール） ===== */
.hero__carousel {
  position: relative;
  width: 100%;
  padding: 50px;
  overflow: hidden;
}

.hero__carousel-slides {
  display: flex;
  transition: transform 0.4s ease;
  gap: 50px;
}

.hero__carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.hero__carousel-slide img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 16px;
  object-fit: cover;
  object-position: center center;
}

/* ===== Hero オーバーレイ（カルーセル内） ===== */
.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 24px;
  pointer-events: none;
  z-index: 5;
  @media (min-width: 1100px) {
    padding: 24px 32px;
  }
}

.hero__overlay > * {
  pointer-events: auto;
}

/* ===== Hero コンテンツ（カルーセル外） ===== */
.hero__content {
  padding: 16px var(--section-padding-x) 0;
}

/* ===== Hero 内部 ===== */

.hero__title {
  width: 100%;
  margin: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 423px;
}

.hero__shoulder {
  max-width: 200px;
  height: auto;
}

.hero__copy {
  max-width: 100%;
  height: auto;
}

.hero__stats {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.hero__stat {
  flex: 1;
}

.hero__visual {
  max-width: 360px;
  margin: 0 auto 32px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.hero__title img {
  max-width: 100%;
  height: auto;
  display: block;
}

.hero__title {
  width: 100%;
}

.hero__button {
  display: inline-block;
  margin-top: 24px;
  padding: 12px 24px;
  background: #000;
  color: #fff;
}

.hero__stat {
  flex: 0 0 auto;
}

.features__list,
.results__list,
.flow__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.features__card,
.results__card,
.flow__step {
  flex: 1;
}

/* ========== Typography ========== */

h1,
h2,
h3 {
  line-height: 1.3;
  /* margin-bottom: 16px; */
}

p {
  margin-bottom: 16px;
}

/* ===== Fixed CTA ===== */
.fixed-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--color--primary);
  padding: 12px var(--section-padding-x);
  display: flex;
  gap: 12px;
  z-index: 1000;
  box-shadow: 0 -20px 10px 0 rgba(0, 0, 0, 0.25);
}

.fixed-cta__button {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 12px;
  border-radius: 999px;
  font-weight: bold;
  text-align: center;
  font-size: 1.3rem;
  letter-spacing: 1.6px;
  font-weight: 600;
}

.fixed-cta__button img {
  width: 1.6rem;
  height: auto;
}

/* 左：よくある質問 */
.fixed-cta__button--faq {
  border: solid 2px #fff;
  color: #fff;
}
/* 右：相談する（白ボタン＋ピンク文字） */
.fixed-cta__button--contact {
  background: #fff;
  color: #000;
}

.fixed-cta__button--faq .fixed-cta__icon {
  background: url("../imgs/icon-faq.svg") no-repeat center / contain;
}

.fixed-cta__button--contact .fixed-cta__icon {
  background: url("../imgs/icon-consult.svg") no-repeat center / contain;
}

.fixed-cta__button {
  transition: opacity 0.3s ease;
}

.fixed-cta__button:hover {
  opacity: 0.7;
}

@media (max-width: 430px) {
  .fixed-cta__button,
  .company__heading-btn {
    font-size: 16px;
  }
}

@media (max-width: 380px) {
  .company__heading-btn br {
    display: inline;
  }
}

@media (min-width: 769px) {
  .fixed-cta {
    display: none;
  }
}

/* ===== Fixed CTA overlap safe area ===== */
.service,
.features,
.results,
.flow,
.faq,
.cta {
  padding-bottom: 40px;
}

/* ========== セクション共通設定 ========== */

/* セクション共通英字タイトル */

.section__label {
  color: var(--color--primary);
  text-align: center;
  /* font-family: "wdxl-lubrifont-jp-n", sans-serif; */
  font-family: var(--font-wdxl), sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 14px;
  margin-bottom: 8px;
}
/* セクション共通タイトル */
.section__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 20px;
  letter-spacing: 1.6px;
  font-weight: 500;
  margin-bottom: 16px;
}

.section__lead {
  text-align: center;
  color: #fff;
  letter-spacing: 1.12px;
  font-size: 14px;
  font-family: "M PLUS 1";
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 22.4px */
  letter-spacing: 1.12px;
  margin-bottom: 20px;
}

.section__title__img img {
  margin-bottom: 30px;
}

/* 推しTokが選ばれる、 */
.section__title span {
  display: block;
  text-align: center;
  margin: 5px;
}

/* ========== WORRY ========== */

.worry-wrap {
  padding: var(--section-padding-x) 0;
  padding-bottom: 0;
}

/* 内側の角丸カード */
.worry {
  /* background: radial-gradient(circle at top, #444, #111); */
  background: linear-gradient(338deg, #1f1c1d -0.38%, #3b3335 98.83%);
  border-radius: 24px 24px 0 0;
  padding: var(--section-padding-y) var(--section-padding-x);
  color: #fff;
  margin: 0 auto;
}

.worry__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.worry__item {
  position: relative;
  padding: 16px 0 16px 32px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
  font-size: 0.95rem;
  line-height: 1.6;
}

.worry__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 26px;
  height: 21px;
  background: url("../imgs/worry__checkbox.svg") no-repeat center / contain;
}

/* ========== REASON ========== */

.reason {
  padding: 40px 0;
  background: url("../imgs/reason_bg@2x.png") no-repeat;
  background-size: contain;
  background-position: top;
  /* background: url("../imgs/reason_bg@2x.png") no-repeat;
  background: url("../imgs/reason_bg@2x.png") top/cover no-repeat; */
  position: relative;
  min-height: 300px;
  color: #fff;
}

.reason > * {
  position: relative;
  z-index: 1;
}

.reason h3 {
  margin: 0 0 13px 0;
}

.reason__box {
  border: 2px solid var(--color--primary);
  border-radius: 24px;
  padding: 24px var(--section-padding-x);
  margin: 0 var(--section-padding-x) 15px;
}

.reason__item + .reason__item {
  border-top: 1px solid #aaa;
  padding-top: 15px;
}

.reason__number {
  color: var(--color--primary);
  font-weight: bold;
  font-size: 1.2rem;
  font-family: var(--font-en-mont), sans-serif;

  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 1.2px;
}

.reason__heading {
  font-size: 22px;
  line-height: 1.5;
  font-weight: 600;
  line-height: 125%; /* 27.5px */
  letter-spacing: 1.76px;
  margin-bottom: 8px;
}

.reason__text {
  font-size: 0.85rem;
  line-height: 1.6;
  opacity: 0.85;
}

/* ========== DIFFERENCE ========== */
.difference {
  padding: 30px 16px;
  background: url("../imgs/bg_difference.svg") repeat;
  color: #000;
}

/* タイトル */
.difference__title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 32px;
}

.difference__label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--color--primary);
  margin-bottom: 8px;
}

/* テーブル部分 */
.difference__table {
  display: grid;
  grid-template-columns: 72px 1fr 1fr;
  align-items: end;
}

/* 左：項目ラベル */
.difference__labels {
  list-style: none;
  padding: 0;
  margin: 0;
}
.difference__label-item {
  background: #000;
  color: #fff;
  padding: 12px 8px;
  font-size: 12px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.difference__label-item:first-child {
  border-radius: 12px 0 0;
}

.difference__label-item:last-child {
  border-radius: 0 0 0 12px;
}

/* 右2列：比較内容 */
.difference__column-middle,
.difference__column-right {
  list-style: none;
  padding: 0;
  margin: 0;
  background: #fff;
}

.difference__column-middle {
  border-radius: 12px 12px 0 0;
}

.difference__column-right {
  border-radius: 0 12px 12px 0;
}

.difference__label-item {
  height: 4.6rem;
  white-space: nowrap;
}

.difference__cell:not(:first-child) {
  height: 4.6rem;
  white-space: nowrap;
}

.difference__cell {
  padding: 16px 12px;
  font-size: 14px;
  border-bottom: 1px solid #e0e0e0;
  text-align: center;
}

.difference__cell:last-child {
  border-bottom: none;
}

/* 推しTok 強調 */
.difference__column--highlight {
  border: 2px solid var(--color--primary);
  color: var(--color--primary);
  font-weight: 600;
}

/* ========== POINTS ========== */

.points {
  padding: 30px 0;
  background: #fff;
  color: #000;
}
.points__title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 40px;
}

.points__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-top: 15px;
}

.points__content {
  margin-top: 15px;
}

.points__text {
  padding: 0 16px;
}

.points__item .left {
  padding-right: 16px;
}

.points__item .right {
  padding-left: 16px;
}

/* ========== RESULTS ========== */

.results {
  padding: 30px 16px;
  background: #000;
  color: #fff;
}
.results__data h3,
.results__voices h3 {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* お客様の声（吹き出し風） */

/* .results__voice {
  background: #fff;
  color: #000;
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 20px;
} */
.results__voice {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 15px;
  margin-bottom: 34px;
  color: #000;
}

.results__voice::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 46px;
  width: 30px;
  height: 40px;
  background: #fff;
  clip-path: polygon(0 0, 100% 0, 30% 100%);
  transform: rotate(-36deg);
}

.results__voice:nth-child(even)::after {
  left: auto;
  right: 32px;
  clip-path: polygon(0 0, 100% 0, 70% 100%);
  transform: rotate(10deg);
}

.results__quote {
  display: inline-block;
  width: 16px;
  height: auto;
  vertical-align: baseline; /* or text-top */
}

.results__quote {
  vertical-align: text-top;
}

.results__quote {
  vertical-align: text-top;
  width: 10px;
}

/* お客様の声：店舗名（ピンク・強調） */
.results__voice-name {
  color: var(--color--primary);
  font-weight: 700;
  font-size: 14px;
  margin:0 0 8px;
}

/* お客様の声：本文 */
.results__voice-text {
  display: flex;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.7;
  text-align: left;
}
.results__voice-text strong {
  font-size: 16px;
  line-height: 1.7;
  font-weight: bold;
}
img.results__quote--end {
  margin-top: auto;
}

/* DATA全体の区切り */
/* .results__case {
  border-top: 1px solid #333;
  padding: 24px 0;
} */

.results__case {
  position: relative;
  padding: 20px 0;
  border-bottom: 1px solid #333;
}

.results__case-label {
  color: var(--color--primary);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 15px */
  letter-spacing: 1.2px;
  padding-bottom: 5px;
  /* font-family: "wdxl-lubrifont-jp-n", sans-serif; */
  font-family: var(--font-wdxl), sans-serif;
}

.results__case-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 120%; /* 24px */
  letter-spacing: 0.4px;
}

.results__case-shop {
  font-size: 14px;
  font-weight: 400;
  margin: 10px 0;
  color: #888;
  line-height: 125%; /* 15px */
  letter-spacing: 0.96px;
}

/* タイトル左のピンク縦ライン（highlight範囲のみ） */
.results__case-highlight {
  position: relative;
  padding: 10px 15px;
}

.results__case-highlight::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--color--primary);
}

.results__case-list {
  margin: 10px 0 0;
  font-size: 14px;
  /* line-height: 1.8; */
  padding-left: 0;
  list-style-type: none;
}

.results__case-list li {
  padding-left: 1em;
  text-indent: -1em;
}

.results__case-list li::before {
  content: "・";
}

.results__voices {
  margin-bottom: 48px;
}

.results__subtitle {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  margin: 48px 0 24px;
}

.results__data h3 {
  margin-bottom: 15px;
}

/* ========== EXANPLE ========== */

.example {
  background: url("../imgs/bg_exsample@2x.png") no-repeat top center;
  background-size: cover;
  color: #fff;
  position: relative;
  padding: 30px 16px;
  /* padding-top: 30px;
  padding-bottom: 30px; */
}

/* .example::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
} */

.example__inner {
  position: relative;
  z-index: 1;
}

/* カードグリッド */
.example__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
/* カード */
.example__card {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  color: #000;
}
.example__card-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  height: 30px;
}
.example__icon {
  width: 24px;
  height: 24px;
}
.example__card-title {
  font-size: 14px;
  font-weight: 700;
}

/* 箇条書き */
.example__items {
  font-size: 13px;
  line-height: 1.6;
  padding-left: 0;
  list-style: none;
}

.example__items li {
  padding-left: 1em;
  text-indent: -1em;
}

.example__items li::before {
  content: "・";
  margin-right: 4px;
}

/* ========== PLAN ========== */

.plan {
  color: #000;
  background-color: #dddddd;
  padding: 30px 0;
  overflow: hidden;
}

.plan .section__label,
.plan .section__title {
  padding: 0 16px;
}

/* 横スクロールの親 */
.plan__scroll {
  overflow-x: scroll;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  margin-left: -16px;
  margin-right: -16px;
  padding-left: 16px;
  padding-right: 16px;
}

.plan__scroll::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

/* 横並びリスト */
.plan__list {
  display: flex;
  gap: 16px;
  padding: 0 0 16px;
  width: max-content;
}

/* カード幅を固定 */
.plan__card {
  width: 280px;
  flex-shrink: 0;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  color: #000;
  position: relative;
  margin-top: 24px;
  scroll-snap-align: center;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
}
.plan__card > * {
  webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none
}

/* オススメバッジ */
.plan__badge {
  position: absolute;
  top: -20px;
  right: -12px;
  width: 84px;
  height: auto;
  z-index: 10;
}

.plan__card.plan__card--silver {
  border: solid 4px var(--color--primary);
}

/* PC時の切り替え - mainからはみ出た部分は非表示、インジケータでスライド */
@media (min-width: 768px) {
  .plan {
    overflow: hidden;
  }

  .plan__scroll {
    overflow: hidden;
  }

  .plan__list {
    width: max-content;
    justify-content: flex-start;
    padding: 0 0 16px;
    transition: transform 0.4s ease;
  }

  .plan__card {
    width: 280px;
  }
}

.plan__price {
  display: flex;
  margin: 15px 0;
  white-space: nowrap;
  align-items: flex-end;
  line-height: 160%;
  gap: 4px;
}
.plan__price-main {
  font-family: var(--font-en-mont);
  font-size: 32px;
}

.plan__price-unit,
.plan__price-main {
  color: var(--color--primary);
  font-weight: bold;
}
.plan__name {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0.32px;
}

.plan__spec {
  list-style: none;
  padding: 0;
  margin: 0;
}

.plan__spec-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px solid #eee;
}

.plan__spec-item:last-child {
  border-bottom: none;
}

.plan__icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 6px;
}

/* ナビゲーション */
.plan__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 16px;
}

.plan__arrow {
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.plan__arrow:hover {
  opacity: 0.7;
}

.plan__arrow span {
  display: block;
  position: relative;
  width: 20px;
  height: 2px;
  background: var(--color--primary);
}

.plan__arrow span::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--color--primary);
  border-right: 2px solid var(--color--primary);
}

.plan__arrow--prev span::before {
  left: 0;
  transform: translateY(-50%) rotate(-135deg);
}

.plan__arrow--next span::before {
  right: 0;
  transform: translateY(-50%) rotate(45deg);
}

/* インジケーター */
.plan__indicator {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.plan__bar {
  width: 28px;
  height: 4px;
  border-radius: 999px;
  background: #666;
  opacity: 0.4;
}

.plan__bar.is-active {
  background: var(--color--primary);
  opacity: 1;
}

/* ========== FLOW ========== */

.flow {
  padding: 30px 16px;
  background: #fff;
  color: #000;
}

.flow__list {
  position: relative;
  max-width: 375px;
  /* margin: 0 auto; */
  margin-left: -30px;
}

.flow__list::before {
  content: "";
  position: absolute;
  left: 70px;
  top: 0;
  bottom: 0;
  width: 0;
  border-left: 2px dashed #ddd;
}

.flow__item {
  display: flex;
  gap: 16px;
  position: relative;
}

.flow__item:last-child {
  margin-bottom: 0;
}

.flow__icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  /* background: var(--color--primary);
  border-radius: 50%;
  display: grid;
  place-items: center;
  z-index: 1; */
}

.flow__icon img {
  width: 60px;
  height: auto;
}

.flow__title {
  font-weight: bold;
  margin-bottom: 8px;
  padding-top: 20px;
}

.flow__texts {
  font-size: 14px;
  line-height: 1.7;
  list-style: disc;
  margin-left: -20px;
}
.flow__texts li > ul {
  list-style: none;
  padding-left: 0;
  margin-left: -16px;
}

.flow__texts li > ul > li {
  list-style: none;
  margin-bottom: 8px;
  color: #888;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.28px;
}

/* ========== FAQ ========== */

.faq {
  background: #000;
  color: #fff;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq__item {
  border: 1px solid #333;
  border-radius: 8px;
  overflow: hidden;
}

.faq__item[open] {
  background: #333;
}

.faq__question {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  cursor: pointer;
  list-style: none;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question::after {
  content: "+";
  margin-left: auto;
  font-size: 20px;
  color: var(--color--primary);
}

.faq__item[open] .faq__question::after {
  content: "−";
  color: var(--color--primary);
}

.faq__icon {
  width: 32px;
  height: 32px;
  border: 2px solid var(--color--primary);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-en-mont), sans-serif;
  font-size: 14px;
  font-weight: bold;
  color: var(--color--primary);
  flex-shrink: 0;
}

.faq__item[open] .faq__icon {
  border-color: var(--color--primary);
  color: var(--color--primary);
}

.faq__icon--answer {
  background: transparent;
  border-color: #666;
  color: #666;
}

.faq__question-text {
  font-size: 14px;
  line-height: 1.5;
}

.faq__answer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px 16px;
}

.faq__answer-text {
  font-size: 14px;
  line-height: 1.7;
  padding-top: 6px;
}

/* ========== CTA ========== */
.cta {
  text-align: center;
  background: var(--color--primary);
  color: #fff;
}

.cta__title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 12px;
}

.cta__text {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.cta__buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 24px;
  border-radius: 999px;
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.cta__button:hover {
  opacity: 0.7;
}

.cta__button-icon {
  flex-shrink: 0;
}

.cta__button--line {
  background: #00b900;
  color: #fff;
}

.cta__button--mail {
  background: #fff;
  color: #333;
  border: 1px solid #ddd;
}

/* ========== Company ========== */
.company {
  padding: 30px 16px 0 16px;
}

.company__inner {
  border-radius: 16px;
  padding: 15px;
  background-color: #fff;
}

.company .section__title {
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  background: #000;
  width: 100%;
  color: #fff;
  line-height: 160%;
  border-radius: 999px;
  margin-bottom: 30px;
  text-align: center;
  letter-spacing: 1.44px;
}



.company__heading-btn:hover {
  opacity: 0.7;
}

@media (min-width: 380px) {
  .company__heading-btn br {
    display: none;
  }
}

.company__logo {
  text-align: center;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.company__logo img {
  max-width: 180px;
  height: auto;
}

.company__info {
  margin-bottom: 32px;

  a {
    color: var(--color--primary);
  }
}

.company__row {
  display: flex;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  font-size: 14px;
}

.company__row dt {
  width: 60px;
  flex-shrink: 0;
  font-weight: bold;
}

.company__row dd {
  flex: 1;
  margin: 0;
}

.company__offices {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.company__office {
  border-top: 1px solid #eee;
  padding-top: 16px;
}

.company__office-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 8px;
}

.company__office-icon {
  width: 16px;
  height: auto;
}

.company__office-address {
  font-size: 13px;
  line-height: 1.7;
  color: #666;
}

.footer__copyright {
  font-size: 10px;
  font-family: var(--font-en-mont);

/* ========== Scroll Fade In Animation ========== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* 遅延アニメーション用 */
.fade-in-delay-1 {
  transition-delay: 0.1s;
}
.fade-in-delay-2 {
  transition-delay: 0.2s;
}
.fade-in-delay-3 {
  transition-delay: 0.3s;
}
.fade-in-delay-4 {
  transition-delay: 0.4s;
}

/* ========== 改行 ========== */

.u-p10bottom {
  padding-bottom: 10px;
}

.u-pc {
  display: none;
}
.u-sp {
  display: inline;
}

@media (min-width: 768px) {
  .u-pc {
    display: inline;
  }
  .u-sp {
    display: none;
  }
}
