/* ============================================================
   墓じまいの一休堂｜無料資料請求LP スタイルシート
   デザイントーン参考: sougi-korekara.com
   （淡い水色ベース #E1F4FA / ティール #3F98B3 / 黄 #FFCB1F）
   ============================================================ */

:root {
  --c-base: #e1f4fa;        /* 淡い水色（ベース背景） */
  --c-main: #3f98b3;        /* ティール（メインカラー） */
  --c-main-dark: #2d7f99;   /* ティール濃 */
  --c-navy: #225f73;        /* 濃紺ティール */
  --c-accent: #ffcb1f;      /* 黄色アクセント */
  --c-cta: #f0640c;         /* CTAオレンジ */
  --c-cta-dark: #d95404;    /* CTAオレンジ濃 */
  --c-danger: #d7263d;      /* 強調赤 */
  --c-text: #333;
  --c-text-sub: #666;
  --c-line: #cfe6ee;
  --shadow-card: 0 3px 0 rgba(0, 0, 0, .18);
  --radius: 12px;
  --font-body: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

html, body { overflow-x: hidden; }

body {
  font-family: var(--font-body);
  color: var(--c-text);
  line-height: 1.8;
  background: #fff;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  width: 100%;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-main-dark); }
ul, ol { list-style: none; }

.container { max-width: 1080px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.sp-only { display: none; }

@media (max-width: 767px) {
  .sp-only { display: inline; }
  .pc-only { display: none; }
}

/* ============ ヘッダー ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
}
.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.site-logo { text-decoration: none; line-height: 1.3; }
.logo-main {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--c-navy);
}
.logo-main i { color: var(--c-main); margin-right: 6px; }
.logo-sub { display: block; font-size: .68rem; color: var(--c-text-sub); }

.header-nav { margin-left: auto; }
.header-nav ul { display: flex; gap: 22px; }
.header-nav a {
  text-decoration: none;
  font-size: .88rem;
  font-weight: 700;
  color: var(--c-text);
}
.header-nav a:hover { color: var(--c-main); }

.header-tel { text-decoration: none; text-align: center; line-height: 1.3; }
.header-tel-num {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--c-navy);
}
.header-tel-num i { color: var(--c-main); font-size: 1rem; }
.header-tel-note { display: block; font-size: .64rem; color: var(--c-text-sub); }

.header-cta {
  background: var(--c-cta);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: .92rem;
  padding: 12px 20px;
  border-radius: 999px;
  box-shadow: 0 3px 0 var(--c-cta-dark);
  white-space: nowrap;
  transition: transform .15s, box-shadow .15s;
}
.header-cta:hover { transform: translateY(2px); box-shadow: 0 1px 0 var(--c-cta-dark); }
.header-cta i { margin-right: 6px; }

@media (max-width: 960px) {
  .header-nav, .header-tel { display: none; }
  .header-inner { justify-content: space-between; }
  .logo-main { font-size: 1.05rem; }
  .header-cta { font-size: .8rem; padding: 10px 14px; }
}

/* ============ ヒーロー ============ */
.hero {
  background: var(--c-base);
  overflow: hidden;
  position: relative;
}
.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 48px 20px 84px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 36px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-block;
  background: var(--c-main);
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
  letter-spacing: .08em;
}
.hero h1 {
  font-size: 2.5rem;
  line-height: 1.5;
  font-weight: 800;
  color: var(--c-navy);
  margin-bottom: 16px;
}
.hero h1 .marker {
  background: linear-gradient(transparent 62%, var(--c-accent) 62%);
  padding: 0 2px;
}
.hero-lead { font-size: 1.12rem; font-weight: 700; margin-bottom: 18px; color: var(--c-text); }
.hero-lead .lead-strong {
  color: var(--c-cta);
  font-size: 1.3em;
  background: linear-gradient(transparent 68%, var(--c-accent) 68%);
  padding: 0 2px;
}

.hero-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.hero-badges span {
  background: #fff;
  border: 1.5px solid var(--c-main);
  color: var(--c-main-dark);
  font-size: .8rem;
  font-weight: 700;
  padding: 5px 13px;
  border-radius: 999px;
}
.hero-badges span i { margin-right: 4px; }

.hero-img {
  position: relative;
}
.hero-img img {
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(34, 95, 115, .22);
}
.hero-img .hero-book {
  position: absolute;
  right: -14px;
  bottom: -26px;
  width: 46%;
  border-radius: 10px;
  border: 3px solid #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .25);
}

/* 波の区切り */
.wave-divider { display: block; width: 100%; height: 60px; margin-top: -60px; position: relative; z-index: 1; }

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; padding: 32px 20px 70px; }
  .hero h1 { font-size: 1.85rem; }
  .hero-lead { font-size: 1rem; }
  .hero-img { max-width: 440px; margin: 0 auto; width: 100%; }
  /* はみ出し防止：重ねる小画像を内側に収める */
  .hero-img .hero-book { right: 6px; bottom: -20px; width: 42%; }
}

