/* -------------------------
   共通ユーティリティ（見出し装飾・透かし背景）
------------------------- */
#issues.issues::before {
  content: "ISSUES";
}

#solution.solution::before {
  content: "SOLUTION";
}

#simulator.simulator::before {
  content: "SIMULATOR";
}

#comparison::before {
  content: "COMPARE";
}

.cases::before {
  content: "CASES";
}

#features.features::before {
  content: "FEATURES";
}

#price.price::before {
  content: "PRICE";
}

#faq.faq::before {
  content: "FAQ";
}

#issues.issues::before,
#solution.solution::before,
#simulator.simulator::before,
#comparison::before,
.cases::before,
#features.features::before,
#price.price::before,
#faq.faq::before {
  position: absolute;
  top: 42px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(40, 120, 167, 0.045);
  font-size: clamp(72px, 12vw, 150px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.08em;
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
}

.issues__eyebrow,
.solution__eyebrow,
.simulator__eyebrow,
.comparison__eyebrow,
.cases__eyebrow,
.features__eyebrow,
.price__eyebrow,
.faq__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: #2878a7;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  justify-content: center;
  width: 100%;
}

.issues__eyebrow::before,
.issues__eyebrow::after,
.solution__eyebrow::before,
.solution__eyebrow::after,
.simulator__eyebrow::before,
.simulator__eyebrow::after,
.comparison__eyebrow::before,
.comparison__eyebrow::after,
.cases__eyebrow::before,
.cases__eyebrow::after,
.features__eyebrow::before,
.features__eyebrow::after,
.price__eyebrow::before,
.price__eyebrow::after,
.faq__eyebrow::before,
.faq__eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: rgba(40, 120, 167, 0.35);
}

/* =========================
   FV
========================= */
#fv.fv {
  position: relative;
  padding: 10px 0 60px;
  background:
    radial-gradient(circle at top right, rgba(62, 121, 239, 0.08) 0%, rgba(62, 121, 239, 0) 30%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  overflow: hidden;
}

.fv::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(255, 255, 255, 0.96) 0%,
      rgba(255, 255, 255, 0.88) 25%,
      rgba(255, 255, 255, 0.55) 50%,
      rgba(255, 255, 255, 0.15) 75%,
      rgba(255, 255, 255, 0) 100%),
    url("../image/picking/fv.jpeg") center center / cover no-repeat;
  opacity: 0.18;
  /* 薄さ調整 */
  z-index: 0;
  filter: grayscale(100%); /* オレンジ色を消去してモノクロ化し、背景のシアン・ブルーに美しくブレンド */
}

.fv__inner {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.fv__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 1.1fr);
  gap: 0px;
  align-items: center;
}

.fv__content {
  max-width: 720px;
}

