/*
  ===== フォントサイズ設計（430px スマホLP基準） =====

  Tier1 ヒーロー（目を止める）     : 26-28px
  Tier2 セクション見出し（目印）   : 22-24px
  Tier3 本文・セールスコピー（読ませる）: 15-16px ← ここが最重要
  Tier4 補助テキスト（あると親切） : 13-14px
  Tier5 注釈・免責（読まなくてOK） : 11-12px

  原則：「読んで納得してもらう」テキストは全て15px以上
*/

:root {
  --c-bg: #F5F2ED;
  --c-bg2: #EBE6DE;
  --c-text: #302B26;
  --c-sub: #5C554C;
  --c-accent: #6E4B28;
  --c-accent-d: #52361B;
  --c-red: #8C5A3E;
  --c-red-h: #704832;
  --c-line: #06C755;
  --c-line-h: #05b34b;
  --c-white: #fff;
  --c-cream: #FAF6EF;
  --c-border: #D8D1C7;
  --c-dark: #3D342B;
  --sp: 430px;
  --fm: 'Shippori Mincho', serif;
  --fg: 'Noto Sans JP', sans-serif;
}

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

body {
  font-family: var(--fg);
  background: url('../images/bgg.jpg') center/cover fixed;
  color: var(--c-text);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt";
  position: relative
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(139, 90, 43, .35);
  z-index: 0;
  pointer-events: none
}

/* === レイアウト === */
.wrap {
  display: flex;
  justify-content: center;
  min-height: 100vh;
  position: relative;
  z-index: 1
}

.frame {
  width: 100%;
  max-width: var(--sp);
  background: var(--c-bg);
  min-height: 100vh;
  box-shadow: 0 0 30px rgba(0, 0, 0, .5)
}

@media(min-width:800px) {
  body {
    background: url('../images/bgg.jpg') center/cover fixed
  }

  .frame {
    box-shadow: 0 0 30px rgba(0, 0, 0, .5)
  }
}

/* ================================
 SEC-1 FV（Tier1: 目を止める）
 ================================ */
.fv {
  background: linear-gradient(180deg, #3D342B 0%, #4A3F35 100%);
  color: #fff;
  overflow: hidden
}

.fv__img {
  width: 100%;
  height: auto;
  position: relative;
  background: #3D342B
}

.fv__img img {
  width: 100%;
  height: auto;
  display: block
}

.fv__img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(180deg, rgba(61, 52, 43, 0) 0%, rgba(61, 52, 43, .92) 100%)
}

.fv__body {
  padding: 24px 22px 24px
}

.fv__catch {
  font-family: var(--fm);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.8;
  margin-bottom: 14px
}

/* Tier1 */
.fv__catch strong {
  color: #D9B87C;
  font-weight: 700
}

.fv__sub {
  font-size: 16px;
  line-height: 1.9;
  color: rgba(255, 255, 255, .88);
  margin-bottom: 18px
}

/* Tier3: 読ませるサブコピー */
.fv__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, .75);
  line-height: 2
}

/* Tier4: バッジ的要素 */
.fv__facts span::after {
  content: '／';
  margin: 0 6px;
  opacity: .4
}

.fv__facts span:last-child::after {
  display: none
}

/* ================================
 CTA共通（Tier3: 行動を促す）
 ================================ */
.cta {
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .06em;
  transition: all .2s;
  border: none;
  cursor: pointer;
  border-radius: 6px
}

.cta--r {
  background: var(--c-red);
  color: #fff;
  box-shadow: 0 2px 8px rgba(140, 90, 62, .15);
  position: relative;
  padding-right: 40px
}

.cta--r:hover {
  background: var(--c-red-h);
  transform: translateY(-1px)
}

.cta--r::after {
  content: '';
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-top: 2px solid rgba(255, 255, 255, .7);
  border-right: 2px solid rgba(255, 255, 255, .7);
  transform: translateY(-50%) rotate(45deg);
}

.cta__s {
  display: block;
  font-size: 12px;
  font-weight: 500;
  margin-top: 3px;
  opacity: .7;
  letter-spacing: .02em
}