/* ============ CTAボタン共通 ============ */
.btn-cta {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  background: linear-gradient(180deg, #ff8a2a 0%, var(--c-cta) 60%);
  color: #fff;
  text-decoration: none;
  font-size: 1.28rem;
  font-weight: 800;
  padding: 18px 46px;
  border-radius: 999px;
  border: none;
  box-shadow: 0 5px 0 var(--c-cta-dark), 0 8px 20px rgba(240, 100, 12, .35);
  cursor: pointer;
  text-align: center;
  line-height: 1.4;
  transition: transform .15s, box-shadow .15s;
  position: relative;
  animation: cta-pulse 2.4s ease-in-out infinite;
}
.btn-cta:hover {
  transform: translateY(3px);
  box-shadow: 0 2px 0 var(--c-cta-dark), 0 4px 12px rgba(240, 100, 12, .3);
  animation-play-state: paused;
}
.btn-cta .small { font-size: .74rem; font-weight: 700; opacity: .95; }
.btn-cta i { margin-right: 8px; }

@keyframes cta-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.025); }
}

.cta-note { font-size: .82rem; color: var(--c-text-sub); margin-top: 12px; }
.cta-note i { color: var(--c-main); }

@media (max-width: 767px) {
  .btn-cta { font-size: 1.05rem; padding: 16px 20px; width: 100%; max-width: 420px; }
}

/* ============ セクション共通 ============ */
.section { padding: 70px 0; }
.section.alt { background: var(--c-base); }
.section.white { background: #fff; }

.section-badge {
  display: block;
  width: fit-content;
  margin: 0 auto 14px;
  background: var(--c-main);
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  padding: 4px 18px 6px;
  border-radius: 999px;
  position: relative;
  letter-spacing: .1em;
}
.section-badge::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-top-color: var(--c-main);
  border-bottom: none;
}
.section-title {
  text-align: center;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--c-navy);
  line-height: 1.5;
  margin-bottom: 14px;
}
.section-title .accent { color: var(--c-cta); }
.section-lead { text-align: center; font-size: .95rem; color: var(--c-text-sub); margin-bottom: 34px; }

.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 36px; }

@media (max-width: 767px) {
  .section { padding: 50px 0; }
  .section-title { font-size: 1.35rem; }
  /* PC向けの強制改行はスマホでは解除し、自然な折り返しにする */
  .hero h1 br:not(.sp-only),
  .mid-cta h2 br:not(.sp-only),
  .band-title br:not(.sp-only),
  .about-point h3 br,
  .step-card h3 br { display: none; }
}

/* ============ お悩みセクション ============ */
.worry-wrap {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 32px;
  align-items: center;
}
.worry-wrap > img { border-radius: var(--radius); box-shadow: var(--shadow-card); }
.worry-list li {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 10px;
  box-shadow: var(--shadow-card);
  padding: 14px 18px 14px 48px;
  margin-bottom: 12px;
  font-size: .98rem;
  position: relative;
}
.worry-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--c-main);
  font-size: 1.1rem;
}
.worry-list strong { color: var(--c-danger); }

