/* ===== Base ===== */
:root {
  --container: 1100px; /* メインサイズ */
  --bg-max: 1920px; /* 最大背景サイズ */
  --font-mincho: "Zen Old Mincho", serif;
  --font-gothic: "Zen Kaku Gothic New", sans-serif;

  --text: #111;
  --bg: #fff;
  --btn: #ff2f55;
}

* {
  box-sizing: border-box;
}
html { font-size: 18px; }
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-size: 1rem;
  font-family: var(--font-gothic);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
}

/* ===== Layout helpers ===== */
.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

/* ===== KV ===== */
.kv {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.kv__bg {
  position: absolute;
  inset: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--bg-max);
  background: url("images/background_kv.svg") center / cover no-repeat;
  z-index: 0;
}

.kv__inner {
  position: relative;
  z-index: 1;
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 60px;
  text-align: left;
  padding-left: 150px;  /* 0→40pxなどに */
  padding-right: 150px; /* 左右バランス維持 */
}

.kv__logo img {
  height: 36px;
  width: auto;
  display: inline-block;
}

.kv__title {
  font-family: var(--font-mincho);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.02em;
  margin: 28px 0 18px;
  font-size: clamp(30px, 6.2vw, 66px);
  color: var(--text);
}

.kv__badges {
  display: grid;
  gap: 10px;
  justify-items: start;
  margin: 0 0 24px;
}

.kv__badge {
  display: inline-block;
  background: #111;
  color: #fff;
  padding: 8px 14px;
  font-family: var(--font-gothic);
  font-weight: 500;
  font-size: clamp(14px, 2.2vw, 22px);
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin: 0;
}

.kv__flow {
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 14px;
  flex-wrap: wrap;
  margin: 10px 0 28px;
  font-family: var(--font-gothic);
  color: var(--text);
}

.kv__flow-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.kv__flow-item--wide {
  align-items: flex-start;
}

.kv__flow-icon {
  width: 44px;
  height: auto;
  display: block;
}

.kv__flow-text {
  text-align: left;
  line-height: 1.2;
}

.kv__flow-text--wide {
  padding-top: 2px;
}

.kv__flow-label {
  font-weight: 700;
  font-size: 18px;
}

.kv__flow-sub {
  font-weight: 500;
  font-size: 16px;
  opacity: 0.95;
}

.kv__flow-label--sentence {
  font-weight: 700;
  font-size: 18px;
  white-space: nowrap;
}

.kv__flow-sub--sentence {
  font-size: 16px;
  white-space: nowrap;
}

.kv__arrow {
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  margin: 0 2px;
}

.kv__cta {
  width: min(620px, 100%);
  margin: 50px auto;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 10px;
  padding: 18px 18px 20px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.kv__cta-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 14px;
}

.kv__pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  background: #111;
  color: #fff;
  border-radius: 999px;
  font-family: var(--font-gothic);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
}

.kv__cta-copy {
  font-family: var(--font-gothic);
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
}

.kv__btn {
  display: flex;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: min(440px, 92%);
  height: 70px;
  border-radius: 999px;
  background: var(--btn);
  color: #fff;
  text-decoration: none;
  font-family: var(--font-gothic);
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 10px 18px rgba(255, 47, 85, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
  font-size: 1.5rem;
}
.kv__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 22px rgba(255, 47, 85, 0.28);
}
.kv__btn:active {
  transform: translateY(0);
  opacity: 0.9;
}

.kv__btn-chevron {
  font-size: 22px;
  line-height: 1;
  transform: translateY(-1px);
}

/* 赤いCTAボタン：斜めに光が走る */
.kv__btn{
  position: relative;
  overflow: hidden;            /* 光をボタン内に収める */
  isolation: isolate;          /* 疑似要素の重なりを安定させる */
}

/* 光 */
.kv__btn::after{
  content: "";
  position: absolute;
  inset: -60% -40%;            /* はみ出す大きさ（斜めでも切れないように） */
  pointer-events: none;
  z-index: 0;

  /* 斜めのハイライト帯 */
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 35%,
    rgba(255,255,255,0.55) 50%,
    rgba(255,255,255,0) 65%
  );

  transform: translateX(-140%) rotate(0deg);
  opacity: 0;
}

