@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.1.3
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/
.author-info, .date-tags {
  display: none;
}

:root {
  --green:       #1A3A2A;
  --green-mid:   #2D6A4F;
  --green-light: #52A67A;
  --green-pale:  #EBF5F0;
  --stone:       #F7F4EE;
  --stone-mid:   #E8E4DC;
  --stone-dark:  #CCC5B8;
  --gold:        #B8974A;
  --gold-light:  #D4B06A;
  --gold-pale:   #F5EDD8;
  --ink:         #1A1A18;
  --ink-mid:     #4A4A45;
  --ink-light:   #8A8A82;
  --white:       #FFFFFF;
  --red:         #8B2020;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans JP', sans-serif;
  background: var(--white);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

.article , .under-entry-content {
  padding: 0 10%;
}

/* ───────────── 固定ヘッダー（既存） ───────────── */
/* ヘッダー直後の要素に残っている余白を強制的にリセット */


.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  height: 62px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.site-header + * {
  margin-top: 0 !important;
  padding-top: 0 !important;
}  
.header-logo {
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  color: var(--white);
  letter-spacing: 0.06em;
  line-height: 1.3;
}
.header-logo span {
  display: block;
  font-size: 10px;
  color: var(--gold-light);
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
  letter-spacing: 0.12em;
}
.header-logo a {
  text-decoration: none;
  color: #FFF;
}
.header-tel {
  display: flex;
  align-items: center;
  gap: 18px;
}
.tel-num {
  font-family: 'Noto Serif JP', serif;
  font-size: 22px;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1;
}
.tel-num small {
  display: block;
  font-size: 10px;
  font-family: 'Noto Sans JP', sans-serif;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.1em;
  margin-bottom: 2px;
  font-weight: 300;
}
.header-cta {
  background: var(--gold);
  color: var(--ink);
  font-weight: 700;
  font-size: 13px;
  padding: 10px 20px;
  border-radius: 3px;
  text-decoration: none;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.header-cta:hover { background: var(--gold-light); }
 
 
/* ═══════════════════════════════════════════
   ここから追加：メニュー（PCナビ／SPハンバーガー）
   ═══════════════════════════════════════════ */
 
/* ヘッダーの実際の高さ（JSで自動更新）。初期値はフォールバック */
:root {
  --header-height: 62px;
}
 
/* 余白の二重付与を防ぐため、bodyの既定マージンをリセットしつつ
   ヘッダー高さぶんだけジャストサイズで押し下げる */
html {
  scroll-padding-top: var(--header-height); /* ページ内リンクジャンプ時のズレ防止 */
}
body {
  margin: 0 !important;
  padding-top: var(--header-height) !important;
}
 
/* ----- PCナビゲーション ----- */
.header-nav__list {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}
 
.header-nav__list a {
  position: relative;
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  font-family: 'Noto Sans JP', sans-serif;
  padding: 4px 0;
  white-space: nowrap;
}
 
.header-nav__list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 1px;
  background: var(--gold-light);
  transition: width .25s ease;
}
 
.header-nav__list a:hover::after {
  width: 100%;
}
 
/* SP専用「無料で相談する」項目はPCでは非表示
   （PC右側の.header-cta と重複するため） */
.header-nav__mobile-only {
  display: none;
}
 
.header-nav__cta {
  background: var(--gold);
  color: var(--ink) !important;
  padding: 8px 16px !important;
  border-radius: 3px;
  font-weight: 700 !important;
}
.header-nav__cta::after {
  display: none;
}
.header-nav__cta:hover {
  background: var(--gold-light);
}
 
/* ----- ハンバーガーボタン（初期は非表示／SPのみ表示） ----- */
.hamburger {
  display: none;
  position: relative;
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 110;
}
.hamburger span {
  position: absolute;
  left: 4px;
  right: 4px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease, top .25s ease;
}
.hamburger span:nth-child(1) { top: 9px; }
.hamburger span:nth-child(2) { top: 15px; }
.hamburger span:nth-child(3) { top: 21px; }
 
/* ハンバーガー→×アイコンへの変形（メニュー展開時） */
.site-header.nav-open .hamburger span:nth-child(1) {
  top: 15px;
  transform: rotate(45deg);
}
.site-header.nav-open .hamburger span:nth-child(2) {
  opacity: 0;
}
.site-header.nav-open .hamburger span:nth-child(3) {
  top: 15px;
  transform: rotate(-45deg);
}
 
/* ----- SPメニュー展開時のオーバーレイ ----- */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.site-header.nav-open .nav-overlay {
  display: block;
  opacity: 1;
  pointer-events: auto;
}
 
 
/* ========================================
   768px以下：SPレイアウト
   ======================================== */
@media screen and (max-width: 768px) {
 
  .site-header {
    height: 56px;
    padding: 0 16px;
  }
 
  .header-logo {
    font-size: 14px;
  }
  .header-logo span {
    font-size: 8.5px;
  }
 
  /* 電話・CTAはSPでは非表示（ハンバーガー内に集約） */
  .header-tel {
    display: none;
  }
 
  /* ハンバーガーをSPのみ表示 */
  .hamburger {
    display: block;
  }
 
  /* PCナビ→SPではスライドドロワーに変化 */
  .header-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 78%;
    max-width: 320px;
    background: var(--green);
    box-shadow: -4px 0 20px rgba(0,0,0,0.3);
    transform: translateX(100%);
    transition: transform .3s ease;
    z-index: 100;
    padding: 90px 30px 40px;
    box-sizing: border-box;
    overflow-y: auto;
  }
 
  .site-header.nav-open .header-nav {
    transform: translateX(0);
  }
 
  .header-nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
 
  .header-nav__list li {
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }
 
  .header-nav__list a {
    display: block;
    width: 100%;
    padding: 16px 4px;
    font-size: 15px;
    color: var(--white);
  }
 
  .header-nav__list a::after {
    display: none;
  }
 
  /* SP専用「無料で相談する」を表示 */
  .header-nav__mobile-only {
    display: block;
    border-bottom: none !important;
    margin-top: 16px;
  }
 
  .header-nav__cta {
    display: block;
    text-align: center;
    padding: 12px !important;
  }
}

