/* FULLNESS Body Make / Cocoon Child
--------------------------------------------- */

:root {
  /* Base */
  --fl-black: #101312;
  --fl-charcoal: #202524;
  --fl-gray-900: #303534;
  --fl-gray-700: #626866;
  --fl-gray-500: #929896;
  --fl-gray-300: #d5d9d7;
  --fl-gray-200: #e7eae8;
  --fl-gray-100: #f4f6f5;
  --fl-white: #ffffff;

  /* Brand accent */
  --fl-accent: #1f6b62;
  --fl-accent-dark: #164e48;
  --fl-accent-light: #e8f1ef;
  --fl-accent-muted: #8ba9a3;

  /* Layout */
  --fl-max: 1180px;
  --fl-radius: 6px;
  --fl-radius-large: 18px;

  /* Shadow */
  --fl-shadow: 0 20px 60px rgba(16, 19, 18, 0.09);
  --fl-shadow-accent: 0 20px 50px rgba(31, 107, 98, 0.14);
}


/* =================================
   Cocoon標準表示の調整
================================= */

body.fullness-site {
  color: var(--fl-charcoal);
  background: var(--fl-white);
}

.fullness-site .entry-title,
.fullness-site .date-tags,
.fullness-site .sns-share,
.fullness-site .sns-follow,
.fullness-site .author-box,
.fullness-site .breadcrumb {
  display: none;
}

.fullness-site .main,
.fullness-site .content,
.fullness-site .entry-content {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.fullness-site .wrap {
  width: 100%;
  max-width: none;
}


/* =================================
   FULLNESS固定ページのみ1カラム
================================= */

body.fullness-site #sidebar {
  display: none;
}

body.fullness-site .content-in {
  display: block;
  max-width: none;
}

body.fullness-site #main,
body.fullness-site .main {
  float: none;
  width: 100%;
  max-width: none;
  margin: 0;
  padding-right: 0;
  padding-left: 0;
}

body.fullness-site .content {
  width: 100%;
  max-width: none;
}


/* =================================
   共通
================================= */

.fl-main * {
  box-sizing: border-box;
}

.fl-main img {
  max-width: 100%;
  height: auto;
}

.fl-main a {
  text-decoration: none;
}

.fl-container {
  width: min(calc(100% - 40px), var(--fl-max));
  margin-inline: auto;
}

.fl-section {
  padding: 96px 0;
}

.fl-section--gray {
  background: linear-gradient(
    180deg,
    #f3f6f5,
    #edf2f0
  );
}

.fl-section--black {
  color: var(--fl-white);
  background:
    radial-gradient(
      circle at top right,
      rgba(31, 107, 98, 0.25),
      transparent 35%
    ),
    linear-gradient(
      145deg,
      #202524,
      #0e1110
    );
}

.fl-eyebrow {
  margin: 0 0 14px;
  color: var(--fl-accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.fl-section--black .fl-eyebrow {
  color: #bdbdbd;
}

.fl-main h1,
.fl-main h2,
.fl-main h3 {
  color: inherit;
  line-height: 1.35;
  letter-spacing: 0.035em;
}

.fl-main h1 {
  margin: 0;
  font-size: clamp(38px, 6vw, 76px);
}

.fl-main h2 {
  position: relative;
  margin: 0 0 24px;
  font-size: clamp(28px, 4vw, 46px);
}

.fl-main h2::after {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  margin-top: 20px;
  background: var(--fl-accent);
}

.fl-monitor-heading h2::after,
.fl-final-cta h2::after {
  display: none;
}

.fl-main h3 {
  margin: 0 0 14px;
  font-size: 22px;
}

.fl-lead {
  max-width: 760px;
  margin: 28px 0 0;
  color: var(--fl-gray-700);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 2;
}


/* =================================
   ボタン
================================= */

.fl-btn {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border: 1px solid var(--fl-black);
  border-radius: var(--fl-radius);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  transition:
    transform 0.25s ease,
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.fl-btn:hover {
  transform: translateY(-3px);
}

.fl-btn--primary {
  border-color: var(--fl-accent);
  color: var(--fl-white) !important;
  background: var(--fl-accent);
  box-shadow: 0 12px 28px rgba(31, 107, 98, 0.2);
}

.fl-btn--primary:hover {
  border-color: var(--fl-accent-dark);
  color: var(--fl-white) !important;
  background: var(--fl-accent-dark);
  box-shadow: 0 16px 36px rgba(31, 107, 98, 0.25);
}

.fl-btn--ghost {
  border-color: var(--fl-charcoal);
  color: var(--fl-charcoal) !important;
  background: transparent;
}

.fl-btn--ghost:hover {
  border-color: var(--fl-charcoal);
  color: var(--fl-white) !important;
  background: var(--fl-charcoal);
}

.fl-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}


/* =================================
   ホーム・ファーストビュー
================================= */

.fl-home-hero {
  position: relative;
  min-height: 90vh;
  overflow: hidden;

  background-color: #ffffff;
  background-image: var(--hero-image);
  background-repeat: no-repeat;
  background-position: 70% center;
  background-size: cover;
}

/* 背景画像の上に白いグラデーション */
.fl-home-hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;

  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.95) 35%,
    rgba(255, 255, 255, 0.7) 55%,
    rgba(255, 255, 255, 0.05) 100%
  );
}

