/* =========================================================
   Calm — 自由が丘 鍼灸整体  /  トークン駆動ベース
   配色・書体・角丸・ヒーロー縦横は data-theme / data-hero で切替（themes.css）
   既定値 = テーマ01「霧明朝」
   ========================================================= */
:root {
  --paper: #eef1ec;       /* 地 */
  --paper-2: #f8faf6;     /* カード・明部 */
  --ink: #23272a;         /* 主テキスト */
  --ink-soft: #4a5054;    /* 副次テキスト */
  --accent: #788a69;      /* 主アクセント */
  --accent-deep: #586647; /* 文字に乗せる深いアクセント */
  --point: #c0452f;       /* 一点アクセント（極小面積のみ） */
  --line: #d6ddd3;        /* ヘアライン */
  --on-accent: #ffffff;   /* アクセント上の文字 */
  --band-bg: #23272a;     /* CTAバンド地 */
  --band-ink: #eef1ec;    /* CTAバンド文字 */
  --band-ink-soft: #c9cfc6;
  --radius: 2px;
  --maxw: 1080px;
  --readw: 720px;
  --display: 'Zen Old Mincho', serif;
  --body: 'Zen Kaku Gothic New', -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.95;
  font-size: 16px;
  font-feature-settings: 'palt';
  -webkit-font-smoothing: antialiased;
  transition: background .4s, color .4s;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.eyebrow { font-size: .72rem; letter-spacing: .34em; text-transform: uppercase; color: var(--accent-deep); margin: 0 0 14px; }

/* ---------- header ---------- */
.site-header { display: flex; align-items: center; gap: 24px; max-width: var(--maxw); margin: 0 auto; padding: 22px 24px; }
.brand { display: flex; flex-direction: column; line-height: 1.1; }
.brand-mark { font-family: var(--display); font-weight: 700; font-size: 1.5rem; letter-spacing: .16em; color: var(--ink); }
.brand-sub { font-size: .64rem; letter-spacing: .3em; color: var(--accent-deep); margin-top: 3px; }
.site-nav { display: flex; gap: 26px; margin-left: auto; }
.site-nav a { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.site-nav .ja { font-size: .84rem; color: var(--ink-soft); transition: color .2s; }
.site-nav .rom { font-size: .56rem; letter-spacing: .2em; color: var(--line); text-transform: uppercase; }
.site-nav a:hover .ja { color: var(--accent-deep); }
.header-cta { font-family: var(--display); font-size: .9rem; letter-spacing: .12em; border: 1px solid var(--ink); border-radius: var(--radius); padding: 9px 20px; transition: background .25s, color .25s; }
.header-cta:hover { background: var(--ink); color: var(--paper); }

/* ---------- hero ---------- */
.hero { max-width: var(--maxw); margin: 0 auto; padding: 40px 24px 72px; display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; min-height: 64vh; }
.hero-copy { max-width: 30rem; }
.hero-lead { font-size: 1.02rem; color: var(--ink-soft); margin: 0 0 32px; line-height: 2.1; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.btn { font-family: var(--display); font-size: .96rem; letter-spacing: .1em; background: var(--accent); color: var(--on-accent); padding: 14px 30px; border-radius: var(--radius); transition: background .25s, opacity .25s; }
.btn:hover { background: var(--accent-deep); }
.btn-ghost { font-family: var(--display); font-size: .96rem; letter-spacing: .1em; border: 1px solid var(--line); color: var(--ink); padding: 14px 30px; border-radius: var(--radius); transition: border-color .25s; }
.btn-ghost:hover { border-color: var(--ink); }

.hero-vertical {
  writing-mode: vertical-rl; text-orientation: upright;
  font-family: var(--display); font-weight: 500;
  font-size: clamp(2.4rem, 5.2vw, 4.1rem);
  letter-spacing: .22em; line-height: 1.42; color: var(--ink);
  margin: 0; justify-self: end; position: relative;
  animation: rise 1.1s cubic-bezier(.2,.7,.2,1) both;
}
.hero-vertical .point { display: inline-block; width: .26em; height: .26em; border-radius: 50%; background: var(--point); vertical-align: middle; margin-top: .4em; box-shadow: 0 0 0 .28em color-mix(in srgb, var(--point) 14%, transparent); }
@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

/* ヒーロー横書きモード（data-hero="horizontal"） */
[data-hero="horizontal"] .hero { grid-template-columns: 1fr; gap: 28px; }
[data-hero="horizontal"] .hero-vertical { writing-mode: horizontal-tb; text-orientation: mixed; justify-self: start; order: -1; line-height: 1.3; letter-spacing: .08em; }

/* ---------- 画像ヒーロー（背景写真 + 暖色スクリム + 明色テキスト） ---------- */
.hero-image { position: relative; min-height: 76vh; display: flex; align-items: flex-end; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, color-mix(in srgb, var(--band-bg) 86%, transparent) 0%,
      color-mix(in srgb, var(--band-bg) 55%, transparent) 42%, transparent 72%),
    linear-gradient(0deg, color-mix(in srgb, var(--band-bg) 70%, transparent) 0%, transparent 40%);
}
.hero-inner { position: relative; max-width: var(--maxw); width: 100%; margin: 0 auto; padding: 0 24px 9vh; }
.hero-head {
  font-family: var(--display); font-weight: 700; color: var(--band-ink);
  font-size: clamp(2.4rem, 6vw, 4.4rem); letter-spacing: .08em; line-height: 1.3;
  margin: 0 0 18px; text-shadow: 0 2px 24px color-mix(in srgb, var(--band-bg) 60%, transparent);
  animation: rise 1.1s cubic-bezier(.2,.7,.2,1) both;
}
.hero-head .point { display: inline-block; width: .22em; height: .22em; border-radius: 50%; background: var(--point); vertical-align: .12em; margin-left: .12em; box-shadow: 0 0 0 .26em color-mix(in srgb, var(--point) 30%, transparent); }
.hero-image .hero-lead { max-width: 34rem; }
.on-dark { color: var(--band-ink) !important; }
.eyebrow.on-dark { color: color-mix(in srgb, var(--band-ink) 80%, var(--accent)); }
.btn-ghost.on-dark { border-color: color-mix(in srgb, var(--band-ink) 55%, transparent); }
.btn-ghost.on-dark:hover { border-color: var(--band-ink); }

/* ---------- 画像バンド（写真 + コピー） ---------- */
.image-band { max-width: var(--maxw); margin: 0 auto; padding: 24px; display: grid; grid-template-columns: 1.1fr 1fr; gap: 0; align-items: stretch; }
.image-band-photo { overflow: hidden; border-radius: var(--radius) 0 0 var(--radius); }
.image-band-photo img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; }
/* Our care スライドショー（3秒ごとクロスフェード） */
.image-band-photo.slideshow { position: relative; min-height: 320px; }
.image-band-photo.slideshow img { position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease; }
.image-band-photo.slideshow img.active { opacity: 1; }
@media (prefers-reduced-motion: reduce) { .image-band-photo.slideshow img { transition: none; } }
.image-band-copy { background: var(--paper-2); border: 1px solid var(--line); border-left: 0; border-radius: 0 var(--radius) var(--radius) 0; padding: 44px 40px; display: flex; flex-direction: column; justify-content: center; }
.image-band-copy h2 { font-family: var(--display); font-weight: 500; font-size: 1.5rem; letter-spacing: .06em; margin: 0 0 14px; }
.image-band-copy p { color: var(--ink-soft); margin: 0 0 20px; line-height: 2; font-size: .94rem; }
.more-link { font-family: var(--display); letter-spacing: .1em; color: var(--accent-deep); border-bottom: 1px solid var(--accent); padding-bottom: 3px; align-self: flex-start; }

@media (max-width: 760px) {
  .hero-image { min-height: 70vh; }
  .image-band { grid-template-columns: 1fr; }
  .image-band-photo { border-radius: var(--radius) var(--radius) 0 0; }
  .image-band-copy { border-left: 1px solid var(--line); border-top: 0; border-radius: 0 0 var(--radius) var(--radius); padding: 32px 24px; }
}

/* ---------- section ---------- */
.section { max-width: var(--maxw); margin: 0 auto; padding: 72px 24px; }
.section-head { margin: 0 0 40px; }
.section-title { font-family: var(--display); font-weight: 500; font-size: 1.7rem; letter-spacing: .08em; margin: 0; color: var(--ink); }
.hairline { border: 0; border-top: 1px solid var(--line); max-width: var(--maxw); margin: 0 auto; }

.concerns { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.concern { background: var(--paper-2); padding: 30px 26px; }
.concern h3 { font-family: var(--display); font-weight: 500; font-size: 1.12rem; margin: 0 0 10px; letter-spacing: .04em; }
.concern p { font-size: .88rem; color: var(--ink-soft); margin: 0; line-height: 1.9; }
.concern .tag { font-size: .72rem; letter-spacing: .2em; color: var(--accent-deep); }

.flow { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 28px; }
.step { position: relative; padding-top: 16px; border-top: 1px solid var(--line); }
.step .num { font-family: var(--display); font-weight: 500; font-size: 2rem; line-height: 1; color: var(--accent); opacity: .55; margin-bottom: 10px; }
.step h3 { font-family: var(--display); font-weight: 500; font-size: 1.05rem; margin: 0 0 8px; }
.step p { font-size: .86rem; color: var(--ink-soft); margin: 0; line-height: 1.85; }

.posts { max-width: var(--readw); margin: 0 auto; padding: 0; list-style: none; }
.posts li { border-bottom: 1px solid var(--line); }
.posts a { display: grid; grid-template-columns: 96px 1fr; gap: 18px; align-items: baseline; padding: 18px 4px; transition: background .2s; }
.posts a:hover { background: var(--paper-2); }
.posts .date { font-size: .76rem; letter-spacing: .12em; color: var(--accent-deep); }
.posts .ttl { font-family: var(--display); font-size: 1.02rem; line-height: 1.6; }
.posts .cat { font-size: .68rem; letter-spacing: .16em; color: var(--ink-soft); margin-left: 8px; }
.more { text-align: center; margin-top: 36px; }
.more a { font-family: var(--display); letter-spacing: .12em; border-bottom: 1px solid var(--accent); padding-bottom: 3px; }

.cta-band { background: var(--band-bg); color: var(--band-ink); transition: background .4s; }
.cta-band .inner { max-width: var(--maxw); margin: 0 auto; padding: 64px 24px; text-align: center; }
.cta-band h2 { font-family: var(--display); font-weight: 500; font-size: 1.7rem; letter-spacing: .1em; margin: 0 0 14px; }
.cta-band p { color: var(--band-ink-soft); margin: 0 0 28px; }
.cta-band .btn-light { font-family: var(--display); letter-spacing: .1em; background: var(--paper); color: var(--ink); padding: 14px 34px; border-radius: var(--radius); display: inline-block; transition: opacity .2s; }
.cta-band .btn-light:hover { opacity: .88; }

/* ---------- 記事 ---------- */
.post { max-width: var(--readw); margin: 0 auto; padding: 56px 24px 72px; }
.post-meta { display: flex; gap: 14px; align-items: center; font-size: .76rem; letter-spacing: .12em; color: var(--accent-deep); margin: 0 0 14px; }
.post-meta .cats { color: var(--ink-soft); }
.post h1 { font-family: var(--display); font-weight: 700; font-size: clamp(1.6rem, 3.4vw, 2.1rem); line-height: 1.55; letter-spacing: .04em; margin: 0 0 28px; }
.post-hero { width: 100%; border-radius: var(--radius); margin: 0 0 32px; }
.post-body { font-size: 1rem; }
.post-body :is(h2, h3) { font-family: var(--display); font-weight: 500; letter-spacing: .04em; margin: 2.2em 0 .8em; }
.post-body h2 { font-size: 1.3rem; border-left: 3px solid var(--accent); padding-left: .6em; }
.post-body h3 { font-size: 1.12rem; }
.post-body p { margin: 1.1em 0; }
.post-body ul:not(.tick), .post-body ol { margin: 1.1em 0; padding-left: 1.4em; }
.post-body ul:not(.tick) li, .post-body ol li { margin: .4em 0; line-height: 1.9; }
.post-body ul:not(.tick) { list-style: none; padding-left: 0; }
.post-body ul:not(.tick) li { position: relative; padding-left: 1.4em; }
.post-body ul:not(.tick) li::before { content: ''; position: absolute; left: .25em; top: .8em; width: .5em; height: .28em; border-left: 1.6px solid var(--accent); border-bottom: 1.6px solid var(--accent); transform: rotate(-45deg); }
.post-body img { border-radius: var(--radius); margin: 1.5em auto; }
.post-body a { color: var(--accent-deep); border-bottom: 1px solid var(--line); }
/* 記事内リンクカード（pz-linkcard 変換版） */
.post-body a.linkcard { display: flex; align-items: center; gap: 14px; padding: 12px 16px; margin: 1.4em 0; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper-2); text-decoration: none; border-bottom: 1px solid var(--line); transition: border-color .2s, transform .2s; }
.post-body a.linkcard:hover { border-color: var(--accent); transform: translateY(-2px); }
.post-body a.linkcard img { width: 64px; height: 64px; object-fit: cover; border-radius: 4px; flex: 0 0 auto; margin: 0; }
.post-body a.linkcard .lc-title { font-family: var(--display); font-size: .98rem; line-height: 1.5; color: var(--ink); border: 0; }

/* 記事内テーブル（営業日表など）・Googleカレンダー */
.post-body table { width: 100%; border-collapse: collapse; margin: 1.6em 0; font-size: .9rem; }
.post-body th, .post-body td { border: 1px solid var(--line); padding: 8px 10px; text-align: left; vertical-align: top; }
.post-body thead th { background: var(--paper-2); font-family: var(--display); font-weight: 500; letter-spacing: .04em; }
.post-body .hol { color: var(--point); font-weight: 700; }
.post-body iframe { display: block; width: 100%; max-width: 100%; height: 560px; border: 1px solid var(--line); border-radius: var(--radius); margin: 1.6em 0; }
@media (max-width: 560px) { .post-body iframe { height: 460px; } .post-body th, .post-body td { padding: 6px 7px; font-size: .82rem; } }
.post-tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 36px 0 0; }
.post-tags .tag { font-size: .8rem; letter-spacing: .04em; color: var(--accent-deep); background: var(--paper-2); border: 1px solid var(--line); border-radius: 999px; padding: 5px 14px; transition: border-color .2s, background .2s; }
.post-tags .tag:hover { border-color: var(--accent); background: var(--paper); }
.back { margin-top: 36px; }
.back a { font-family: var(--display); letter-spacing: .1em; border-bottom: 1px solid var(--accent); padding-bottom: 3px; }