/* ───────────── FV ───────────── */
.fv {
  margin-top: 62px;
  background: var(--green);
  min-height: calc(100vh - 62px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.fv::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(45,106,79,0.35) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(184,151,74,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.fv-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 48px 60px 64px;
  position: relative;
  z-index: 1;
}
.fv-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(184,151,74,0.15);
  border: 1px solid rgba(184,151,74,0.5);
  color: var(--gold-light);
  font-size: 12px;
  letter-spacing: 0.1em;
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 24px;
  font-weight: 400;
  width: fit-content;
}
.fv-badge::before { content: '✦'; font-size: 9px; }
.fv-h1 {
  font-family: 'Noto Serif JP', serif;
  font-size: 40px;
  color: var(--white);
  line-height: 1.45;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
  font-weight: 700;
}
.fv-h1 em {
  font-style: normal;
  color: var(--gold-light);
  position: relative;
  display: inline-block;
}
.fv-h1 em::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  opacity: 0.6;
}
.fv-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
  line-height: 1.8;
}
.fv-points {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 40px;
}
.fv-point {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 14px;
}
.fv-point::before {
  content: '';
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%231A3A2A'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z'/%3E%3C/svg%3E");
}
.fv-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-main {
  background: var(--gold);
  color: var(--ink);
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 16px 32px;
  border-radius: 3px;
  text-decoration: none;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, transform 0.1s;
}
.btn-main:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-main::after { content: '→'; }
.btn-sub {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
  font-size: 14px;
  padding: 16px 28px;
  border-radius: 3px;
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: border-color 0.2s;
}
.btn-sub:hover { border-color: var(--white); }