.fv__title {
  margin: 0 0 22px;
  font-size: clamp(34px, 5vw, 48px);
  /* ベース */
  font-weight: 750;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.fv__title strong {
  font-size: 1.4em;
  font-weight: 900;
  background: linear-gradient(90deg, #19b3c7 0%, #0082c6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* 1行目（黒）→ 小さくする */
.fv__title-sub {
  display: inline-block;
  font-size: 0.6em;
  /* ←これで小さく */
  font-weight: 600;
  color: #313335;
  /* 少し薄くするのがコツ */
}

/* 2行目（メイン）→ 主役 */
.fv__title-main {
  display: inline-block;
  color: var(--text-main);
  font-weight: 900;
}

.fv__lead {
  margin: 15px 0 14px;
  font-size: 17px;
  line-height: 1.9;
  color: #334155;
}

/* visual */
.fv__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.fv__imageCard {
  position: relative;
  width: 100%;
  max-width: 680px;
}

.fv__image {
  position: relative;
  z-index: 1;
  display: block;
  width: 120%;
  /* 元の迫力あるサイズに戻す */
  height: auto;
  max-height: 640px;
  object-fit: contain;
  margin-top: -60px;
  /* 上部の余白を詰める */
  margin-bottom: -40px;
  /* 下部の余白を詰める */
}

/* stats */
.fv__stats {
  display: flex;
  flex-wrap: nowrap;
  /* 1行に固定 */
  gap: 12px;
  overflow-x: auto;
  /* はみ出し時にスクロール可能にする */
  width: 100%;
  scrollbar-width: none;
  /* スクロールバー非表示 */
}

.fv__stats::-webkit-scrollbar {
  display: none;
  /* スクロールバー非表示 */
}

.fv__stat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  /* 8px角丸長方形 */
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
  flex-shrink: 0;
  /* 縮小防止 */
  white-space: nowrap;
  /* 改行防止 */
}

.fv__statLabel {
  margin-bottom: 0;
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.4;
  color: #64748b;
}

.fv__statValue {
  font-size: 14.5px;
  font-weight: 900;
  line-height: 1.25;
  color: #0b4a75;
  /* 濃いロイヤルブルーの強調 */
  letter-spacing: -0.01em;
}

.stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 2px;
}

.stat-svg {
  stroke: #19b3c7;
}

/* bottom */
.fv__bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.fv__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.fv__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 230px;
  min-height: 58px;
  padding: 0 26px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  border-radius: 999px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.fv__btn:hover {
  transform: translateY(-2px);
}

.fv__btn--primary {
  color: #ffffff;
  background: linear-gradient(135deg, #207994 0%, #31a4c7 100%);
  box-shadow: 0 14px 28px rgba(15, 63, 117, 0.18);
}

.fv__btn--secondary {
  color: #147592;
  background: #ffffff;
  border: 1px solid #ccdeef;
  box-shadow: 0 10px 22px rgba(15, 63, 117, 0.08);
}

.fv__notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.fv__note {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  color: #0f3f75;
  background: #f4f8fd;
  border: 1px solid #dbe7f3;
  border-radius: 999px;
}

/* FV 表示アニメーション */
.js-fv-animate {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}

.js-fv-animate.is-show {
  opacity: 1;
  transform: translateY(0);
}

/* 数値カードだけ少しポップに */
.fv__card.js-fv-animate {
  transform: translateY(24px) scale(0.96);
}

.fv__card.js-fv-animate.is-show {
  transform: translateY(0) scale(1);
}

/* =========================
   Tablet (FV)
========================= */
@media screen and (max-width: 1100px) {
  .fv__top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .fv__content {
    max-width: none;
  }

  .fv__visual {
    order: 0;
  }

  .fv__imageCard {
    max-width: 520px;
    margin: 0 auto;
  }

  .fv__stats {
    justify-content: center;
  }
}

@media screen and (max-width: 991px) {
  #fv.fv {
    padding: 56px 0 48px;
  }
}

/* =========================
   SP (FV)
========================= */
@media screen and (max-width: 767px) {
  #fv.fv {
    padding: 42px 0 40px;
  }

  .fv__inner {
    gap: 22px;
  }

  .fv__top {
    display: flex;
    flex-direction: column;
    gap: 22px;
  }

  .fv__content {
    order: 1;
  }

  .fv__visual {
    order: 2;
  }

  .fv__title {
    margin-bottom: 14px;
    font-size: 28px;
    line-height: 1.35;
  }

  .fv__title-sub {
    font-size: 0.62em;
  }

  .fv__title-main {
    font-size: 1em;
  }

  .fv__lead {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.85;
  }

  .fv__sublead {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.8;
  }

  .fv__imageCard {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    padding: 0;
    border-radius: 0;
  }

  .fv__image {
    width: 100%;
    max-height: 320px;
    object-fit: contain;
    margin-top: 0;
    margin-bottom: 0;
  }

  .fv__stats {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 8px;
    gap: 8px;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    scrollbar-width: none;
  }

  .fv__stats::-webkit-scrollbar {
    display: none;
  }

  .fv__stat {
    display: inline-flex;
    flex-direction: row;
    /* 横並びを維持 */
    align-items: center;
    padding: 6px 12px;
    gap: 6px;
  }

  .fv__statLabel {
    margin-bottom: 0;
    font-size: 11px;
  }

  .fv__statValue {
    font-size: 12px;
  }

  .stat-icon {
    margin-right: 0;
  }

  .stat-svg {
    width: 15px;
    height: 15px;
  }

  .fv__bottom {
    align-items: center;
  }

  .fv__actions {
    width: 100%;
    flex-direction: column;
    gap: 12px;
  }

  .fv__btn {
    width: 100%;
    min-width: auto;
    min-height: 52px;
    font-size: 15px;
  }

  .fv__notes {
    justify-content: center;
    gap: 8px;
  }

  .fv__note {
    min-height: 30px;
    padding: 0 10px;
    font-size: 11px;
  }
}

/* =========================
   ISSUES
========================= */
#issues.issues {
  position: relative;
  overflow: hidden;
  padding: 80px 20px;
  background:
    radial-gradient(circle at 12% 12%, rgba(40, 120, 167, 0.10), transparent 28%),
    linear-gradient(180deg, #f7fbfd 0%, #ffffff 100%);
}

.issues__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.issues__head {
  max-width: 900px;
  margin: 0 auto 48px;
  text-align: center;
}

.issues__title {
  margin: 0 0 16px;
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 750;
  line-height: 1.32;
  letter-spacing: 0.02em;
  color: #0f172a;
}

.issues__lead {
  margin: 0;
  font-size: 15px;
  line-height: 1.85;
  color: #334155;
}

.issues__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.issues__card {
  position: relative;
  min-height: 240px;
  padding: 24px 18px 20px;
  text-align: center;
  background: #ffffff;
  border: 1px solid #d9e6f3;
  border-radius: 20px;
  box-shadow: 0 14px 30px rgba(15, 63, 117, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.issues__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(15, 63, 117, 0.10);
  border-color: #bfd8f3;
}

.issues__num {
  position: absolute;
  top: 18px;
  left: 18px;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  color: var(--primary-color);
  letter-spacing: 0.02em;
}

.issues__cardCheck {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 16px;
  height: 16px;
  opacity: 0.85;
}

.issues__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px auto 10px;
  border-radius: 50%;
}