.worry-answer {
  margin-top: 34px;
  text-align: center;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--c-navy);
}
.worry-answer .arrow {
  display: block;
  margin: 0 auto 8px;
  width: 0;
  height: 0;
  border: 26px solid transparent;
  border-top: 20px solid var(--c-accent);
  border-bottom: none;
}
.worry-answer em { font-style: normal; color: var(--c-cta); }

@media (max-width: 820px) {
  .worry-wrap { grid-template-columns: minmax(0, 1fr); }
  .worry-wrap > img { max-width: min(440px, 100%); margin: 0 auto; }
  .worry-answer { font-size: 1.08rem; }
}

/* ============ 資料セット ============ */
.set-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}
.set-wrap > img {
  border-radius: var(--radius);
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow-card);
  background: #fff;
}
.set-list li {
  background: #fff;
  border-radius: 10px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--c-line);
  padding: 14px 18px 14px 54px;
  margin-bottom: 12px;
  font-weight: 700;
  font-size: 1rem;
  position: relative;
  counter-increment: setnum;
}
.set-list { counter-reset: setnum; }
.set-list li::before {
  content: counter(setnum);
  position: absolute;
  left: 14px;
  top: 14px;
  width: 28px;
  height: 28px;
  background: var(--c-main);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
}
.set-list .li-sub { display: block; font-size: .8rem; font-weight: 400; color: var(--c-text-sub); }

.free-badge {
  display: inline-block;
  background: var(--c-danger);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  padding: 6px 20px;
  border-radius: 999px;
  margin-bottom: 12px;
}

@media (max-width: 820px) {
  .set-wrap { grid-template-columns: minmax(0, 1fr); }
  .set-wrap > img { max-width: min(460px, 100%); margin: 0 auto; }
}

/* ============ 実績帯 ============ */
.stats-band {
  background: var(--c-navy);
  color: #fff;
  text-align: center;
  padding: 34px 20px;
}
.band-title { font-size: 1.45rem; font-weight: 800; line-height: 1.7; }
.band-title .yellow { color: var(--c-accent); font-size: 1.7rem; }
.band-sub { font-size: .74rem; opacity: .8; margin-top: 8px; }

@media (max-width: 767px) {
  .band-title { font-size: 1.05rem; }
  .band-title .yellow { font-size: 1.3rem; }
}

/* ============ チラ見せ（目次） ============ */
.toc-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}
.toc-wrap > figure { position: relative; }
.toc-wrap > figure img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--c-line);
}
.toc-wrap figcaption {
  position: absolute;
  top: -14px;
  left: 6px;
  background: var(--c-accent);
  color: var(--c-navy);
  font-weight: 800;
  font-size: .85rem;
  padding: 6px 16px;
  border-radius: 999px;
  box-shadow: 0 2px 6px rgba(0,0,0,.2);
  transform: rotate(-4deg);
}
.toc-chapter { counter-reset: chap; }
.toc-chapter li {
  counter-increment: chap;
  background: #fff;
  border-radius: 10px;
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow-card);
  padding: 13px 16px 13px 66px;
  margin-bottom: 11px;
  font-weight: 700;
  font-size: .95rem;
  position: relative;
}
.toc-chapter li::before {
  content: "第" counter(chap) "章";
  position: absolute;
  left: 12px;
  top: 15px;
  font-size: .72rem;
  background: var(--c-main);
  color: #fff;
  padding: 2px 8px;
  border-radius: 6px;
}
.toc-chapter .chap-sub { display: block; font-size: .78rem; font-weight: 400; color: var(--c-text-sub); }

@media (max-width: 820px) {
  .toc-wrap { grid-template-columns: minmax(0, 1fr); }
}

/* ============ 中間CTA（ダーク） ============ */
.mid-cta {
  background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-main-dark) 100%);
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}
.mid-cta h2 { font-size: 1.5rem; font-weight: 800; line-height: 1.7; margin-bottom: 26px; }
.mid-cta .catch { color: var(--c-accent); }
.mid-cta .cta-tel { margin-top: 22px; font-size: .85rem; }
.mid-cta .cta-tel a {
  color: #fff;
  font-size: 1.55rem;
  font-weight: 800;
  text-decoration: none;
}
.mid-cta .cta-tel a i { color: var(--c-accent); }