/* FV右側：実績数字 */
.fv-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 40px;
  gap: 20px;
  position: relative;
  z-index: 1;
}
.fv-visual {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 36px 28px;
  width: 100%;
  max-width: 380px;
}
.fv-visual-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  color: var(--gold-light);
  letter-spacing: 0.12em;
  text-align: center;
  margin-bottom: 28px;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.stat-item {
  text-align: center;
  padding: 16px 10px;
  background: rgba(255,255,255,0.05);
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.06);
}
.stat-num {
  font-family: 'Noto Serif JP', serif;
  font-size: 32px;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-num span {
  font-size: 16px;
  color: var(--gold-light);
}
.stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  margin-top: 6px;
  letter-spacing: 0.06em;
}
.stat-wide {
  grid-column: 1 / -1;
}
.price-box {
  margin-top: 20px;
  background: var(--gold);
  border-radius: 4px;
  padding: 16px 20px;
  text-align: center;
}
.price-box .price-label {
  font-size: 11px;
  color: var(--green-dark, #0F2B1F);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.price-box .price-num {
  font-family: 'Noto Serif JP', serif;
  font-size: 28px;
  color: var(--green);
  font-weight: 700;
  line-height: 1;
}
.price-box .price-num small { font-size: 14px; }
.price-box .price-note {
  font-size: 10px;
  color: rgba(26,58,42,0.7);
  margin-top: 4px;
}

/* ───────────── 帯：信頼ロゴ ───────────── */
.trust-bar {
  background: var(--stone-mid);
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--ink-mid);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.trust-icon {
  width: 28px; height: 28px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

/* ───────────── お悩みセクション ───────────── */
.section { padding: 80px 0; }
.section-inner { max-width: 1080px; margin: 0 auto; padding: 0 32px; }
.section-narrow { max-width: 840px; margin: 0 auto; padding: 0 32px; }

.sec-eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--green-mid);
  font-weight: 500;
  text-align: center;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.sec-heading {
  font-family: 'Noto Serif JP', serif;
  font-size: 32px;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 14px;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.sec-heading em {
  font-style: normal;
  color: var(--green);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
}
.sec-desc {
  text-align: center;
  color: var(--ink-mid);
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 56px;
}

/* 悩みカード */
.trouble-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.trouble-card {
  background: var(--stone);
  border-radius: 6px;
  padding: 32px 24px;
  border-top: 4px solid var(--stone-dark);
  position: relative;
}
.trouble-card.active-card {
  border-top-color: var(--green);
  background: var(--white);
  box-shadow: 0 4px 24px rgba(26,58,42,0.1);
}
.trouble-num {
  font-family: 'Noto Serif JP', serif;
  font-size: 44px;
  color: var(--stone-dark);
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -0.04em;
}
.active-card .trouble-num { color: var(--green-pale); }
.trouble-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.5;
}
.trouble-body {
  font-size: 13px;
  color: var(--ink-mid);
  line-height: 1.85;
}

.trouble-arrow {
  text-align: center;
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.trouble-arrow-line {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--stone-dark), var(--green));
}
.trouble-arrow-text {
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  color: var(--green);
  font-weight: 700;
  letter-spacing: 0.06em;
  background: var(--white);
  padding: 8px 28px;
  border: 2px solid var(--green);
  border-radius: 40px;
  margin: 8px 0;
}

/* ───────────── 選ばれる理由 ───────────── */
.reason-bg {
  background: var(--green);
  position: relative;
  overflow: hidden;
}
.reason-bg::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(82,166,122,0.08);
  pointer-events: none;
}
.reason-bg .sec-eyebrow { color: var(--gold-light); }
.reason-bg .sec-heading { color: var(--white); }
.reason-bg .sec-heading em { color: var(--gold-light); border-bottom-color: rgba(184,151,74,0.5); }
.reason-bg .sec-desc { color: rgba(255,255,255,0.65); }

.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.reason-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 32px 24px;
  transition: background 0.2s;
}
.reason-card:hover { background: rgba(255,255,255,0.1); }
.reason-icon {
  width: 52px; height: 52px;
  background: var(--gold);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}
.reason-tag {
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--gold-light);
  font-weight: 500;
  margin-bottom: 8px;
}
.reason-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 17px;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.5;
}
.reason-body {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.85;
}

/* ───────────── 料金 ───────────── */
.price-section { background: var(--stone); }