/* ---------- 固定ページ / 問い合わせフォーム ---------- */
.post.page .post-body :is(h2,h3){ font-family: var(--display); }
.contact-lead { color: var(--ink-soft); margin: 0 0 32px; line-height: 2.1; }
.contact-methods { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin: 0 0 40px; }
.method { display: flex; flex-direction: column; gap: 6px; padding: 20px 22px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper-2); color: inherit; transition: border-color .2s, transform .2s; }
.method:hover { border-color: var(--accent); transform: translateY(-2px); }
.method-book { background: var(--accent); border-color: var(--accent); color: var(--on-accent); }
.method-book:hover { background: var(--accent-deep); border-color: var(--accent-deep); }
.method-label { font-size: .76rem; letter-spacing: .12em; opacity: .85; }
.method-val { font-family: var(--display); font-size: 1.15rem; letter-spacing: .04em; }
.form-heading { font-family: var(--display); font-weight: 500; font-size: 1.2rem; letter-spacing: .06em; margin: 0 0 20px; padding-top: 8px; border-top: 1px solid var(--line); }
.form { display: flex; flex-direction: column; gap: 22px; max-width: 560px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: .9rem; letter-spacing: .04em; }
.field .req { font-size: .66rem; letter-spacing: .12em; color: var(--on-accent); background: var(--accent); padding: 2px 8px; border-radius: 2px; margin-left: 6px; }
.field .opt { font-size: .66rem; letter-spacing: .12em; color: var(--ink-soft); border: 1px solid var(--line); padding: 1px 8px; border-radius: 2px; margin-left: 6px; }
.field input, .field textarea {
  font-family: var(--body); font-size: 1rem; color: var(--ink);
  background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 12px 14px; width: 100%; transition: border-color .2s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); }