.issues__icon img {
  display: block;
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.issues__cardTitle {
  margin: 0;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.4;
  color: #000000;
}

.issues__line {
  display: block;
  width: 32px;
  height: 3px;
  margin: 10px auto 14px;
  background: var(--primary-color);
  border-radius: 999px;
}

.issues__cardText {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: #334155;
}

.issues__summary {
  position: relative;
  z-index: 1;
  margin: 24px auto 0;
  padding: 16px 24px;
  max-width: 780px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(210, 226, 236, 0.9);
  color: #34495e;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 14px 34px rgba(31, 41, 51, 0.055);
}

.issues__summaryText {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
  color: #34495e;
  letter-spacing: 0.02em;
}

.issues__summaryText span {
  color: #147592;
  font-weight: 900;
}

/* Tablet (Issues) */
@media screen and (max-width: 991px) {
  #issues.issues {
    padding: 36px 20px 72px;
  }

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

/* SP (Issues) */
@media screen and (max-width: 767px) {
  #issues.issues {
    padding: 28px 16px 56px;
  }

  .issues__head {
    margin-bottom: 24px;
    text-align: left;
  }

  .issues__title {
    line-height: 1.45;
  }

  .issues__lead {
    font-size: 13.5px;
    line-height: 1.8;
  }

  .issues__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .issues__card {
    min-height: auto;
    padding: 20px 16px 18px;
    border-radius: 16px;
  }

  .issues__num {
    top: 14px;
    left: 14px;
    font-size: 15px;
  }

  .issues__icon {
    width: 64px;
    height: 64px;
    margin: 10px auto 14px;
  }

  .issues__icon img {
    width: 36px;
    height: 36px;
  }

  .issues__cardTitle {
    font-size: 18px;
  }

  .issues__cardText {
    font-size: 13.5px;
    line-height: 1.75;
  }

  .issues__summary {
    border-radius: 20px;
    padding: 12px 16px;
  }

  .issues__summaryText {
    font-size: 13.5px;
    line-height: 1.65;
  }

  .issues__summaryText span {
    font-weight: 900;
  }
}

/* =========================
   SOLUTION
========================= */
#solution.solution {
  position: relative;
  overflow: hidden;
  padding: 80px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.solution__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.solution__head {
  max-width: 920px;
  margin: 0 auto 48px;
  text-align: center;
}

.solution__title {
  margin: 0 0 18px;
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 750;
  line-height: 1.35;
  letter-spacing: 0.02em;
  color: #0f172a;
}

.solution__lead {
  margin: 0;
  font-size: 15px;
  line-height: 1.85;
  color: #475569;
}

.solution__flow {
  display: grid;
  grid-template-columns: 1fr 36px 1fr 36px 1fr;
  gap: 18px;
  align-items: stretch;
  margin-bottom: 25px;
}

.solution__card {
  position: relative;
  padding: 20px 20px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid #d9e6f3;
  border-radius: 24px;
  box-shadow: 0 14px 30px rgba(15, 63, 117, 0.06);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.solution__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(15, 63, 117, 0.12);
  border-color: #b2d0f0;
}

.solution__card--accent {
  background: linear-gradient(180deg, #f3f8ff 0%, #eef5ff 100%);
  border-color: #bfd8f3;
  box-shadow: 0 18px 34px rgba(15, 63, 117, 0.10);
}

.solution__card--accent:hover {
  border-color: #9cbde2;
}

.solution__step {
  display: flex;
  width: fit-content;
  margin-right: auto;
  align-items: center;
  min-height: 32px;
  padding: 0 14px;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.12em;
  color: #0f3f75;
  background: #eaf3ff;
  border: 1px solid #c9dff7;
  border-radius: 999px;
}

.solution__iconWrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  margin-bottom: 18px;
}

.solution__iconImage {
  display: block;
  max-width: 100%;
  max-height: 210px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.solution__cardTitle {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.4;
  color: #0f172a;
}

.solution__cardText {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.85;
  color: #475569;
}

.solution__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.solution__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  color: #0f3f75;
  background: #ffffff;
  border: 1px solid #d7e6f7;
  border-radius: 999px;
  box-shadow: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.solution__tag:hover {
  background: #f4f8fd;
  border-color: #b9d7f7;
}

.solution__arrow {
  position: relative;
  align-self: center;
  width: 100%;
  height: 2px;
  background: #8fb8e4;
}

.solution__arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 10px;
  height: 10px;
  border-top: 2px solid #8fb8e4;
  border-right: 2px solid #8fb8e4;
  transform: translateY(-50%) rotate(45deg);
}