/* 中身（テキストやアイコン）を光より前面に */
.kv__btn > *{
  position: relative;
  z-index: 1;
}

/* hover / focus で光が左→右へ走る */
.kv__btn:hover::after,
.kv__btn:focus-visible::after{
  opacity: 1;
  animation: btnShine 0.9s ease-out;
}

@keyframes btnShine{
  0%   { transform: translateX(-140%) rotate(0deg); opacity: 0; }
  10%  { opacity: 1; }
  100% { transform: translateX(140%)  rotate(0deg); opacity: 0; }
}

/* 動きを減らす設定の人向け */
@media (prefers-reduced-motion: reduce){
  .kv__btn:hover::after,
  .kv__btn:focus-visible::after{
    animation: none;
    opacity: 0;
  }
}


/* ===== KV 丸画像（背景装飾） ===== */

/* 波背景(kv__bg)より上、文字(kv__inner)より下にしたいのでレイヤー調整 */
.kv__inner {
  z-index: 2; /* ← 1 から 2 に変更（上書きでOK） */
}

/* 丸画像のレイヤー */
.kv__circles {
  position: absolute;
  inset: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--bg-max); /* 1920px */
  z-index: 1; /* bg(0) と inner(2) の間 */
  pointer-events: none;
}

/* 共通（もしPNGが円抜きでなくても円になる） */
.kv__circle {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  display: block;
  object-fit: cover;
  /* ふんわり馴染ませたい場合は下記をON
  box-shadow: 0 10px 26px rgba(0,0,0,0.12);
  */
}

/* 左（青エリア左側） */
.kv__circle--left {
  width: clamp(160px, 20vw, 280px);
  aspect-ratio: 1 / 1;
  left: clamp(5px, 2vw, 50px);
  top: 80%;
  transform: translateY(-50%);
}

/* 右上（上部の白〜青境目あたり） */
.kv__circle--rightUp {
  width: clamp(170px, 17vw, 310px);
  aspect-ratio: 1 / 1;
  right: clamp(15px, 40vw, 170px);
  top: 0%;
}

/* 右下（青エリア右側） */
.kv__circle--rightDown {
  width: clamp(170px, 20vw, 310px);
  aspect-ratio: 1 / 1;
  right: clamp(16px, 1vw, 260px);
  top: 28%;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  /* スマホは邪魔になりやすいので少し控えめに（必要なら非表示も可） */
  .kv__circle--left {
    width: 170px;
    left: -50px;
    top: 82%;
  }
  .kv__circle--rightUp {
    width: 180px;
    right: -40px;
    top: -2%;
  }
  .kv__circle--rightDown {
    width: 200px;
    right: -90px;
    top: 52%;
  }
}

/* ===== Section 01 : Worries ===== */
.sec01 {
  position: relative;
  overflow: hidden;
  background: #fff;
  padding: 20px 0 90px;
}

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

/* 見出し：60px指定 */
.sec01__heading {
  margin: 0 0 80px;
  text-align: center;
  font-family: var(--font-mincho);
  font-weight: 700;
  font-size: 60px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: var(--text);
}

/* 上段：画像＋箇条書き */
.sec01__worries {
  display: grid;
  grid-template-columns: 520px 1fr;
  gap: 30px;
  align-items: start;
  margin-bottom: 120px;
}

.sec01__visual img {
  width: 100%;
  height: auto;
  display: block;
}

.sec01__list {
  margin: 12px 0 0;
  padding-left: 18px;
  font-family: var(--font-gothic);
  font-size: 1rem;
  line-height: 2.1;
}

.sec01__list li {
  margin: 0 0 10px;
}

/* 中央の大見出し */
.sec01__lead {
  margin: 0 0 80px;
  text-align: center;
  font-family: var(--font-mincho);
  font-weight: 700;
  font-size: 60px;
  line-height: 1.35;
  letter-spacing: 0.02em;
}