@media (max-width: 767px) {
  .mid-cta h2 { font-size: 1.15rem; }
}

/* ============ 一休堂とは ============ */
.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}
.about-wrap > img { border-radius: var(--radius); box-shadow: var(--shadow-card); }
.about-text p { margin-bottom: 14px; font-size: .96rem; }
.about-text strong { color: var(--c-main-dark); }

.about-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; }
.about-point {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 24px 18px;
  text-align: center;
}
.about-point i {
  font-size: 1.9rem;
  color: var(--c-main);
  background: var(--c-base);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.about-point h3 { font-size: 1rem; color: var(--c-navy); margin-bottom: 8px; line-height: 1.5; }
.about-point p { font-size: .84rem; color: var(--c-text-sub); text-align: left; }
.about-point .num {
  display: block;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
  color: var(--c-cta);
  margin-bottom: 6px;
}

.info-table { width: 100%; border-collapse: collapse; background: #fff; box-shadow: var(--shadow-card); border-radius: var(--radius); overflow: hidden; }
.info-table th, .info-table td { padding: 14px 18px; border-bottom: 1px solid var(--c-line); font-size: .9rem; text-align: left; vertical-align: top; }
.info-table th { background: var(--c-base); color: var(--c-navy); width: 190px; white-space: nowrap; }
.info-table tr:last-child th, .info-table tr:last-child td { border-bottom: none; }

.works-figure { position: relative; max-width: 780px; margin: 36px auto 0; }
.works-figure img { border-radius: var(--radius); box-shadow: var(--shadow-card); border: 1px solid var(--c-line); }
.works-figure figcaption { text-align: center; font-size: .8rem; color: var(--c-text-sub); margin-top: 10px; }

@media (max-width: 900px) {
  .about-points { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  .about-wrap { grid-template-columns: minmax(0, 1fr); }
  .info-table th { width: 120px; }
}

/* ============ 3ステップ ============ */
.step-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step-card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 28px 20px;
  text-align: center;
  position: relative;
}
.step-card::after {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--c-main);
  font-size: 1.2rem;
  z-index: 2;
}
.step-card:last-child::after { content: none; }
.step-label {
  display: inline-block;
  background: var(--c-accent);
  color: var(--c-navy);
  font-weight: 800;
  font-size: .78rem;
  padding: 3px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
  letter-spacing: .1em;
}
.step-card > i { font-size: 2.2rem; color: var(--c-main); margin-bottom: 12px; display: block; }
.step-card h3 { font-size: 1.05rem; color: var(--c-navy); margin-bottom: 8px; }
.step-card p { font-size: .85rem; color: var(--c-text-sub); text-align: left; }

@media (max-width: 820px) {
  .step-grid { grid-template-columns: 1fr; gap: 30px; }
  .step-card::after { content: "\f078"; right: 50%; top: auto; bottom: -24px; transform: translateX(50%); }
}

/* ============ ご利用者の声 ============ */
.voice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.voice-card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 22px;
}
.voice-tag {
  display: inline-block;
  background: var(--c-base);
  color: var(--c-main-dark);
  font-size: .78rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.voice-head { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.voice-photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--c-base);
  flex-shrink: 0;
}
.stars { color: #fdae18; font-size: .85rem; }
.voice-meta { font-size: .8rem; color: var(--c-text-sub); }
.voice-card blockquote { font-size: .9rem; }

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

/* ============ 一休堂紹介内サブセクション共通 ============ */
.about-sub { margin-top: 56px; }
.about-sub-title {
  text-align: center;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--c-navy);
  margin-bottom: 8px;
}
.about-sub-title i { color: var(--c-main); margin-right: 8px; }
.about-sub-lead {
  text-align: center;
  font-size: .9rem;
  color: var(--c-text-sub);
  margin-bottom: 24px;
}
#review-block .review-summary { margin-top: 14px; }