/* LINE CTA */
.cta--l {
  background: var(--c-line);
  color: #fff;
  margin-top: 10px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  padding: 16px 20px;
  border-radius: 6px;
  font-weight: 700;
  letter-spacing: .04em;
  transition: all .2s;
}

.cta--l:hover {
  background: var(--c-line-h);
  transform: translateY(-1px)
}

.cta--l svg {
  flex-shrink: 0
}

/* ================================
 動画ブロック
 ================================ */
.vid {
  background: #fff;
  padding: 0;
  position: relative;
  overflow: hidden
}

.vid__inner {
  width: 315px;
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: center
}

.vid--landscape .vid__inner {
  aspect-ratio: 16/9;
  max-height: none
}

.vid video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.vid__ph {
  font-size: 12px;
  color: rgba(255, 255, 255, .25);
  letter-spacing: .12em;
  text-align: center;
  line-height: 1.8
}

/* Tier5 */

/* ================================
 セクション共通
 ================================ */
.s {
  padding: 48px 22px
}

.s--a {
  background: var(--c-bg2)
}

.s--compact {
  padding: 40px 22px
}

.s--spacious {
  padding: 56px 22px
}

.h2 {
  font-family: var(--fm);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.7;
  margin-bottom: 22px
}

/* Tier2 */
.h2--c {
  text-align: center
}

.h2 em {
  font-style: normal;
  color: var(--c-accent)
}

.h3 {
  font-family: var(--fm);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 16px
}

/* Tier2小 */
.h3--c {
  text-align: center
}

.p {
  font-size: 15px;
  line-height: 2;
  color: var(--c-sub)
}

/* Tier3 */
.p--c {
  text-align: center
}

/* ================================
 SEC-2 悩み共感（Tier3: 共感させて読ませる）
 ================================ */
.worry-list {
  list-style: none;
  margin-bottom: 22px
}

.worry-list li {
  padding: 13px 0;
  border-bottom: 1px solid var(--c-border);
  font-size: 15px;
  line-height: 1.7;
  padding-left: 30px;
  position: relative
}

/* Tier3 */
.worry-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--c-accent);
  border-radius: 2px;
  background: var(--c-accent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3.5 8l3 3 6-6' stroke='%23fff' stroke-width='1.8' fill='none'/%3E%3C/svg%3E") center/13px no-repeat
}

.worry-close {
  font-family: var(--fm);
  font-size: 18px;
  font-weight: 600;
  line-height: 2;
  text-align: center;
  padding: 24px 20px;
  margin-top: 4px;
  background: var(--c-cream);
  border-left: 3px solid var(--c-accent)
}

/* Tier2小: 転換点 16→18, weight600 */
.worry-close em {
  font-style: normal;
  color: var(--c-accent);
  font-weight: 700
}

/* ================================
 SEC-3 原因（Tier3: 啓示 → 読ませて納得）
 ================================ */
.cause-box {
  background: var(--c-white);
  padding: 24px 20px;
  margin-bottom: 22px;
  border: 1px solid var(--c-border)
}

.cause-box__ttl {
  font-family: var(--fm);
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 18px;
  color: var(--c-accent);
  letter-spacing: .08em
}

/* Tier3: ボックス見出し */
.cause-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  background: #F8F3EB;
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 500
}

/* Tier3 */
.cause-n {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--c-accent-d);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px
}

.cause-row__body {
  flex: 1
}

.cause-row__title {
  font-weight: 600;
  margin-bottom: 4px
}

.cause-row__desc {
  font-size: 15px;
  font-weight: 400;
  color: var(--c-sub);
  line-height: 1.8
}

/* Tier3: 14→15 説明文は読ませる */
.cause-arrow {
  text-align: center;
  color: var(--c-sub);
  margin: 6px 0;
  font-size: 18px
}

.cause-result {
  text-align: center;
  font-size: 15px;
  color: var(--c-sub);
  line-height: 1.9;
  padding: 16px;
  background: #FBF0ED
}

/* Tier3 */
.cause-result strong {
  color: var(--c-red);
  font-weight: 700
}