.field textarea { resize: vertical; min-height: 140px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form .btn { border: 0; cursor: pointer; align-self: flex-start; }
.form .btn:disabled { opacity: .6; cursor: default; }
.form-status { margin: 4px 0 0; font-size: .9rem; }
.form-status.ok { color: var(--accent-deep); }
.form-status.err { color: var(--point); }

/* ---------- 固定ページ本文の整形（コース/箇条書き/リンク/注記） ---------- */
.post.page .post-body p { margin: .55em 0; }
.post-body .course {
  display: flex; align-items: baseline; justify-content: space-between; flex-wrap: wrap; gap: 4px 16px;
  margin: 1.8em 0 .4em; padding-bottom: .5em; border-bottom: 1px solid var(--line);
}
.post-body .course .c-name {
  font-family: var(--display); font-size: 1.2rem; font-weight: 500; letter-spacing: .04em; color: var(--ink);
  position: relative; padding-left: .9em;
}
.post-body .course .c-name::before { content: ''; position: absolute; left: 0; top: .55em; width: .42em; height: .42em; border-radius: 50%; background: var(--point); }
.post-body .course .c-price { font-size: .92rem; letter-spacing: .04em; color: var(--accent-deep); white-space: nowrap; }
.post-body ul.tick { list-style: none; padding: 0; margin: .6em 0; display: flex; flex-direction: column; gap: .3em; }
.post-body ul.tick li { position: relative; padding-left: 1.4em; color: var(--ink-soft); font-size: .95rem; }
.post-body ul.tick li::before { content: ''; position: absolute; left: .2em; top: .62em; width: .5em; height: .28em; border-left: 1.6px solid var(--accent); border-bottom: 1.6px solid var(--accent); transform: rotate(-45deg); }
.post-body .more { text-align: left; margin: .4em 0 1.4em; }
.post-body .note { font-size: .84rem; color: var(--ink-soft); padding-left: .9em; border-left: 2px solid var(--line); margin: .4em 0; }

/* ---------- 流れ＆料金ページ ---------- */
.flow-sec { margin: 56px 0; }
.flow-sec .section-head { margin: 0 0 28px; }
.menu { display: flex; flex-direction: column; }
.menu-item { padding: 26px 0; border-top: 1px solid var(--line); }
.menu-item:last-child { border-bottom: 1px solid var(--line); }
.menu-item.is-featured { background: var(--paper-2); margin: 0 -20px; padding: 26px 20px; border-radius: var(--radius); border-top: 1px solid var(--line); }
.menu-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px 20px; flex-wrap: wrap; }
.menu-name { font-family: var(--display); font-weight: 500; font-size: 1.3rem; letter-spacing: .06em; margin: 0; position: relative; padding-left: .95em; }
.menu-name::before { content: ''; position: absolute; left: 0; top: .56em; width: .44em; height: .44em; border-radius: 50%; background: var(--point); }
.menu-price { font-family: var(--display); white-space: nowrap; }
.menu-price .t { font-size: .82rem; color: var(--ink-soft); margin-right: .7em; letter-spacing: .08em; }
.menu-price .p { font-size: 1.15rem; color: var(--accent-deep); letter-spacing: .04em; }
.menu-desc { color: var(--ink-soft); font-size: .94rem; line-height: 1.95; margin: .8em 0 0; }
.menu-desc.tail { margin-top: .5em; }
.menu-foot { font-size: .82rem; color: var(--ink-soft); margin: 18px 0 0; }

