/* ============================================================
   癒しの空間 あ蔵 — 手もみ・ドライボディケア LP
   和モダン / 静けさ / 余白 / 上質感
   ============================================================ */

:root {
  /* --- 主色 (墨・ブラウン・グレージュ) --- */
  --sumi:        #221d18;   /* 墨色 ほぼ黒 */
  --umber:       #2e2620;   /* 深いブラウン */
  --umber-soft:  #3d342c;
  --charcoal:    #34302b;   /* チャコール */
  --greige:      #8a7c6c;   /* ウォームグレージュ */
  --greige-soft: #a99c8c;

  /* --- 副色 (アイボリー・生成り・ベージュ) --- */
  --ivory:       #f5f0e7;   /* アイボリー */
  --kinari:      #efe7d9;   /* 生成り */
  --beige:       #e6dac6;   /* やわらかベージュ */
  --beige-deep:  #d8cab2;
  --paper:       #f7f2ea;
  --mist:        #e8e4db;   /* ウォームグレー（締め色） */
  --mist-deep:   #dbd5ca;

  /* --- 差し色 (くすみゴールド・真鍮) --- */
  --gold:        #a98a55;   /* 控えめゴールド */
  --gold-soft:   #bda077;
  --brass:       #997d4f;   /* くすみ真鍮 */
  --bronze:      #8a6f48;

  /* --- テキスト --- */
  --ink:         #211c16;   /* 本文 濃（端正に深く） */
  --ink-2:       #443c33;   /* 本文 中 */
  --ink-3:       #695e52;   /* 補足 */
  --on-dark:     #ede5d7;   /* 暗背景上の文字 */
  --on-dark-2:   #c3b6a3;

  --line:        rgba(123, 108, 90, 0.26);
  --line-soft:   rgba(123, 108, 90, 0.16);
  --line-dark:   rgba(237, 229, 215, 0.18);

  /* --- 字体 --- */
  --serif: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --sans:  "Zen Kaku Gothic New", "Hiragino Sans", "Yu Gothic", sans-serif;
  --latin: "Cormorant Garamond", serif;

  /* --- 余白の単位 --- */
  --gut: clamp(22px, 6.4vw, 40px);     /* 左右ガター */
  --col: 720px;                         /* 読みやすい本文幅 */
  --max: 1120px;                        /* 既存LPに合わせた最大幅 */
  --max-md: 880px;
  --max-sm: 720px;
  --sec: clamp(76px, 16vw, 124px);      /* セクション縦余白 */
  --content-body-max: 38em;              /* content.js の settings.bodyMaxWidth から変更可 */
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.9;
  font-size: 15.5px;
  letter-spacing: 0.035em;
  font-feature-settings: "palt" 1;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* 和紙の質感 (極薄ノイズ + 斑) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image:
    radial-gradient(circle at 20% 12%, rgba(168,138,85,0.05), transparent 42%),
    radial-gradient(circle at 82% 78%, rgba(120,104,82,0.06), transparent 46%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

/* LP全体：既存LPと同じく横幅いっぱいに展開 */
.page {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  background: var(--ivory);
  box-shadow: none;
  overflow: hidden;
}

/* ---------- 共通エレメント ---------- */
.wrap { padding-inline: var(--gut); }

.eyebrow {
  font-family: var(--latin);
  font-size: 12px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.8em;
  font-weight: 500;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

.kicker {
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: 0.36em;
  color: var(--ink-3);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.9em;
  writing-mode: horizontal-tb;
}
.kicker::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}

h2.title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(23px, 6.4vw, 31px);
  line-height: 1.6;
  letter-spacing: 0.025em;
  color: var(--sumi);
  text-wrap: balance;
}
h2.title .em { color: var(--bronze); }

.lead {
  color: var(--ink-2);
  font-size: 15px;
  line-height: 2.15;
  letter-spacing: 0.05em;
}

.fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.1s cubic-bezier(.2,.6,.2,1), transform 1.1s cubic-bezier(.2,.6,.2,1);
}
.fade.in { opacity: 1; transform: none; }

/* 縦の細い区切り線 */
.rule {
  width: 1px;
  height: clamp(40px, 9vw, 60px);
  margin: 0 auto;
  background: linear-gradient(var(--gold), transparent);
  opacity: 0.6;
}