.solution__summary {
  padding: 24px 26px;
  background: linear-gradient(135deg, #207994 0%, #31a4c7 100%);
  border-radius: 24px;
  box-shadow: 0 22px 44px rgba(15, 63, 117, 0.16);
}

.solution__summaryText {
  margin: 0;
  text-align: center;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800;
  line-height: 1.65;
  color: #ffffff;
  letter-spacing: 0.02em;
}

/* Tablet (Solution) */
@media screen and (max-width: 991px) {
  #solution.solution {
    padding: 72px 20px;
  }

  .solution__flow {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .solution__arrow {
    display: none;
  }
}

/* SP (Solution) */
@media screen and (max-width: 767px) {
  #solution.solution {
    padding: 56px 16px;
  }

  .solution__head {
    margin-bottom: 28px;
    text-align: left;
  }

  .solution__title {
    margin-bottom: 14px;
    line-height: 1.45;
  }

  .solution__lead {
    font-size: 14px;
    line-height: 1.85;
  }

  .solution__flow {
    margin-bottom: 22px;
  }

  .solution__card {
    padding: 24px 20px 24px;
    border-radius: 20px;
    text-align: center;
  }

  .solution__step {
    margin-bottom: 14px;
    font-size: 11px;
  }

  .solution__iconWrap {
    min-height: 150px;
    margin-bottom: 16px;
    justify-content: center;
  }

  .solution__iconImage {
    max-height: 135px;
  }

  .solution__cardTitle {
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 1.45;
  }

  .solution__cardText {
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 1.8;
  }

  .solution__tags {
    justify-content: center;
    gap: 8px;
  }

  .solution__tag {
    min-height: 34px;
    padding: 0 12px;
    font-size: 12px;
  }

  .solution__summary {
    padding: 20px 16px;
    border-radius: 18px;
  }

  .solution__summaryText {
    text-align: left;
    font-size: 18px;
    line-height: 1.7;
  }
}

/* =========================
   SIMULATOR
========================= */
.simulator {
  position: relative;
  overflow: hidden;
  padding: 80px 20px;
  background: #ffffff;
}

.simulator__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.simulator__head {
  text-align: center;
  margin-bottom: 48px;
}

.simulator__title {
  margin: 0;
  color: #0f172a;
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 750;
  line-height: 1.45;
}

.simulator__lead {
  max-width: 760px;
  margin: 20px auto 0;
  color: #64748b;
  font-size: 16px;
  line-height: 1.9;
}

.simulator__content {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items: stretch;
}

.simulator__form,
.simulator__result {
  padding: 32px;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(28, 91, 134, .1);
}

.simulator__form {
  display: grid;
  gap: 20px;
}

.simulator__field label {
  display: block;
  margin-bottom: 10px;
  color: #17253a;
  font-size: 15px;
  font-weight: 800;
}

.simulator__inputWrap {
  display: flex;
  align-items: center;
  border: 1px solid #d9e8f4;
  border-radius: 16px;
  background: #fbfdff;
  overflow: hidden;
}

.simulator__inputWrap input {
  width: 100%;
  padding: 16px 18px;
  border: none;
  outline: none;
  background: transparent;
  color: #07172b;
  font-size: 15px;
  font-weight: 600;
}

.simulator__inputWrap span {
  padding: 0 18px;
  color: #40566d;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.simulator__result {
  display: flex;
  flex-direction: column;
}

.simulator__resultTitle {
  margin: 0 0 10px;
  color: #2878a7;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .08em;
}