/* 頭皮と顔のつながりブロック */
.scalp-face {
  text-align: center;
  padding: 28px 20px;
  margin-bottom: 24px;
  background: #fff;
  border: 1px solid var(--c-border)
}

.scalp-face__lead {
  font-family: var(--fm);
  font-size: 20px;
  font-weight: 600;
  line-height: 2;
  margin-bottom: 16px
}

.scalp-face__lead em {
  font-style: normal;
  color: var(--c-accent);
  font-weight: 700
}

.scalp-face__desc {
  font-size: 15px;
  line-height: 1.9;
  color: var(--c-sub);
  margin-bottom: 20px
}

.scalp-face__desc em {
  font-style: normal;
  color: var(--c-red);
  font-weight: 600
}

.scalp-face__img {
  margin: 0 -20px 20px;
  overflow: hidden
}

.scalp-face__img img {
  width: 100%;
  height: auto;
  display: block
}

.scalp-face__sub {
  font-family: var(--fm);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.8;
  margin-bottom: 14px
}

.scalp-face__sub em {
  font-style: normal;
  color: var(--c-accent)
}

.scalp-face__table {
  width: 100%;
  max-width: 300px;
  margin: 0 auto 10px;
  border-collapse: collapse;
  font-size: 15px
}

.scalp-face__table th,
.scalp-face__table td {
  padding: 10px 16px;
  border: 1px solid var(--c-border);
  text-align: center
}

.scalp-face__table th {
  background: var(--c-cream);
  font-weight: 600;
  font-size: 14px;
  color: var(--c-accent)
}

.scalp-face__table td:last-child {
  font-weight: 600;
  color: var(--c-red)
}

.scalp-face__note {
  font-size: 12px;
  color: #999;
  margin-bottom: 18px
}

.scalp-face__conclusion {
  font-family: var(--fm);
  font-size: 18px;
  font-weight: 600;
  line-height: 2;
  padding: 18px 16px;
  background: var(--c-cream);
  border-radius: 6px
}

.scalp-face__conclusion em {
  font-style: normal;
  color: var(--c-accent);
  font-weight: 700
}

.shift {
  text-align: center;
  padding: 22px 18px;
  background: var(--c-cream);
  margin-bottom: 22px
}

.shift p {
  font-family: var(--fm);
  font-size: 18px;
  line-height: 2;
  font-weight: 500
}

/* Tier2小: キーメッセージ */
.shift em {
  font-style: normal;
  color: var(--c-accent);
  font-weight: 600
}

.story {
  padding: 20px;
  background: var(--c-white);
  border-left: 3px solid var(--c-accent)
}

.story__body {
  display: flex;
  gap: 16px;
  align-items: flex-start
}

.story__photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0
}

.story__text {
  flex: 1
}

.story p {
  font-size: 15px;
  line-height: 2;
  color: var(--c-sub)
}

/* Tier3: 14→15 ストーリーは読ませる */
.story cite {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  color: var(--c-accent);
  text-align: right;
  font-style: normal
}

/* Tier4 */

/* ================================
 比較セクション（Tier3: 違いを理解させる）
 ================================ */
.cmp-head {
  display: flex;
  gap: 0;
  margin-bottom: 0;
  position: sticky;
  top: 0;
  z-index: 2
}

.cmp-head__col {
  flex: 1;
  padding: 15px 10px;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .06em
}

/* Tier3: 14→15 表ヘッダーも読ませる */
.cmp-head__col--old {
  background: #E5E3E0;
  color: #5C5651
}

.cmp-head__col--new {
  background: var(--c-accent-d);
  color: #fff
}

.cmp-table {
  border: 1px solid var(--c-border);
  overflow: hidden
}

.cmp-row {
  display: flex;
  border-bottom: 1px solid var(--c-border)
}

.cmp-row:last-child {
  border-bottom: none
}

.cmp-row__label {
  width: 100%;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 700;
  color: var(--c-accent-d);
  background: #F0ECE6;
  letter-spacing: .06em;
  text-align: center;
  border-bottom: 1px solid var(--c-border)
}