/* ============================================================
   ボタン
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7em;
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  padding: 17px 26px;
  border: 1px solid transparent;
  border-radius: 1.5px;
  cursor: pointer;
  text-decoration: none;
  transition: background .4s ease, color .4s ease, border-color .4s ease, transform .4s ease;
  line-height: 1.4;
  text-align: center;
}
.btn .ja { font-size: 14.5px; }
.btn-primary {
  background: var(--umber);
  color: var(--on-dark);
  box-shadow: 0 10px 26px -14px rgba(34,29,24,0.7);
}
.btn-primary:hover { background: var(--sumi); transform: translateY(-1px); }
.btn-primary .ic { color: var(--gold-soft); }

.btn-line {
  background: transparent;
  color: var(--umber);
  border-color: var(--greige);
}
.btn-line:hover { border-color: var(--bronze); color: var(--bronze); background: rgba(168,138,85,0.05); }

.btn-gold {
  background: linear-gradient(180deg, var(--gold-soft), var(--brass));
  color: #2a2118;
  font-weight: 600;
}
.btn-gold:hover { filter: brightness(1.05); transform: translateY(-1px); }

/* 和紙ボタン — 暗背景上で映える明色（成金感を出さず上品に） */
.btn-washi {
  background: var(--paper);
  color: var(--umber);
  box-shadow: 0 12px 30px -16px rgba(0,0,0,0.6);
}
.btn-washi:hover { background: #fffaf2; transform: translateY(-1px); }
.btn-washi .ic { color: var(--bronze); }

/* やわらかいベージュの副ボタン */
.btn-soft {
  background: var(--beige);
  color: var(--umber);
  border-color: var(--beige-deep);
}
.btn-soft:hover { background: var(--beige-deep); }
.btn-soft .ic { color: var(--bronze); }

.btn .ic { width: 18px; height: 18px; flex: none; }
.btn-block { width: 100%; }

/* ============================================================
   ヘッダー
   ============================================================ */
.masthead {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--gut);
  background: rgba(245,240,231,0.96);
}
.masthead.on-dark .brand-name { color: var(--umber); }
.masthead.on-dark .brand-sub { color: rgba(46, 38, 32, 0.68); }
.brand { line-height: 1.2; }
.brand-name {
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: 0.14em;
  color: var(--umber);
  font-weight: 600;
}
.brand-sub {
  font-family: var(--latin);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(46, 38, 32, 0.68);
}
.area-tag {
  font-size: 11px;
  letter-spacing: 0.22em;
  color: rgba(46, 38, 32, 0.72);
  border: 1px solid rgba(46, 38, 32, 0.18);
  background: rgba(255, 255, 255, 0.16);
  padding: 6px 11px;
  border-radius: 2px;
  white-space: nowrap;
}

/* ============================================================
   1. ファーストビュー
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  isolation: isolate;
  background: var(--sumi);
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-media image-slot { width: 100%; height: 100%; display: block; }
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20,16,12,0.46) 0%, rgba(20,16,12,0.30) 38%, rgba(24,19,14,0.74) 100%);
  z-index: 1;
}
.hero-inner {
  margin-top: auto;
  padding: 0 var(--gut) clamp(40px, 11vw, 66px);
  position: relative;
}
.hero .eyebrow { color: var(--gold-soft); }
.hero .eyebrow::before { background: var(--gold-soft); }
.hero h1 {
  font-family: var(--serif);
  font-weight: 600;
  color: #f3ecde;
  font-size: clamp(27px, 8.2vw, 41px);
  line-height: 1.64;
  letter-spacing: 0.035em;
  margin: 22px 0 0;
  text-wrap: balance;
  text-shadow: 0 2px 30px rgba(0,0,0,0.4);
}
.hero h1 .soft { color: var(--gold-soft); }
.hero-sub {
  color: var(--on-dark);
  font-size: 14.5px;
  line-height: 2.1;
  letter-spacing: 0.05em;
  margin-top: 22px;
  max-width: 30em;
}
.hero-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--on-dark-2);
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}
.hero-note::before { content: "—"; color: var(--gold-soft); }
.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 30px;
  max-width: 340px;
}
.hero-meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
}
.hero-meta li {
  list-style: none;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  color: var(--on-dark-2);
  display: flex;
  align-items: center;
  gap: 0.55em;
}
.hero-meta li::before { content: ""; width: 4px; height: 4px; border-radius: 50%; background: var(--gold-soft); }

.scroll-cue {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  color: var(--on-dark-2);
  font-family: var(--latin);
  font-size: 10px;
  letter-spacing: 0.3em;
}
.scroll-cue i { width: 1px; height: 30px; background: linear-gradient(var(--gold-soft), transparent); animation: cue 2.4s ease-in-out infinite; transform-origin: top; }
@keyframes cue { 0%,100%{ transform: scaleY(0.4); opacity:.5 } 50%{ transform: scaleY(1); opacity:1 } }

/* ============================================================
   セクション 汎用
   ============================================================ */
section { position: relative; }
.section { padding-top: var(--sec); padding-bottom: var(--sec); }
.section-head { margin-bottom: clamp(34px, 8vw, 48px); }
.section-head .kicker { display: inline-flex; margin-bottom: 18px; }
.section.tone-paper { background: var(--paper); }
.section.tone-kinari { background: var(--kinari); }
.section.tone-mist { background: var(--mist); }
.section.tone-dark { background: var(--umber); color: var(--on-dark); }
.section.tone-dark h2.title { color: #f0e8d9; }
.section.tone-dark .lead { color: var(--on-dark); }

/* 2. 共感セクション — リスト */
.feel-list { display: flex; flex-direction: column; gap: 2px; }
.feel-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 4px;
  border-bottom: 1px solid var(--line-soft);
}
.feel-item:first-child { border-top: 1px solid var(--line-soft); }
.feel-mark {
  font-family: var(--latin);
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.1em;
  padding-top: 4px;
  min-width: 24px;
}
.feel-text { color: var(--ink-2); font-size: 15px; line-height: 1.85; letter-spacing: 0.04em; }
.feel-after {
  margin-top: 34px;
  font-family: var(--serif);
  font-size: 16px;
  color: var(--bronze);
  line-height: 2.1;
  text-align: center;
  letter-spacing: 0.06em;
}

/* 3. 身体 — 引用調 */
.body-quote { text-align: left; }
.body-quote .big {
  font-family: var(--serif);
  font-size: clamp(20px, 5.6vw, 26px);
  line-height: 2.0;
  color: #efe8db;
  letter-spacing: 0.06em;
  font-weight: 500;
}
.body-quote .big .u { color: var(--gold-soft); }
.body-para { margin-top: 28px; color: var(--on-dark); font-size: 14.5px; line-height: 2.2; letter-spacing: 0.05em; }
.body-para + .body-para { margin-top: 18px; }