/* タイムライン（左の線＋ドット） */
.sec01__timeline {
  position: relative;
  list-style: none;
  margin: 0 auto 60px;
  padding: 0 0 0 44px;
  width: min(820px, 100%);
}

/* 縦線 */
.sec01__timeline::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: #2f8cff;
  opacity: 0.65;
}

.sec01__tItem {
  position: relative;
  padding: 10px 0 18px;
}

.sec01__tItem::before {
  content: "";
  position: absolute;
  left: -38px;
  top: 22px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #2f8cff;
}

/* 見出し（下線が入っている感じ） */
.sec01__tTitle {
  font-family: var(--font-mincho);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.25);
}

.sec01__tText {
  margin: 10px 0 0;
  font-family: var(--font-gothic);
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(17, 17, 17, 0.85);
}

/* 背景装飾（SVG） */
.sec01__bg {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: contain;
}

.sec01__bg--leftUp {
  left: -40px;
  top: 1400px;
  width: 420px;
  height: 420px;
  background-image: url("images/background_left_up.svg");
}

.sec01__bg--rightUp {
  right: -80px;
  top: 610px;
  width: 520px;
  height: 520px;
  background-image: url("images/background_right_up.svg");
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .sec01__worries {
    grid-template-columns: 1fr;
    gap: 24px;
    justify-items: center;
    margin-bottom: 70px;
  }

  .sec01__heading {
    font-size: 42px; /* スマホは崩れやすいので落とす */
  }

  .sec01__lead {
    font-size: 34px;
  }

  .sec01__list {
    width: min(760px, 100%);
    padding: 0 40px;
  }
}