/* Tier4: 行ラベル */
.cmp-row__cells {
  display: flex;
  width: 100%
}

.cmp-cell {
  flex: 1;
  padding: 14px;
  font-size: 14px;
  line-height: 1.7;
  display: flex;
  align-items: center
}

/* Tier4: 表セルは短文なので14pxでOK */
.cmp-cell--old {
  background: #F5F4F2;
  color: #5C5651;
  border-right: 1px solid var(--c-border)
}

.cmp-cell--old::before {
  content: '△';
  margin-right: 6px;
  color: #9A9590;
  font-size: 13px;
  flex-shrink: 0
}

.cmp-cell--new {
  background: #F5FAF3;
  color: var(--c-text);
  font-weight: 600
}

.cmp-cell--new::before {
  content: '◎';
  margin-right: 6px;
  color: var(--c-accent);
  font-size: 13px;
  flex-shrink: 0
}

.cmp-bottom {
  text-align: center;
  padding: 20px 16px;
  background: var(--c-accent-d);
  font-family: var(--fm);
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  line-height: 1.8;
  letter-spacing: .02em
}

/* Tier3: 結論 */

/* ================================
 SEC-4 ソムリエ（Tier3: ブランド理解）
 ================================ */
.pil {
  padding: 22px 20px;
  margin-bottom: 14px;
  border: 1px solid var(--c-border);
  background: var(--c-white)
}

.pil__n {
  font-size: 12px;
  font-weight: 700;
  color: var(--c-accent);
  letter-spacing: .1em;
  margin-bottom: 4px
}

/* Tier5: 番号ラベル 11→12 */
.pil__t {
  font-family: var(--fm);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.6
}

/* Tier2小: 16→18, 600→700 */
.pil__d {
  font-size: 15px;
  line-height: 1.9;
  color: var(--c-sub)
}

/* Tier3: 14→15 説明文は読ませる */
.prof {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 20px;
  margin: 22px 0;
  border: 1px solid var(--c-border);
  background: var(--c-white)
}

.prof__ph {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden
}

.prof__ph img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.prof__info {
  flex: 1
}

.prof__nm {
  font-family: var(--fm);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 3px
}

/* Tier2小 */
.prof__role {
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-sub)
}

/* Tier4: 13→14 肩書きは読んでほしい */

/* ================================
 SEC-5 メニュー（Tier3: 検討材料）
 ================================ */
.mn {
  padding: 22px 20px;
  margin-bottom: 14px;
  border: 1px solid var(--c-border);
  background: var(--c-white);
  position: relative
}

.mn--pop {
  border-color: var(--c-accent);
  border-width: 2px
}

.mn__badge {
  position: absolute;
  top: -11px;
  left: 16px;
  background: var(--c-accent-d);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 12px;
  letter-spacing: .06em
}

/* Tier5: 11→12 */
.mn__label {
  font-size: 13px;
  color: var(--c-sub);
  margin-bottom: 4px
}

/* Tier4: 12→13 */
.mn__name {
  font-family: var(--fm);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.5
}

/* Tier2小 */
.mn__price {
  font-family: var(--fm);
  font-size: 26px;
  font-weight: 700;
  color: var(--c-accent);
  margin-bottom: 3px
}

/* Tier1: 価格は目立たせる */
.mn__price small {
  font-size: 13px;
  font-weight: 400;
  color: var(--c-sub)
}

/* Tier4 */
.mn__time {
  font-size: 13px;
  color: var(--c-sub);
  margin-bottom: 10px
}

/* Tier4 */
.mn__feat {
  font-size: 15px;
  line-height: 1.8;
  color: var(--c-sub)
}

/* Tier3: 14→15 特徴は読ませる */
.ba-ph {
  margin-bottom: 10px;
  overflow: hidden;
  border-radius: 4px
}

.ba-ph img {
  width: 100%;
  height: auto;
  display: block
}

.ba-note {
  font-size: 11px;
  color: var(--c-sub);
  text-align: center;
  margin-bottom: 6px
}

/* Tier5: 免責 */