/* 4. ケア説明 */
.care-figure { margin: 0 0 30px; }
.care-figure image-slot { width: 100%; height: clamp(220px, 58vw, 320px); display: block; }
.care-list { margin-top: 26px; display: flex; flex-direction: column; gap: 18px; }
.care-list li { list-style: none; display: flex; gap: 14px; align-items: flex-start; }
.care-list .ci { width: 20px; height: 20px; flex: none; margin-top: 4px; color: var(--bronze); }
.care-list .ct { color: var(--ink-2); font-size: 14.5px; line-height: 1.85; }
.care-list .ct b { color: var(--umber); font-weight: 600; }

/* 5. おすすめ — タグ風 */
.rec-grid { display: flex; flex-direction: column; gap: 0; }
.rec-row {
  display: flex;
  gap: 15px;
  align-items: center;
  padding: 17px 0;
  border-bottom: 1px dashed var(--line);
}
.rec-row:last-child { border-bottom: none; }
.rec-check { width: 22px; height: 22px; flex: none; color: var(--gold); }
.rec-row span { color: var(--ink-2); font-size: 14.5px; line-height: 1.7; }

/* 6. 施術の特徴 — カード */
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.fcard {
  background: var(--ivory);
  border: 1px solid var(--line-soft);
  padding: 26px 20px 24px;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.fcard::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 34px; height: 2px;
  background: var(--gold);
  opacity: 0.7;
}
.fcard .fnum { font-family: var(--latin); font-size: 12px; letter-spacing: 0.2em; color: var(--gold); }
.fcard .ficon { width: 30px; height: 30px; color: var(--bronze); margin: 12px 0 14px; display:block; }
.fcard h3 { font-family: var(--serif); font-size: 16px; font-weight: 600; color: var(--umber); line-height: 1.6; letter-spacing: 0.04em; }
.fcard p { margin-top: 9px; font-size: 12.5px; color: var(--ink-3); line-height: 1.85; }

/* 7. 選ばれる理由 — 暗背景 */
.reason-list { display: flex; flex-direction: column; gap: 0; margin-top: 6px; }
.reason-item { padding: 22px 0; border-bottom: 1px solid var(--line-dark); display: flex; gap: 18px; align-items: flex-start; }
.reason-item:last-child { border-bottom: none; }
.reason-no { font-family: var(--latin); font-size: 22px; color: var(--gold-soft); line-height: 1; min-width: 38px; padding-top: 2px; }
.reason-body h3 { font-family: var(--serif); font-size: 16.5px; color: #f0e8d9; font-weight: 600; letter-spacing: 0.04em; line-height: 1.6; }
.reason-body p { margin-top: 8px; font-size: 13px; color: var(--on-dark-2); line-height: 1.9; }

/* 8. 来店の流れ */
.flow { position: relative; margin-top: 10px; padding-left: 8px; }
.flow-step { position: relative; padding: 0 0 30px 44px; }
.flow-step:last-child { padding-bottom: 0; }
.flow-step::before {
  content: "";
  position: absolute;
  left: 13px; top: 28px; bottom: -2px;
  width: 1px; background: var(--line);
}
.flow-step:last-child::before { display: none; }
.flow-dot {
  position: absolute;
  left: 0; top: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--latin); font-size: 12px; color: var(--bronze);
  background: var(--paper);
}
.flow-step h3 { font-family: var(--serif); font-size: 16px; color: var(--umber); font-weight: 600; letter-spacing: 0.05em; line-height: 1.4; }
.flow-step p { margin-top: 6px; font-size: 13px; color: var(--ink-3); line-height: 1.85; }

/* 9. セラピスト */
.therapist { display: flex; flex-direction: column; gap: 26px; }
.therapist-photo image-slot { width: 100%; height: clamp(260px, 70vw, 360px); display: block; }
.therapist-body .quote {
  font-family: var(--serif);
  font-size: clamp(19px, 5vw, 23px);
  line-height: 1.95;
  color: var(--umber);
  letter-spacing: 0.05em;
  font-weight: 500;
}
.therapist-body p { margin-top: 18px; color: var(--ink-2); font-size: 14px; line-height: 2.05; }
.cred {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cred span {
  font-size: 11.5px;
  letter-spacing: 0.12em;
  color: var(--bronze);
  border: 1px solid var(--line);
  padding: 7px 13px;
  border-radius: 2px;
  background: rgba(255,255,255,0.4);
}

/* 10. 料金 */
.price-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--ivory), var(--paper));
  border-radius: 2px;
  overflow: hidden;
}
.price-card .pc-head {
  text-align: center;
  padding: 26px 20px 20px;
  border-bottom: 1px solid var(--line-soft);
}
.price-card .pc-head .menu { font-family: var(--serif); font-size: 18px; color: var(--umber); letter-spacing: 0.08em; font-weight: 600; }
.price-card .pc-head .sub { font-size: 12px; color: var(--ink-3); letter-spacing: 0.1em; margin-top: 6px; }
.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line-soft);
}
.price-row:last-of-type { border-bottom: none; }
.price-row .dur { font-family: var(--serif); font-size: 17px; color: var(--ink); letter-spacing: 0.04em; }
.price-row .dur small { font-size: 12px; color: var(--ink-3); margin-left: 2px; letter-spacing: 0.1em; }
.price-row .yen { font-family: var(--latin); font-size: 26px; color: var(--bronze); letter-spacing: 0.02em; }
.price-row .yen .u { font-family: var(--sans); font-size: 13px; color: var(--ink-3); margin-left: 3px; }
.price-row.rec { background: rgba(168,138,85,0.07); position: relative; }
.price-row.rec .tag {
  position: absolute; top: -1px; right: 18px;
  font-size: 10px; letter-spacing: 0.18em; color: #fff;
  background: var(--bronze); padding: 4px 9px; border-radius: 0 0 3px 3px;
}
.price-note { margin-top: 18px; font-size: 12.5px; color: var(--ink-3); line-height: 1.9; text-align: center; letter-spacing: 0.04em; }