.price-table {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(0,0,0,0.07);
}
.price-table-head {
  background: var(--green);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  text-align: center;
}
.price-th {
  padding: 14px 10px;
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.08em;
  font-weight: 500;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.price-th:last-child { border-right: none; }
.price-th.highlight { color: var(--gold-light); font-weight: 700; }
.price-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  text-align: center;
  border-bottom: 1px solid var(--stone-mid);
}
.price-row:last-child { border-bottom: none; }
.price-cell {
  padding: 18px 10px;
  font-size: 14px;
  border-right: 1px solid var(--stone-mid);
  display: flex;
  align-items: center;
  justify-content: center;
}
.price-cell:last-child { border-right: none; }
.price-cell.label {
  font-weight: 500;
  color: var(--ink);
  justify-content: flex-start;
  padding-left: 24px;
}
.price-cell .price-amount {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--green);
}
.price-cell .price-amount small { font-size: 12px; font-weight: 400; color: var(--ink-mid); }
.price-note-area {
  background: var(--gold-pale);
  border-radius: 4px;
  padding: 16px 20px;
  margin-top: 20px;
  font-size: 12px;
  color: var(--ink-mid);
  line-height: 1.8;
}
.price-note-area strong { color: var(--ink); }

/* ───────────── 代行の流れ ───────────── */
.flow-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.flow-steps::before {
  content: '';
  position: absolute;
  left: 31px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--green), var(--green-light), var(--stone-dark));
}
.flow-step {
  display: flex;
  gap: 28px;
  padding: 28px 0;
  position: relative;
}
.flow-num {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-family: 'Noto Serif JP', serif;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--green);
}
.flow-body { flex: 1; padding-top: 10px; }
.flow-phase {
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--green-light);
  font-weight: 500;
  margin-bottom: 4px;
}
.flow-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
}
.flow-desc {
  font-size: 13px;
  color: var(--ink-mid);
  line-height: 1.8;
}
.flow-tag {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green);
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 2px;
  margin-top: 8px;
  font-weight: 500;
}

/* ───────────── 実績/お客様の声 ───────────── */
.voice-bg { background: var(--stone); }
.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.voice-card {
  background: var(--white);
  border-radius: 6px;
  padding: 28px 22px;
  border: 1px solid var(--stone-mid);
  position: relative;
}
.voice-quote {
  font-size: 48px;
  color: var(--green-pale);
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: 10px;
}
.voice-text {
  font-size: 13px;
  color: var(--ink-mid);
  line-height: 1.85;
  margin-bottom: 16px;
}
.voice-meta {
  font-size: 12px;
  color: var(--ink-light);
  border-top: 1px solid var(--stone-mid);
  padding-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.voice-stars { color: var(--gold); letter-spacing: 2px; }
.voice-case-tag {
  background: var(--green-pale);
  color: var(--green);
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 2px;
}

/* ───────────── FAQ ───────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--stone-mid);
}
.faq-item {
  border-bottom: 1px solid var(--stone-mid);
}
.faq-q {
  display: flex;
  gap: 16px;
  padding: 22px 0;
  cursor: pointer;
  align-items: flex-start;
}
.faq-q-mark {
  font-family: 'Noto Serif JP', serif;
  font-size: 20px;
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  width: 28px;
  line-height: 1.3;
}
.faq-q-text {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.6;
  flex: 1;
}
.faq-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
  transition: transform 0.3s;
  line-height: 1;
}
.faq-a {
  display: none;
  padding: 0 0 22px 44px;
}
.faq-a.open { display: block; }
.faq-a-mark {
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 6px;
}
.faq-a-text {
  font-size: 13px;
  color: var(--ink-mid);
  line-height: 1.85;
}

/* ───────────── CTAバナー ───────────── */
.cta-section {
  background: var(--green);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 110%, rgba(184,151,74,0.12) 0%, transparent 70%);
}
.cta-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-heading {
  font-family: 'Noto Serif JP', serif;
  font-size: 28px;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}