.fl-home-hero__inner {
  position: relative;
  z-index: 2;
}

.fl-home-hero__copy {
  margin-top: 28px;
  min-width: 0;
  max-width: 680px;
}

.fl-home-hero__copy h1 {
  line-height: 1.15;
}

.fl-home-hero__copy .fl-lead {
  margin-top: 36px;
}

/* =================================
   ファーストビュー：4つの特徴
================================= */

.fl-home-hero__features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 54px;
  border-top: 1px solid var(--fl-gray-300);
  border-left: 1px solid var(--fl-gray-300);
}

.fl-home-feature {
  position: relative;
  min-height: 130px;
  padding: 24px 22px;
  border-right: 1px solid var(--fl-gray-300);
  border-bottom: 1px solid var(--fl-gray-300);
  background: rgba(255, 255, 255, 0.9);

  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);

  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.fl-home-feature:hover {
  z-index: 1;
  background: #ffffff;
  transform: translateY(-3px);
}

.fl-home-feature__number {
  display: block;
  margin-bottom: 15px;
  color: var(--fl-accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.fl-home-feature p {
  margin: 0;
  color: var(--fl-charcoal);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.65;
  letter-spacing: 0.03em;
}

/* タブレット */
@media screen and (max-width: 900px) {
  .fl-home-hero {
    background-position: 65% center;
  }

  .fl-home-hero__features {
    max-width: 700px;
  }
}

/* スマートフォン */
@media screen and (max-width: 640px) {

  .fl-home-hero {
    min-height: auto;
    background-image: var(--hero-image) !important;
    background-repeat: no-repeat;
    background-position: 40% top !important;
    background-size: auto 380px;
    background-color: #ffffff;
}


  }

  /* 文字を読みやすくする白グラデーション */
  .fl-home-hero::before {
    background: linear-gradient(
      90deg,
      rgba(255,255,255,.92) 0%,
      rgba(255,255,255,.82) 35%,
      rgba(255,255,255,.55) 60%,
      rgba(255,255,255,.25) 82%,
      rgba(255,255,255,.10) 100%
    );
  }

  .fl-home-hero__inner {
    padding-top: 320px;
    padding-bottom: 64px;
  }

  .fl-home-hero__copy {
    width: 100%;
    max-width: none;
  }

  .fl-home-hero__copy h1 {
    color: #1f2423;
    text-shadow: 0 2px 10px rgba(255,255,255,.75);
  }

  .fl-home-hero__copy .fl-lead {
    color: #4d5553;
    text-shadow: 0 1px 6px rgba(255,255,255,.9);
  }

  .fl-home-hero__features {
    grid-template-columns: 1fr;
    margin-top: 38px;
  }

  .fl-home-feature {
    min-height: auto;
    padding: 20px;
  }

  .fl-home-feature p {
    font-size: 15px;
  }

  .fl-home-feature p br {
    display: none;
  }
}

/* =================================
   グリッド・カード
================================= */

.fl-grid {
  display: grid;
  gap: 24px;
}

.fl-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fl-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fl-card {
  position: relative;
  padding: 38px;
  border: 1px solid var(--fl-gray-200);
  border-radius: var(--fl-radius-large);
  background: linear-gradient(
    145deg,
    #ffffff,
    #fafbfa
  );
  box-shadow: 0 10px 35px rgba(16, 19, 18, 0.045);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.fl-card:hover {
  border-color: var(--fl-accent-muted);
  transform: translateY(-6px);
  box-shadow: var(--fl-shadow-accent);
}

.fl-card--dark {
  color: var(--fl-white);
  border-color: #38403e;
  background: linear-gradient(
    145deg,
    #252a29,
    #131716
  );
}

.fl-card--dark:hover {
  border-color: var(--fl-accent-muted);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.2);
}

.fl-card__number {
  display: block;
  margin-bottom: 40px;
  color: var(--fl-accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.fl-card p {
  color: var(--fl-gray-700);
  line-height: 1.9;
}

.fl-card--dark p {
  color: #c8c8c8;
}

.fl-card ul {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.fl-card li {
  padding: 11px 0;
  border-top: 1px solid var(--fl-gray-200);
}

.fl-card--dark li {
  border-color: #333333;
}

.fl-course-card {
  display: flex;
  min-height: 520px;
  flex-direction: column;
}

.fl-course-card .fl-btn {
  align-self: flex-start;
  margin-top: auto;
}


/* =================================
   2カラム
================================= */

.fl-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: center;
}


/* =================================
   プロフィール
================================= */

.fl-profile-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--fl-radius-large);
  background: #eeeeee;
  box-shadow: var(--fl-shadow);
}

.fl-profile-image::after {
  content: "";
  position: absolute;
  right: -12px;
  bottom: -12px;
  width: 42%;
  height: 42%;
  z-index: -1;
  border-radius: var(--fl-radius-large);
  background: var(--fl-accent);
}

.fl-profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter:
    grayscale(45%)
    contrast(1.02);
  transition:
    filter 0.4s ease,
    transform 0.4s ease;
}

