/* ============ 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;
  /* PC固定表示モード: スマホでもPCレイアウトを縮小表示 */
  min-width: 1280px;
}

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, .hero-deco { display: none !important; }
.hero-inner {
  position: relative; z-index: 2;
  max-width: 1180px; width: 100%;
  margin: 0 auto; padding: 56px 24px;
}
.hero-copy { max-width: 640px; }
/* 上部の上品なバッジ */
.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: 10px; margin-top: 32px; flex-wrap: nowrap;
}
.hero-cta .cta-btn {
  flex: 1 1 0; min-width: 0; padding: 14px 14px;
  font-size: 13.5px; letter-spacing: 0;
}
.hero-cta .cta-btn i { width: 26px; height: 26px; font-size: 13px; }

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

/* セクションコーナーの葉っぱ装飾は削除 */
.sec-leaf { display: none !important; }
.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: none !important; }

/* ============ 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; }
/* シングルカラム（中央寄せ）レイアウト */
.single-col { max-width: 720px; margin: 0 auto; }

/* === 料金セクション (pale 背景: 既存の.section.paleで青系) === */
.price-section { padding: 64px 0; }

/* === 弁護士セクション: コンパクトな1段バナー風デザイン === */
.section.lawyer-section {
  background: linear-gradient(180deg, #fdfaf3 0%, #f7eede 100%);
  padding: 36px 0;
  position: relative;
}
.section.lawyer-section::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent 0%, #d9c69a 30%, #d9c69a 70%, transparent 100%);
  opacity: 0.5;
}
.section.lawyer-section::after {
  content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent 0%, #d9c69a 30%, #d9c69a 70%, transparent 100%);
  opacity: 0.5;
}
/* コンパクトな横並びレイアウト */
.lawyer-compact {
  display: grid; grid-template-columns: auto 1fr; gap: 24px;
  align-items: center; max-width: 880px; margin: 0 auto;
  background: #ffffff;
  border: 1px solid #f0e4ce;
  border-radius: 18px;
  padding: 22px 30px;
  box-shadow: 0 10px 28px rgba(180,150,90,0.12);
}
.lawyer-compact-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, #d9c69a, #ecdab4);
  color: #fff; font-size: 30px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 18px rgba(180,150,90,0.30);
}
.lawyer-compact-title {
  font-size: 19px; font-weight: 800; color: #6b5430;
  margin-bottom: 6px; letter-spacing: .03em;
}
.lawyer-compact-lead {
  font-size: 13.5px; color: var(--text); line-height: 1.85;
  margin-bottom: 12px;
}
.section.lawyer-section .lawyer-tags { gap: 8px; }
.section.lawyer-section .lawyer-tags span {
  background: #fdf6e8;
  color: #6b5430;
  font-size: 11.5px;
  padding: 5px 12px;
}
.section.lawyer-section .lawyer-tags span i {
  background: #c9a85e; width: 14px; height: 14px; font-size: 8px;
}

.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; }

/* === 3プラン構成の料金カード === */
.price-lead {
  text-align: center; font-size: 14px; color: var(--text); line-height: 1.95;
  margin: -10px auto 36px; max-width: 720px;
}
.plans-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  align-items: stretch;
}
.plan-card {
  position: relative;
  background: #fff; border-radius: 22px; padding: 32px 26px 28px;
  border: 1.5px solid #e2edf6;
  box-shadow: 0 10px 28px rgba(80,130,180,0.10);
  display: flex; flex-direction: column; gap: 18px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.plan-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(80,130,180,0.16); }
/* おすすめプラン: 強調表示 */
.plan-card.plan-recommend {
  background: linear-gradient(180deg, #fafdff 0%, #ffffff 60%);
  border: 2px solid var(--blue);
  box-shadow: 0 18px 44px rgba(63,132,214,0.20);
  transform: translateY(-8px);
}
.plan-card.plan-recommend:hover { transform: translateY(-12px); }
.plan-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, #f7b955, #ffd086); color: #fff;
  font-size: 12px; font-weight: 800; padding: 6px 16px; border-radius: 50px;
  letter-spacing: .04em; white-space: nowrap;
  box-shadow: 0 6px 14px rgba(220,160,80,0.35);
  display: inline-flex; align-items: center; gap: 6px;
}
.plan-badge i { font-size: 11px; }