/* 11. FAQ */
.faq { border-top: 1px solid var(--line-soft); }
.faq-item { border-bottom: 1px solid var(--line-soft); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 22px 4px;
  text-align: left;
  font-family: var(--sans);
}
.faq-q .qmark { font-family: var(--latin); font-size: 16px; color: var(--gold); line-height: 1.5; min-width: 16px; }
.faq-q .qtext { flex: 1; font-size: 14.5px; color: var(--umber); font-weight: 500; line-height: 1.7; letter-spacing: 0.03em; }
.faq-q .qtoggle { width: 16px; height: 16px; flex: none; margin-top: 4px; color: var(--brass); transition: transform .4s ease; }
.faq-item.open .qtoggle { transform: rotate(45deg); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height .5s ease; }
.faq-a-inner {
  padding: 0 4px 24px 30px;
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 2.0;
  letter-spacing: 0.03em;
}
.faq-a-inner .care-note {
  display: block;
  margin-top: 12px;
  padding: 12px 14px;
  background: rgba(138,111,72,0.07);
  border-left: 2px solid var(--bronze);
  font-size: 12.5px;
  color: var(--ink-3);
  line-height: 1.85;
}

/* 12. 最終CTA */
.final {
  background: var(--sumi);
  color: var(--on-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-media { position: absolute; inset: 0; z-index: 0; opacity: 0.32; }
.final-media image-slot { width: 100%; height: 100%; display: block; }
.final-media::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(20,16,12,0.6), rgba(20,16,12,0.85)); }
.final .inner { position: relative; z-index: 2; }
.final h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(24px, 7vw, 32px);
  line-height: 1.85;
  color: #f3ecde;
  letter-spacing: 0.06em;
  text-wrap: balance;
}
.final p { margin-top: 20px; color: var(--on-dark); font-size: 14.5px; line-height: 2.1; }
.final-cta { margin-top: 34px; display: flex; flex-direction: column; gap: 13px; max-width: 360px; margin-inline: auto; }

/* フッター */
.footer {
  background: var(--umber);
  color: var(--on-dark-2);
  text-align: center;
  padding: 46px var(--gut) calc(96px + env(safe-area-inset-bottom));
}
.footer .f-name { font-family: var(--serif); font-size: 18px; color: var(--on-dark); letter-spacing: 0.14em; }
.footer .f-sub { font-family: var(--latin); font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--greige); margin-top: 6px; }
.footer .f-info { margin-top: 20px; font-size: 12px; line-height: 2.0; letter-spacing: 0.06em; }
.footer .f-rule { width: 30px; height: 1px; background: var(--gold); opacity: 0.6; margin: 22px auto; }
.footer .f-copy { font-family: var(--latin); font-size: 10px; letter-spacing: 0.2em; color: var(--greige); margin-top: 18px; }

/* 下部固定CTA */
.dock {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%) translateY(110%);
  width: 100%;
  max-width: 600px;
  z-index: 40;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 12px var(--gut) calc(12px + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, rgba(245,240,231,0.82), rgba(245,240,231,0.97));
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
.dock.show { transform: translateX(-50%) translateY(0); }
.dock .btn { padding: 12px 8px; font-size: 12px; }
.dock .btn .ic { width: 16px; height: 16px; }

/* ============================================================
   呼吸に寄り添う施術の流れ（5ステップ・中心の見せ場）
   ============================================================ */
.breath-intro p {
  color: var(--ink-2);
  font-size: 15px;
  line-height: 2.2;
  letter-spacing: 0.05em;
}
.breath-intro p + p { margin-top: 18px; }
.breath-intro .closing {
  font-family: var(--serif);
  color: var(--bronze);
  font-size: 16px;
  line-height: 2.0;
}
.breath-steps { margin-top: clamp(38px, 9vw, 52px); }
.bstep {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding-bottom: 36px;
  position: relative;
}
.bstep:last-child { padding-bottom: 0; }
.bstep::before {
  content: "";
  position: absolute;
  left: 27px; top: 58px; bottom: -2px;
  width: 1px;
  background: linear-gradient(var(--gold), var(--line));
  opacity: 0.5;
}
.bstep:last-child::before { display: none; }
.bnode {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: var(--ivory);
  position: relative;
  z-index: 1;
}
.bnode .bn-step { font-family: var(--latin); font-size: 9px; letter-spacing: 0.24em; color: var(--greige); line-height: 1; }
.bnode .bn-no { font-family: var(--latin); font-size: 19px; color: var(--bronze); line-height: 1.1; }
.bstep .bbody { padding-top: 5px; }
.bstep .bbody h3 {
  font-family: var(--serif);
  font-size: 17.5px;
  font-weight: 600;
  color: var(--umber);
  letter-spacing: 0.05em;
  line-height: 1.5;
}
.bstep .bbody p {
  margin-top: 9px;
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.95;
  letter-spacing: 0.03em;
}