/* === ビジョン === */
.vision {
  padding: 28px 22px;
  margin-bottom: 22px;
  background: var(--c-cream);
  border: 1px solid var(--c-border)
}

.vision__h {
  font-family: var(--fm);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 22px;
  line-height: 1.7;
  text-align: center;
  color: var(--c-text)
}

/* Tier2小 */
.vision__list {
  display: flex;
  flex-direction: column;
  gap: 0
}

.vision__item {
  display: flex;
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px solid var(--c-border)
}

.vision__item:last-child {
  border-bottom: none
}

.vision__item-month {
  font-family: var(--fm);
  font-size: 15px;
  font-weight: 700;
  color: var(--c-accent);
  white-space: nowrap;
  min-width: 60px;
  padding-top: 1px
}

/* Tier3 */
.vision__item-txt {
  font-size: 15px;
  line-height: 1.8;
  color: var(--c-text)
}

/* Tier3 */
.vision__note {
  font-size: 11px;
  color: var(--c-sub);
  margin-top: 14px;
  text-align: center
}

/* Tier5 */

/* ================================
 SEC-6 お客様の声（Tier3: 社会的証明 → 読ませる）
 ================================ */
.vc {
  padding: 20px;
  margin-bottom: 14px;
  border: 1px solid var(--c-border);
  background: var(--c-white)
}

.vc__top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px
}

.vc__ico {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--c-bg2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--c-accent);
  line-height: 1.2;
  text-align: center
}

/* Tier5: 11→12 */
.vc__who {
  font-size: 13px;
  color: var(--c-sub);
  line-height: 1.5
}

/* Tier4 */
.vc__who strong {
  display: block;
  color: var(--c-text);
  font-size: 15px
}

/* Tier3: 14→15 見出し的 */
.vc__txt {
  font-size: 15px;
  line-height: 2
}

/* Tier3: 14→15 口コミは最重要コンテンツ */
.vc__txt em {
  font-style: normal;
  color: var(--c-accent);
  font-weight: 600
}

.disc {
  font-size: 11px;
  color: var(--c-sub);
  text-align: center;
  margin-top: 10px
}

/* Tier5 */

/* ================================
 SEC-7 選ばれる理由（Tier3: 購入決定材料）
 ================================ */
.rsn {
  display: flex;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--c-border)
}

.rsn:last-of-type {
  border-bottom: none
}

.rsn__n {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--c-accent-d);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fm);
  font-size: 15px;
  font-weight: 700;
  flex-shrink: 0
}

.rsn__c {
  flex: 1
}

.rsn__t {
  font-family: var(--fm);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  line-height: 1.6
}

/* Tier2小: 15→16 理由タイトルはしっかり */
.rsn__d {
  font-size: 15px;
  line-height: 1.8;
  color: var(--c-sub)
}

/* Tier3: 14→15 */
.grt {
  background: var(--c-cream);
  border: 1px solid var(--c-accent);
  padding: 22px 20px;
  text-align: center;
  margin-top: 22px
}

.grt__t {
  font-family: var(--fm);
  font-size: 20px;
  font-weight: 700;
  color: var(--c-accent);
  margin-bottom: 6px
}

/* Tier2 */
.grt__d {
  font-size: 15px;
  color: var(--c-sub);
  line-height: 1.9
}

/* Tier3: 14→15 保証の説明は読ませる */

/* ================================
 SEC-8 施術の流れ + FAQ（Tier3: 不安解消）
 ================================ */
.fl {
  margin-bottom: 28px
}

.fl__img {
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 14px
}

.fl__img img {
  width: 100%;
  height: auto;
  display: block
}

.fl__step {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  position: relative
}

.fl__step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 15px;
  top: 48px;
  bottom: 0;
  width: 1px;
  background: var(--c-border)
}

.fl__n {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--c-accent-d);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  z-index: 1
}

/* 12→13 */
.fl__body {
  flex: 1
}

.fl__t {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 2px
}

/* Tier3: 15→16 ステップ名はしっかり */
.fl__d {
  font-size: 15px;
  color: var(--c-sub);
  line-height: 1.8
}