@media (max-width: 768px) {
  .sec01 {
    padding: 20px 0 0;
  }

  .sec01__heading {
    font-size: 34px;
    margin-bottom: 26px;
  }

  .sec01__lead {
    font-size: 34px;
    margin: 0 0 50px;
  }

  .sec01__timeline {
    padding-left: 36px;
  }

  .sec01__timeline::before {
    left: 10px;
  }

  .sec01__tItem::before {
    left: -30px;
  }

  .sec01__bg--leftUp,
  .sec01__bg--rightUp {
    opacity: 0.5;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .sec01__worries { grid-template-columns: 420px 1fr; }
}

/* ===== Section 02 : Sets ===== */
.sec02 {
  background: #fff;
  padding: 40px 0 90px;
}

.sec02__inner {
  position: relative;
}

.sec02__heading {
  margin: 0 0 44px;
  text-align: center;
  font-family: var(--font-mincho);
  font-weight: 700;
  font-size: 60px; /* 指定 */
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: var(--text);
}

/* ブロック間の薄い帯（画像の雰囲気に近づける） */
.sec02__block {
  background: #f2f2f2;
  padding: 32px 0;
}

.sec02__block + .sec02__block {
  margin-top: 18px;
}

.sec02__card {
  width: min(900px, 100%);
  margin: 0 auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
  padding: 18px 18px 16px;
}

/* 上の見出し帯 */
.sec02__head {
  display: grid;
  grid-template-columns: 290px 1fr;
  align-items: center;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.sec02__tag {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 23px 16px;
  color: #fff;
  font-family: var(--font-gothic);
  font-weight: 700;
}

.sec02__tagMain {
  font-size: 24px;
  letter-spacing: 0.02em;
}

.sec02__tagSub {
  font-size: 18px;
  font-weight: 700;
  opacity: 0.95;
}

.sec02__tag--a {
  background: #2fb86a; /* グリーン */
}

.sec02__tag--b {
  background: #3aa0ff; /* ブルー */
}

.sec02__tag--c {
  background: #0b3f78; /* ネイビー */
}

.sec02__headTitle {
  padding: 8px 18px;
  font-family: var(--font-mincho);
  font-weight: 700;
  font-size: 36px;
  letter-spacing: 0.02em;
}

/* 説明文 */
.sec02__desc {
  margin: 14px 6px 14px;
  font-family: var(--font-gothic);
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(17, 17, 17, 0.9);
}

/* フロー */
.sec02__flow {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #f7f7f7;
  border-radius: 6px;
  padding: 14px 16px;
  margin: 10px 0 14px;
  font-size: 16px;
}

.sec02__flowItem {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.sec02__flowIcon {
  width: 34px;
  height: auto;
  display: block;
}

.sec02__flowText {
  line-height: 1.2;
  min-width: 0;
}

.sec02__flowLabel {
  font-family: var(--font-mincho);
  font-weight: 700;
  font-size: 1rem;
}

.sec02__flowSub {
  font-family: var(--font-gothic);
  font-weight: 500;
  font-size: 16px;
  color: rgba(17, 17, 17, 0.85);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 340px;
}

.sec02__arrow {
  font-size: 26px;
  line-height: 1;
  color: rgba(17, 17, 17, 0.35);
  transform: translateY(-1px);
}

/* 下の2カラム */
.sec02__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 12px;
}

.sec02__box {
  background: #f7f7f7;
  border-radius: 6px;
  padding: 12px 14px 12px;
}

.sec02__boxHead {
  display: inline-block;
  background: #111;
  color: #fff;
  border-radius: 3px;
  padding: 6px 10px;
  font-family: var(--font-gothic);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}

.sec02__bullets {
  margin: 0;
  padding-left: 18px;
  font-family: var(--font-gothic);
  font-size: 1rem;
  line-height: 2;
  color: rgba(17, 17, 17, 0.9);
}

.sec02__bullets li {
  margin: 0 0 6px;
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .sec02__card {
    width: min(960px, 93%);
    margin: 0 14px;
  }

  .sec02__head {
    grid-template-columns: 220px 1fr;
  }
}

@media (max-width: 768px) {
  .sec02 {
    padding: 20px 0 70px;
  }

  .sec02__heading {
    font-size: 34px; /* スマホは読みやすさ優先（必要なら60固定にもできます） */
    margin-bottom: 28px;
  }

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

  .sec02__headTitle {
    font-size: 24px;
  }

  .sec02__flow {
    flex-wrap: wrap;
    gap: 10px;
  }

  .sec02__flowSub {
    max-width: 100%;
    white-space: normal;
  }

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

  /* 図：横並び → 縦並び */
  .sec02__flow {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    justify-items: start; /* 左揃え */
    align-items: start;
  }

  /* グレー矢印はスマホでは非表示 */
  .sec02__arrow {
    display: none;
  }

  /* 1行（アイコン＋テキスト）を整える */
  .sec02__flowItem {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 12px;
    align-items: center;
  }

  /* アイコンサイズ（必要なら） */
  .sec02__flowIcon {
    width: 44px;
    height: auto;
  }

  /* 長文で折り返すため（nowrapが入っていた場合の保険） */
  .sec02__flowLabel,
  .sec02__flowSub {
    white-space: normal;
  }
}


/* ===== CTA Section ===== */
.cta {
  position: relative;
  overflow: hidden;
  padding: 90px 0 90px;
  color: #fff;
  background: linear-gradient(90deg, #17e2d9 0%, #39b6ff 55%, #55a7ff 100%);
}

.cta__inner {
  text-align: center;
}

.cta__heading {
  margin: 0 0 22px;
  font-family: var(--font-mincho);
  font-weight: 700;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.35;
  letter-spacing: 0.02em;
}

.cta__text {
  margin: 0 auto 26px;
  width: min(920px, 100%);
  font-family: var(--font-gothic);
  font-weight: 700;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.02em;
  opacity: 0.95;
}

/* pill + copy */
.cta__head {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 6px 0 18px;
}

.cta__pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  background: #111;
  color: #fff;
  border-radius: 999px;
  font-family: var(--font-gothic);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
}

.cta__copy {
  font-family: var(--font-gothic);
  font-weight: 700;
  font-size: 22px;
  color: #111; /* 添付デザインに合わせて黒 */
}

/* button */
.cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: min(460px, 92%);
  height: 60px;
  margin: 0 auto;
  border-radius: 999px;
  background: var(--btn);
  color: #fff;
  text-decoration: none;
  font-family: var(--font-gothic);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.04em;
  box-shadow: 0 14px 26px rgba(255, 47, 85, 0.28);
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.cta__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 32px rgba(255, 47, 85, 0.32);
}

.cta__btn:active {
  transform: translateY(0);
  opacity: 0.92;
}

.cta__btn-chevron {
  font-size: 26px;
  line-height: 1;
  transform: translateY(-1px);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .cta {
    padding: 70px 0 70px;
  }

  .cta__copy {
    font-size: 18px;
  }

  .cta__text {
    font-size: 16px;
    line-height: 1.9;
  }

  .cta__head {
    gap: 10px;
    flex-wrap: wrap;
  }
}


/* ===== Section 03 : We can do + Process ===== */
.sec03 {
  position: relative;
  overflow: hidden;
  background: #fff;
  padding: 90px 0 90px;
}

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

/* 見出し（画像に合わせて大きめ） */
.sec03__heading {
  margin: 0 0 38px;
  text-align: center;
  font-family: var(--font-mincho);
  font-weight: 700;
  font-size: 60px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: var(--text);
}

.sec03__heading--mt {
  margin-top: 90px;
}

/* 背景装飾 */
.sec03__bg {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: contain;
}

.sec03__bg--left {
  left: 0px;
  top: 500px;
  width: 520px;
  height: 520px;
  background-image: url("images/background_left_dw.svg");
}

.sec03__bg--right {
  right: 0px;
  top: 810px;
  width: 560px;
  height: 560px;
  background-image: url("images/background_right_dw.svg");
}

/* 3カード */
.sec03__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  width: min(900px, 100%);
  margin: 0 auto 180px;
}