/* 腹部・胸まわりへの配慮 callout */
.care-box {
  margin-top: clamp(36px, 9vw, 48px);
  border: 1px solid var(--line);
  background: rgba(168,138,85,0.055);
  border-radius: 2px;
  padding: 24px 24px 26px;
}
.care-box .cb-head {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
  color: var(--bronze);
  letter-spacing: 0.05em;
}
.care-box .cb-head svg { width: 20px; height: 20px; flex: none; }
.care-box.plain { background: rgba(255,255,255,0.5); }
.care-box.plain .cb-head { color: var(--umber); }
.care-box.plain .cb-head svg { color: var(--bronze); }
.care-box p {
  margin-top: 14px;
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 2.0;
  letter-spacing: 0.03em;
}

/* ============================================================
   市民アスリート / 運動習慣のある方へ（編集記事調）
   ============================================================ */
.active-figure { margin: 0 0 30px; }
.active-figure image-slot { width: 100%; height: clamp(220px, 56vw, 300px); display: block; }
.active-para { color: var(--ink-2); font-size: 14.5px; line-height: 2.15; letter-spacing: 0.05em; }
.active-para + .active-para { margin-top: 18px; }
.tag-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.tag-chips span {
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--bronze);
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: 2px;
  background: rgba(255,255,255,0.45);
}
.fine-note {
  margin-top: 24px;
  font-size: 12px;
  color: var(--ink-3);
  line-height: 1.85;
  letter-spacing: 0.04em;
  padding-left: 14px;
  border-left: 1px solid var(--line);
}

/* ============================================================
   上質な時間を求める方へ（静かな高級感・暗背景）
   ============================================================ */
.quiet-lead {
  font-family: var(--serif);
  font-size: clamp(20px, 5.4vw, 25px);
  line-height: 2.0;
  color: #efe8db;
  letter-spacing: 0.06em;
  font-weight: 500;
}
.quiet-lead .u { color: var(--gold-soft); }
.quiet-para { margin-top: 26px; color: var(--on-dark); font-size: 14.5px; line-height: 2.2; letter-spacing: 0.05em; }
.quiet-para + .quiet-para { margin-top: 18px; }
.quiet-pull {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--line-dark);
  font-family: var(--serif);
  font-size: 16px;
  line-height: 2.0;
  color: var(--gold-soft);
  letter-spacing: 0.06em;
}

@media (min-width: 601px) {
  .dock { border-left: 1px solid var(--line); border-right: 1px solid var(--line); }
}


/* FAQ導線 */
.faq-guide {
  text-align: center;
}
.faq-guide-text {
  color: var(--ink-2);
  font-size: 14.5px;
  line-height: 2.05;
  letter-spacing: 0.05em;
  margin: 0 auto 26px;
  max-width: 33em;
}
.faq-guide .btn {
  max-width: 360px;
  margin-inline: auto;
}


/* ============================================================
   既存LPに合わせた横幅調整・フッター統一
   ============================================================ */
.masthead {
  width: min(100%, var(--max));
  margin-inline: auto;
}
.hero-inner {
  width: min(100%, var(--max));
  margin-inline: auto;
}
.section.wrap > *:not(.final-media) {
  width: min(100%, var(--max-sm));
  margin-left: auto;
  margin-right: auto;
}
.section.wrap .rec-grid,
.section.wrap .feature-grid,
.section.wrap .reason-list,
.section.wrap .flow,
.section.wrap .cred,
.section.wrap .faq,
.section.wrap .breath-steps,
.section.wrap .care-figure,
.section.wrap .active-figure {
  width: min(100%, var(--max-md));
  max-width: var(--max-md);
}
.section.wrap .price-card {
  width: min(100%, 680px);
}
.final.wrap > *:not(.final-media) {
  width: min(100%, var(--max-sm));
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 880px) {
  .dock { display: none; }
}

/* Access & Info footer — lymph-oil LP と同系統 */
.access-footer {
  background: var(--umber);
  color: var(--on-dark);
  text-align: center;
  padding: clamp(86px, 13vw, 112px) var(--gut) calc(86px + env(safe-area-inset-bottom));
}
.access-footer-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
}
.access-footer-label-en {
  font-family: var(--latin);
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.32em;
  color: var(--gold-soft);
  font-weight: 500;
}
.access-footer-label-jp {
  font-family: var(--serif);
  font-size: 12px;
  letter-spacing: 0.24em;
  color: var(--on-dark-2);
}
.access-footer-ornament {
  display: flex;
  align-items: center;
  gap: 10px;
}
.access-footer-ornament::before,
.access-footer-ornament::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold-soft);
  opacity: 0.6;
}
.access-footer-ornament i {
  width: 5px;
  height: 5px;
  background: var(--gold-soft);
  transform: rotate(45deg);
  opacity: 0.75;
  display: block;
}
.access-footer-brand {
  text-align: center;
  margin-bottom: 36px;
}
.access-footer-logo-img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  margin: 0 auto 18px;
  border-radius: 50%;
}
@media (min-width: 880px) {
  .access-footer-logo-img { width: 110px; height: 110px; }
}
.access-footer-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 21px;
  line-height: 1.8;
  letter-spacing: 0.16em;
  color: #f0e8d9;
}
.access-footer-en {
  margin-top: 8px;
  font-family: var(--latin);
  font-size: 11px;
  letter-spacing: 0.36em;
  color: var(--gold-soft);
  text-transform: uppercase;
}
.access-footer-list {
  width: min(520px, calc(100% - 44px));
  max-width: 520px;
  margin: 34px auto 0;
  text-align: left;
}
.access-footer-row {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-dark);
}
.access-footer-row:first-child { border-top: 1px solid var(--line-dark); }
.access-footer-row dt {
  font-size: 12px;
  letter-spacing: 0.24em;
  color: var(--gold-soft);
  white-space: nowrap;
}
.access-footer-row dd {
  font-size: 14px;
  line-height: 2;
  color: var(--on-dark);
}
@media (max-width: 520px) {
  .access-footer-list { width: calc(100% - 36px); max-width: none; }
  .access-footer-row { grid-template-columns: 72px minmax(0, 1fr); gap: 14px; }
  .access-footer-row dt { letter-spacing: 0.2em; }
}
.access-footer-note {
  margin-top: 8px;
  color: var(--on-dark-2);
  font-size: 12.5px;
  line-height: 1.8;
}
a.access-footer-link,
a.access-footer-tel {
  color: var(--on-dark);
  text-decoration: none;
  border-bottom: 1px solid rgba(224,201,154,0.42);
  transition: color .25s ease, border-color .25s ease;
}
a.access-footer-link:hover,
a.access-footer-tel:hover {
  color: var(--gold-soft);
  border-bottom-color: var(--gold-soft);
}
a.access-footer-link + a.access-footer-link {
  display: inline-block;
  margin-top: 8px;
}
.access-footer-notice {
  width: min(100%, 560px);
  margin: 32px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
  font-size: 12px;
  line-height: 2;
  letter-spacing: 0.06em;
  color: var(--on-dark-2);
}
.access-footer-copy {
  margin-top: 26px;
  font-family: var(--latin);
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--greige);
}