@media (max-width: 767px) {
  .about-sub { margin-top: 44px; }
  .about-sub-title { font-size: 1.15rem; }
}

/* ============ 口コミスクロール（一休堂の紹介内） ============ */
.review-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 16px;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  max-width: 560px;
  margin: 0 auto 24px;
  padding: 16px 20px;
}
.review-summary-num { font-size: 2.4rem; font-weight: 800; color: var(--c-cta); line-height: 1; }
.review-summary-stars { color: #fdae18; font-size: 1.1rem; }
.review-summary-count { font-size: .84rem; color: var(--c-text-sub); width: 100%; text-align: center; }

.voice-scroll {
  max-height: 560px;
  overflow-y: auto;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  background: rgba(225, 244, 250, .45);
  padding: 18px;
  -webkit-overflow-scrolling: touch;
}
.voice-scroll::-webkit-scrollbar { width: 10px; }
.voice-scroll::-webkit-scrollbar-track { background: #eef7fa; border-radius: 999px; }
.voice-scroll::-webkit-scrollbar-thumb { background: var(--c-main); border-radius: 999px; }
.voice-scroll .voice-grid { margin-top: 0; }
.voice-scroll-hint {
  text-align: center;
  font-size: .8rem;
  color: var(--c-text-sub);
  margin-top: 10px;
}
.voice-scroll-hint i { color: var(--c-main); }
.score { color: var(--c-text-sub); font-size: .8rem; margin-left: 5px; }

/* ============ スタッフ紹介 ============ */
.staff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.staff-card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.staff-photo { position: relative; margin: 0; }
.staff-photo img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; }
.staff-role {
  position: absolute;
  left: 0;
  bottom: 0;
  background: rgba(34, 95, 115, .88);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 0 10px 0 0;
}
.staff-body { padding: 18px 18px 22px; }
.staff-name { font-size: 1.15rem; font-weight: 800; color: var(--c-navy); }
.staff-name .kana { font-size: .72rem; font-weight: 400; color: var(--c-text-sub); margin-left: 8px; }
.staff-tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 8px 0 10px; }
.staff-tags span {
  background: var(--c-base);
  color: var(--c-main-dark);
  font-size: .72rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 999px;
}
.staff-message { font-size: .86rem; color: var(--c-text); }

@media (max-width: 860px) {
  .staff-grid { grid-template-columns: minmax(0, 1fr); max-width: 420px; margin: 0 auto; }
  /* スマホは写真を小さくして横並びカードに */
  .staff-card {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    align-items: start;
  }
  .staff-photo img { aspect-ratio: 3 / 4; height: 100%; }
  .staff-role {
    font-size: .62rem;
    padding: 3px 8px;
    border-radius: 0 8px 0 0;
  }
  .staff-body { padding: 12px 14px 14px; }
  .staff-name { font-size: 1.02rem; }
  .staff-name .kana { display: block; margin-left: 0; }
  .staff-message { font-size: .8rem; }
}