/* Tier3: 14→15 */
.faq {
  border-top: 1px solid var(--c-border)
}

.faq__item {
  border-bottom: 1px solid var(--c-border)
}

.faq__q {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 0;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  user-select: none
}

/* Tier3 */
.faq__qm {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--c-accent-d);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0
}

/* 24→26px, 11→12 */
.faq__tog {
  margin-left: auto;
  font-size: 18px;
  color: var(--c-sub);
  flex-shrink: 0;
  transition: transform .25s;
  line-height: 1
}

.faq__item.open .faq__tog {
  transform: rotate(45deg)
}

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease
}

.faq__item.open .faq__a {
  max-height: 320px
}

.faq__a-in {
  padding: 0 0 16px 36px;
  font-size: 15px;
  line-height: 2;
  color: var(--c-sub)
}

/* Tier3: 14→15 回答は読ませる */

/* ================================
 SEC-9 店舗（Tier3-4: 行動前の確認）
 ================================ */
.shop {
  padding: 20px;
  margin-bottom: 14px;
  border: 1px solid var(--c-border);
  background: var(--c-white)
}

.shop__photo {
  margin: 10px 0 14px;
  overflow: hidden;
  border-radius: 6px
}

.shop__photo img {
  width: 100%;
  height: auto;
  display: block
}

.shop__nm {
  font-family: var(--fm);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px
}

.shop__info {
  font-size: 15px;
  line-height: 2;
  color: var(--c-sub)
}

.shop__cta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 14px
}

.shop__cta .cta {
  font-size: 15px;
  padding: 14px 16px
}

.area-label {
  font-family: var(--fm);
  font-size: 14px;
  font-weight: 600;
  color: var(--c-accent);
  letter-spacing: .08em
}

/* WEB予約ボタン */
.cta--w {
  background: var(--c-accent);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px 16px;
  font-size: 15px;
  letter-spacing: .04em;
  transition: all .2s;
  cursor: pointer
}

.cta--w:hover {
  background: var(--c-accent-d);
  transform: translateY(-1px)
}

/* ホットペッパーボタン */
.cta--hp {
  background: #e4612a;
  color: #fff;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px 16px;
  font-size: 15px;
  letter-spacing: .04em;
  transition: all .2s;
  border: none;
  cursor: pointer
}

.cta--hp:hover {
  background: #c9511f;
  transform: translateY(-1px)
}

/* ================================
 最終メッセージ
 ================================ */
.final {
  padding: 40px 22px;
  background: var(--c-dark);
  text-align: center
}

.final__h {
  font-family: var(--fm);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  line-height: 1.7;
  margin-bottom: 6px
}

.final__sub {
  font-size: 15px;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 22px;
  line-height: 1.8
}

.final .cta {
  margin-bottom: 10px
}

.foot {
  padding: 20px 22px;
  text-align: center;
  font-size: 11px;
  color: rgba(255, 255, 255, .35);
  background: var(--c-dark);
  border-top: 1px solid rgba(255, 255, 255, .08)
}

/* ================================
 固定CTA（1ボタン：店舗セクションへ誘導）
 ================================ */
.fix {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--sp);
  background: rgba(61, 52, 43, .96);
  backdrop-filter: blur(8px);
  padding: 10px 14px;
  display: flex;
  gap: 8px;
  z-index: 100
}

.fix a {
  flex: 1;
  text-align: center;
  text-decoration: none;
  padding: 14px 36px 14px 8px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: var(--c-red);
  color: #fff;
  position: relative
}

.fix a:hover {
  background: var(--c-red-h)
}

.fix a::after {
  content: '';
  position: absolute;
  right: 14px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-top: 2px solid rgba(255, 255, 255, .7);
  border-right: 2px solid rgba(255, 255, 255, .7);
  transform: translateY(-50%) rotate(45deg);
}

.spacer {
  height: 60px
}

/* === 写真 === */
.sec-photo {
  width: 100%;
  overflow: hidden
}

.sec-photo img {
  width: 100%;
  height: auto;
  display: block
}
