


/* =========================================
   Sub Mainvisual（画像）
   - 中央トリミングで綺麗に見せる
   - 角丸 + 影 + ほんのり暖色
========================================= */

.sub_mainvisual{
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* 画像本体 */
.sub_mainvisual img{
  display: block;
  width: 100%;
  height: clamp(220px, 32vw, 420px); /* 画面に応じて高さ調整 */
  object-fit: cover;
  object-position: center;

  /* 温かい印象（強すぎない程度） */
  filter: saturate(1.05) contrast(1.02) brightness(1.03);
  transform: translateZ(0); /* 描画安定 */
}

/* ふんわり光のオーバーレイ */
.sub_mainvisual::after{
  content:"";
  position:absolute;
  inset: 0;
  background:
    radial-gradient(700px 360px at 12% 10%, rgba(255, 213, 153, 0.18), rgba(255, 213, 153, 0) 60%),
    linear-gradient(180deg, rgba(255, 250, 243, 0.20) 0%, rgba(255, 255, 255, 0.00) 45%, rgba(255, 255, 255, 0.06) 100%);
  pointer-events:none;
}

/* タブレット/スマホ：幅85% */
@media (max-width: 820px){
  .sub_mainvisual{
    width: 98%;
    border-radius: 16px;
  }
}

/* スマホ：高さ・角丸微調整 */
@media (max-width: 480px){
  .sub_mainvisual{
    border-radius: 14px;
  }
  .sub_mainvisual img{
    height: 220px;
  }
}



/* =========================================
   Base (必要なら)
========================================= */
:root{
  --warm-text: #3b2a20;
  --warm-heading: #2f2018;
  --accent: rgba(211, 84, 0, 0.45);
  --border: rgba(210, 150, 90, 0.18);
  --shadow1: 0 14px 40px rgba(120, 75, 40, 0.10);
  --shadow2: 0 2px 10px rgba(120, 75, 40, 0.07);
  --card-bg: rgba(255, 255, 255, 0.80);
  --soft-bg: #fffaf3;
}

section{
  scroll-margin-top: 90px; /* 固定ヘッダーがあっても見出しが隠れにくい */
}

/* =========================================
   共通：inner（幅統一）
   PC: 65% / <=820px: 85% / max 1100
========================================= */
.hero .inner,
.quick-answer .inner,
.area-links .inner,
.facility-cards .inner,
.choose .inner,
.cost .inner,
.compare .inner,
.flow .inner,
.faq .inner,
.final-cta .inner,
.related-links .inner{
  width: 65%;
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(18px, 3vw, 30px);
  color: var(--warm-text);
  line-height: 1.75;
}

@media (max-width: 820px){
  .hero .inner,
  .quick-answer .inner,
  .area-links .inner,
  .facility-cards .inner,
  .choose .inner,
  .cost .inner,
  .compare .inner,
  .flow .inner,
  .faq .inner,
  .final-cta .inner,
  .related-links .inner{
    width: 95%;
  }
}

@media (max-width: 480px){
  .hero .inner,
  .quick-answer .inner,
  .area-links .inner,
  .facility-cards .inner,
  .choose .inner,
  .cost .inner,
  .compare .inner,
  .flow .inner,
  .faq .inner,
  .final-cta .inner,
  .related-links .inner{
    padding: 16px;
  }
}

/* 見出し共通（h2） */
.quick-answer h2,
.area-links h2,
.facility-cards h2,
.choose h2,
.cost h2,
.compare h2,
.flow h2,
.faq h2,
.final-cta h2,
.related-links h2{
  margin: 0 0 14px;
  font-size: clamp(18px, 1.8vw, 26px);
  font-weight: 900;
  line-height: 1.3;
  color: var(--warm-heading);
  padding-left: 14px;
  border-left: 6px solid var(--accent);
}

/* =========================================
   HERO
========================================= */
.hero{
  position: relative;
  padding: clamp(22px, 4vw, 56px) 0;
  overflow: hidden;
  background:
    radial-gradient(1100px 520px at 12% 0%, rgba(255, 213, 153, 0.35), rgba(255, 213, 153, 0) 60%),
    radial-gradient(900px 520px at 92% 10%, rgba(255, 175, 180, 0.22), rgba(255, 175, 180, 0) 60%),
    linear-gradient(180deg, var(--soft-bg) 0%, #fff 60%, #fff 100%);
}

.hero::before{
  content:"";
  position:absolute;
  top: -80px;
  right: -120px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 210, 120, 0.35), rgba(255, 210, 120, 0) 65%);
  pointer-events:none;
}