.simulator__resultMain {
  padding: 18px;
  margin-bottom: 20px;
  border-radius: 24px;
  background: linear-gradient(135deg, #2c86b3 0%, #2878a7 100%);
  color: #fff;
}

.simulator__resultMain span {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 800;
  opacity: .9;
}

.simulator__resultMain strong {
  display: block;
  font-size: clamp(34px, 5vw, 40px);
  font-weight: 700;
  line-height: 1.1;
}

.simulator__resultGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.simulator__resultItem {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 18px;
  background: #f4f9fc;
}

.simulator__resultItem span {
  color: #40566d;
  font-size: 14px;
  font-weight: 800;
}

.simulator__resultItem strong {
  color: #07172b;
  font-size: 22px;
  font-weight: 900;
  white-space: nowrap;
}

.simulator__note {
  margin: 20px 0 0;
  color: #6a7a8c;
  font-size: 12px;
  line-height: 1.7;
}

.simulator__cta {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-top: auto;
  padding: 16px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #207994 0%, #31a4c7 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  transition: transform .2s ease, opacity .2s ease;
}

.simulator__cta:hover {
  transform: translateY(-2px);
  opacity: .9;
}

@media (max-width: 768px) {
  .simulator {
    padding: 72px 16px;
  }

  .simulator__content {
    grid-template-columns: 1fr;
  }

  .simulator__form,
  .simulator__result {
    padding: 24px;
    border-radius: 22px;
  }

  .simulator__resultMain {
    padding: 24px;
  }

  .simulator__resultItem {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
}

/* =========================
   COMPARISON
========================= */
#comparison {
  position: relative;
  overflow: hidden;
  padding: 80px 20px;
  background:
    radial-gradient(circle at top right,
      rgba(40, 120, 167, 0.08),
      transparent 35%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.comparison__inner {
  max-width: 1180px;
  margin: 0 auto;
}

.comparison__head {
  text-align: center;
  margin-bottom: 48px;
}

.comparison__title {
  font-size: clamp(22px, 2.8vw, 32px);
  line-height: 1.35;
  font-weight: 750;
  color: #0f172a;
  margin-bottom: 18px;
}

.comparison__lead {
  font-size: 16px;
  line-height: 1.9;
  color: #64748b;
}

.comparison__image {
  overflow: hidden;
}

.comparison__image img {
  display: block;
  width: 95%;
  height: auto;
  margin: 0 auto;
}

/* SP (Comparison) */
@media (max-width: 768px) {
  #comparison {
    padding: 70px 16px;
  }

  .comparison__head {
    text-align: left;
    margin-bottom: 30px;
  }

  .comparison__lead br {
    display: none;
  }
}

/* =========================
   CASE
========================= */
.cases {
  position: relative;
  overflow: hidden;
  padding: 80px 20px;
  background: #ffffff;
}

.cases__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.cases__head {
  text-align: center;
  margin-bottom: 48px;
}

.cases__title {
  margin: 0 0 16px;
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 750;
  line-height: 1.35;
  color: #0f172a;
}

.cases__lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  color: #475569;
}

.cases__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.caseCard {
  background: #fff;
  border: 1px solid #d9e6f3;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 14px 30px rgba(15, 63, 117, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.caseCard:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(15, 63, 117, 0.12);
  border-color: #b2d0f0;
}

.caseCard__top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.caseCard__num {
  padding: 6px 14px;
  border-radius: 999px;
  background: #eaf3ff;
  color: #147592;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.caseCard__lossTags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.caseCard__lossTags span {
  padding: 5px 12px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #d7e6f7;
  color: #0f3f75;
  font-size: 11px;
  font-weight: 800;
  box-shadow: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.caseCard__lossTags span:hover {
  background: #f4f8fd;
  border-color: #b9d7f7;
}

.caseCard__title {
  min-height: 50px;
  font-size: 21px;
  line-height: 1.4;
  color: #0f172a;
  font-weight: 800;
  margin: 0 0 16px;
}

.caseCard__compare {
  display: grid;
  grid-template-columns: 1fr 42px 1fr;
  align-items: stretch;
  gap: 12px;
  margin-bottom: 22px;
}

.caseCard__side {
  min-height: 150px;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
}

.caseCard__side--before {
  background: #f8fafc;
}

.caseCard__side--after {
  background: linear-gradient(180deg, #f4f8fd 0%, #eef5ff 100%);
  border-color: #cfe2f7;
}

.caseCard__label {
  display: inline-block;
  margin-bottom: 12px;
  color: #64748b;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
}

.caseCard__label--after {
  color: #147592;
}

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

.caseCard__side li {
  position: relative;
  padding-left: 16px;
  color: #334155;
  font-size: 14px;
  line-height: 1.6;
}

.caseCard__side li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .75em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #94a3b8;
}

.caseCard__side--after li::before {
  background: #147592;
}

.caseCard__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #147592;
  font-size: 26px;
  font-weight: 900;
}

.caseCard__result {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  border-radius: 20px;
  background: linear-gradient(135deg, #147592 0%, #207994 100%);
  color: #fff;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(20, 117, 146, 0.15);
}

.caseCard__result strong {
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.03em;
}

.caseCard__result strong span {
  font-size: 20px;
  font-weight: 700;
  margin-left: 2px;
}

.caseCard__result p {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.5;
}

/* SP (Case) */
@media (max-width: 768px) {
  .cases {
    padding: 72px 18px;
  }

  .cases__grid {
    grid-template-columns: 1fr;
  }

  .caseCard {
    padding: 22px;
    border-radius: 22px;
  }

  .caseCard__top {
    flex-direction: column;
    margin-bottom: 18px;
  }

  .caseCard__lossTags {
    justify-content: flex-start;
  }

  .caseCard__title {
    min-height: auto;
    font-size: 20px;
  }

  .caseCard__compare {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .caseCard__side {
    min-height: auto;
  }

  .caseCard__arrow {
    transform: rotate(90deg);
    height: 28px;
  }

  .caseCard__result strong {
    font-size: 32px;
  }
}

/* =========================
   FEATURES
========================= */
#features.features {
  position: relative;
  overflow: hidden;
  padding: 80px 20px;
  background: #f8fafc;
}

.features__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.features__head {
  max-width: 920px;
  margin: 0 auto 48px;
  text-align: center;
}

.features__title {
  margin: 0 0 18px;
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 750;
  line-height: 1.35;
  letter-spacing: 0.02em;
  color: #0f172a;
}

.features__lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  color: #475569;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 32px;
}

.features__card {
  position: relative;
  height: 100%;
  min-height: 300px;
  padding: 40px 24px 0px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid #d9e6f3;
  border-radius: 24px;
  box-shadow: 0 14px 30px rgba(15, 63, 117, 0.06);
  display: flex;
  flex-direction: column;
}

.features__bgNumber {
  position: absolute;
  top: 5px;
  left: 0px;
  z-index: 0;
  font-size: 96px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.06em;
  color: rgba(49, 164, 199, 0.082);
  pointer-events: none;
  user-select: none;
}

.features__cardContent {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.features__cardTitle {
  margin: 0 0 14px;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.45;
  color: #0f172a;
  text-align: center;
}

.features__cardText {
  font-size: 15px;
  line-height: 1.85;
  color: #475569;
}

.features__impact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  color: #0f3f75;
  background: #eef5ff;
  border: 1px solid #d6e5f8;
  border-radius: 999px;
  margin-top: auto;
  align-self: flex-start;
  margin-bottom: 30px;
}

/* Tablet (Features) */
@media screen and (max-width: 991px) {
  #features.features {
    padding: 72px 20px;
  }

  .features__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .features__card {
    padding: 24px 20px 22px;
  }
}