.cta-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 40px;
  line-height: 1.8;
}
.cta-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
.cta-box {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  padding: 28px 24px;
  text-align: center;
}
.cta-box-icon { font-size: 28px; margin-bottom: 10px; }
.cta-box-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  color: var(--gold-light);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}
.btn-cta-main {
  background: var(--gold);
  color: var(--ink);
  font-weight: 700;
  font-size: 16px;
  padding: 16px 28px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  text-decoration: none;
  width: 100%;
  border: none;
  letter-spacing: 0.04em;
  transition: background 0.2s;
}
.btn-cta-main:hover { background: var(--gold-light); }
.btn-cta-tel {
  background: var(--white);
  color: var(--green);
  font-weight: 700;
  font-size: 16px;
  padding: 16px 28px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  text-decoration: none;
  width: 100%;
  border: none;
  letter-spacing: 0.04em;
  transition: background 0.2s;
}
.btn-cta-tel:hover { background: var(--stone); }
.btn-cta-tel .tel-big {
  font-family: 'Noto Serif JP', serif;
  font-size: 22px;
}
.cta-free-note {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin-top: 16px;
  letter-spacing: 0.06em;
}

/* ───────────── フッター ───────────── */
.site-footer {
  background: var(--ink);
  padding: 48px 0 24px;
}
.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}
.footer-brand-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  margin-bottom: 16px;
}
.footer-tel-block {
  background: rgba(255,255,255,0.05);
  border-radius: 4px;
  padding: 14px 16px;
}
.footer-tel-block .label {
  font-size: 10px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.12em;
  margin-bottom: 4px;
}
.footer-tel-num {
  font-family: 'Noto Serif JP', serif;
  font-size: 22px;
  color: var(--white);
  letter-spacing: 0.04em;
}
.footer-col-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 13px;
  color: var(--gold-light);
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links li a {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.02em;
}
.footer-links li a::before { content: '›'; color: var(--gold); }
.footer-links li a:hover { color: rgba(255,255,255,0.85); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.06em;
}
.footer-policy {
  display: flex;
  gap: 18px;
}
.footer-policy a {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  letter-spacing: 0.04em;
}
.footer-policy a:hover { color: rgba(255,255,255,0.7); }

/* ───────────── 固定フッターCTA（モバイル用）───────────── */
.sticky-cta {
  display: none;
}

/* ───────────── 区切り ───────────── */
.section-divider {
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin: 0 auto 24px;
  border-radius: 2px;
}

/* ───────────── 強調帯 ───────────── */
.highlight-bar {
  background: var(--gold-pale);
  border-left: 4px solid var(--gold);
  border-radius: 0 4px 4px 0;
  padding: 16px 20px;
  margin: 28px 0;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.7;
}
.highlight-bar strong { color: var(--green); }

/* ───────────── レスポンシブ ───────────── */
@media (max-width: 768px) {
  .fv { grid-template-columns: 1fr; min-height: auto; }
  .fv-left { padding: 48px 24px 40px; }
  .fv-h1 { font-size: 28px; }
  .fv-right { padding: 0 24px 48px; }
  .trouble-grid { grid-template-columns: 1fr; }
  .reason-grid { grid-template-columns: 1fr; }
  .voice-grid { grid-template-columns: 1fr; }
  .cta-boxes { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .header-tel { display: none; }
  .price-table-head { display: none; }
  .price-row { grid-template-columns: 1fr 1fr; }
  .price-cell { padding: 12px 8px; font-size: 13px; }
  .sticky-cta {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 99;
    background: var(--green);
    padding: 10px 16px;
    gap: 10px;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.25);
  }
  .sticky-cta a {
    flex: 1;
    text-align: center;
    font-weight: 700;
    font-size: 13px;
    padding: 12px 8px;
    border-radius: 3px;
    text-decoration: none;
  }
  .sticky-cta a.tel { background: var(--white); color: var(--green); }
  .sticky-cta a.form { background: var(--gold); color: var(--ink); }
}

/* ───────────── 全国拠点マップ ───────────── */
.office-section { background: var(--stone); }