.fl-profile-image:hover img {
  filter:
    grayscale(0%)
    contrast(1.03);
  transform: scale(1.025);
}

.fl-copy p {
  color: var(--fl-gray-700);
  line-height: 2;
}


/* =================================
   リスト
================================= */

.fl-check-list {
  margin: 30px 0;
  padding: 0;
  list-style: none;
}

.fl-check-list li {
  position: relative;
  padding: 15px 0 15px 32px;
  border-bottom: 1px solid var(--fl-gray-200);
}

.fl-check-list li::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 0;
  width: 12px;
  height: 2px;
  background: var(--fl-accent);
}


/* =================================
   下層ページ見出し
================================= */

.fl-page-hero {
  position: relative;
  overflow: hidden;
  padding: 110px 0 80px;
  border-bottom: 1px solid var(--fl-gray-200);
  background: linear-gradient(
    120deg,
    #ffffff 0%,
    #ffffff 65%,
    var(--fl-accent-light) 100%
  );
}

.fl-page-hero::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -120px;
  width: 360px;
  height: 360px;
  border: 70px solid rgba(31, 107, 98, 0.08);
  border-radius: 50%;
}


/* =================================
   通常料金表示
================================= */

.fl-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 24px 0;
}

.fl-price strong {
  color: var(--fl-black);
  font-size: clamp(38px, 5vw, 62px);
}

.fl-price small {
  color: var(--fl-gray-700);
}

/* ==================================================
   PRICE PAGE
================================================== */

.price-section {
  padding: 96px 20px;
}

.price-section__inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

/* 見出し */
.section-heading {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-heading__en {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #315f53;
}

.section-heading__title {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.3;
  color: #181818;
}

.section-heading__description {
  margin: 24px 0 0;
  font-size: 15px;
  line-height: 2;
  color: #666;
}

/* ==================================================
   正式料金
================================================== */

.regular-price-section {
  background: #fff;
}

.price-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 36px 28px 30px;
  border: 1px solid #e4e4e4;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.price-card__number {
  margin: 0 0 22px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #315f53;
}

.price-card__title {
  margin: 0;
  font-size: 22px;
  line-height: 1.5;
  color: #181818;
}

.price-card__description {
  margin: 18px 0 0;
  min-height: 72px;
  font-size: 14px;
  line-height: 1.9;
  color: #666;
}