/* タイムライン（施術の流れ） */
.timeline { list-style: none; padding: 0; margin: 0; }
.tl-step { display: grid; grid-template-columns: auto 1fr; gap: 22px; position: relative; padding: 0 0 30px; }
.tl-step:not(:last-child)::before { content: ''; position: absolute; left: 18px; top: 40px; bottom: 0; width: 1px; background: var(--line); }
.tl-num { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--accent); color: var(--accent-deep); font-family: var(--display); font-size: .92rem; background: var(--paper); z-index: 1; }
.tl-body h3 { font-family: var(--display); font-weight: 500; font-size: 1.1rem; letter-spacing: .04em; margin: 6px 0 6px; }
.tl-body p { color: var(--ink-soft); font-size: .93rem; line-height: 1.95; margin: 0; }

/* タイムライン：モダン版（大きなゴースト数字 + ヘアライン） */
.timeline.modern { counter-reset: none; }
.timeline.modern .tl-step { grid-template-columns: minmax(64px, auto) 1fr; gap: 28px; align-items: start; padding: 30px 0; border-top: 1px solid var(--line); }
.timeline.modern .tl-step:last-child { border-bottom: 1px solid var(--line); }
.timeline.modern .tl-step::before { display: none; }
.timeline.modern .tl-num {
  width: auto; height: auto; border: 0; background: none; border-radius: 0; place-items: start;
  font-family: var(--display); font-weight: 500; font-size: clamp(2.2rem, 5vw, 3.2rem);
  line-height: .9; color: var(--accent); opacity: .55; letter-spacing: 0;
}
.timeline.modern .tl-step-label { font-size: .64rem; letter-spacing: .3em; text-transform: uppercase; color: var(--accent-deep); margin: 0 0 2px; }
.timeline.modern .tl-body h3 { font-family: var(--display); font-weight: 500; font-size: 1.18rem; letter-spacing: .05em; margin: 0 0 8px; }
.timeline.modern .tl-body p { color: var(--ink-soft); line-height: 2; }
@media (max-width: 560px) {
  .timeline.modern .tl-step { gap: 16px; grid-template-columns: 48px 1fr; }
  .timeline.modern .tl-num { font-size: 1.9rem; }
}