/* 地図画像＋ピン */
.map-container {
  position: relative;
  width: 100%;
}
.map-img {
  width: 100%;
  height: auto;
  display: block;
}
.map-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 5px;
  z-index: 2;
}
.pin-dot {
  width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--green);
  border: 2.5px solid #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.3);
  flex-shrink: 0;
}
.pin-dot--hq {
  width: 18px; height: 18px;
  background: var(--gold);
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.35);
}
.pin-label {
  background: var(--green);
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 11px;
  font-weight: 500;
  padding: 3px 8px;
  border-radius: 3px;
  white-space: nowrap;
  line-height: 1.4;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.pin-label--hq {
  background: var(--gold);
  color: var(--green);
  font-weight: 700;
  font-size: 12px;
  padding: 4px 10px;
}
.pin-label--hq small {
  font-size: 10px;
  display: block;
  font-weight: 400;
  opacity: 0.85;
  line-height: 1;
}
.pin-label--right { order: 1; }
.map-pin .pin-dot { order: 0; }
.pin-label--left  { order: -1; }
.map-legend {
  position: absolute;
  bottom: 8px; right: 8px;
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--stone-mid);
  border-radius: 4px;
  padding: 8px 12px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.map-legend-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  color: var(--ink-mid);
}
.legend-dot {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--green);
  border: 2px solid #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
  flex-shrink: 0;
}
.legend-dot--hq {
  background: var(--gold);
  width: 13px; height: 13px;
}



.office-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

/* 地図 */
.office-map-wrap {
  position: relative;
  background: var(--white);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 24px rgba(26,58,42,0.08);
  border: 1px solid var(--stone-mid);
}
.japan-map {
  width: 100%;
  height: auto;
  display: block;
}
.office-pin {
  cursor: default;
  transition: opacity 0.2s;
}
.office-pin:hover { opacity: 0.85; }

/* 本社バッジ */
.office-hq-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--gold-pale);
  border: 2px solid var(--gold);
  border-radius: 8px;
  padding: 18px 20px;
  margin-bottom: 24px;
}
.hq-icon { font-size: 28px; flex-shrink: 0; }
.hq-label {
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 2px;
}
.hq-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--green);
  line-height: 1.2;
}
.hq-note {
  font-size: 12px;
  color: var(--ink-mid);
  margin-top: 2px;
}

/* 事務所リスト */
.office-list-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  color: var(--green);
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--green-pale);
  font-weight: 700;
}
.office-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.office-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.office-region {
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
  background: var(--green);
  padding: 3px 10px;
  border-radius: 2px;
  letter-spacing: 0.08em;
  white-space: nowrap;
  min-width: 38px;
  text-align: center;
}
.office-names {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.office-name-tag {
  background: var(--white);
  border: 1.5px solid var(--green-light);
  color: var(--green);
  font-size: 13px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.04em;
}

/* ========================================
   支店スタッフ紹介セクション
   ======================================== */
.staff-intro {
  --staff-accent: #55aeac;     /* アクセントカラー（既存サイトのティーン系に合わせて仮設定） */
  --staff-accent-dark: #00897b;
  --staff-badge-text: #ffffff;
  --staff-text: #333333;
  --staff-sub: #707070;
  --staff-card-bg: #ffffff;
  --staff-bg: #f7faf9;

  background: var(--staff-bg);
  padding: 60px 3% 70px;
  box-sizing: border-box;
}

.staff-intro__inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.staff-intro__eyebrow {
  margin: 0 0 6px;
  font-size: 13px;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: var(--staff-accent);
}

.staff-intro__title {
  margin: 0 0 14px;
  font-size: 28px;
  font-weight: 700;
  color: var(--staff-text);
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", serif;
}

.staff-intro__lead {
  margin: 0 auto 40px;
  max-width: 560px;
  font-size: 15px;
  line-height: 1.9;
  color: var(--staff-sub);
}

.staff-intro__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.staff-card {
  width: calc(25% - 21px);
  background: var(--staff-card-bg);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  text-align: left;
  transition: transform .25s ease, box-shadow .25s ease;
}

.staff-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(85, 174, 172, 0.25);
}

.staff-card__photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e5e5e5;
}

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

.staff-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--staff-accent);
  color: var(--staff-badge-text);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 5px 12px;
  border-radius: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.staff-card__body {
  padding: 18px 16px 22px;
}

.staff-card__name {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 700;
  color: var(--staff-text);
  position: relative;
  padding-left: 12px;
}

.staff-card__name::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 4px;
  border-radius: 2px;
  background: var(--staff-accent-dark);
}

.staff-card__comment {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.8;
  color: var(--staff-sub);
}

/* ---------- 1024px以下（タブレット横） ---------- */
@media screen and (max-width: 1024px) {
  .staff-card {
    width: calc(33.333% - 19px);
  }
}

