/* ============ Reset & Base ============ */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* softer, paler palette */
  --navy: #2a527a;          /* くすみネイビー（見出し） */
  --blue: #3f84d6;          /* マイルドブルー（電話CTA） */
  --blue-light: #5badE0;    /* ペールブルー（メールCTA） */
  --icon-blue: #5f8ead;     /* アイコン用ブルーグレー */
  --line-green: #62c233;    /* マイルドグリーン */
  --base: #f8fafc;          /* ほぼ白のベース */
  --bg-pale: #f2f6fa;       /* 極薄水色セクション */
  --bg-pale2: #eaf2f8;      /* 少しだけ濃い極薄水色 */
  --text: #4f5d73;          /* 青みチャコールグレー本文 */
  --text-sub: #7c889a;      /* 補助テキスト */
  --border-blue: #dbe8f2;   /* 淡いボーダー */
  --card-shadow: 0 8px 28px rgba(60, 110, 160, 0.07);
}

html { scroll-behavior: smooth; }

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "游ゴシック", "Yu Gothic", sans-serif;
  color: var(--text);
  line-height: 1.9;
  background: var(--base);
  font-size: 15px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { max-width: 1080px; margin: 0 auto; padding: 0 20px; }

/* ============ Buttons ============ */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 50px;
  color: #fff;
  font-weight: 700;
  padding: 16px 28px;
  font-size: 16px;
  box-shadow: 0 6px 16px rgba(60,110,160,0.18);
  transition: transform .2s, box-shadow .2s, opacity .2s;
  cursor: pointer;
  border: none;
  letter-spacing: .03em;
}
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(120,160,210,0.28); filter: brightness(1.03); }
.cta-btn small { font-weight: 400; font-size: 11px; display: block; }
/* 左側のアイコンを白い丸で囲む（素材デザインに準拠） */
.cta-btn i {
  font-size: 16px;
  width: 30px; height: 30px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  flex-shrink: 0;
}
.btn-tel i { color: #6fa0d8; }
.btn-line i { color: #7cc06a; }
.btn-mail i { color: #6fa0d8; }

/* 淡く優しいトーンのCVボタン（生成素材の色味に準拠） */
.btn-tel  { background: linear-gradient(135deg, #8db8e2, #a3c6ea); color: #fff; text-shadow: 0 1px 2px rgba(90,130,180,0.28); }
.btn-line { background: linear-gradient(135deg, #a1d7a2, #bfe2b3); color: #fff; text-shadow: 0 1px 2px rgba(90,150,90,0.28); }
.btn-mail { background: linear-gradient(135deg, #83acdc, #99c4e8); color: #fff; text-shadow: 0 1px 2px rgba(90,130,180,0.28); }

/* ============ Header ============ */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 12px rgba(60,110,160,0.06);
}
.header-inner {
  max-width: 1240px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 24px;
}
.logo { font-size: 22px; font-weight: 700; color: var(--navy); letter-spacing: 1px; }
.logo span { font-size: 13px; display: block; color: var(--text-sub); font-weight: 400; letter-spacing: 0; }
.nav { display: flex; gap: 22px; align-items: center; }
.nav a { font-size: 13px; font-weight: 500; color: var(--text); transition: color .2s; }
.nav a:hover { color: var(--blue); }
.header-cta { display: flex; gap: 8px; }
.header-cta a {
  width: 42px; height: 42px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 17px;
  transition: opacity .2s;
}
.header-cta a:hover { opacity: .85; }
.hc-tel { background: linear-gradient(135deg, #8db8e2, #a3c6ea); }
.hc-line { background: linear-gradient(135deg, #a1d7a2, #bfe2b3); }
.hc-mail { background: linear-gradient(135deg, #83acdc, #99c4e8); }
.nav a:hover { color: var(--blue-light); }
.menu-toggle { display: none; font-size: 24px; color: var(--navy); background: none; border: none; cursor: pointer; }

/* ============ Hero（写真を背景全体に敷きタイトルを重ねる） ============ */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(180deg, #f7fbfd 0%, #eef5fa 100%);
}
/* 背景写真：全体に敷く */
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: 75% 30%;
}
/* 左から右へ淡いオーバーレイ。左側を明るくしてタイトルを読みやすく */
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg,
      rgba(247,251,253,0.97) 0%,
      rgba(247,251,253,0.92) 30%,
      rgba(238,245,250,0.70) 52%,
      rgba(238,245,250,0.16) 72%,
      rgba(238,245,250,0.02) 100%);
}
/* ヒーローを彩る葉の装飾 */
.hero-leaf { position: absolute; z-index: 1; pointer-events: none; width: 340px; height: auto; opacity: 0.55; }
.hero-leaf.top { top: -40px; left: -60px; transform: rotate(10deg); }
.hero-leaf.bottom { bottom: -50px; right: -50px; transform: scaleY(-1) scaleX(-1) rotate(8deg); opacity: 0.45; }
.hero-deco { position: absolute; opacity: .3; pointer-events: none; z-index: 1; }
.hero-deco.left { top: 24px; left: 8px; width: 120px; }
.hero-inner {
  position: relative; z-index: 2;
  max-width: 1180px; width: 100%;
  margin: 0 auto; padding: 56px 24px;
}
.hero-copy { max-width: 580px; }
/* 上部の上品なバッジ */
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, #2a527a, #3f84d6);
  color: #fff; font-size: 13px; font-weight: 700;
  padding: 8px 18px; border-radius: 999px; margin-bottom: 18px;
  box-shadow: 0 6px 18px rgba(63,132,214,0.32);
  letter-spacing: 0.02em;
}
.hero-badge i { font-size: 14px; color: #ffd9e4; }
.hero-catch {
  font-size: 42px; font-weight: 800; color: var(--navy); line-height: 1.5;
  text-shadow: 0 1px 10px rgba(255,255,255,0.8);
}
.hero-catch .marker {
  background: linear-gradient(transparent 60%, #fde0a8 60%);
  padding: 0 4px;
}
.hero-catch .big {
  font-size: 54px;
  background: linear-gradient(135deg, #2a527a, #3f84d6);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-lead { margin-top: 20px; font-size: 14px; color: var(--text); line-height: 1.9; }
/* 星評価 */
.hero-rating {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  margin-top: 22px; padding: 12px 18px;
  background: rgba(255,255,255,0.85); border: 1px solid #d8e8f6;
  border-radius: 14px; backdrop-filter: blur(4px);
  box-shadow: 0 6px 16px rgba(80,130,180,0.10); width: fit-content;
}
.hero-rating .stars { color: #f6b73c; font-size: 16px; letter-spacing: 2px; }
.hero-rating .rating-text { font-size: 13px; color: var(--text); font-weight: 600; }
.hero-rating .rating-text strong { color: var(--blue); font-size: 15px; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.hero-tags span {
  border: 1.5px solid var(--border-blue); color: var(--blue);
  border-radius: 8px; padding: 6px 14px; font-size: 13px; font-weight: 600;
  background: rgba(255,255,255,0.88);
}
/* 吹き出しバッジ：写真の上に重ねる */
.hero-bubble {
  position: absolute; z-index: 3;
  bottom: 28px; right: 32px;
  background: rgba(255,255,255,0.95); border: 2px solid #c5e0f2;
  border-radius: 50%; width: 116px; height: 116px;
  display: flex; align-items: center; justify-content: center;
  text-align: center; font-size: 13px; font-weight: 700; color: var(--navy);
  box-shadow: var(--card-shadow); padding: 10px;
}
.hero-cta {
  display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap;
}
.hero-cta .cta-btn { min-width: 230px; padding: 16px 26px; font-size: 16px; }

/* ============ Section Common ============ */
.section { padding: 52px 0; position: relative; overflow: hidden; }
.section.pale { background: var(--bg-pale); }

/* セクションコーナーの葉っぱ装飾 */
.sec-leaf {
  position: absolute; z-index: 0; pointer-events: none;
  width: 280px; height: auto; opacity: 0.5;
}
.sec-leaf.top-left { top: -30px; left: -50px; transform: rotate(8deg); }
.sec-leaf.top-right { top: -30px; right: -50px; transform: scaleX(-1) rotate(8deg); }
.sec-leaf.bottom-right { bottom: -30px; right: -40px; transform: scaleY(-1) scaleX(-1) rotate(6deg); }
.sec-leaf.bottom-left { bottom: -30px; left: -40px; transform: scaleY(-1) rotate(6deg); }
.section .container { position: relative; z-index: 1; }
.sec-title {
  text-align: center; font-size: 28px; font-weight: 700; color: var(--navy);
  margin-bottom: 12px; position: relative;
}
.sec-title-band {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  margin-bottom: 34px; position: relative; z-index: 2;
}
.sec-title-band .jp {
  display: inline-block; font-size: 27px; font-weight: 700; color: var(--navy);
  letter-spacing: .04em; position: relative;
}
/* タイトル下の淡いアンダーライン装飾 */
.sec-title-band .jp::after {
  content: ""; position: absolute; left: 50%; bottom: -10px; transform: translateX(-50%);
  width: 56px; height: 4px; border-radius: 4px;
  background: linear-gradient(90deg, #a8cdee, #c9e2f5);
}
/* 両脇のキラキラ装飾（スパークル） */
.deco-spark { display: inline-flex; align-items: center; gap: 6px; color: #9cc3e3; }
.deco-spark i { font-size: 13px; opacity: .85; }
.deco-spark i.sm { font-size: 8px; opacity: .6; }
.deco-spark.left { transform: translateY(-4px); }
.deco-spark.right { transform: translateY(-4px); }

/* ============ Reasons ============ */
.reasons-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.reason-card {
  background: #fff; border-radius: 18px; padding: 34px 26px; text-align: center;
  box-shadow: var(--card-shadow); border: 1px solid #eef4f9;
  transition: transform .25s, box-shadow .25s;
}
.reason-card:hover { transform: translateY(-5px); box-shadow: 0 14px 34px rgba(60,110,160,0.1); }
/* 丸背景を外し、透過アイコンをそのままの形で表示 */
.reason-icon {
  width: 84px; height: 84px; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
}
.reason-icon img { width: 84px; height: 84px; object-fit: contain; }
.reason-card h3 { font-size: 17px; color: var(--navy); margin-bottom: 12px; }
.reason-card p { font-size: 13px; color: var(--text-sub); line-height: 1.8; }

/* ============ Worries（淡い水色基調の上品なカード） ============ */
.worries-section {
  position: relative;
  background:
    radial-gradient(circle at 12% 18%, rgba(180,212,242,0.28) 0%, rgba(180,212,242,0) 40%),
    radial-gradient(circle at 88% 82%, rgba(200,228,212,0.26) 0%, rgba(200,228,212,0) 42%),
    linear-gradient(180deg, #f5fafe 0%, #eef6fb 100%);
}
.worries-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px;
}
.worry-card {
  position: relative;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(206, 228, 245, 0.95);
  border-radius: 24px;
  padding: 26px 14px 18px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  box-shadow: 0 10px 26px rgba(110, 160, 210, 0.13);
  transition: transform .28s, box-shadow .28s;
}
.worry-card:hover { transform: translateY(-5px); box-shadow: 0 18px 34px rgba(110,160,210,0.22); }
/* 上部の上品なハートバッジ（水色・リング付き） */
.worry-card::before {
  content: "\f004"; /* fa-heart */
  font-family: "Font Awesome 6 Free"; font-weight: 900;
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  width: 30px; height: 30px; border-radius: 50%;
  background: linear-gradient(135deg, #7eb3e3, #a4cdee);
  color: #fff; font-size: 12px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 10px rgba(110, 160, 210, 0.4), 0 0 0 4px rgba(255,255,255,0.85);
}
.worry-illust {
  width: 96px; height: 96px; object-fit: contain; order: -1; margin-top: 8px;
  background: radial-gradient(circle at 50% 40%, #fff 0%, #eef6fd 100%);
  border-radius: 50%; padding: 6px;
  box-shadow: 0 4px 12px rgba(110,160,210,0.12);
}
.worry-text {
  display: flex; align-items: flex-start; gap: 7px;
  font-size: 12.5px; font-weight: 600; color: var(--navy); line-height: 1.6;
  width: 100%; margin-top: 2px;
}
.worry-check {
  flex-shrink: 0; width: 19px; height: 19px; border-radius: 50%;
  background: linear-gradient(135deg, #7eb3e3, #a4cdee); color: #fff; margin-top: 1px;
  display: inline-flex; align-items: center; justify-content: center; font-size: 9px;
  box-shadow: 0 2px 5px rgba(110,160,210,0.3);
}
.worries-note {
  text-align: center; margin: 40px auto 0; font-size: 17px; font-weight: 700; color: var(--navy);
  background: linear-gradient(135deg, #f3f9ff, #e9f3fc);
  border: 1.5px solid #cfe5f6; border-radius: 50px;
  padding: 15px 36px; display: table;
  box-shadow: 0 8px 20px rgba(110,160,210,0.16);
}
.worries-note::before {
  content: "\f0a4"; font-family: "Font Awesome 6 Free"; font-weight: 900;
  color: #6fa8df; margin-right: 10px; font-size: 15px;
}

/* ============ Flow（上品でオシャレなステップカード／Grid） ============ */
/* 4カード + 3矢印を Grid で均等配置（崩れない） */
.flow-wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 8px;
  max-width: 1000px;
  margin: 0 auto;
}
.flow-card {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
  border: 1px solid #e7f1fa;
  border-radius: 22px; padding: 34px 14px 26px; text-align: center;
  box-shadow: 0 10px 28px rgba(80, 130, 180, 0.08);
  transition: transform .28s, box-shadow .28s;
  display: flex; flex-direction: column; align-items: center;
  min-width: 0; /* Grid内で縮小できるように（見切れ防止） */
}
.flow-card::after {
  /* 上部に淡いアクセントライン */
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px;
  border-radius: 22px 22px 0 0;
  background: linear-gradient(90deg, #a8cdee, #c9e2f5);
}
.flow-card:hover { transform: translateY(-6px); box-shadow: 0 18px 36px rgba(80,130,180,0.16); }
.flow-num {
  position: absolute; top: -18px; left: 50%; transform: translateX(-50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, #7aabdd, #9cc6ec); color: #fff; font-weight: 800;
  display: flex; align-items: center; justify-content: center; font-size: 17px;
  box-shadow: 0 5px 14px rgba(90, 140, 200, 0.35);
  border: 3px solid #fff; z-index: 2;
}
.flow-icon {
  width: 110px; height: 110px; margin: 14px auto 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.flow-icon img { width: 110px; height: 110px; object-fit: contain; }
.flow-card h3 {
  font-size: 15px; color: var(--navy); margin-bottom: 10px; font-weight: 700;
  word-break: keep-all;
}
.flow-card p { font-size: 12.5px; color: var(--text-sub); line-height: 1.7; }
.flow-arrow {
  display: flex; align-items: center; justify-content: center;
  color: #b9d6ee; font-size: 18px; min-width: 14px;
}

/* ============ Price & Lawyer ============ */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: stretch; }
.panel {
  position: relative;
  background: #fff; border-radius: 24px; padding: 38px 36px; box-shadow: 0 14px 36px rgba(80,130,180,0.1);
  border: 1px solid #eef5fb; overflow: hidden;
}
.panel-title { font-size: 21px; color: var(--navy); font-weight: 700; margin-bottom: 8px; text-align: center; }
.panel-sub { text-align: center; font-size: 13px; color: var(--text-sub); margin-bottom: 22px; }

/* === オシャレな料金プレート === */
.price-box {
  position: relative;
  background: linear-gradient(150deg, #f3f9ff 0%, #e6f1fb 55%, #f0e9f6 100%);
  border: 1.5px solid #dcebf9;
  border-radius: 20px; padding: 30px 26px 28px; text-align: center;
  box-shadow: inset 0 2px 10px rgba(255,255,255,0.7), 0 8px 22px rgba(90,140,200,0.1);
  overflow: hidden;
}
/* 背景の柔らかな光のアクセント */
.price-box::before {
  content: ""; position: absolute; top: -40px; right: -40px;
  width: 150px; height: 150px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0) 70%);
  pointer-events: none;
}
.price-box .price-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: linear-gradient(135deg, #7aabdd, #9cc6ec); color: #fff;
  font-size: 12px; font-weight: 700; letter-spacing: .04em;
  padding: 6px 16px; border-radius: 50px; margin-bottom: 18px;
  box-shadow: 0 4px 12px rgba(90,140,200,0.3);
}
.price-box .price-badge i { font-size: 11px; }
.price-main { font-size: 15px; color: var(--navy); font-weight: 600; position: relative; z-index: 1; }
.price-main .price-amount {
  display: flex; align-items: baseline; justify-content: center; gap: 4px; margin: 8px 0 4px;
}
.price-main .num {
  font-size: 56px; font-weight: 800; line-height: 1;
  background: linear-gradient(135deg, #4f8fd0, #79b0e3);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  letter-spacing: -.02em;
}
.price-main .yen { font-size: 22px; font-weight: 800; color: #5f97d4; }
.price-main .per { font-size: 14px; color: var(--text-sub); font-weight: 600; }
.price-main .tax { font-size: 12px; color: var(--text-sub); font-weight: 400; display: block; margin-top: 6px; }
.price-note {
  font-size: 13px; color: var(--text-sub); margin-top: 20px; text-align: center; line-height: 1.8;
}
.price-features {
  display: flex; justify-content: center; gap: 10px; margin-top: 18px; flex-wrap: wrap;
}
.price-features span {
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff; border: 1px solid #dcebf9; color: var(--navy);
  font-size: 11.5px; font-weight: 600; padding: 6px 13px; border-radius: 50px;
  box-shadow: 0 2px 6px rgba(90,140,200,0.06);
}
.price-features span i { color: #6fa8df; font-size: 11px; }
.panel-title.left { text-align: left; }
.lawyer-img-wrap {
  border-radius: 16px; overflow: hidden; margin-bottom: 18px;
  box-shadow: 0 6px 18px rgba(80,130,180,0.1);
  border: 1px solid #eef5fb;
}
.lawyer-img { width: 100%; height: auto; display: block; }
.lawyer-lead { font-size: 13.5px; color: var(--text); line-height: 1.9; text-align: center; }
.lawyer-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.lawyer-tags span {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--bg-pale); color: var(--navy);
  font-size: 12px; font-weight: 600; padding: 7px 14px; border-radius: 50px;
}
.lawyer-tags span i {
  color: #fff; background: var(--blue-light); width: 16px; height: 16px;
  border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 9px;
}
.panel p { font-size: 13.5px; color: var(--text-sub); }

/* ============ Area ============ */
.area-inner { display: grid; grid-template-columns: 1fr 0.9fr 1fr; gap: 24px; align-items: center; }
.area-text { font-size: 15px; color: var(--text-sub); line-height: 2; }
.area-map {
  border-radius: 16px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.area-map img { width: 100%; height: auto; display: block; }
.area-tags { display: flex; flex-wrap: wrap; gap: 12px; }
.area-tags span {
  background: #fff; border: 1.5px solid var(--border-blue); color: var(--navy);
  padding: 12px 22px; border-radius: 50px; font-weight: 700; font-size: 15px;
  box-shadow: 0 3px 10px rgba(60,110,160,0.05);
}

/* ============ Voice ============ */
.voice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.voice-card {
  background: #fff; border-radius: 22px; padding: 26px 26px 28px; box-shadow: var(--card-shadow);
}
.voice-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.voice-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--bg-pale); color: var(--icon-blue); overflow: hidden;
  display: flex; align-items: center; justify-content: center; font-size: 24px;
  flex-shrink: 0; border: 3px solid #fff; box-shadow: 0 2px 8px rgba(60,110,160,0.1);
}
.voice-avatar img { width: 100%; height: 100%; object-fit: cover; }
/* 性別タグ（色付き丸ピル） */
.voice-tag {
  display: inline-block; font-size: 12px; font-weight: 700; color: #fff;
  padding: 5px 14px; border-radius: 50px;
}
.voice-tag.female { background: linear-gradient(135deg, #e9a7c4, #f0b9d1); }
.voice-tag.male { background: linear-gradient(135deg, #8db8e2, #a3c6ea); }
.voice-card p { font-size: 13.5px; color: var(--text); line-height: 1.95; }
.voice-note { text-align: right; font-size: 11.5px; color: var(--text-sub); margin-top: 24px; }

/* ============ FAQ ============ */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-list-wide { max-width: 820px; margin: 0 auto; }
.faq-item { background: #fff; border-radius: 12px; box-shadow: 0 3px 12px rgba(60,110,160,0.05); overflow: hidden; }
.faq-q {
  display: flex; align-items: center; gap: 14px; padding: 18px 22px; cursor: pointer;
  font-size: 15px; font-weight: 600; color: var(--navy);
}
.faq-q .q-mark {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%;
  background: var(--blue-light); color: #fff; font-weight: 700;
  display: flex; align-items: center; justify-content: center; font-size: 14px;
}
.faq-q .arrow { margin-left: auto; color: var(--blue-light); transition: transform .3s; }
.faq-item.open .faq-q .arrow { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease;
  padding: 0 22px; font-size: 13.5px; color: var(--text-sub); line-height: 1.9;
  display: flex; gap: 14px; align-items: flex-start;
}
.faq-a .a-mark {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%;
  background: linear-gradient(135deg, #7aabdd, #9cc6ec); color: #fff; font-weight: 700;
  display: flex; align-items: center; justify-content: center; font-size: 14px;
}
.faq-item.open .faq-a { max-height: 320px; padding: 4px 22px 20px 22px; }

/* ============ Contact Form ============ */
.section.form-section { background: linear-gradient(180deg, #eef5fa, #f7fbfd); }
.form-inner { display: grid; grid-template-columns: 1.25fr 1fr; gap: 36px; align-items: start; }
.contact-form { background: #fff; border-radius: 20px; padding: 34px; box-shadow: var(--card-shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 7px; }
.form-group label .req {
  font-size: 10px; color: #fff; background: #e08aa6; font-weight: 700;
  padding: 2px 8px; border-radius: 4px; margin-left: 8px; vertical-align: middle;
}
.form-group label .opt { font-size: 11px; color: var(--text-sub); font-weight: 400; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--border-blue);
  border-radius: 10px; font-size: 14px; font-family: inherit; background: #f9fcfe;
  color: var(--text);
}
.form-group textarea { resize: vertical; line-height: 1.7; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--blue); background: #fff;
  box-shadow: 0 0 0 3px rgba(110,160,210,0.12);
}
.form-agree {
  display: flex; align-items: flex-start; gap: 8px; font-size: 12.5px; color: var(--text-sub);
  margin-bottom: 16px; cursor: pointer;
}
.form-agree input { margin-top: 3px; accent-color: var(--blue); width: 16px; height: 16px; }
.form-agree a { color: var(--blue); text-decoration: underline; }
.form-secure {
  font-size: 12px; color: var(--text-sub); text-align: center; margin-bottom: 16px;
  background: #f3f9ff; border-radius: 8px; padding: 10px;
}
.form-secure i { color: #6fa8df; }

/* 右側のサイドCTA（画像なし・洗練デザイン） */
.form-side-cta {
  display: flex; flex-direction: column; gap: 14px; align-items: stretch;
  background: linear-gradient(180deg, #fbfdff 0%, #f1f7fc 100%);
  border: 1px solid #e3eef8; border-radius: 20px; padding: 30px 26px;
  box-shadow: var(--card-shadow);
}
.form-side-cta .cta-btn { width: 100%; }
.form-side-head { text-align: center; margin-bottom: 6px; }
.form-side-head i {
  font-size: 30px; color: #fff;
  background: linear-gradient(135deg, #7aabdd, #9cc6ec);
  width: 64px; height: 64px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 16px rgba(90,140,200,0.3); margin-bottom: 14px;
}
.form-side-head p { font-size: 14px; font-weight: 700; color: var(--navy); line-height: 1.7; }
.form-side-note {
  margin-top: 8px; padding-top: 18px; border-top: 1px dashed #d2e4f3;
  display: flex; flex-direction: column; gap: 10px;
}
.form-side-note p {
  display: flex; align-items: center; gap: 10px;
  font-size: 12.5px; font-weight: 600; color: var(--text);
}
.form-side-note i {
  color: #6fa8df; width: 22px; height: 22px; border-radius: 50%;
  background: #e9f3fc; display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; flex-shrink: 0;
}

/* ============ Final CTA（生成背景画像の上にメッセージ） ============ */
.final-cta { position: relative; overflow: hidden; padding: 72px 0; color: var(--navy); }
.final-cta-bg { position: absolute; inset: 0; z-index: 0; }
.final-cta-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 60%; }
.final-cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.42) 0%, rgba(247,251,253,0.55) 100%);
}
.final-cta .container { position: relative; z-index: 2; }
.final-inner { text-align: center; }
.final-cta h2 {
  font-size: 30px; margin-bottom: 16px; line-height: 1.5; color: var(--navy);
  text-shadow: 0 1px 10px rgba(255,255,255,0.85);
}
.final-cta p { font-size: 14px; color: var(--text); line-height: 1.9; text-shadow: 0 1px 8px rgba(255,255,255,0.8); }
.final-buttons { display: flex; gap: 16px; justify-content: center; margin-top: 36px; flex-wrap: wrap; }
.final-buttons .cta-btn { min-width: 230px; border: 2px solid rgba(255,255,255,0.6); box-shadow: 0 6px 20px rgba(0,0,0,0.12); }

/* ============ Footer ============ */
.footer { background: #f4f8fc; padding: 48px 0 0; border-top: 2px solid #dcebf6; }
.footer-inner {
  display: grid; grid-template-columns: 1.1fr 1.1fr 1.3fr; gap: 36px;
  padding-bottom: 36px; align-items: start;
}
.footer-brand { }
.footer-logo { font-size: 24px; font-weight: 700; color: var(--blue); letter-spacing: 1px; margin-bottom: 14px; }
.footer-license { font-size: 12.5px; color: var(--text-sub); line-height: 1.9; }
.footer-addr p { font-size: 12.5px; color: var(--text-sub); line-height: 2; }
.footer-nav { display: flex; gap: 40px; }
.footer-nav ul { display: flex; flex-direction: column; gap: 11px; }
.footer-nav a { font-size: 13px; color: var(--text); transition: color .2s; }
.footer-nav a:hover { color: var(--blue); }
.copyright { background: #6ba8de; color: #fff; text-align: center; padding: 14px; font-size: 12px; letter-spacing: .03em; }

/* PageTop */
.pagetop {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 50px; height: 50px; border-radius: 50%; background: var(--blue-light);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 18px; box-shadow: 0 6px 16px rgba(60,110,160,0.25);
  opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s; cursor: pointer;
}
.pagetop.show { opacity: 1; visibility: visible; }

/* Fixed mobile CTA */
.mobile-cta { display: none; }

/* ============ Responsive ============ */
@media (max-width: 900px) {
  .nav, .header-cta { display: none; }
  .menu-toggle { display: block; }
  .hero { min-height: 0; }
  .hero-bg img { object-position: 70% 28%; }
  .hero-overlay {
    background: linear-gradient(180deg,
      rgba(247,251,253,0.94) 0%,
      rgba(247,251,253,0.90) 55%,
      rgba(238,245,250,0.86) 100%);
  }
  .hero-copy { max-width: 100%; }
  .hero-bubble { display: none; }
  .hero-leaf { width: 200px; opacity: 0.35; }
  .hero-catch { font-size: 30px; }
  .hero-catch .big { font-size: 36px; }
  .hero-rating { width: 100%; }
  .reasons-grid, .voice-grid { grid-template-columns: repeat(2, 1fr); }
  .worries-grid { grid-template-columns: repeat(3, 1fr); }
  .flow-wrap { grid-template-columns: 1fr; gap: 24px; max-width: 360px; }
  .flow-arrow { transform: rotate(90deg); padding: 4px 0; }
  .two-col, .area-inner, .form-inner, .final-inner, .footer-inner { grid-template-columns: 1fr; }
  .footer-nav { gap: 28px; }
  .area-map { max-width: 320px; margin: 0 auto; }
  .sec-leaf { width: 180px; opacity: 0.35; }
}
@media (max-width: 560px) {
  .reasons-grid, .voice-grid { grid-template-columns: 1fr; }
  .worries-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .sec-title-band .jp { font-size: 21px; }
  .deco-spark { display: none; }
  .sec-leaf { display: none; }
  .hero-cta .cta-btn, .final-buttons .cta-btn { min-width: 100%; }
  .sec-title-band .jp { font-size: 22px; }
  .hero-catch { font-size: 25px; }
  .hero-catch .big { font-size: 31px; }
  .hero-badge { font-size: 11.5px; padding: 7px 14px; }
  .hero-rating { padding: 10px 14px; gap: 8px; }
  .hero-rating .rating-text { font-size: 11.5px; }
  .hero-leaf { display: none; }
  body { padding-bottom: 88px; }
  .mobile-cta {
    display: flex; gap: 10px; position: fixed; bottom: 0; left: 0; right: 0; z-index: 95;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: linear-gradient(180deg, rgba(255,255,255,0.82) 0%, rgba(255,255,255,0.97) 40%);
    backdrop-filter: blur(10px);
    box-shadow: 0 -6px 24px rgba(42,82,122,0.16);
    border-top: 1px solid rgba(214,232,246,0.8);
  }
  .mobile-cta a {
    flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 3px; padding: 9px 4px; text-align: center; color: #fff;
    font-size: 11px; font-weight: 800; letter-spacing: 0.02em;
    border-radius: 14px; position: relative; overflow: hidden;
    box-shadow: 0 6px 16px rgba(42,82,122,0.22);
    transition: transform .18s ease, box-shadow .18s ease;
  }
  .mobile-cta a:active { transform: translateY(2px) scale(0.98); box-shadow: 0 3px 8px rgba(42,82,122,0.18); }
  /* 上部の光沢ハイライト */
  .mobile-cta a::before {
    content: ""; position: absolute; top: 0; left: 0; right: 0; height: 45%;
    background: linear-gradient(180deg, rgba(255,255,255,0.30), rgba(255,255,255,0));
    pointer-events: none;
  }
  .mobile-cta a i {
    display: flex; align-items: center; justify-content: center;
    width: 30px; height: 30px; border-radius: 50%;
    background: rgba(255,255,255,0.24); font-size: 15px; margin-bottom: 1px;
  }
  .mobile-cta .m-tel { background: linear-gradient(135deg, #2f6fbf, #4f93d8); }
  .mobile-cta .m-line { background: linear-gradient(135deg, #2fb350, #5fd07a); }
  .mobile-cta .m-mail { background: linear-gradient(135deg, #5b9ad8, #7eb6e6); }
  .pagetop { bottom: 96px; }
}