.sec03__card {
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 12px;
  padding: 18px 18px 16px;
}

.sec03__cardTitle {
  margin: 10px 0 30px;
  font-family: var(--font-mincho);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  text-align: center;
}

.sec03__thumb {
  border-radius: 8px;
  overflow: hidden;
  background: #eee;
  aspect-ratio: 16 / 9;
  margin-bottom: 30px;
}

.sec03__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sec03__cardText {
  margin: 0;
  font-family: var(--font-gothic);
  font-size: 1rem;
  line-height: 1.5rem;
  color: rgba(17, 17, 17, 0.88);
}

/* STEP */
.sec03__steps {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  width: min(820px, 100%);
  display: grid;
  gap: 14px;
}

.sec03__step {
  display: flex;
  align-items: stretch;
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.sec03__stepLabel {
  width: 120px;
  background: #20b26b;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-gothic);
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 22px;
}

.sec03__stepBody {
  flex: 1;
  padding: 16px 18px;
  display: grid;
  gap: 6px;
}

.sec03__stepTitle {
  font-family: var(--font-mincho);
  font-weight: 700;
  font-size: 26px;
  color: var(--text);
}

.sec03__stepText {
  font-family: var(--font-gothic);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(17, 17, 17, 0.85);
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .sec03__heading {
    font-size: 42px;
  }

  .sec03__cards {
    grid-template-columns: 1fr;
    width: min(560px, 100%);
    margin: 0 auto 80px;
  }

  .sec03__heading--mt {
    margin-top: 70px;
  }

  .sec03__bg--left,
  .sec03__bg--right {
    opacity: 0.55;
  }
}

@media (max-width: 768px) {
  .sec03 {
    padding: 70px 0 70px;
  }

  .sec03__heading {
    font-size: 34px;
    margin-bottom: 26px;
  }

  .sec03__stepLabel {
    width: 96px;
    font-size: 14px;
  }
}

/* ===== FAQ ===== */
.faq {
  background: #fff;
  padding: 90px 0 90px;
}

.faq__heading {
  margin: 0 0 36px;
  text-align: center;
  font-family: var(--font-mincho);
  font-weight: 700;
  font-size: 60px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: var(--text);
}

.faq__inner {
  width: min(980px, 100%);
  margin-inline: auto;
}

.faq__list {
  border-top: 1px solid rgba(17, 17, 17, 0.18);
}

.faq__item {
  border-bottom: 1px solid rgba(17, 17, 17, 0.18);
  padding: 0;
}

.faq__q {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 36px;
  gap: 14px;
  align-items: center;
  padding: 32px 0;
  cursor: pointer;
  font-family: var(--font-mincho);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: 0.02em;
  color: var(--text);
}

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

.faq__qText {
  display: block;
}

/* + / - アイコン（CSSだけで描画） */
.faq__icon {
  width: 36px;
  height: 36px;
  position: relative;
  opacity: 0.7;
}

.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 2px;
  background: #111;
  transform: translate(-50%, -50%);
  border-radius: 2px;
}

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