/* ---------- 768px以下（タブレット縦） ---------- */
@media screen and (max-width: 768px) {
  .staff-intro {
    padding: 45px 4% 55px;
  }
  .staff-intro__title {
    font-size: 24px;
  }
  .staff-intro__lead {
    font-size: 14px;
    margin-bottom: 30px;
  }
  .staff-intro__list {
    gap: 18px;
  }
  .staff-card {
    width: calc(50% - 9px);
  }
  .staff-card__body {
    padding: 14px 14px 18px;
  }
  .staff-card__name {
    font-size: 15.5px;
  }
  .staff-card__comment {
    font-size: 12.5px;
  }
}

/* ---------- 480px以下（スマホ） ---------- */
@media screen and (max-width: 480px) {
  .staff-intro {
    padding: 36px 5% 45px;
  }
  .staff-intro__eyebrow {
    font-size: 12px;
  }
  .staff-intro__title {
    font-size: 21px;
  }
  .staff-intro__list {
    gap: 14px;
  }
  .staff-card {
    width: 100%;
  }
  .staff-card__photo {
    aspect-ratio: 16 / 9;
  }
  .staff-card__badge {
    font-size: 11px;
    padding: 4px 10px;
  }
}

/* 下部CTA */
.office-cta-note {
  background: var(--white);
  border-radius: 8px;
  padding: 20px 22px;
  border: 1px solid var(--stone-mid);
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.8;
}
.office-cta-note strong { color: var(--green); }

@media (max-width: 768px) {
  .office-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .office-map-wrap { padding: 16px; }
}


.fv-image-only {
  position: relative;
  line-height: 0;
}
.fv-img {
  width: 100%;
  display: block;
}
.fv-img--sp { display: none; }
.fv-img--pc { display: block; }

.fv-overlay-cta {
  display: none; /* PC時は非表示 */
}

/* ───────────── FV直下帯 ───────────── */
.fv-lower {
  background: var(--green);
  padding: 0;
}
.fv-lower-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 52px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.fv-lower-left {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.fv-lower-lead {
  font-family: 'Noto Serif JP', serif;
  font-size: 20px;
  color: var(--white);
  line-height: 1.7;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}
.fv-lower-right {
  display: flex;
  justify-content: center;
}
.fv-lower-right .fv-visual {
  width: 100%;
  max-width: 400px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 28px 24px;
}

/* FVセクション（旧）の削除 */
.fv { display: none !important; }

@media (max-width: 768px) {
  .fv-img--pc { display: none; }
  .fv-img--sp { display: block; }
  .fv-overlay-cta {
    display: flex;
    justify-content: center;
    padding: 16px;
    background: var(--green);
  }
  .fv-overlay-cta .btn-main {
    width: 100%;
    justify-content: center;
    font-size: 15px;
    padding: 16px 20px;
  }
  .fv-lower-inner {
    grid-template-columns: 1fr;
    padding: 36px 20px;
    gap: 28px;
  }
  .fv-lower-lead { font-size: 16px; }
  .fv-lower-right .fv-visual { max-width: 100%; }
}
/* ───────────── TOPへ戻るボタン ───────────── */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 95;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green);
  border: 2px solid var(--gold);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .3s ease, transform .3s ease, visibility .3s ease, background .2s ease;
}
 
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
 
.back-to-top:hover {
  background: var(--green-mid);
}
 
.back-to-top__arrow {
  font-size: 18px;
  line-height: 1;
}
 
.back-to-top__text {
  font-size: 9px;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1;
}
 
/* ---------- SP：下部固定バー（.sticky-cta）と重ならないよう位置調整 ---------- */
@media screen and (max-width: 768px) {
  .back-to-top {
    right: 14px;
    bottom: 78px; /* .sticky-cta の高さぶん上にオフセット */
    width: 46px;
    height: 46px;
  }
  .back-to-top__arrow {
    font-size: 15px;
  }
  .back-to-top__text {
    font-size: 8px;
  }
}
/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px){
  /*必要ならばここにコードを書く*/
}

/*834px以下*/
@media screen and (max-width: 834px){
  /*必要ならばここにコードを書く*/
}

/*480px以下*/
@media screen and (max-width: 480px){
  /*必要ならばここにコードを書く*/
}