.price-card__price {
  margin-top: 32px;
  padding-top: 26px;
  border-top: 1px solid #e7e7e7;
}

.price-card__label {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  color: #777;
}

.price-card__amount {
  display: block;
  font-size: clamp(25px, 2.7vw, 34px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.03em;
  color: #111;
}

.price-card__button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: 28px;
  padding: 12px 18px;
  border: 1px solid #1f4c42;
  border-radius: 999px;
  color: #1f4c42;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.25s ease;
}

.price-card__button:hover {
  background: #1f4c42;
  color: #fff;
  transform: translateY(-2px);
}

.regular-price-section__note {
  margin: 28px 0 0;
  text-align: center;
  font-size: 12px;
  line-height: 1.8;
  color: #777;
}

/* ==================================================
   モニター募集
================================================== */

.monitor-price-section {
  background: #f4f6f4;
}

.monitor-offer {
  max-width: 900px;
  margin: 0 auto;
  padding: 64px;
  border: 1px solid rgba(49, 95, 83, 0.18);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.07);
  text-align: center;
}

.monitor-offer__heading {
  max-width: 680px;
  margin: 0 auto;
}

.monitor-offer__label {
  display: inline-block;
  margin: 0 0 18px;
  padding: 8px 16px;
  border-radius: 999px;
  background: #e7efec;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #315f53;
}

.monitor-offer__title {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.35;
  color: #181818;
}

.monitor-offer__description {
  margin: 22px 0 0;
  font-size: 15px;
  line-height: 2;
  color: #666;
}

.monitor-offer__price {
  max-width: 560px;
  margin: 44px auto 0;
  padding: 36px 24px;
  border-radius: 20px;
  background: #f7f8f7;
}

.monitor-offer__caption {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  color: #555;
}

.monitor-offer__regular {
  margin: 12px 0 0;
  font-size: 21px;
  color: #888;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}

.monitor-offer__arrow {
  margin: 16px 0;
  font-size: 24px;
  color: #315f53;
}

.monitor-offer__amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
}

.monitor-offer__amount span {
  font-size: clamp(42px, 7vw, 68px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
  color: #1f4c42;
}

.monitor-offer__amount small {
  font-size: 13px;
  color: #555;
}

.monitor-offer__note {
  margin: 18px 0 0;
  font-size: 12px;
  line-height: 1.8;
  color: #777;
}

/* モニター条件 */
.monitor-offer__conditions {
  max-width: 620px;
  margin: 40px auto 0;
  padding: 30px;
  border: 1px solid #e3e3e3;
  border-radius: 18px;
  text-align: left;
}

.monitor-offer__conditions h3 {
  margin: 0 0 18px;
  font-size: 18px;
  color: #181818;
}

.monitor-offer__conditions ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.monitor-offer__conditions li {
  position: relative;
  padding-left: 28px;
  font-size: 14px;
  line-height: 1.9;
  color: #555;
}

.monitor-offer__conditions li + li {
  margin-top: 10px;
}

.monitor-offer__conditions li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 700;
  color: #315f53;
}

/* モニターボタン */
.monitor-offer__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(420px, 100%);
  min-height: 58px;
  margin: 36px auto 0;
  padding: 14px 24px;
  border-radius: 999px;
  background: #1f4c42;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(31, 76, 66, 0.2);
  transition: 0.25s ease;
}

.monitor-offer__button:hover {
  background: #173d35;
  color: #fff;
  transform: translateY(-2px);
}

.monitor-offer__reassurance {
  margin: 18px 0 0;
  font-size: 12px;
  color: #777;
}

/* ==================================================
   既存セクション微調整
================================================== */

.fl-section--gray {
  background: #f7f7f7;
}

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

.fl-check-list li {
  position: relative;
  padding-left: 30px;
}

.fl-check-list li + li {
  margin-top: 14px;
}

.fl-check-list li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 700;
  color: #315f53;
}

/* ==================================================
   タブレット
================================================== */

@media screen and (max-width: 900px) {
  .price-section {
    padding: 80px 20px;
  }

  .price-cards {
    grid-template-columns: 1fr;
    max-width: 680px;
    margin: 0 auto;
  }

  .price-card__description {
    min-height: auto;
  }

  .monitor-offer {
    padding: 52px 36px;
  }
}