/* SP (Features) */
@media screen and (max-width: 767px) {
  #features.features {
    padding: 56px 16px;
  }

  .features__head {
    margin-bottom: 28px;
    text-align: left;
  }

  .features__title {
    margin-bottom: 14px;
    line-height: 1.45;
  }

  .features__lead {
    font-size: 14px;
    line-height: 1.85;
  }

  .features__grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 22px;
  }

  .features__card {
    min-height: auto;
    padding: 22px 18px 24px;
    border-radius: 18px;
  }

  .features__bgNumber {
    font-size: 84px;
    top: -18px;
    left: -6px;
  }

  .features__cardTitle {
    margin-bottom: 10px;
    font-size: 20px;
  }

  .features__cardText {
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 1.8;
  }

  .features__impact {
    min-height: 34px;
    padding: 0 12px;
    font-size: 12px;
  }
}

/* =========================
   PRICE
========================= */
#price.price {
  position: relative;
  overflow: hidden;
  padding: 80px 20px;
  background: #ffffff;
}

.price__inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.price__head {
  text-align: center;
  margin-bottom: 48px;
}

.price__title {
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 750;
  color: #0f172a;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.price__lead {
  margin: 18px 0 0;
  font-size: 16px;
  line-height: 1.9;
  color: #64748b;
}

.price__body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  max-width: 960px;
  margin: 0 auto 36px;
}

.price__main-card {
  display: contents;
}

/* 価格カード */
.price-card {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: 24px;
  padding: 36px 40px;
  text-align: center;
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.18);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.price-card__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #19b3c7;
  margin-bottom: 20px;
}

.price-card__price {
  margin-bottom: 14px;
}

.price-card__amount {
  display: block;
  font-size: 32px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.price-card__unit {
  font-size: 16px;
  font-weight: 700;
  color: #94a3b8;
}

.price-card__note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 10px;
}

.price__cta {
  margin-top: 40px;
  text-align: center;
}

.price__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 36px;
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(135deg, #207994 0%, #31a4c7 100%);
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(32, 121, 148, 0.28);
  transition: transform 0.25s, box-shadow 0.25s;
}

.price__cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(32, 121, 148, 0.36);
}

/* 詳細 */
.price__details {
  display: contents;
}

.price__col {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.02);
}

.price__col-title {
  font-size: 14px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #19b3c7;
}

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

.price__list li {
  font-size: 14px;
  line-height: 1.7;
  color: #475569;
  padding: 6px 0;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  gap: 8px;
}

.price__list li:last-child {
  border-bottom: none;
}

.price__list li::before {
  content: '✓';
  font-weight: 700;
  color: #19b3c7;
  flex-shrink: 0;
}

.price__list--prep li::before {
  content: '□';
  color: #94a3b8;
}

/* Tablet & SP responsive for Price */
@media screen and (max-width: 991px) {
  .price__body {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media screen and (max-width: 767px) {
  #price.price {
    padding: 60px 0;
  }

  .price__cta-btn {
    width: 100%;
  }
}

/* =========================
   PRICE DETAIL PAGE
========================= */
#priceDetail::before {
  content: "PRICE";
}

#priceConfirm::before {
  content: "CHECK";
}

#priceDetail::before,
#priceConfirm::before {
  position: absolute;
  top: 42px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(40, 120, 167, 0.045);
  font-size: clamp(72px, 12vw, 150px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.08em;
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
}

.priceDetail__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: #2878a7;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  justify-content: center;
  width: 100%;
}

.priceDetail__eyebrow::before,
.priceDetail__eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: rgba(40, 120, 167, 0.35);
}