.hero::after{
  content:"";
  position:absolute;
  bottom: -120px;
  left: -140px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle at 60% 60%, rgba(255, 170, 170, 0.24), rgba(255, 170, 170, 0) 70%);
  pointer-events:none;
}

.hero .inner{
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--border);
  box-shadow: 0 14px 40px rgba(120, 75, 40, 0.12), 0 2px 10px rgba(120, 75, 40, 0.08);
  backdrop-filter: blur(6px);
  overflow: hidden;
  position: relative;
}

.hero h1{
  margin: 0 0 12px;
  font-size: clamp(22px, 2.2vw, 34px);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0.02em;
  color: var(--warm-heading);
  padding-left: 14px;
  border-left: 6px solid var(--accent);
}

.hero .lead{
  margin: 0 0 18px;
  font-size: clamp(14px, 1.2vw, 17px);
  color: rgba(47, 32, 24, 0.86);
}

/* hero points */
.hero .points{
  list-style: none;
  padding: 0;
  margin: 0 0 18px;

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 14px;
}

.hero .points li{
  display: flex;
  align-items: flex-start;
  gap: 10px;

  padding: 12px 14px;
  border-radius: 14px;

  background: var(--card-bg);
  border: 1px solid var(--border);
  box-shadow: 0 6px 18px rgba(120, 75, 40, 0.08);
}

.hero .points li::before{
  content: "✓";
  width: 26px;
  height: 26px;
  border-radius: 999px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  background: rgba(211, 84, 0, 0.12);
  border: 1px solid rgba(211, 84, 0, 0.25);
  color: #8b3b12;
  font-weight: 900;
  margin-top: 1px;
}

/* CTA row (hero / final-cta 共通で使える) */
.cta-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 8px 0 18px;
}

.cta-row a{
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;

  width: 100%;
  min-height: 56px;
  padding: 14px 16px;

  border-radius: 16px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-align: center;

  box-shadow:
    0 10px 24px rgba(120, 75, 40, 0.10),
    0 2px 6px rgba(0, 0, 0, 0.10);

  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}

.cta-tel{
  background: linear-gradient(180deg, #f6a96a, #e67e22);
  color: #fff;
}

.cta-tel span{
  margin-left: 6px;
  font-size: 12px;
  font-weight: 700;
  opacity: 0.92;
}

.cta-form{
  background: linear-gradient(180deg, rgba(255, 245, 235, 0.98), rgba(255, 255, 255, 0.88));
  color: var(--warm-heading);
  border: 1px solid rgba(211, 84, 0, 0.20);
}

@media (hover:hover){
  .cta-row a:hover{
    transform: translateY(-2px);
    filter: brightness(1.03);
    box-shadow:
      0 14px 28px rgba(120, 75, 40, 0.14),
      0 4px 10px rgba(0, 0, 0, 0.12);
  }
}

.cta-row a:active{
  transform: translateY(1px);
  box-shadow:
    0 6px 14px rgba(120, 75, 40, 0.12),
    0 2px 6px rgba(0, 0, 0, 0.10);
}

/* hero nav */
.hero-nav{
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--border);
  padding: 12px;
}