/* ==================================================
   スマートフォン
================================================== */

@media screen and (max-width: 600px) {
  .price-section {
    padding: 64px 16px;
  }

  .section-heading {
    margin-bottom: 36px;
    text-align: left;
  }

  .section-heading__description {
    margin-top: 18px;
    font-size: 14px;
  }

  .section-heading__description br {
    display: none;
  }

  .price-card {
    padding: 28px 22px 24px;
    border-radius: 16px;
  }

  .price-card__title {
    font-size: 20px;
  }

  .price-card__amount {
    font-size: 28px;
  }

  .price-card__button {
    min-height: 50px;
    font-size: 13px;
  }

  .monitor-offer {
    padding: 40px 20px;
    border-radius: 20px;
  }

  .monitor-offer__description {
    font-size: 14px;
  }

  .monitor-offer__price {
    margin-top: 32px;
    padding: 30px 16px;
  }

  .monitor-offer__regular {
    font-size: 18px;
  }

  .monitor-offer__conditions {
    margin-top: 30px;
    padding: 24px 20px;
  }

  .monitor-offer__conditions li {
    font-size: 13px;
  }

  .monitor-offer__button {
    min-height: 54px;
    margin-top: 30px;
    font-size: 14px;
  }
}


/* =================================
   お申込みの流れ
================================= */

.fl-step {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 28px;
  padding: 36px 0;
  border-top: 1px solid var(--fl-gray-300);
}

.fl-step__number {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
}


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

.fl-faq {
  border-top: 1px solid var(--fl-gray-200);
}

.fl-faq__item {
  border-bottom: 1px solid var(--fl-gray-200);
}

.fl-faq__button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 0;
  border: 0;
  color: var(--fl-black);
  background: transparent;
  font: inherit;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition:
    color 0.2s ease,
    padding-left 0.2s ease;
}

.fl-faq__button:hover {
  padding-left: 8px;
  color: var(--fl-accent);
}

.fl-faq__answer {
  display: none;
  padding: 0 42px 26px 0;
  color: var(--fl-gray-700);
  line-height: 1.9;
}

.fl-faq__item.is-open .fl-faq__button {
  color: var(--fl-accent-dark);
}

.fl-faq__item.is-open .fl-faq__answer {
  display: block;
}


/* =================================
   注釈
================================= */

.fl-note {
  padding: 22px;
  border-left: 3px solid var(--fl-accent);
  border-radius: 0 var(--fl-radius) var(--fl-radius) 0;
  background: var(--fl-accent-light);
  color: var(--fl-gray-700);
  line-height: 1.8;
}


/* =================================
   無料カウンセリング
================================= */

.fl-counseling-card {
  padding: 48px;
}

.fl-contact-buttons {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}

.fl-contact-button {
  width: 100%;
  min-height: 60px;
}

.fl-contact-note {
  margin: 18px 0 0;
  color: var(--fl-gray-500);
  font-size: 13px;
  text-align: center;
}


/* =================================
   最終CTA
================================= */

.fl-final-cta {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  color: var(--fl-white);
  background:
    radial-gradient(
      circle at top right,
      rgba(31, 107, 98, 0.55),
      transparent 38%
    ),
    linear-gradient(
      135deg,
      #19211f,
      #090c0b
    );
  text-align: center;
}

.fl-final-cta::before {
  content: "";
  position: absolute;
  top: -140px;
  left: -120px;
  width: 360px;
  height: 360px;
  border: 80px solid rgba(255, 255, 255, 0.035);
  border-radius: 50%;
}

.fl-final-cta .fl-container {
  position: relative;
  z-index: 1;
}

.fl-final-cta p {
  max-width: 720px;
  margin: 0 auto 30px;
  color: #c9c9c9;
  line-height: 1.9;
}

.fl-final-cta .fl-btn {
  border-color: var(--fl-white);
  color: var(--fl-accent-dark) !important;
  background: var(--fl-white);
}

.fl-final-cta .fl-btn:hover {
  border-color: var(--fl-accent);
  color: var(--fl-white) !important;
  background: var(--fl-accent);
}


/* =================================
   法的表示
================================= */