/* open時は「−」にする */
.faq__item[open] .faq__icon::after {
  opacity: 0;
}

.faq__a {
  padding: 0 0 24px;
}

.faq__a p {
  margin: 0;
  font-family: var(--font-gothic);
  font-weight: 500;
  font-size: 18px;
  line-height: 2;
  color: rgba(17, 17, 17, 0.82);
  width: min(860px, 100%);
  padding-left: 50px;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .faq {
    padding: 0 0 70px;
  }

  .faq__heading {
    font-size: 34px;
    margin-bottom: 26px;
  }

  .faq__q {
    padding: 18px 0;
    font-size: 18px;
  }

  .faq__a p {
    font-size: 13px;
    line-height: 1.9;
    padding-left: 30px;
  }
  
  .faq__inner { padding-inline: 16px; }
  /* 左右余白。好みで 14〜20px */

  .faq__q { padding-inline: 0; }
  .faq__a { padding-inline: 0; }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .faq__inner {
    padding-inline: 26px; /* 左右余白。好みで 14〜20px */
  }
}

/* ===== Footer ===== */
/* ===== LP Footer ===== */
.lp-footer{
  background:#222;
  color:#fff;
  padding: 22px 0 18px;
}

.lp-footer__inner{
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.lp-footer__links{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap; /* スマホで折り返しても崩れない */
  justify-content: center;
}

.lp-footer__link{
  color:#fff;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.6;
  opacity: .9;
  transition: opacity .2s ease, text-decoration-color .2s ease;
}

.lp-footer__link:hover{
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lp-footer__sep{
  opacity: .55;
  font-size: 14px;
  line-height: 1;
}

.lp-footer__copy{
  display: block;
  margin-top: 10px;
  font-size: 13px;
  opacity: .7;
}

/* SP微調整 */
@media (max-width: 480px){
  .lp-footer{ padding: 18px 0 14px; }
  .lp-footer__inner{ padding: 0 16px; }
  .lp-footer__link, .lp-footer__sep{ font-size: 13px; }
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .cta02 {
    padding: 70px 0 76px;
  }

  .cta02__lead {
    font-size: 13px;
    line-height: 1.9;
  }

  .cta02__copy {
    font-size: 18px;
  }

  .cta02__btn {
    height: 58px;
    font-size: 18px;
  }
}


/* ===== スマホだけ改行 ===== */
.br-sp {
    display: none;
}

@media (max-width: 600px) {
    .br-sp {
        display: block;
    }
}


/* ===== Responsive ===== */
@media (max-width: 768px) {
  .kv__inner {
    width: calc(100% - 25px);
    padding-left: 0;
    padding-right: 0;
  }
  .kv__flow {
    gap: 10px;
  }
  .kv__flow-label--sentence,
  .kv__flow-sub--sentence {
    white-space: normal;
  }
  .kv__cta-copy {
    font-size: 16px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
.kv__inner {
  padding-left: 120px;  /* 0→40pxなどに */
  padding-right: 120px; /* 左右バランス維持 */
 }
.kv__circle--left { top: 80%; }
 .kv__circle--rightDown {
    right: clamp(10px, 0vw, 110px);
    top: 25%;
 }
 .kv__circle--rightUp {
    right: clamp(75px, 10vw, 290px);
    top: 0%;
}
}


/* ===== プライバシーポリシーリンク ===== */
.form-note{
  margin: 12px 0 0;
  font-family: var(--font-gothic);
  font-size: 14px;
  line-height: 1.6;
  color: rgba(17,17,17,.75);
  text-align: center;
}
.form-note a{
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}