.hero-nav ul{
  list-style: none;
  margin: 0;
  padding: 0;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.hero-nav a{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 10px 10px;
  border-radius: 14px;

  text-decoration: none;
  color: rgba(47, 32, 24, 0.90);
  font-weight: 800;
  font-size: 13px;
  line-height: 1.2;

  background: rgba(255, 250, 243, 0.8);
  border: 1px solid rgba(210, 150, 90, 0.16);
}

.hero-nav a::before{
  content: "•";
  opacity: 0.55;
}

@media (hover:hover){
  .hero-nav a{
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
  }
  .hero-nav a:hover{
    transform: translateY(-2px);
    border-color: rgba(211, 84, 0, 0.22);
    box-shadow: 0 10px 18px rgba(120, 75, 40, 0.10);
  }
}

@media (max-width: 820px){
  .hero .points{ grid-template-columns: 1fr; }
  .hero-nav ul{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 480px){
  .hero .inner{ border-radius: 14px; }
  .cta-row{ grid-template-columns: 1fr; }
  .hero-nav ul{ grid-template-columns: 1fr; }
  .hero-nav a{ padding: 12px 10px; font-size: 14px; }
}

/* =========================================
   QUICK ANSWER
========================================= */
.quick-answer{
  padding: clamp(14px, 3vw, 26px) 0;
  background: #fff;
}

.quick-answer .inner{
  border-radius: 20px;
  background:
    radial-gradient(900px 420px at 10% 0%, rgba(255, 213, 153, 0.18), rgba(255, 213, 153, 0) 60%),
    linear-gradient(180deg, var(--soft-bg) 0%, #fff 100%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow1), var(--shadow2);
  overflow: hidden;
}

.quick-answer p{
  margin: 0;
  font-size: clamp(14px, 1.1vw, 16px);
  color: rgba(47, 32, 24, 0.88);
}

.quick-answer strong{
  display: inline-block;
  padding: 2px 6px;
  border-radius: 8px;
  background: rgba(211, 84, 0, 0.10);
  border: 1px solid rgba(211, 84, 0, 0.18);
  color: var(--warm-heading);
  font-weight: 900;
  margin: 0 2px;
}

/* =========================================
   共通：area-list（複数セクションで使う）
========================================= */
.area-list{
  list-style: none;
  margin: 0;
  padding: 0;

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 14px;
}

.area-list li{ margin: 0; }

.area-list a{
  display: flex;
  align-items: center;
  gap: 10px;

  width: 100%;
  padding: 14px 14px;

  text-decoration: none;
  color: var(--warm-heading);
  font-weight: 900;
  font-size: 14px;
  line-height: 1.5;

  border-radius: 16px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  box-shadow: 0 8px 18px rgba(120, 75, 40, 0.08);

  position: relative;
  overflow: hidden;
}

.area-list a::before{
  content: "➜";
  width: 28px;
  height: 28px;
  border-radius: 999px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  background: rgba(211, 84, 0, 0.12);
  border: 1px solid rgba(211, 84, 0, 0.25);
  color: #8b3b12;
  font-weight: 900;
}

.area-list a::after{
  content: "›";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.55;
  font-size: 18px;
}

@media (hover:hover){
  .area-list a{
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, filter .18s ease;
  }
  .area-list a:hover{
    transform: translateY(-2px);
    filter: brightness(1.02);
    box-shadow: 0 12px 22px rgba(120, 75, 40, 0.12);
    border-color: rgba(211, 84, 0, 0.22);
  }
}

@media (max-width: 820px){
  .area-list{ grid-template-columns: 1fr; }
}

@media (max-width: 480px){
  .area-list a{
    padding: 13px 12px;
    border-radius: 14px;
  }
  .area-list a::after{ right: 12px; }
}

/* =========================================
   AREA LINKS
========================================= */
.area-links{
  padding: clamp(14px, 3vw, 28px) 0;
  background: #fff;
}

.area-links .inner{
  border-radius: 20px;
  background:
    radial-gradient(900px 480px at 5% 0%, rgba(255, 213, 153, 0.22), rgba(255, 213, 153, 0) 55%),
    radial-gradient(700px 420px at 95% 15%, rgba(255, 175, 180, 0.16), rgba(255, 175, 180, 0) 55%),
    linear-gradient(180deg, var(--soft-bg) 0%, #fff 100%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow1), var(--shadow2);
  overflow: hidden;
}

.area-links p{
  margin: 0 0 14px;
  color: rgba(47, 32, 24, 0.86);
}

/* =========================================
   FACILITY CARDS
========================================= */
.facility-cards{
  padding: clamp(16px, 3vw, 36px) 0;
  background: linear-gradient(180deg, #fff 0%, var(--soft-bg) 65%, #fff 100%);
}

.facility-cards .cards{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.facility-cards .card{
  padding: 16px 16px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--border);
  box-shadow: 0 12px 28px rgba(120, 75, 40, 0.10), 0 2px 8px rgba(120, 75, 40, 0.06);
  position: relative;
  overflow: hidden;
}

.facility-cards .card::before{
  content:"";
  position:absolute;
  top: -70px;
  right: -80px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 210, 120, 0.26), rgba(255, 210, 120, 0) 65%);
  pointer-events:none;
}

.facility-cards .card h3{
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.35;
  color: var(--warm-heading);
}

.facility-cards .card p{
  margin: 0 0 10px;
  font-size: 14px;
  color: rgba(47, 32, 24, 0.88);
}

.facility-cards .card ul{
  margin: 0 0 12px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.facility-cards .card ul li{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 250, 243, 0.75);
  border: 1px solid rgba(210, 150, 90, 0.14);
}

.facility-cards .card ul li::before{
  content: "✓";
  width: 24px;
  height: 24px;
  border-radius: 999px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  background: rgba(211, 84, 0, 0.10);
  border: 1px solid rgba(211, 84, 0, 0.20);
  color: #8b3b12;
  font-weight: 900;
  margin-top: 1px;
}

/* facility btn */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 12px 14px;
  border-radius: 14px;

  text-decoration: none;
  font-weight: 900;
  font-size: 14px;
  color: #fff;

  background: linear-gradient(180deg, #f6a96a, #e67e22);
  box-shadow:
    0 10px 22px rgba(230, 126, 34, 0.32),
    0 2px 6px rgba(0, 0, 0, 0.10);
}

.btn::after{
  content: "›";
  opacity: 0.9;
  font-size: 18px;
  line-height: 1;
}

@media (hover:hover){
  .facility-cards .card{
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  }
  .facility-cards .card:hover{
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(120, 75, 40, 0.12), 0 4px 12px rgba(120, 75, 40, 0.08);
    border-color: rgba(211, 84, 0, 0.20);
  }

  .btn{
    transition: transform .15s ease, filter .15s ease, box-shadow .15s ease;
  }
  .btn:hover{
    transform: translateY(-2px);
    filter: brightness(1.04);
    box-shadow: 0 14px 28px rgba(230, 126, 34, 0.40), 0 4px 10px rgba(0, 0, 0, 0.12);
  }
}

@media (max-width: 820px){
  .facility-cards .cards{ grid-template-columns: 1fr; }
}

@media (max-width: 480px){
  .facility-cards .card{
    border-radius: 14px;
    padding: 14px 14px 12px;
  }
  .btn{
    width: 100%;
    min-height: 52px;
  }
}

/* =========================================
   CHOOSE（本文セクション）
========================================= */
.choose{
  padding: clamp(16px, 3vw, 34px) 0;
  background: #fff;
}

.choose .inner{
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--border);
  box-shadow: var(--shadow1), var(--shadow2);
}

.choose h3{
  margin: 18px 0 8px;
  font-size: 16px;
  font-weight: 900;
  color: var(--warm-heading);
  line-height: 1.4;

  padding-left: 12px;
  border-left: 4px solid rgba(211, 84, 0, 0.30);
}

.choose p{
  margin: 0 0 12px;
  color: rgba(47, 32, 24, 0.88);
}

/* =========================================
   COST（費用の目安）
========================================= */
.cost{
  padding: clamp(16px, 3vw, 34px) 0;
  background: linear-gradient(180deg, var(--soft-bg) 0%, #fff 100%);
}

.cost .inner{
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--border);
  box-shadow: var(--shadow1), var(--shadow2);
}

.cost p{ margin: 0 0 12px; color: rgba(47, 32, 24, 0.88); }

.cost ul{
  margin: 0 0 12px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.cost ul li{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 250, 243, 0.75);
  border: 1px solid rgba(210, 150, 90, 0.14);
}

.cost ul li::before{
  content: "✓";
  width: 24px;
  height: 24px;
  border-radius: 999px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  background: rgba(211, 84, 0, 0.10);
  border: 1px solid rgba(211, 84, 0, 0.20);
  color: #8b3b12;
  font-weight: 900;
  margin-top: 1px;
}

/* internal links */
.internal-links{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.internal-links a{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 10px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 900;
  font-size: 13px;
  color: rgba(47, 32, 24, 0.90);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(210, 150, 90, 0.16);
}

@media (hover:hover){
  .internal-links a{
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  }
  .internal-links a:hover{
    transform: translateY(-2px);
    box-shadow: 0 10px 18px rgba(120, 75, 40, 0.10);
    border-color: rgba(211, 84, 0, 0.22);
  }
}

@media (max-width: 820px){
  .internal-links{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 480px){
  .internal-links{ grid-template-columns: 1fr; }
}

/* =========================================
   COMPARE（表 + 下部 area-list）
========================================= */
.compare{
  padding: clamp(16px, 3vw, 34px) 0;
  background: #fff;
}

.compare .inner{
  border-radius: 20px;
  background:
    radial-gradient(900px 480px at 5% 0%, rgba(255, 213, 153, 0.20), rgba(255, 213, 153, 0) 55%),
    linear-gradient(180deg, var(--soft-bg) 0%, #fff 100%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow1), var(--shadow2);
  overflow: hidden;
}

.compare table{
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(210, 150, 90, 0.18);
}

.compare thead th{
  text-align: left;
  font-weight: 900;
  font-size: 14px;
  color: var(--warm-heading);
  padding: 14px 14px;
  background: linear-gradient(180deg, rgba(255, 239, 220, 0.95), rgba(255, 255, 255, 0.85));
  border-bottom: 1px solid rgba(210, 150, 90, 0.20);
}

.compare thead th + th{
  border-left: 1px solid rgba(210, 150, 90, 0.16);
}

.compare tbody td{
  vertical-align: top;
  padding: 14px 14px;
  font-size: 14px;
  line-height: 1.65;
  border-bottom: 1px solid rgba(210, 150, 90, 0.16);
}

.compare tbody td + td{
  border-left: 1px solid rgba(210, 150, 90, 0.10);
}

.compare tbody tr:nth-child(even) td{
  background: rgba(255, 250, 243, 0.65);
}

.compare tbody td:first-child{
  font-weight: 900;
  color: var(--warm-heading);
  white-space: nowrap;
}

@media (hover:hover){
  .compare tbody tr:hover td{
    background: rgba(255, 245, 235, 0.90);
  }
}

/* モバイル：カード化（横スクロール回避） */
@media (max-width: 600px){
  .compare table,
  .compare thead,
  .compare tbody,
  .compare th,
  .compare td,
  .compare tr{
    display: block;
    width: 100%;
  }
  .compare thead{ display: none; }
  .compare table{
    border: none;
    background: transparent;
  }
  .compare tbody tr{
    margin: 0 0 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(210, 150, 90, 0.18);
    box-shadow: 0 10px 22px rgba(120, 75, 40, 0.08);
    overflow: hidden;
  }
  .compare tbody td{
    border: none;
    padding: 12px 12px;
    background: transparent;
  }
  .compare tbody td:first-child{
    font-size: 15px;
    background: linear-gradient(180deg, rgba(255, 239, 220, 0.95), rgba(255, 255, 255, 0.88));
    border-bottom: 1px solid rgba(210, 150, 90, 0.16);
    white-space: normal;
  }
  .compare tbody td:nth-child(2),
  .compare tbody td:nth-child(3){
    position: relative;
    padding-top: 28px;
  }
  .compare tbody td:nth-child(2)::before{
    content: "確認する内容";
    position: absolute;
    top: 10px;
    left: 12px;
    font-size: 12px;
    font-weight: 900;
    color: rgba(47, 32, 24, 0.75);
  }
  .compare tbody td:nth-child(3)::before{
    content: "見学でのチェック例";
    position: absolute;
    top: 10px;
    left: 12px;
    font-size: 12px;
    font-weight: 900;
    color: rgba(47, 32, 24, 0.75);
  }
  .compare tbody td:nth-child(3){
    border-top: 1px dashed rgba(210, 150, 90, 0.30);
  }
}

/* compare内のarea-listは少し上余白 */
.compare .area-list{
  margin-top: 14px;
}

/* =========================================
   FLOW（入居までの流れ）
========================================= */
.flow{
  padding: clamp(16px, 3vw, 34px) 0;
  background: linear-gradient(180deg, var(--soft-bg) 0%, #fff 100%);
}

.flow .inner{
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--border);
  box-shadow: var(--shadow1), var(--shadow2);
}

.flow ol{
  margin: 0 0 12px;
  padding-left: 1.2em;
  display: grid;
  gap: 10px;
}

.flow li{
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(255, 250, 243, 0.75);
  border: 1px solid rgba(210, 150, 90, 0.14);
}

.flow a{
  color: #8b3b12;
  font-weight: 900;
  text-decoration: none;
  border-bottom: 1px dashed rgba(211, 84, 0, 0.35);
}

@media (hover:hover){
  .flow a:hover{ filter: brightness(1.05); }
}

/* =========================================
   FAQ（dl dt dd）
========================================= */
.faq{
  padding: clamp(16px, 3vw, 34px) 0;
  background: #fff;
}

.faq .inner{
  border-radius: 20px;
  background:
    radial-gradient(900px 480px at 5% 0%, rgba(255, 213, 153, 0.18), rgba(255, 213, 153, 0) 55%),
    linear-gradient(180deg, var(--soft-bg) 0%, #fff 100%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow1), var(--shadow2);
}

.faq dl{ margin: 0; }

.faq dt{
  margin: 0;
  padding: 14px 14px 14px 48px;
  font-weight: 900;
  font-size: 15px;
  line-height: 1.5;
  color: var(--warm-heading);

  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--border);
  box-shadow: 0 8px 18px rgba(120, 75, 40, 0.08);
  position: relative;
}

.faq dt::before{
  content: "Q";
  position: absolute;
  left: 14px;
  top: 14px;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 13px;
  color: #8b3b12;
  background: rgba(211, 84, 0, 0.12);
  border: 1px solid rgba(211, 84, 0, 0.25);
}

.faq dt::after{
  content: "▾";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.55;
  font-size: 16px;
}

.faq dd{
  margin: 10px 0 16px;
  padding: 14px 14px 14px 48px;

  font-size: 14px;
  line-height: 1.75;
  color: rgba(47, 32, 24, 0.88);

  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 245, 235, 0.95), rgba(255, 255, 255, 0.75));
  border: 1px solid rgba(210, 150, 90, 0.16);
  box-shadow: 0 8px 18px rgba(120, 75, 40, 0.06);
  position: relative;
}

.faq dd::before{
  content: "A";
  position: absolute;
  left: 14px;
  top: 14px;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 13px;
  color: var(--warm-heading);
  background: rgba(255, 210, 120, 0.20);
  border: 1px solid rgba(210, 150, 90, 0.22);
}

.faq a{
  color: #8b3b12;
  font-weight: 900;
  text-decoration: none;
  border-bottom: 1px dashed rgba(211, 84, 0, 0.35);
}

.faq dd:last-child{ margin-bottom: 0; }

@media (hover:hover){
  .faq dt{
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  }
  .faq dt:hover{
    transform: translateY(-2px);
    box-shadow: 0 12px 22px rgba(120, 75, 40, 0.12);
    border-color: rgba(211, 84, 0, 0.22);
  }
}

@media (max-width: 480px){
  .faq .inner{ border-radius: 14px; }
  .faq dt, .faq dd{
    padding: 12px 12px 12px 44px;
    border-radius: 14px;
  }
  .faq dt::before, .faq dd::before{
    left: 12px;
    top: 12px;
  }
}

/* =========================================
   FINAL CTA（強）
========================================= */
.final-cta{
  padding: clamp(18px, 3vw, 40px) 0;
  background:
    radial-gradient(1100px 520px at 12% 0%, rgba(255, 213, 153, 0.28), rgba(255, 213, 153, 0) 60%),
    linear-gradient(180deg, var(--soft-bg) 0%, #fff 100%);
}

.final-cta .inner{
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.80);
  border: 1px solid var(--border);
  box-shadow: 0 16px 46px rgba(120, 75, 40, 0.14), 0 2px 10px rgba(120, 75, 40, 0.08);
}

.final-cta p{
  margin: 0 0 12px;
  color: rgba(47, 32, 24, 0.88);
}

.final-cta .area-list{
  margin-top: 14px;
}

/* =========================================
   RELATED LINKS（関連ページ）
========================================= */
.related-links{
  padding: clamp(16px, 3vw, 34px) 0;
  background: #fff;
}

.related-links .inner{
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--border);
  box-shadow: var(--shadow1), var(--shadow2);
}

.related-links ul{
  list-style: none;
  margin: 0;
  padding: 0;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.related-links li{ margin: 0; }

.related-links a{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 12px 12px;
  border-radius: 14px;

  text-decoration: none;
  font-weight: 900;
  font-size: 13px;
  color: rgba(47, 32, 24, 0.90);

  background: rgba(255, 250, 243, 0.78);
  border: 1px solid rgba(210, 150, 90, 0.16);
  box-shadow: 0 8px 16px rgba(120, 75, 40, 0.06);
}

.related-links a::after{
  content: "›";
  opacity: 0.55;
  font-size: 18px;
  line-height: 1;
}

@media (hover:hover){
  .related-links a{
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, filter .18s ease;
  }
  .related-links a:hover{
    transform: translateY(-2px);
    filter: brightness(1.02);
    box-shadow: 0 12px 20px rgba(120, 75, 40, 0.10);
    border-color: rgba(211, 84, 0, 0.22);
  }
}

@media (max-width: 820px){
  .related-links ul{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 480px){
  .related-links .inner{ border-radius: 14px; }
  .related-links ul{ grid-template-columns: 1fr; }
  .related-links a{ min-height: 52px; }
}