.priceDetail {
  position: relative;
  overflow: hidden;
  padding: 80px 20px;
  background:
    radial-gradient(circle at top right, rgba(40, 120, 167, 0.08), transparent 35%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.priceDetail__inner {
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.priceDetail__head {
  max-width: 800px;
  margin: 0 auto 48px;
  text-align: center;
}

.priceDetail__title {
  margin: 0 0 16px;
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 750;
  line-height: 1.3;
  color: #0f172a;
}

.priceDetail__lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  color: #475569;
}

/* メインバナー（料金と含まれるものの統合） */
.priceDetail__banner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.18);
  margin-bottom: 56px;
  position: relative;
  overflow: hidden;
}

.priceDetail__banner::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(25, 179, 199, 0.05);
  pointer-events: none;
}

.priceDetail__banner-price {
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  padding-right: 40px;
}

.priceDetail__banner-label {
  font-size: 14px;
  font-weight: 800;
  color: #19b3c7;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.priceDetail__banner-amount {
  font-size: clamp(40px, 4.5vw, 60px);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
}

.priceDetail__banner-amount span {
  font-size: clamp(64px, 7vw, 96px);
  letter-spacing: -0.04em;
}

.priceDetail__banner-amount small {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #94a3b8;
  margin-top: 8px;
}

.priceDetail__banner-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 10px;
}

.priceDetail__banner-includes {
  padding-left: 10px;
}

.priceDetail__banner-includes h3 {
  font-size: 20px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 16px;
}

.priceDetail__banner-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
}

.priceDetail__banner-list li {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.88);
  display: flex;
  align-items: center;
  gap: 8px;
}

.priceDetail__banner-list li::before {
  content: '✓';
  font-weight: 900;
  color: #19b3c7;
}

/* タイムラインセクション */
.priceDetail__confirm {
  position: relative;
  overflow: hidden;
  padding: 44px 0 34px;
  margin-bottom: 48px;
}

.priceDetail__timeline {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  padding: 20px 0 20px 54px;
}

.priceDetail__timeline::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 32px;
  bottom: 32px;
  width: 2px;
  background: linear-gradient(180deg, #19b3c7, #3b82f6);
}

.priceDetail__timeline-item {
  position: relative;
  margin-bottom: 44px;
  transition: transform 0.35s ease;
}

.priceDetail__timeline-item:last-child {
  margin-bottom: 0;
}

.priceDetail__timeline-badge {
  position: absolute;
  left: -54px;
  top: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #207994 0%, #31a4c7 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 6px 14px rgba(32, 121, 148, 0.22);
  z-index: 2;
  border: 4px solid #ffffff;
}

.priceDetail__timeline-content {
  padding-left: 10px;
}

.priceDetail__timeline-content h3 {
  font-size: 19px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 10px;
}

.priceDetail__timeline-content p {
  font-size: 15px;
  line-height: 1.85;
  color: #475569;
  margin: 0;
}

/* フラットリストセクション */
.priceDetail__listGroup {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.priceDetail__listCol h2 {
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid #19b3c7;
}

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

.priceDetail__flatList li {
  font-size: 14.5px;
  line-height: 1.7;
  color: #475569;
  padding: 10px 0;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  gap: 8px;
}

.priceDetail__flatList li:last-child {
  border-bottom: none;
}

.priceDetail__flatList li::before {
  content: '✓';
  font-weight: 700;
  color: #19b3c7;
  flex-shrink: 0;
}

.priceDetail__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 40px;
  background: linear-gradient(135deg, #207994 0%, #31a4c7 100%);
  border-radius: 24px;
  box-shadow: 0 22px 54px rgba(15, 63, 117, 0.2);
}

.priceDetail__cta p {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.7;
  color: #ffffff;
}

.priceDetail__cta a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  font-size: 15px;
  font-weight: 800;
  color: #0f3f75;
  text-decoration: none;
  background: #ffffff;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(8, 23, 46, 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.priceDetail__cta a:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(8, 23, 46, 0.22);
}

/* メディアクエリのレスポンシブ化 */
@media (max-width: 900px) {
  .priceDetail__banner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 36px;
  }

  .priceDetail__banner-price {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding-right: 0;
    padding-bottom: 28px;
  }

  .priceDetail__banner-includes {
    padding-left: 0;
  }

  .priceDetail__listGroup {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .priceDetail__cta {
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }
}

@media (max-width: 640px) {
  .priceDetail {
    padding: 72px 16px;
  }

  .priceDetail__banner {
    padding: 28px 20px;
    border-radius: 20px;
  }

  .priceDetail__banner-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .priceDetail__timeline {
    padding-left: 36px;
  }

  .priceDetail__timeline::before {
    left: 14px;
  }

  .priceDetail__timeline-badge {
    left: -38px;
    width: 30px;
    height: 30px;
    font-size: 11px;
    border-width: 2px;
  }

  .priceDetail__timeline-content h3 {
    font-size: 17px;
  }

  .priceDetail__timeline-content p {
    font-size: 14px;
  }
}

/* =========================
   FAQ
========================= */
#faq.faq {
  position: relative;
  overflow: hidden;
  padding: 80px 20px;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.faq__inner {
  max-width: 960px;
  margin: 0 auto;
}