/* ============================================================
   画像配置の最終調整 20260603
   - 文字入り告知画像をLP本文へそのまま差し込まない
   - 写真部分だけを既存セクションに馴染ませる
   ============================================================ */
.hero-media::after {
  background:
    linear-gradient(90deg, rgba(24,19,14,0.88) 0%, rgba(24,19,14,0.72) 42%, rgba(24,19,14,0.32) 100%),
    linear-gradient(180deg, rgba(20,16,12,0.34) 0%, rgba(20,16,12,0.26) 42%, rgba(24,19,14,0.84) 100%);
}
.care-figure image-slot,
.active-figure image-slot,
.therapist-photo image-slot {
  overflow: hidden;
  border-radius: 3px;
  border: 1px solid rgba(168,138,85,0.22);
  box-shadow: 0 22px 46px -30px rgba(34,29,24,0.58);
  background: #1d1712;
}
.care-figure,
.active-figure,
.therapist-photo {
  margin-bottom: 28px;
}
.final-media { opacity: 0.28; }
.final-media::after {
  background:
    linear-gradient(180deg, rgba(20,16,12,0.68), rgba(20,16,12,0.88)),
    linear-gradient(90deg, rgba(20,16,12,0.55), rgba(20,16,12,0.20));
}
@media (max-width: 520px) {
  .hero { min-height: 86vh; }
  .hero-media::after {
    background:
      linear-gradient(180deg, rgba(24,19,14,0.74) 0%, rgba(24,19,14,0.46) 42%, rgba(24,19,14,0.90) 100%);
  }
  .care-figure image-slot,
  .active-figure image-slot {
    height: clamp(200px, 54vw, 250px);
  }
  .therapist-photo image-slot {
    height: clamp(230px, 66vw, 310px);
  }
}


/* ============================================================
   画像比率の厳密調整 20260603
   実画像の縦横比と貼付枠の縦横比を合わせる
   - hero   : 1600 x 1000
   - care   : 1400 x 650
   - active : 1400 x 700
   - therapist : 1400 x 760
   - final  : 1600 x 900
   ============================================================ */

:root {
  --ratio-hero: 1600 / 1000;
  --ratio-care: 1400 / 650;
  --ratio-active: 1400 / 700;
  --ratio-therapist: 1400 / 760;
  --ratio-final: 1600 / 900;
}

/* clampで高さを固定すると、画像比率と貼付枠の比率がズレるため、
   画像側の実比率に合わせて表示する */
.care-figure,
.active-figure,
.therapist-photo {
  width: min(100%, var(--max-md));
  max-width: var(--max-md);
  margin-left: auto;
  margin-right: auto;
}

.care-figure image-slot,
.active-figure image-slot,
.therapist-photo image-slot {
  display: block;
  width: 100%;
  height: auto !important;
  min-height: 0 !important;
  overflow: hidden;
  border-radius: 3px;
  border: 1px solid rgba(168,138,85,0.22);
  box-shadow: 0 22px 46px -30px rgba(34,29,24,0.58);
  background: #1d1712;
}

.care-figure image-slot {
  aspect-ratio: var(--ratio-care);
}

.active-figure image-slot {
  aspect-ratio: var(--ratio-active);
}

.therapist-photo image-slot {
  aspect-ratio: var(--ratio-therapist);
}

/* セラピスト写真は本文より少し細めで見せる */
.therapist-photo {
  width: min(100%, 760px);
  max-width: 760px;
}

/* ヒーロー背景はモバイルで詰まりすぎないように位置を少し右へ */
.hero-media image-slot {
  position: relative;
}

/* CTA背景の暗さは確保しつつ、写真の判別はできる程度に */
.final-media { opacity: 0.34; }
.final-media::after {
  background:
    linear-gradient(180deg, rgba(20,16,12,0.66), rgba(20,16,12,0.86)),
    linear-gradient(90deg, rgba(20,16,12,0.52), rgba(20,16,12,0.18));
}