/* ページ内 CTA */
.cta-inline { text-align: center; margin: 56px 0 8px; padding: 40px 24px; background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); }
.cta-inline p { margin: 0 0 18px; color: var(--ink-soft); }
.cta-inline .btn { border: 0; }

/* 共通 CTA ブロック */
.cta-block { text-align: center; margin: 64px 0 8px; padding: 44px 24px; background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); }
.cta-lead { margin: 0 0 22px; color: var(--ink-soft); }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-actions .btn { border: 0; }

/* ---------- はじめての方：特徴カード ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin: 8px 0; }
.feature { background: var(--paper-2); padding: 30px 28px; }
.feature h2 { font-family: var(--display); font-weight: 500; font-size: 1.2rem; letter-spacing: .05em; margin: 0 0 10px; }
.feature-body { color: var(--ink-soft); font-size: .92rem; line-height: 1.95; margin: 0; }

/* ---------- 大きめ tick リスト ---------- */
.post-body ul.tick.big li, ul.tick.big li { font-size: 1.02rem; padding: 6px 0 6px 1.5em; }
ul.tick.big { list-style: none; padding: 0; margin: 0 0 18px; }
ul.tick.big li { position: relative; color: var(--ink); }
ul.tick.big li::before { content: ''; position: absolute; left: .2em; top: 1.05em; width: .55em; height: .3em; border-left: 1.8px solid var(--accent); border-bottom: 1.8px solid var(--accent); transform: rotate(-45deg); }