.faq__head {
  max-width: 820px;
  margin: 0 auto 48px;
  text-align: center;
}

.faq__title {
  margin: 0 0 18px;
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 750;
  line-height: 1.3;
  letter-spacing: 0.02em;
  color: #0f172a;
}

.faq__lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  color: #475569;
}

.faq__list {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

.faq__item {
  background: #ffffff;
  border: 1px solid #d9e6f3;
  border-radius: 22px;
  box-shadow: 0 12px 28px rgba(15, 63, 117, 0.05);
  overflow: hidden;
}

.faq__item[open] {
  box-shadow: 0 16px 32px rgba(15, 63, 117, 0.08);
}

.faq__question {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 22px 24px;
  cursor: pointer;
  list-style: none;
}

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

.faq__q {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  padding: 0 10px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  color: #2878a7;
  background: #eef6fb;
  border: 1px solid #d6eaf3;
  border-radius: 10px;
  box-shadow: none;
}

.faq__questionText {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.5;
  color: #0f172a;
}

.faq__icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background: #0f3f75;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq__item[open] .faq__icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0.6);
}

.faq__answer {
  padding: 0 24px 22px 84px;
}

.faq__answer p {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
  color: #475569;
}

.faq__footer {
  padding: 26px 24px;
  text-align: center;
  background: linear-gradient(135deg, #207994 0%, #31a4c7 100%);
  border-radius: 24px;
  box-shadow: 0 22px 44px rgba(15, 63, 117, 0.16);
}

.faq__footerText {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
  color: #ffffff;
}

.faq__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 52px;
  padding: 0 22px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  color: #0f3f75;
  text-decoration: none;
  background: #ffffff;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(8, 23, 46, 0.16);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.faq__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(8, 23, 46, 0.2);
}

/* Tablet (FAQ) */
@media screen and (max-width: 991px) {
  #faq.faq {
    padding: 72px 20px;
  }

  .faq__question {
    padding: 20px 20px;
  }

  .faq__answer {
    padding: 0 20px 20px 76px;
  }
}

/* SP (FAQ) */
@media screen and (max-width: 767px) {
  #faq.faq {
    padding: 56px 16px;
  }

  .faq__head {
    margin-bottom: 28px;
    text-align: left;
  }

  .faq__title {
    margin-bottom: 14px;
    line-height: 1.45;
  }

  .faq__lead {
    font-size: 14px;
    line-height: 1.85;
  }

  .faq__list {
    gap: 12px;
    margin-bottom: 20px;
  }

  .faq__item {
    border-radius: 18px;
  }

  .faq__question {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    padding: 16px 16px;
  }

  .faq__q {
    min-width: 38px;
    height: 38px;
    font-size: 12px;
    border-radius: 12px;
  }

  .faq__questionText {
    font-size: 16px;
    line-height: 1.6;
  }

  .faq__icon {
    width: 18px;
    height: 18px;
  }

  .faq__answer {
    padding: 0 16px 16px 16px;
  }

  .faq__answer p {
    font-size: 14px;
    line-height: 1.85;
  }

  .faq__footer {
    padding: 20px 16px;
    border-radius: 18px;
    text-align: left;
  }

  .faq__footerText {
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 1.8;
  }

  .faq__cta {
    width: 100%;
    min-width: auto;
    min-height: 48px;
    font-size: 14px;
  }
}

/* =========================
   FLOW
========================= */
#flow.flow {
  position: relative;
  padding: 70px 20px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(49, 164, 199, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f3f8ff 100%);
}

.flow__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.flow__head {
  max-width: 820px;
  margin: 0 auto 48px;
  text-align: center;
}

.flow__title {
  margin: 0 0 18px;
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 750;
  line-height: 1.3;
  letter-spacing: 0.02em;
  color: #0f172a;
}

.flow__lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  color: #475569;
}

.flow__timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.flow__timeline::before {
  content: "";
  position: absolute;
  top: 42px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #8abce8, transparent);
  z-index: 0;
}

.flow__step {
  position: relative;
  z-index: 1;
  padding: 26px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid #d9e6f3;
  border-radius: 28px;
  box-shadow: 0 20px 44px rgba(15, 63, 117, 0.08);
  backdrop-filter: blur(10px);
}

.flow__step::after {
  content: "";
  position: absolute;
  left: -40px;
  top: -40px;
  width: 160px;
  height: 160px;
  background: rgba(49, 164, 199, 0.08);
  border-radius: 50%;
}

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

.flow__label {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.1em;
  color: var(--primary-color);
}

.flow__body h3 {
  margin: 0 0 14px;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.45;
  color: #0f172a;
}

.flow__body p:not(.flow__label) {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
  color: #475569;
}

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

  .flow__timeline::before {
    display: none;
  }
}

@media (max-width: 640px) {
  #flow.flow {
    padding: 72px 16px;
  }

  .flow__head {
    margin-bottom: 36px;
  }

  .flow__step {
    min-height: auto;
    padding: 24px 22px;
    border-radius: 24px;
  }
}