.plan-head { text-align: center; }
.plan-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(135deg, #e9f3fc, #d4e6f5);
  color: var(--blue); font-size: 22px; margin-bottom: 12px;
  box-shadow: inset 0 2px 6px rgba(255,255,255,0.6);
}
.plan-recommend .plan-icon {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: #fff;
  box-shadow: 0 6px 16px rgba(63,132,214,0.35);
}
.plan-name {
  font-size: 19px; font-weight: 800; color: var(--navy);
  letter-spacing: .04em; margin-bottom: 4px;
}
.plan-tag {
  font-size: 12.5px; color: var(--text-sub); font-weight: 600;
}

.plan-price {
  text-align: center; padding: 18px 0 14px;
  border-top: 1px dashed #dde9f3;
  border-bottom: 1px dashed #dde9f3;
}
.plan-from { font-size: 12.5px; color: var(--text-sub); font-weight: 600; display: block; margin-bottom: 4px; }
.plan-amount { display: inline-flex; align-items: baseline; gap: 3px; }
.plan-num {
  font-size: 42px; 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;
}
.plan-recommend .plan-num {
  font-size: 46px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.plan-yen { font-size: 18px; font-weight: 800; color: #5f97d4; }
.plan-per { font-size: 13px; color: var(--text-sub); font-weight: 600; }
.plan-tax { font-size: 11.5px; color: var(--text-sub); display: block; margin-top: 6px; }

.plan-features { display: flex; flex-direction: column; gap: 10px; flex-grow: 1; }
.plan-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13.5px; color: var(--text); line-height: 1.6;
}
.plan-features li i {
  flex-shrink: 0; width: 18px; height: 18px; border-radius: 50%;
  background: #e3f1e4; color: #5ab064;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 9px; margin-top: 3px;
}
.plan-recommend .plan-features li i {
  background: var(--blue); color: #fff;
}

.plan-cta {
  display: inline-flex; align-items: center; justify-content: center;
  text-align: center; font-weight: 700; font-size: 14px;
  padding: 13px 22px; border-radius: 50px;
  background: #fff; color: var(--blue); border: 1.5px solid var(--blue);
  transition: background .2s, color .2s, transform .2s;
  text-decoration: none;
}
.plan-cta:hover { background: var(--blue); color: #fff; transform: translateY(-2px); }
.plan-cta-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: #fff; border-color: transparent;
  box-shadow: 0 8px 22px rgba(63,132,214,0.30);
}
.plan-cta-primary:hover { filter: brightness(1.05); background: linear-gradient(135deg, var(--blue), var(--blue-light)); color: #fff; }

.price-note-foot {
  text-align: center; font-size: 12.5px; color: var(--text-sub);
  margin-top: 32px; display: flex; align-items: center; justify-content: center; gap: 8px;
}
.price-note-foot i { color: var(--blue-light); }
.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; }
/* サイドレイアウト（テキスト+タグ ｜ 地図 の 2カラム） */
.area-inner.area-side { grid-template-columns: 1fr 1.1fr; gap: 40px; align-items: center; }
.area-text-col { display: flex; flex-direction: column; gap: 24px; }
.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; }
/* サイドCTAを削除した時の1カラムレイアウト（中央寄せ） */
.form-inner.form-inner-single { grid-template-columns: 1fr; max-width: 760px; margin: 0 auto; }
.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; }