/* ---------- サロン紹介：代表名・院内ギャラリー ---------- */
.rom-name { font-family: var(--body); font-size: .72rem; letter-spacing: .2em; color: var(--ink-soft); margin-left: 12px; }
.director-skill { font-size: .86rem; color: var(--accent-deep); margin: 6px 0 0; }
.room-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px; }
.room { margin: 0; }
.room img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius); }
.room figcaption { font-size: .86rem; color: var(--ink-soft); line-height: 1.8; margin-top: 10px; }
.room-cap { display: block; font-family: var(--display); color: var(--ink); font-size: 1rem; letter-spacing: .06em; margin-bottom: 2px; }

/* ---------- アクセス ---------- */
.access-info { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 30px; margin: 8px 0 12px; }
.access-info dl { margin: 0 0 20px; display: grid; gap: 14px; }
.access-info dl > div { display: grid; grid-template-columns: 96px 1fr; gap: 14px; align-items: start; }
.access-info dt { font-size: .8rem; letter-spacing: .14em; color: var(--accent-deep); padding-top: 2px; }
.access-info dd { margin: 0; line-height: 1.8; }
.access-steps .tl-body p { color: var(--ink); margin: 6px 0 0; }
.step-photo { width: 100%; max-width: 280px; border-radius: var(--radius); margin: 12px 0 4px; }