/* ============ FAQ ============ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  margin-bottom: 14px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-navy);
  padding: 18px 52px 18px 52px;
  cursor: pointer;
  position: relative;
  line-height: 1.6;
}
.faq-q::before {
  content: "Q";
  position: absolute;
  left: 16px;
  top: 15px;
  width: 26px;
  height: 26px;
  background: var(--c-main);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
}
.faq-q::after {
  content: "\2b";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--c-main);
  font-size: 1.2rem;
  font-weight: 700;
  transition: transform .2s;
}
.faq-item.open .faq-q::after { content: "\2212"; }
.faq-a {
  display: none;
  padding: 0 20px 18px 52px;
  font-size: .9rem;
  color: var(--c-text);
  position: relative;
}
.faq-a::before {
  content: "A";
  position: absolute;
  left: 16px;
  top: 0;
  width: 26px;
  height: 26px;
  background: var(--c-cta);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
}
.faq-item.open .faq-a { display: block; }

/* ============ 資料請求フォーム ============ */
.cv-section {
  background: linear-gradient(180deg, var(--c-base) 0%, #cdeaf4 100%);
  padding: 70px 0 80px;
}
.form-card {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  border: 2px solid var(--c-main);
  box-shadow: 0 8px 28px rgba(34, 95, 115, .18);
  padding: 36px 34px;
}
.form-benefit {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}
.form-benefit span {
  background: var(--c-base);
  color: var(--c-main-dark);
  font-size: .82rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
}
.form-benefit i { margin-right: 4px; }

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 700;
  font-size: .92rem;
  margin-bottom: 7px;
  color: var(--c-navy);
}
.form-group-heading {
  display: block;
  font-weight: 700;
  font-size: .92rem;
  margin-bottom: 7px;
  color: var(--c-navy);
}
.required-badge, .optional-badge {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  color: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 8px;
  vertical-align: 2px;
}
.required-badge { background: var(--c-danger); }
.optional-badge { background: #999; }

.form-control {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  padding: 13px 14px;
  border: 1.5px solid #bcd9e4;
  border-radius: 8px;
  background: #f7fcfe;
  transition: border-color .2s, background .2s;
}
.form-control:focus {
  outline: none;
  border-color: var(--c-main);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(63, 152, 179, .15);
}
textarea.form-control { min-height: 96px; resize: vertical; }
select.form-control { appearance: auto; -webkit-appearance: auto; }

.form-note { font-size: .76rem; color: var(--c-text-sub); margin-top: 5px; }
.form-privacy { font-size: .82rem; color: var(--c-text-sub); text-align: center; margin: 18px 0; }

.delivery-choice { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.delivery-choice label {
  border: 2px solid #bcd9e4;
  border-radius: 10px;
  padding: 14px 12px;
  text-align: center;
  cursor: pointer;
  font-weight: 700;
  font-size: .9rem;
  color: var(--c-text);
  margin: 0;
  transition: border-color .2s, background .2s;
}
.delivery-choice label .d-sub { display: block; font-size: .72rem; font-weight: 400; color: var(--c-text-sub); }
.delivery-choice input { position: absolute; opacity: 0; }
.delivery-choice label.selected {
  border-color: var(--c-cta);
  background: #fff4ec;
  color: var(--c-cta-dark);
}
.delivery-choice label i { display: block; font-size: 1.4rem; margin-bottom: 4px; color: var(--c-main); }
.delivery-choice label.selected i { color: var(--c-cta); }

/* ラジオ選択（実施時期・今後について） */
.radio-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.radio-grid label {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid #bcd9e4;
  border-radius: 8px;
  background: #f7fcfe;
  padding: 11px 12px;
  font-size: .88rem;
  font-weight: 700;
  color: var(--c-text);
  cursor: pointer;
  margin: 0;
  transition: border-color .2s, background .2s;
  line-height: 1.4;
}
.radio-grid input {
  accent-color: var(--c-cta);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin: 0;
}
.radio-grid label.selected {
  border-color: var(--c-cta);
  background: #fff4ec;
  color: var(--c-cta-dark);
}

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

/* reCAPTCHA v2 */
.recaptcha-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}
@media (max-width: 400px) {
  /* 幅304pxのウィジェットが極小画面ではみ出さないよう縮小 */
  .recaptcha-wrap .g-recaptcha {
    transform: scale(.88);
    transform-origin: center top;
  }
}

.form-submit-wrap { text-align: center; margin-top: 8px; }
.form-msg { text-align: center; font-weight: 700; margin-top: 14px; min-height: 1.5em; }
.form-msg.success { color: #1a7f37; }
.form-msg.error { color: var(--c-danger); }

.form-complete {
  text-align: center;
  padding: 30px 10px;
}
.form-complete i { font-size: 3rem; color: #1a7f37; margin-bottom: 14px; }
.form-complete h3 { color: var(--c-navy); font-size: 1.3rem; margin-bottom: 12px; }
.form-complete p { font-size: .92rem; color: var(--c-text-sub); }

.cv-tel-block { text-align: center; margin-top: 26px; }
.cv-or-divider {
  text-align: center;
  font-size: .85rem;
  color: var(--c-text-sub);
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.cv-or-divider::before, .cv-or-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--c-line);
}
.cv-tel-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--c-navy);
  text-decoration: none;
}
.cv-tel-number i { color: var(--c-main); font-size: 1.4rem; margin-right: 6px; }
.cv-tel-hours { font-size: .85rem; color: var(--c-text-sub); }
.cv-tel-tap { font-size: .78rem; color: var(--c-main-dark); }