/* ============ PC: Side CTA Banner ============ */
.side-cta {
  position: fixed; right: 20px; top: 50%; transform: translateY(-50%) translateX(30px);
  z-index: 90; width: 320px;
  background: rgba(255,255,255,0.98);
  border: 1.5px solid #dbe8f2;
  border-radius: 22px;
  padding: 26px 22px 24px;
  box-shadow: 0 18px 44px rgba(60,110,160,0.24);
  backdrop-filter: blur(8px);
  display: flex; flex-direction: column; gap: 14px;
  opacity: 0; visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease, transform .3s ease;
}
.side-cta.show {
  opacity: 1; visibility: visible;
  transform: translateY(-50%) translateX(0);
}
.side-cta-head {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-size: 20px; font-weight: 800; color: var(--navy);
  padding-bottom: 6px;
}
.side-cta-head i { color: var(--blue); font-size: 20px; }
.side-cta-lead {
  font-size: 14px; color: var(--text-sub); font-weight: 600; text-align: center;
  padding-bottom: 10px; border-bottom: 1px dashed #dde9f3; margin-bottom: 6px;
  line-height: 1.5;
}
.side-cta-btn {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px; border-radius: 16px;
  color: #fff; font-weight: 700; font-size: 17px; line-height: 1.2;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(60,110,160,0.20);
  transition: transform .2s, box-shadow .2s;
}
.side-cta-btn:hover { transform: translateX(-3px); box-shadow: 0 10px 22px rgba(60,110,160,0.30); }
.side-cta-btn i {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,0.92);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 19px; flex-shrink: 0;
}
.side-cta-btn span { display: flex; flex-direction: column; line-height: 1.25; }
.side-cta-btn small { font-size: 12px; font-weight: 500; opacity: 0.9; }
.side-tel  { background: linear-gradient(135deg, #6fa4dc, #87b8e5); }
.side-tel i  { color: #6fa0d8; }
.side-line { background: linear-gradient(135deg, #88cc89, #a6da9a); }
.side-line i { color: #7cc06a; }
.side-mail { background: linear-gradient(135deg, #6a9bd6, #8db8e2); }
.side-mail i { color: #6fa0d8; }

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

/* ============ Responsive ============ */
/* PC固定表示モードのため、モバイル用メディアクエリは無効化
   (viewport=width=1280 でスマホでもPCレイアウトを縮小表示) */
@media (max-width: 0px) {
  .side-cta { display: none !important; }
}
/* 大画面でコンテンツとの干渉を回避するため右側余白 */
@media (min-width: 1380px) {
  .side-cta { right: 22px; }
}

@media (max-width: 0px) {
  .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, .area-inner.area-side, .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: 0px) {
  .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; }
}

/* ============ Reference image matching refinements (2026-05-30) ============ */
:root {
  --navy: #49687f;
  --blue: #4f8ec7;
  --blue-light: #7fb6dc;
  --icon-blue: #6d98b3;
  --line-green: #76c861;
  --base: #fbfdff;
  --bg-pale: #f3f8fb;
  --bg-pale2: #eaf4f8;
  --text: #586777;
  --text-sub: #8996a4;
  --border-blue: #dfeef5;
  --card-shadow: 0 7px 22px rgba(82, 132, 170, 0.075);
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  background:
    radial-gradient(circle at 6% 5%, rgba(187, 219, 224, .18) 0 90px, transparent 230px),
    radial-gradient(circle at 94% 14%, rgba(199, 225, 238, .26) 0 120px, transparent 260px),
    var(--base);
  color: var(--text);
  letter-spacing: .02em;
}

.container { max-width: 1100px; }
.header { border-bottom: 1px solid rgba(218, 235, 244, .95); box-shadow: 0 3px 14px rgba(80, 130, 170, .045); }
.header-inner { padding: 9px 24px; }
.logo,
.footer-logo,
.sec-title-band .jp,
.hero-catch,
.final-cta h2 {
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-weight: 600;
}
.logo { color: #405b70; font-size: 24px; letter-spacing: .09em; }
.nav { gap: 20px; }
.nav a { font-size: 12px; color: #596a79; }
.header-cta a { width: 98px; height: 31px; border-radius: 999px; font-size: 13px; box-shadow: 0 4px 12px rgba(75, 132, 185, .14); }
.header-cta a::after { font-size: 11px; font-weight: 700; margin-left: 5px; }
.hc-tel::after { content: "電話相談"; }
.hc-line::after { content: "LINE予約"; }
.hc-mail::after { content: "メール相談"; }

.hero { min-height: 420px; background: linear-gradient(180deg, #f7fbfd 0%, #eef6f9 100%); }
.hero-bg img { object-position: 78% 34%; filter: saturate(.94) brightness(1.03); }
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(251,253,255,.98) 0%, rgba(251,253,255,.94) 34%, rgba(242,248,251,.76) 55%, rgba(242,248,251,.1) 100%),
    radial-gradient(circle at 10% 15%, rgba(200, 221, 218, .32), transparent 170px);
}
.hero-inner { max-width: 1120px; padding: 42px 24px 36px; }
.hero-copy { max-width: 610px; }
.hero-badge {
  background: rgba(255,255,255,.78);
  border: 1px solid #d9ecf3;
  color: #66879b;
  box-shadow: 0 5px 16px rgba(90, 145, 180, .08);
  padding: 6px 16px;
  font-size: 12px;
}
.hero-badge i { color: #78a9c8; }
.hero-catch { color: #415d72; font-size: 39px; line-height: 1.56; letter-spacing: .04em; }
.hero-catch .big {
  font-size: 52px;
  background: none;
  -webkit-background-clip: initial; background-clip: initial;
  color: #3f80bc;
  -webkit-text-fill-color: #3f80bc;
  text-shadow: 0 2px 0 rgba(255,255,255,.88), 0 0 12px rgba(160,205,228,.45);
}
.hero-catch .marker { background: linear-gradient(transparent 62%, rgba(185, 225, 239, .74) 62%); }
.hero-lead { margin-top: 14px; font-size: 13.2px; line-height: 1.9; color: #677685; }
.hero-rating { display: none; }
.hero-tags { gap: 8px; margin-top: 18px; }
.hero-tags span { border-radius: 999px; padding: 5px 13px; font-size: 11.5px; background: rgba(255,255,255,.82); color: #6b92aa; }
.hero-cta { margin-top: 24px; max-width: 620px; }
.cta-btn { padding: 12px 22px; font-size: 13px; box-shadow: 0 6px 15px rgba(70, 122, 170, .16); }
.hero-bubble { right: 58px; bottom: 32px; width: 104px; height: 104px; color: #5b8eac; border-color: #d4eaf3; font-family: "Noto Serif JP", serif; }

.section { padding: 38px 0; }
.sec-title-band { margin-bottom: 26px; }
.sec-title-band .jp { font-size: 22px; color: #4e697d; letter-spacing: .08em; }
.sec-title-band::before,
.sec-title-band::after {
  content: "";
  width: 74px; height: 1px;
  background: linear-gradient(90deg, transparent, #cfe3ec, transparent);
}
.sec-title-band .jp::after { width: 42px; height: 3px; background: linear-gradient(90deg, #c9e4ec, #dceff4); }

.reasons-grid { grid-template-columns: repeat(7, 1fr); gap: 12px; }
.reason-card {
  border-radius: 14px;
  padding: 19px 10px 17px;
  border: 1px solid #e7f1f6;
  box-shadow: 0 6px 18px rgba(82,132,170,.06);
  min-height: 158px;
}
.reason-icon { width: 50px; height: 50px; margin-bottom: 10px; }
.reason-icon img { width: 50px; height: 50px; opacity: .82; }
.reason-icon i { font-size: 36px; color: #7fa9bf; }
.reason-card h3 { font-size: 12.3px; line-height: 1.55; margin-bottom: 7px; color: #4e6b80; }
.reason-card p { font-size: 10.5px; line-height: 1.65; color: #8593a1; }

.worries-section { background: linear-gradient(180deg, #f9fcfd 0%, #f0f7fa 100%); }
.worries-grid { gap: 12px; }
.worry-card { border-radius: 12px; padding: 18px 10px 14px; box-shadow: 0 6px 18px rgba(82,132,170,.06); min-height: 162px; }
.worry-card::before { display: none; }
.worry-illust { width: 88px; height: 88px; background: transparent; box-shadow: none; margin-bottom: 4px; }
.worry-text { font-size: 11.8px; line-height: 1.58; color: #65798b; }
.worry-check { background: #edf6f9; color: #79aac5; box-shadow: none; border: 1px solid #d9ecf3; }
.worries-note { margin-top: 24px; padding: 10px 30px; font-size: 13px; background: transparent; border: none; box-shadow: none; color: #78a4bc; }

.flow-section { background: #fff; }
.flow-wrap { max-width: 1030px; gap: 6px; }
.flow-card { border-radius: 14px; padding: 20px 12px 18px; box-shadow: 0 6px 18px rgba(82,132,170,.055); }
.flow-card::after { height: 3px; background: #d7ebf2; }
.flow-num { width: 26px; height: 26px; top: -12px; font-size: 12px; border-width: 2px; }
.flow-icon { width: 72px; height: 72px; margin: 10px auto 8px; }
.flow-icon img { width: 72px; height: 72px; }
.flow-card h3 { font-size: 12.5px; }
.flow-card p { font-size: 10.8px; }
.flow-arrow { color: #c8dce7; font-size: 13px; }

.price-section { padding: 42px 0; background: #f7fbfd; }
.price-lawyer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: stretch; }
.simple-price-card,
.lawyer-support-card,
.local-intro-card,
.area-card-grid article {
  background: rgba(255,255,255,.94);
  border: 1px solid #e5f0f5;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(82,132,170,.07);
}
.simple-price-card,
.lawyer-support-card { padding: 24px 28px; position: relative; overflow: hidden; }
.simple-price-card::after,
.lawyer-support-card::after { content: ""; position: absolute; right: -34px; bottom: -34px; width: 120px; height: 120px; border-radius: 50%; background: rgba(207, 230, 238, .33); }
.card-kicker { display: inline-flex; align-items: center; gap: 7px; color: #6c9bb6; font-size: 12px; font-weight: 700; margin-bottom: 8px; }
.simple-price-card h3,
.lawyer-support-card h3 { color: #4e697d; font-size: 18px; margin-bottom: 12px; font-family: "Noto Serif JP", serif; }
.simple-price-card p,
.lawyer-support-card p { position: relative; z-index: 1; font-size: 12.8px; line-height: 1.9; color: #697888; }
.simple-price { border: 1px dashed #cfe4ee; border-radius: 14px; background: #fbfdff; padding: 14px 18px; margin: 12px 0; display: flex; align-items: baseline; gap: 8px; }
.simple-price .price-label { color: #7e909e; font-size: 12px; font-weight: 700; }
.simple-price strong { color: #3d80bd; font-size: 31px; font-weight: 800; letter-spacing: -.03em; }
.simple-price small { color: #7f8f9b; }
.mini-checks { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.mini-checks li,
.lawyer-mini-tags span,
.seo-keyword-list li { border-radius: 999px; background: #f0f8fb; border: 1px solid #dcecf3; color: #63879d; font-size: 11.5px; font-weight: 700; padding: 6px 11px; }
.mini-checks i { color: #79b46a; margin-right: 5px; }
.lawyer-mini-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; position: relative; z-index: 1; }

.area-seo-section { background: #fff; }
.area-inner.area-side { gap: 30px; margin-bottom: 22px; }
.area-text { font-size: 13.5px; }
.area-tags { gap: 9px; }
.area-tags span { padding: 8px 16px; font-size: 12.5px; box-shadow: none; }
.area-card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 20px; }
.area-card-grid article { padding: 18px 16px; }
.area-card-grid h3 { color: #4f7188; font-size: 14px; margin-bottom: 8px; font-family: "Noto Serif JP", serif; }
.area-card-grid p { color: #7b8996; font-size: 11.8px; line-height: 1.75; }

.voice-grid { gap: 18px; }
.voice-card { border-radius: 16px; padding: 20px 22px; border: 1px solid #eaf3f7; box-shadow: 0 6px 18px rgba(82,132,170,.055); }
.voice-card p { font-size: 12.5px; }
.faq-item { border: 1px solid #e5f0f5; box-shadow: 0 5px 14px rgba(82,132,170,.045); }
.faq-q { font-size: 13px; padding: 14px 18px; }
.faq-a { font-size: 12.5px; }
.contact-form { border: 1px solid #e5f0f5; box-shadow: 0 8px 24px rgba(82,132,170,.075); }
.final-cta { padding: 54px 0; }
.footer { background: #f7fbfd; }

.side-cta { width: 260px; padding: 18px; border-radius: 16px; }
.side-cta-head { font-size: 16px; }
.side-cta-btn { padding: 11px 14px; border-radius: 13px; font-size: 14px; }
.side-cta-btn i { width: 34px; height: 34px; font-size: 15px; }