/* ---------- お客様の声カード ---------- */
.voice-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.voice-card { display: block; position: relative; background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px 20px; color: inherit; transition: transform .2s, box-shadow .2s; }
.voice-card:hover { transform: translateY(-3px); box-shadow: 0 12px 28px color-mix(in srgb, var(--ink) 10%, transparent); }
.voice-mark { font-family: var(--display); font-size: 2.2rem; line-height: 0; color: var(--accent); opacity: .5; }
.voice-title { font-family: var(--display); font-weight: 500; font-size: 1.05rem; letter-spacing: .03em; margin: 10px 0 10px; }
.voice-body { font-size: .9rem; color: var(--ink-soft); line-height: 1.9; margin: 0 0 14px; }
.voice-date { font-size: .74rem; letter-spacing: .12em; color: var(--accent-deep); }

/* ---------- before/after ・ コース概要 ---------- */
.ba-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; }
.ba { margin: 0; }
.ba img { width: 100%; border-radius: var(--radius); border: 1px solid var(--line); }
.ba figcaption { text-align: center; font-size: .82rem; color: var(--ink-soft); margin-top: 8px; letter-spacing: .06em; }
.spec { margin: 0; display: grid; gap: 0; border-top: 1px solid var(--line); }
.spec > div { display: grid; grid-template-columns: 120px 1fr; gap: 16px; padding: 14px 4px; border-bottom: 1px solid var(--line); }
.spec dt { font-size: .84rem; letter-spacing: .1em; color: var(--accent-deep); }
.spec dd { margin: 0; color: var(--ink-soft); line-height: 1.8; font-size: .94rem; }
@media (max-width: 560px) { .spec > div { grid-template-columns: 84px 1fr; } }