.fl-legal h2 {
  margin-top: 60px;
  font-size: 28px;
}

.fl-legal dl {
  display: grid;
  grid-template-columns: 220px 1fr;
  border-top: 1px solid var(--fl-gray-300);
}

.fl-legal dt,
.fl-legal dd {
  margin: 0;
  padding: 18px;
  border-bottom: 1px solid var(--fl-gray-300);
}

.fl-legal dt {
  font-weight: 700;
  background: var(--fl-gray-100);
}


/* =================================
   フォーカス表示
================================= */

.fl-main a:focus-visible,
.fl-main button:focus-visible {
  outline: 3px solid rgba(31, 107, 98, 0.3);
  outline-offset: 4px;
}


/* =================================
   タブレット
================================= */

@media (max-width: 900px) {
  .fl-grid--3 {
    grid-template-columns: 1fr;
  }

  .fl-grid--2,
  .fl-split {
    grid-template-columns: 1fr;
  }

  .fl-home-hero {
    min-height: auto;
    background: #ffffff;
  }

  .fl-home-hero__inner {
    grid-template-columns: 1fr;
    gap: 56px;
    padding: 80px 0;
  }

  .fl-home-hero__copy {
    max-width: none;
  }

  .fl-home-hero__image img {
    height: 560px;
  }

  .fl-course-card,
  .fl-price-card {
    min-height: auto;
  }

  .fl-price-card__description {
    min-height: auto;
  }
}


/* =================================
   スマートフォン
================================= */

@media (max-width: 640px) {
  .fl-container {
    width: min(calc(100% - 28px), var(--fl-max));
  }

  .fl-section {
    padding: 68px 0;
  }

  .fl-page-hero {
    padding: 76px 0 56px;
  }

  .fl-page-hero::after {
    width: 240px;
    height: 240px;
    border-width: 45px;
  }

  .fl-main h2::after {
    width: 34px;
    margin-top: 15px;
  }

  .fl-home-hero__inner {
    gap: 40px;
    padding: 60px 0;
  }

  .fl-home-hero__image img {
    height: 420px;
    border-radius: 16px;
  }

  .fl-home-hero__meta {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .fl-card {
    padding: 28px 22px;
    border-radius: 12px;
  }

  .fl-actions {
    display: grid;
  }

  .fl-actions .fl-btn {
    width: 100%;
  }

  .fl-step {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .fl-legal dl {
    grid-template-columns: 1fr;
  }

  .fl-legal dt {
    border-bottom: 0;
  }

  .fl-monitor-heading {
    margin-bottom: 36px;
  }

  .fl-price-offer {
    padding: 24px 16px;
  }

  .fl-price-offer__top {
    flex-direction: column;
    justify-content: center;
  }

  .fl-monitor-notes {
    padding: 20px 18px;
  }

  .fl-home-price-offer {
    padding: 28px 20px;
  }

  .fl-home-price-offer__top {
    flex-direction: column;
    align-items: flex-start;
  }

  .fl-home-price-offer__monitor {
    font-size: 46px;
  }

  .fl-counseling-card {
    padding: 30px 22px;
  }
}


.service-support-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-support-grid .fl-card:nth-child(4),
.service-support-grid .fl-card:nth-child(5) {
  grid-column: span 1;
}

@media screen and (max-width: 900px) {
  .service-support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 600px) {
  .service-support-grid {
    grid-template-columns: 1fr;
  }
}

/* ================================
   サービス詳細ページ 価格表示
================================ */

.fl-section--black {
  background: #111816;
  color: #fff;
}

.fl-section--black h2,
.fl-section--black p,
.fl-section--black .fl-eyebrow {
  color: #fff;
}

.fl-section--black .fl-eyebrow {
  color: #8ab9ad;
}

.fl-section--black .fl-price {
  margin-bottom: 24px;
}

.fl-section--black .fl-price strong {
  display: block;
  color: #fff;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.fl-section--black .fl-price strong::before {
  content: "正式料金";
  display: block;
  margin-bottom: 12px;
  color: #8ab9ad;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.fl-section--black .fl-split > div:last-child > p {
  max-width: 760px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 2;
}



@media screen and (max-width: 640px) {
  body .fl-home-hero {
    background-position: 40% top !important;
  }
}