@media (max-width: 767px) {
  .form-card { padding: 26px 18px; }
  .delivery-choice { grid-template-columns: 1fr; }
}

/* ============ 追従CTA ============ */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, .14);
  padding: 10px 14px;
  transform: translateY(110%);
  transition: transform .35s;
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta-inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
}
.sticky-book {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--c-accent);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .25);
  flex-shrink: 0;
  background: #fff;
}
.sticky-text { flex: 1; line-height: 1.4; }
.sticky-text .s-catch { display: block; font-size: .8rem; font-weight: 800; color: var(--c-danger); }
.sticky-text .s-sub { display: block; font-size: .72rem; color: var(--c-text-sub); }
.sticky-btn {
  background: linear-gradient(180deg, #ff8a2a 0%, var(--c-cta) 60%);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 1rem;
  padding: 13px 26px;
  border-radius: 999px;
  box-shadow: 0 3px 0 var(--c-cta-dark);
  white-space: nowrap;
  transition: transform .15s;
}
.sticky-btn:hover { transform: translateY(2px); }
.sticky-btn i { margin-right: 6px; }

body { padding-bottom: 0; }
body.has-sticky { padding-bottom: 92px; }

@media (max-width: 640px) {
  .sticky-cta { padding: 10px 10px; }
  .sticky-cta-inner { gap: 10px; }
  .sticky-book { width: 54px; height: 54px; border-width: 2.5px; }
  .sticky-text .s-catch { font-size: .7rem; }
  .sticky-text .s-sub { display: none; }
  .sticky-btn { font-size: .85rem; padding: 12px 14px; }
}

/* ============ フッター ============ */
.site-footer { background: #eef7fa; padding: 46px 0 26px; margin-top: 0; }
.footer-inner { max-width: 1080px; margin: 0 auto; padding: 0 20px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 30px; margin-bottom: 30px; }
.footer-logo { font-size: 1.15rem; font-weight: 800; color: var(--c-navy); margin-bottom: 8px; }
.footer-logo i { color: var(--c-main); margin-right: 6px; }
.footer-desc { font-size: .84rem; color: var(--c-text-sub); }
.footer-nav h3 {
  font-size: .88rem;
  color: var(--c-navy);
  margin-bottom: 10px;
  padding-left: 14px;
  position: relative;
}
.footer-nav h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-main);
}
.footer-nav li { margin-bottom: 6px; }
.footer-nav a { font-size: .84rem; color: var(--c-text-sub); text-decoration: none; }
.footer-nav a:hover { color: var(--c-main); text-decoration: underline; }
.footer-copy { text-align: center; font-size: .76rem; color: var(--c-text-sub); border-top: 1px solid var(--c-line); padding-top: 18px; }

@media (max-width: 767px) {
  .footer-grid { grid-template-columns: 1fr; gap: 22px; }
}

/* ============ 下層ページ共通 ============ */
.page-hero {
  background: var(--c-base);
  text-align: center;
  padding: 50px 20px;
}
.page-hero h1 { font-size: 1.7rem; color: var(--c-navy); font-weight: 800; }
.page-hero p { font-size: .9rem; color: var(--c-text-sub); margin-top: 8px; }

.legal-body { max-width: 820px; margin: 0 auto; padding: 50px 20px 70px; }
.legal-body h2 {
  font-size: 1.15rem;
  color: var(--c-navy);
  margin: 34px 0 12px;
  padding: 8px 14px;
  background: var(--c-base);
  border-left: 5px solid var(--c-main);
  border-radius: 4px;
}
.legal-body p, .legal-body li { font-size: .92rem; margin-bottom: 10px; }
.legal-body ul { padding-left: 22px; }
.legal-body ul li { list-style: disc; }