@media (max-width: 520px) {
  .care-figure,
  .active-figure,
  .therapist-photo {
    margin-bottom: 24px;
  }

  /* モバイルでも比率優先。高さ固定はしない */
  .care-figure image-slot,
  .active-figure image-slot,
  .therapist-photo image-slot {
    height: auto !important;
  }
}


/* ============================================================
   画像配置修正 20260603 / lymph-oil と同じ「実画像そのまま表示」方式
   - image-slot の固定枠を使わず、<img> を width:100%; height:auto; で表示
   - 実画像の縦横比を維持し、横長・縦長画像を無理に同じ枠へ押し込まない
   ============================================================ */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.hero.hero--image-banner {
  min-height: auto;
  background:
    radial-gradient(circle at 50% 0%, rgba(168,138,85,0.18), transparent 46%),
    linear-gradient(180deg, #1d1712 0%, #2b2118 52%, #1d1712 100%);
  color: var(--on-dark);
  padding-top: clamp(80px, 12vw, 118px);
}
.hero--image-banner .hero-inner {
  width: min(100%, 980px);
  padding: 0 var(--gut) clamp(52px, 9vw, 84px);
  text-align: center;
}
.hero--image-banner .eyebrow {
  justify-content: center;
  color: var(--gold-soft);
}
.hero--image-banner .hero-sub {
  max-width: 680px;
  margin: clamp(28px, 5vw, 44px) auto 0;
  text-align: center;
}
.hero--image-banner .hero-note {
  justify-content: center;
}
.hero--image-banner .hero-cta {
  margin-left: auto;
  margin-right: auto;
}
.hero--image-banner .hero-meta {
  justify-content: center;
}

.dry-banner {
  margin: 0 auto;
  background: #1d1712;
  overflow: hidden;
  border: 1px solid rgba(168,138,85,0.22);
  box-shadow: 0 22px 48px -30px rgba(34,29,24,0.72);
}
.dry-banner img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}
.dry-banner--hero {
  width: min(100%, 920px);
  max-width: 920px;
  margin-top: clamp(28px, 5vw, 42px);
  border-color: rgba(224,201,154,0.28);
}
.section.wrap .dry-banner,
.final.wrap .dry-banner {
  width: min(100%, 920px);
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
.section.wrap .dry-banner--portrait {
  width: min(100%, 620px);
  max-width: 620px;
}
.visual-only {
  padding-top: clamp(44px, 8vw, 72px);
  padding-bottom: clamp(44px, 8vw, 72px);
}
.body-quote + .dry-banner,
.reason-list + .dry-banner,
.quiet-pull + .dry-banner {
  margin-top: clamp(36px, 7vw, 56px);
}
.care-figure.dry-banner,
.active-figure.dry-banner,
.therapist-photo.dry-banner {
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: auto !important;
}
.therapist-photo.dry-banner {
  width: min(100%, 920px);
  max-width: 920px;
}

.final-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

@media (max-width: 520px) {
  .hero.hero--image-banner { padding-top: 74px; }
  .hero--image-banner .hero-inner { padding-inline: 14px; }
  .hero--image-banner .hero-sub { font-size: 13.5px; line-height: 2.0; }
  .dry-banner { border-left: 0; border-right: 0; }
  .section.wrap .dry-banner,
  .section.wrap .dry-banner--portrait,
  .final.wrap .dry-banner {
    width: calc(100% + 28px);
    max-width: none;
    margin-left: -14px;
    margin-right: -14px;
  }
}
.hero--image-banner .scroll-cue { display: none; }


/* ============================================================
   文字揃え調整 20260603
   基本方針：LP内の見出し・本文・カード・リストは中央揃え
   ============================================================ */
#agura-dry-lp .section-head,
#agura-dry-lp .body-quote,
#agura-dry-lp .breath-intro,
#agura-dry-lp .therapist-body,
#agura-dry-lp .price-note,
#agura-dry-lp .quiet-lead,
#agura-dry-lp .quiet-para,
#agura-dry-lp .quiet-pull,
#agura-dry-lp .active-para,
#agura-dry-lp .fine-note,
#agura-dry-lp .care-box,
#agura-dry-lp .faq-guide-text {
  text-align: center;
}

#agura-dry-lp .section-head .kicker,
#agura-dry-lp .hero--image-banner .eyebrow,
#agura-dry-lp .final .eyebrow {
  justify-content: center;
}

#agura-dry-lp .kicker::after,
#agura-dry-lp .eyebrow::after {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}

#agura-dry-lp .eyebrow::after {
  width: 26px;
  background: var(--gold-soft);
  opacity: 0.7;
}

#agura-dry-lp .body-para,
#agura-dry-lp .breath-intro p,
#agura-dry-lp .active-para,
#agura-dry-lp .quiet-para,
#agura-dry-lp .therapist-body p,
#agura-dry-lp .care-box p,
#agura-dry-lp .price-note,
#agura-dry-lp .fine-note {
  max-width: var(--content-body-max);
  margin-left: auto;
  margin-right: auto;
}

#agura-dry-lp .feel-item,
#agura-dry-lp .care-list li,
#agura-dry-lp .rec-row,
#agura-dry-lp .reason-item {
  justify-content: center;
  align-items: center;
  text-align: center;
}

#agura-dry-lp .care-list .ci,
#agura-dry-lp .feel-mark,
#agura-dry-lp .rec-check,
#agura-dry-lp .reason-no {
  margin-top: 0;
}

#agura-dry-lp .feature-grid .fcard {
  text-align: center;
}

#agura-dry-lp .fcard::after {
  left: 50%;
  transform: translateX(-50%);
}