/* ---------- お知らせ・コラム カード ---------- */
.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 24px; }
.news-card { display: flex; flex-direction: column; background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; color: inherit; transition: transform .2s, box-shadow .2s; }
.news-card:hover { transform: translateY(-3px); box-shadow: 0 12px 28px color-mix(in srgb, var(--ink) 10%, transparent); }
.news-thumb { aspect-ratio: 16 / 10; overflow: hidden; background: var(--paper); }
.news-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; }
.news-card:hover .news-thumb img { transform: scale(1.04); }
.news-thumb.ph { display: grid; place-items: center; }
.news-thumb.ph span { font-family: var(--display); font-size: 1.7rem; letter-spacing: .24em; color: var(--line); }
.nc-body { padding: 15px 17px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.nc-meta { display: flex; gap: 12px; align-items: baseline; }
.nc-meta .date { font-size: .72rem; letter-spacing: .12em; color: var(--accent-deep); }
.nc-meta .cat { font-size: .64rem; letter-spacing: .14em; color: var(--ink-soft); }
.nc-title { font-family: var(--display); font-weight: 500; font-size: 1rem; line-height: 1.6; letter-spacing: .02em; margin: 0; }

/* ---------- FAQ アコーディオン ---------- */
.faq { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; gap: 14px;
  padding: 20px 36px 20px 4px; position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-q { font-family: var(--display); color: var(--accent-deep); font-size: 1.1rem; flex: 0 0 auto; }
.faq-qtext { font-size: 1rem; line-height: 1.6; }
.faq-item summary::after {
  content: ''; position: absolute; right: 6px; top: 50%; width: 9px; height: 9px;
  border-right: 1.5px solid var(--ink-soft); border-bottom: 1.5px solid var(--ink-soft);
  transform: translateY(-65%) rotate(45deg); transition: transform .25s;
}
.faq-item[open] summary::after { transform: translateY(-35%) rotate(-135deg); }
.faq-a { display: flex; gap: 14px; padding: 0 24px 22px 4px; }
.faq-amark { font-family: var(--display); color: var(--point); font-size: 1.1rem; flex: 0 0 auto; }
.faq-atext { flex: 1; }
.faq-atext p { margin: 0 0 .7em; color: var(--ink-soft); line-height: 1.95; }
.faq-atext p:last-child { margin-bottom: 0; }
.faq-atext .more { margin-top: .4em; }

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--line); margin-top: 24px; }
.foot-brand { max-width: var(--maxw); margin: 0 auto; padding: 48px 24px 8px; }
.foot-brand p { font-size: .8rem; color: var(--ink-soft); margin: 8px 0 0; }
.foot-nap { max-width: var(--maxw); margin: 0 auto; padding: 4px 24px; font-style: normal; font-size: .8rem; line-height: 1.9; color: var(--ink-soft); }
.foot-social { max-width: var(--maxw); margin: 0 auto; padding: 10px 24px; display: flex; gap: 16px; align-items: center; }
.foot-social a { display: inline-flex; color: var(--ink-soft); transition: color .2s; }
.foot-social a:hover { color: var(--accent-deep); }
.foot-nav { max-width: var(--maxw); margin: 0 auto; padding: 16px 24px; display: flex; flex-wrap: wrap; gap: 12px 26px; }
.foot-nav a { font-size: .82rem; color: var(--ink-soft); transition: color .2s; }
.foot-nav a:hover { color: var(--accent-deep); }
.copy { max-width: var(--maxw); margin: 0 auto; padding: 16px 24px 48px; font-size: .72rem; letter-spacing: .12em; color: var(--ink-soft); }

/* ---------- responsive ---------- */
.nav-toggle { display: none; }

@media (max-width: 760px) {
  .site-header { flex-wrap: wrap; gap: 10px 14px; }
  .brand { margin-right: auto; }
  .nav-toggle { display: inline-flex; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 36px; padding: 7px; background: none; border: 1px solid var(--line); border-radius: var(--radius); cursor: pointer; order: 2; }
  .nav-toggle span { display: block; width: 100%; height: 2px; background: var(--ink); transition: transform .25s, opacity .2s; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .header-cta { order: 1; font-size: .82rem; padding: 7px 16px; }
  .site-nav { display: none; order: 5; flex-basis: 100%; flex-direction: column; gap: 0; margin: 6px 0 2px; }
  .site-nav.open { display: flex; }
  .site-nav a { flex-direction: row; align-items: baseline; justify-content: flex-start; gap: 12px; padding: 14px 6px; border-top: 1px solid var(--line); }
  .site-nav .ja { font-size: 1rem; color: var(--ink); }
  .site-nav .rom { font-size: .6rem; color: var(--ink-soft); }

  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 24px; gap: 32px; }
  .hero-vertical { justify-self: start; font-size: clamp(2rem, 11vw, 3rem); height: 8.5em; }
  [data-hero="horizontal"] .hero-vertical { height: auto; }
  .section { padding: 56px 24px; }
}

/* ---------- a11y ---------- */
:focus-visible { outline: 2px solid var(--point); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation: none !important; transition: none !important; } html { scroll-behavior: auto; } }