#agura-dry-lp .fcard .ficon {
  margin-left: auto;
  margin-right: auto;
}

#agura-dry-lp .breath-steps {
  width: min(100%, 760px);
}

#agura-dry-lp .bstep {
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 12px;
  text-align: center;
}

#agura-dry-lp .bstep::before {
  display: none;
}

#agura-dry-lp .bstep .bbody {
  padding-top: 0;
}

#agura-dry-lp .care-box .cb-head {
  justify-content: center;
  text-align: center;
}

#agura-dry-lp .tag-chips,
#agura-dry-lp .cred {
  justify-content: center;
}

#agura-dry-lp .fine-note {
  padding-left: 0;
  border-left: none;
}

#agura-dry-lp .flow {
  padding-left: 0;
}

#agura-dry-lp .flow-step {
  padding-left: 0;
  text-align: center;
}

#agura-dry-lp .flow-step::before {
  display: none;
}

#agura-dry-lp .flow-dot {
  position: relative;
  left: auto;
  top: auto;
  margin: 0 auto 12px;
}

#agura-dry-lp .faq-q {
  align-items: center;
  justify-content: center;
  text-align: center;
}

#agura-dry-lp .faq-q .qtext {
  flex: 0 1 auto;
  text-align: center;
}

#agura-dry-lp .faq-a-inner {
  padding-left: 4px;
  text-align: center;
}

#agura-dry-lp .access-footer-list {
  text-align: center;
}

#agura-dry-lp .access-footer-row {
  grid-template-columns: 1fr;
  gap: 8px;
}

#agura-dry-lp .access-footer-row dt,
#agura-dry-lp .access-footer-row dd {
  text-align: center;
}

@media (max-width: 520px) {
  #agura-dry-lp .feel-item,
  #agura-dry-lp .care-list li,
  #agura-dry-lp .rec-row {
    gap: 10px;
  }

  #agura-dry-lp .care-list li {
    flex-direction: column;
  }

  #agura-dry-lp .reason-item {
    flex-direction: column;
  }

  #agura-dry-lp .access-footer-row {
    grid-template-columns: 1fr;
  }
}

#agura-dry-lp .price-row {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
}

#agura-dry-lp .price-row.rec .tag {
  right: 50%;
  transform: translateX(50%);
}

#agura-dry-lp .masthead {
  justify-content: center;
  gap: 14px;
  text-align: center;
  flex-wrap: wrap;
}

#agura-dry-lp .brand {
  text-align: center;
}


/* ============================================================
   content.js 連動：文字揃え / 本文幅
   settings.textAlign を center / left にするとここが切り替わります
   ============================================================ */
#agura-dry-lp[data-text-align="center"] .section-head,
#agura-dry-lp[data-text-align="center"] .body-quote,
#agura-dry-lp[data-text-align="center"] .breath-intro,
#agura-dry-lp[data-text-align="center"] .therapist-body,
#agura-dry-lp[data-text-align="center"] .therapist-body p,
#agura-dry-lp[data-text-align="center"] .price-note,
#agura-dry-lp[data-text-align="center"] .quiet-lead,
#agura-dry-lp[data-text-align="center"] .quiet-para,
#agura-dry-lp[data-text-align="center"] .quiet-pull,
#agura-dry-lp[data-text-align="center"] .active-para,
#agura-dry-lp[data-text-align="center"] .fine-note,
#agura-dry-lp[data-text-align="center"] .care-box,
#agura-dry-lp[data-text-align="center"] .care-box p,
#agura-dry-lp[data-text-align="center"] .faq-guide-text {
  text-align: center !important;
}

#agura-dry-lp[data-text-align="left"] .section-head,
#agura-dry-lp[data-text-align="left"] .body-quote,
#agura-dry-lp[data-text-align="left"] .breath-intro,
#agura-dry-lp[data-text-align="left"] .therapist-body,
#agura-dry-lp[data-text-align="left"] .therapist-body p,
#agura-dry-lp[data-text-align="left"] .price-note,
#agura-dry-lp[data-text-align="left"] .quiet-lead,
#agura-dry-lp[data-text-align="left"] .quiet-para,
#agura-dry-lp[data-text-align="left"] .quiet-pull,
#agura-dry-lp[data-text-align="left"] .active-para,
#agura-dry-lp[data-text-align="left"] .fine-note,
#agura-dry-lp[data-text-align="left"] .care-box,
#agura-dry-lp[data-text-align="left"] .care-box p,
#agura-dry-lp[data-text-align="left"] .faq-guide-text {
  text-align: left !important;
}


/* 20260708: 駐車場写真の折り畳み表示 */
#agura-dry-lp .m-photo-accordion {
  margin-top: 10px;
  border: 1px solid rgba(224,201,154,.30);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,.06);
}
#agura-dry-lp .m-photo-accordion summary {
  cursor: pointer;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--on-dark);
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
#agura-dry-lp .m-photo-accordion summary::-webkit-details-marker { display: none; }
#agura-dry-lp .m-photo-accordion summary::after {
  content: "＋";
  color: var(--gold-soft);
}
#agura-dry-lp .m-photo-accordion[open] summary::after { content: "－"; }
#agura-dry-lp .m-photo-accordion__body { padding: 0 14px 14px; }
#agura-dry-lp .m-photo-accordion__body img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(0,0,0,.18);
}
#agura-dry-lp .m-photo-accordion__text {
  margin: 10px 2px 0;
  font-size: 13px;
  line-height: 1.85;
  color: var(--on-dark-2);
}
