/* Tomoka Violin Class — 共通スタイル（上品・クラシック 50% ＋ ナチュラル・やさしい 50%） */
:root {
  /* 基調：白・アイボリー・淡いベージュ・淡い木の色。アクセント：現行ロゴ（#b09b25）由来のくすみオリーブ */
  --bg: #f8f6f1; --paper: #fffdf9; --beige: #efe9de; --wood: #e6dccb;
  --ink: #33312d; --ink-soft: #55524b; --muted: #7d786f; --line: #ddd6c8;
  --olive: #8d8358; --olive-d: #6f6742; --olive-l: #eeeadb;
  --line-brand: #06c755; --line-brand-d: #05a847;
  --err: #a8483e; --err-l: #f7ebe8;
  --ff-body: "Zen Kaku Gothic New", "Noto Sans JP", "Hiragino Sans", "Yu Gothic", system-ui, sans-serif;
  --ff-head: "Zen Old Mincho", "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --ff-en: "Cormorant Garamond", Georgia, serif;
  --wrap: 1160px; --narrow: 760px; --gutter: 24px;
  --sec: clamp(64px, 6vw + 32px, 128px);
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; -webkit-text-size-adjust: 100%; }
body { margin: 0; font-family: var(--ff-body); color: var(--ink); background: var(--bg); line-height: 1.9; font-size: 16px; letter-spacing: .03em; font-feature-settings: "palt"; -webkit-font-smoothing: antialiased; }
@media (min-width: 900px) { body { font-size: 17px; } :root { --gutter: 40px; } }
img, picture { display: block; max-width: 100%; height: auto; }
a { color: var(--olive-d); text-decoration-thickness: 1px; text-underline-offset: .25em; }
a:hover { color: var(--ink); }
:focus-visible { outline: 2px solid var(--olive-d); outline-offset: 3px; }
h1, h2, h3, h4 { font-family: var(--ff-head); font-weight: 500; line-height: 1.5; margin: 0 0 .6em; letter-spacing: .06em; color: var(--ink); }
h1 { font-size: clamp(30px, 2.2vw + 20px, 48px); }
h2 { font-size: clamp(22px, 1vw + 16px, 30px); }
h3 { font-size: 1.12em; }
p { margin: 0 0 1.2em; }
ul, ol { padding-left: 1.3em; margin: 0 0 1.2em; }
small { font-size: .86em; color: var(--muted); }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: -999px; top: 8px; background: var(--ink); color: #fff; padding: .5em 1em; z-index: 100; }
.skip:focus { left: 8px; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.wrap.narrow { max-width: var(--narrow); }
.center { text-align: center; }
.sec { padding-top: var(--sec); padding-bottom: var(--sec); }
.lead { font-size: 1.08em; color: var(--ink-soft); }
.note { font-size: .9em; color: var(--muted); }
.help { display: block; font-size: .88em; color: var(--muted); margin-top: .3em; }
.big { font-size: 1.25em; font-family: var(--ff-head); letter-spacing: .06em; }
.tl { font-weight: 500; text-decoration: none; border-bottom: 1px solid currentColor; padding-bottom: 1px; }
.tl::after { content: " →"; }
.tl:hover { border-bottom-color: transparent; }
.en { display: block; font-family: var(--ff-en); font-style: italic; font-weight: 400; font-size: .95rem; letter-spacing: .12em; color: var(--olive); margin-bottom: .4em; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 800px) { .grid-2 { grid-template-columns: 1fr; gap: 28px; } }
.three { list-style: none; padding: 0; margin: 0 0 1.5em; display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.three li { border-top: 1px solid var(--line); padding-top: 18px; }
.three h3 { font-size: 1.08em; margin-bottom: .4em; }
.three p { font-size: .95em; margin: 0; color: var(--ink-soft); }
@media (max-width: 760px) { .three { grid-template-columns: 1fr; gap: 22px; } }
.notice { background: var(--olive-l); border-left: 3px solid var(--olive); padding: 14px 18px; font-size: .95em; margin: 1.2em 0; }
.badge { display: inline-block; font-size: .85em; padding: .15em .8em; border: 1px solid var(--olive); color: var(--olive-d); border-radius: 2px; margin: 0 .4em; vertical-align: middle; }
.status { margin-top: 1.2em; }

/* ---- ボタン ---- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5em; min-height: 48px; padding: .75em 1.8em; font-family: var(--ff-body); font-weight: 500; font-size: 1rem; text-decoration: none; border: 1px solid transparent; border-radius: 2px; letter-spacing: .06em; transition: background .15s, color .15s, border-color .15s; cursor: pointer; line-height: 1.4; }
.btn-primary { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-primary:hover { background: var(--olive-d); border-color: var(--olive-d); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; }
.btn-lg { padding: .9em 2.4em; font-size: 1.05rem; }
.btn-line { background: var(--line-brand); color: #fff; border-color: var(--line-brand); }
.btn-line:hover { background: var(--line-brand-d); border-color: var(--line-brand-d); color: #fff; }
.btn-line svg { width: 22px; height: 22px; fill: currentColor; }
.btn[disabled] { opacity: .5; cursor: not-allowed; }
.cta-btns { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 20px; margin: 1.4em 0; }
.cta-btns .btn { min-width: 18em; }
@media (max-width: 800px) { .cta-btns { flex-direction: column; align-items: stretch; } .cta-btns .btn { width: 100%; min-width: 0; } .cta-band .cta-btns .tl { flex-basis: auto; } }

/* ---- ヘッダー ---- */
.hd { position: sticky; top: 0; z-index: 50; background: var(--bg); border-bottom: 1px solid var(--line); }
.hd-in { max-width: var(--wrap); margin: 0 auto; padding: 14px var(--gutter); display: flex; align-items: center; gap: 24px; }
.brand { text-decoration: none; color: var(--ink); display: flex; flex-direction: column; line-height: 1.2; }
.brand-name { font-family: var(--ff-head); font-size: 1.35rem; letter-spacing: .08em; white-space: nowrap; }
.brand-sub { font-size: .7rem; letter-spacing: .14em; color: var(--muted); white-space: nowrap; }
.gnav { margin-left: auto; display: flex; align-items: center; gap: 16px; }
.gnav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 2px; }
.gnav li a { display: block; padding: .5em .7em; text-decoration: none; color: var(--ink); font-size: .9rem; white-space: nowrap; border-bottom: 1px solid transparent; }
.gnav li a:hover, .gnav li a[aria-current] { border-bottom-color: var(--olive); color: var(--olive-d); }
.gnav-cta { font-size: .9rem; min-height: 42px; padding: .55em 1.3em; }
.mnav-only { display: none; }
.burger { display: none; }
@media (max-width: 1100px) { .gnav li a { font-size: .84rem; padding: .5em .5em; } }
@media (max-width: 960px) {
  .hd-in { gap: 12px; padding: 12px var(--gutter); }
  .brand-name { font-size: 1.2rem; }
  .burger { display: inline-flex; align-items: center; gap: 8px; margin-left: auto; min-height: 44px; padding: 0 4px 0 10px; background: none; border: 0; cursor: pointer; color: var(--ink); font-family: var(--ff-body); font-size: .85rem; letter-spacing: .1em; }
  .burger-bars { display: flex; flex-direction: column; gap: 6px; width: 22px; }
  .burger-bars span { display: block; height: 1px; background: var(--ink); transition: transform .2s; }
  .burger[aria-expanded="true"] .burger-bars span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
  .burger[aria-expanded="true"] .burger-bars span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }
  .gnav { display: none; position: fixed; top: 69px; left: 0; right: 0; height: calc(100vh - 69px); height: calc(100dvh - 69px); background: var(--bg); flex-direction: column; align-items: stretch; padding: 16px var(--gutter) 40px; overflow: auto; margin: 0; }
  .gnav.is-open { display: flex; }
  .no-js .gnav { display: flex; position: static; height: auto; }
  .gnav ul { flex-direction: column; gap: 0; }
  .gnav li a { font-size: 1.05rem; padding: .9em .2em; border-bottom: 1px solid var(--line); }
  .gnav li a[aria-current] { border-bottom-color: var(--line); color: var(--olive-d); }
  .mnav-only { display: block; }
  .gnav-line { display: inline-flex; align-items: center; gap: .5em; padding: .9em .2em; text-decoration: none; color: var(--ink); font-size: 1.05rem; }
  .gnav-line svg { width: 22px; height: 22px; fill: var(--line-brand); }
  .gnav-cta { margin-top: 20px; min-height: 52px; font-size: 1.05rem; }
  body.menu-open { overflow: hidden; }
}
@media (prefers-reduced-motion: reduce) { .gnav, .burger-bars span, .btn { transition: none; } html { scroll-behavior: auto; } }

/* ---- ヒーロー ---- */
.hero { background: var(--paper); border-bottom: 1px solid var(--line); }
.hero-in { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: center; padding-top: clamp(40px, 6vw, 96px); padding-bottom: clamp(24px, 3vw, 48px); }
.hero h1.v { font-size: clamp(30px, 2.4vw + 18px, 50px); line-height: 1.55; letter-spacing: .06em; margin: 0 0 1.2em; }
.hero h1.v span { display: inline-block; white-space: nowrap; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-img img { width: 100%; }
.hero .notice { margin: clamp(24px, 3vw, 40px) 0 clamp(32px, 4vw, 56px); }
@media (max-width: 800px) {
  .hero-in { grid-template-columns: 1fr; gap: 24px; }
  .hero h1.v br { display: none; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .hero-btns .btn { width: 100%; max-width: 320px; }
  .hero-img { order: -1; }
}

/* ---- HOME 各セクション ---- */
.sec.foryou, .sec.schedule, .sec.studio { background: var(--paper); }
.sec.instructor { background: var(--beige); }
.sec .wrap > h2 { margin-bottom: 1.2em; }
.inst-img img, .prof-img img, .about-img img, .plan-img img, .loc-img img { width: 100%; }
.inst-name { font-family: var(--ff-head); font-size: 1.6rem; letter-spacing: .1em; margin: 0 0 .8em; }
.inst-name small { display: block; font-size: .78rem; letter-spacing: .2em; color: var(--muted); }
.inst-name.big { font-size: 2rem; }

/* ---- 受付日時 ---- */
.schedule { margin: 0 0 1.2em; }
.sch-row { display: grid; grid-template-columns: 9em 1fr; gap: 8px 24px; padding: 16px 0; border-top: 1px solid var(--line); }
.sch-row:last-child { border-bottom: 1px solid var(--line); }
.sch-row dt { font-family: var(--ff-head); font-size: 1.1em; letter-spacing: .08em; }
.sch-row dd { margin: 0; }
.sch-row dd b { display: block; font-size: 1.15em; font-weight: 500; font-family: var(--ff-head); letter-spacing: .06em; }
.sch-row dd span { font-size: .92em; color: var(--ink-soft); }
@media (max-width: 560px) { .sch-row { grid-template-columns: 1fr; gap: 2px; } }

/* ---- CTA 帯 ---- */
.cta-band { background: var(--beige); padding: var(--sec) 0; text-align: center; }
.cta-band h2 { margin-bottom: .5em; }
.cta-band .cta-btns { justify-content: center; align-items: stretch; }
.cta-band .cta-btns .btn { padding: .9em 2.2em; font-size: 1.05rem; min-width: 18em; }
.cta-band .cta-btns .tl { flex-basis: 100%; text-align: center; border-bottom: 0; text-decoration: underline; text-underline-offset: .3em; margin-top: 6px; }

/* ---- 下層ページ ---- */
.pagehead { background: var(--paper); border-bottom: 1px solid var(--line); padding: clamp(40px, 5vw, 72px) 0 clamp(28px, 3vw, 44px); }
.pagehead h1 { margin: 0; }
.ph-lead { margin: 1em 0 0; color: var(--ink-soft); max-width: 44em; }
.crumb { max-width: var(--wrap); margin: 0 auto; padding: 12px var(--gutter) 0; font-size: .8rem; }
.crumb ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 4px; }
.crumb li + li::before { content: "/"; margin: 0 8px; color: var(--muted); }
.crumb a { color: var(--muted); text-decoration: none; }
.crumb span { color: var(--ink); }
.sub .block { margin-bottom: clamp(48px, 5vw, 72px); }
.sub .block:last-child { margin-bottom: 0; }
.sub .block h2 { font-size: clamp(22px, .9vw + 17px, 28px); font-weight: 600; padding: .55em 0 .45em 18px; border-bottom: 1px solid var(--line); border-left: 3px solid var(--olive); margin-bottom: 1.1em; line-height: 1.4; }
.about-top { margin-bottom: clamp(48px, 5vw, 72px); }
.about-top .lead { margin: 0; }
.profile { align-items: start; margin-bottom: clamp(48px, 5vw, 72px); }
.profile .role { font-size: .85rem; letter-spacing: .2em; color: var(--muted); margin: 0; }
.profile h3 { font-size: .95em; letter-spacing: .12em; color: var(--olive-d); margin: 1.6em 0 .5em; }
.history { list-style: none; padding: 0; margin: 0 0 .6em; }
.history li { padding-left: 1.1em; position: relative; font-size: .96em; }
.history li::before { content: ""; position: absolute; left: 0; top: .85em; width: .5em; height: 1px; background: var(--olive); }
.plans .plan { padding: clamp(28px, 4vw, 56px) 0; border-top: 1px solid var(--line); }
.plans .plan:last-child { border-bottom: 1px solid var(--line); }
.plans > h2 { margin-bottom: .8em; }
.plan h3 { font-size: 1.4em; margin-bottom: .2em; }
.plan .for { color: var(--olive-d); font-size: .95em; margin-bottom: 1em; }
.check { list-style: none; padding: 0; }
.check li { padding: 10px 0 10px 1.6em; border-bottom: 1px solid var(--line); position: relative; }
.check li::before { content: ""; position: absolute; left: .2em; top: 1.15em; width: .6em; height: .35em; border-left: 1px solid var(--olive); border-bottom: 1px solid var(--olive); transform: rotate(-45deg); }
.flow { list-style: none; padding: 0; counter-reset: f; }
.flow li { position: relative; padding: 0 0 22px 3.2em; counter-increment: f; }
.flow li::before { content: counter(f, decimal-leading-zero); position: absolute; left: 0; top: .1em; font-family: var(--ff-en); font-size: 1.6em; color: var(--olive); line-height: 1; }
.flow li::after { content: ""; position: absolute; left: .75em; top: 2.2em; bottom: 0; width: 1px; background: var(--line); }
.flow li:last-child::after { display: none; }
.flow h3 { font-size: 1.05em; margin-bottom: .2em; }
.flow p { font-size: .95em; margin: 0; color: var(--ink-soft); }
.notes { font-size: .9em; color: var(--muted); padding-left: 1.3em; }
.notes li::marker { content: "※ "; }
.nofees { font-family: var(--ff-head); font-size: 1.15em; letter-spacing: .06em; }
.tbl-wrap { overflow-x: auto; }
table { border-collapse: collapse; width: 100%; font-size: .95em; }
th, td { padding: 12px 14px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
thead th { font-weight: 500; color: var(--olive-d); border-bottom-color: var(--olive); }
td.num { white-space: nowrap; }
.info-table th { width: 9em; font-weight: 500; color: var(--olive-d); white-space: nowrap; }
.prose h2 { font-size: 1.1em; }

/* ---- FAQ（ボタン式アコーディオン） ---- */
.faq { border-bottom: 1px solid var(--line); }
.faq:first-child { border-top: 1px solid var(--line); }
.faq h2 { margin: 0; padding: 0; border: 0; font-size: 1em; }
.faq-q { width: 100%; text-align: left; background: none; border: 0; padding: 20px 44px 20px 2em; font: inherit; font-family: var(--ff-head); font-size: 1.08em; letter-spacing: .04em; color: var(--ink); cursor: pointer; position: relative; line-height: 1.6; }
.faq-q::before { content: "Q"; position: absolute; left: 0; top: 20px; font-family: var(--ff-en); font-style: italic; color: var(--olive); font-size: 1.1em; }
.faq-q::after { content: ""; position: absolute; right: 14px; top: 50%; width: 10px; height: 10px; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); transform: translateY(-70%) rotate(45deg); transition: transform .2s; }
.faq-q[aria-expanded="false"]::after { transform: translateY(-30%) rotate(-135deg); }
.faq-a { padding: 0 0 22px 2em; position: relative; }
.faq-a::before { content: "A"; position: absolute; left: 0; top: -2px; font-family: var(--ff-en); font-style: italic; color: var(--olive-d); font-size: 1.1em; }
.faq-a p { margin: 0; color: var(--ink-soft); }
.faq-a[hidden] { display: none; }

/* ---- フォーム ---- */
.form { background: var(--paper); border: 1px solid var(--line); padding: clamp(20px, 3vw, 40px); }
.group { border: 0; padding: 0; margin: 0 0 36px; }
.group > legend { font-family: var(--ff-head); font-size: 1.15em; letter-spacing: .06em; padding: 0 0 .4em; margin-bottom: 18px; border-bottom: 1px solid var(--line); width: 100%; }
.field { margin-bottom: 22px; }
.field > label, .radios legend { display: block; font-weight: 500; margin-bottom: 6px; padding: 0; }
.req, .opt { display: inline-block; font-size: .72rem; font-weight: 400; letter-spacing: .1em; padding: .1em .5em; margin-left: 8px; vertical-align: middle; border-radius: 2px; }
.req { background: var(--ink); color: #fff; }
.opt { border: 1px solid var(--line); color: var(--muted); }
input[type=text], input[type=email], input[type=tel], input[type=date], select, textarea { width: 100%; font: inherit; padding: .7em .9em; border: 1px solid #c9c2b3; border-radius: 2px; background: #fff; color: var(--ink); min-height: 48px; }
select { appearance: none; -webkit-appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%), linear-gradient(135deg, var(--ink) 50%, transparent 50%); background-position: calc(100% - 20px) 50%, calc(100% - 15px) 50%; background-size: 5px 5px; background-repeat: no-repeat; padding-right: 40px; }
input:focus, select:focus, textarea:focus { outline: 2px solid var(--olive-d); outline-offset: 1px; border-color: var(--olive-d); }
[aria-invalid=true] { border-color: var(--err) !important; background: var(--err-l); }
.radios { border: 0; padding: 0; }
.radio-list { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.radio-list label { display: inline-flex; align-items: center; gap: 8px; min-height: 44px; }
input[type=radio], input[type=checkbox] { width: 20px; height: 20px; accent-color: var(--olive-d); margin: 0; }
.field-err { color: var(--err); font-size: .88em; margin: 6px 0 0; }
.field-err[hidden] { display: none; }
.form-alert { background: var(--err-l); border: 1px solid var(--err); color: var(--err); padding: 14px 18px; margin-bottom: 20px; font-size: .95em; }
.form-alert[hidden] { display: none; }
.form-alert ul { margin: .4em 0 0; padding-left: 1.2em; }
.hp { position: absolute; left: -9999px; }
.agree label { display: inline-flex; align-items: center; gap: 10px; flex-wrap: wrap; font-weight: 400; }
.wishes .help { margin-bottom: 18px; }
.wish { margin-bottom: 18px; padding: 16px; background: var(--bg); border: 1px solid var(--line); }
.wish-h { font-weight: 500; margin: 0 0 8px; }
.wish-in { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.wish-in .field { margin: 0; }
.wish-in label { font-weight: 400; font-size: .92em; }
@media (max-width: 560px) { .wish-in { grid-template-columns: 1fr; } }

/* ---- フッター ---- */
.ft { background: var(--ink); color: #e9e5dc; padding: clamp(48px, 5vw, 72px) 0 24px; }
.ft a { color: #fff; }
.ft-in { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; }
.ft .brand-name { color: #fff; margin: 0 0 .6em; }
.ft-addr { font-size: .92em; }
.ft-addr small { color: #bdb7aa; }
.ft-days { list-style: none; padding: 0; margin: 0 0 1em; font-size: .92em; }
.ft-days span { display: inline-block; min-width: 5.5em; color: #bdb7aa; }
.ft-sns { font-size: .92em; }
.ft .btn-primary { background: #fff; color: var(--ink); border-color: #fff; }
.ft .btn-primary:hover { background: var(--beige); border-color: var(--beige); }
.ft .cta-btns { flex-direction: column; align-items: stretch; max-width: 340px; gap: 12px; }
.ft .cta-btns .btn { width: 100%; }
.ft-nav ul { list-style: none; padding: 0; margin: 0; columns: 2; column-gap: 32px; }
.ft-nav li a { display: block; padding: .35em 0; text-decoration: none; font-size: .92em; }
.ft-nav li a:hover { text-decoration: underline; }
.copy { text-align: center; font-size: .78rem; margin: 40px 0 0; color: #bdb7aa; }
@media (max-width: 700px) { .ft-in { grid-template-columns: 1fr; } .ft-nav ul { columns: 1; } }

/* ---- 控えめなフェードイン ---- */
.js .rv { opacity: 0; transform: translateY(10px); transition: opacity .7s ease, transform .7s ease; }
.js .rv.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .rv { opacity: 1; transform: none; transition: none; } }

@media print { .hd, .ft, .cta-band, .crumb, .burger { display: none; } body { background: #fff; } }

/* ---- 補助 ---- */
.nowrap { display: inline-block; white-space: nowrap; }
.sp-only { display: none; }
@media (max-width: 960px) { .pc-only { display: none; } .sp-only { display: inline; } }
.gnav-cta { white-space: nowrap; }
.levels { list-style: none; padding: 0; margin: 0 0 .8em; }
.levels li { display: grid; grid-template-columns: 7em 1fr; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--line); }
.levels b { font-weight: 500; color: var(--olive-d); }
@media (max-width: 560px) { .levels li { grid-template-columns: 1fr; gap: 2px; } }
.price-table th[scope=row] { font-weight: 500; white-space: nowrap; }

/* ---- 料金カード ---- */
.price-cards { list-style: none; padding: 0; margin: 0 0 1.4em; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.price-card { background: var(--paper); border: 1px solid var(--line); padding: 28px 24px 22px; text-align: center; }
.price-card h3 { font-size: 1.15em; margin-bottom: .2em; }
.price-card .for { font-size: .85em; color: var(--olive-d); margin: 0 0 1em; min-height: 1.6em; }
.price-card .unit { font-size: .95em; color: var(--ink-soft); margin: 0 0 .3em; padding-top: 14px; border-top: 1px solid var(--line); }
.price-card .price { font-family: var(--ff-head); font-size: 2rem; letter-spacing: .04em; margin: 0 0 .3em; line-height: 1.3; }
.price-card .price small { font-size: .5em; color: var(--muted); margin-left: .2em; letter-spacing: 0; }
.price-card .sub { font-size: .86em; color: var(--muted); margin: 0; }
.plans .nofees { text-align: center; }
.plans .notes { max-width: var(--narrow); margin-left: auto; margin-right: auto; }
@media (max-width: 800px) { .price-cards { grid-template-columns: 1fr; gap: 14px; } .price-card { padding: 22px 18px 18px; } }

/* ---- Instagram リンク ---- */
.ig-link, .gnav-ig { display: inline-flex; align-items: center; gap: .45em; text-decoration: none; color: var(--ink); font-weight: 500; }
.ig-link svg, .gnav-ig svg { width: 20px; height: 20px; fill: currentColor; }
.ig-link:hover, .gnav-ig:hover { color: var(--olive-d); }
.gnav-ig { font-size: .88rem; }
@media (max-width: 960px) { .gnav .mnav-only .gnav-ig { padding: .9em .2em; font-size: 1.05rem; } .gnav > .pc-only { display: none; } }
.gnav > .pc-only .ig-label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.gnav > .pc-only .gnav-ig svg { width: 22px; height: 22px; }
.ft .ft-sns { margin: 4px 0 18px; }
.ft .ig-icon-only { color: #fff; padding: 6px; margin-left: -6px; }
.ft .ig-icon-only svg { width: 30px; height: 30px; }
.ft .ig-icon-only .ig-label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.ft .ig-icon-only:hover { color: var(--beige); }

/* ---- スマホの可読性：余白を広く、行間・段落間をゆったり ---- */
@media (max-width: 800px) {
  :root { --gutter: 28px; --sec: 72px; }
  body { line-height: 2.05; letter-spacing: .04em; }
  p { margin-bottom: 1.5em; }
  .lead { font-size: 1em; }
  h1 { font-size: clamp(26px, 7.4vw, 34px); }
  h2 { font-size: clamp(21px, 5.8vw, 24px); margin-bottom: .9em; }
  .sec .wrap > h2 { margin-bottom: 1.4em; }
  .three { gap: 30px; }
  .three li { padding-top: 16px; }
  .three p { line-height: 1.95; }
  .notice { padding: 16px 18px; font-size: .93em; line-height: 1.95; }
  .sub .block { margin-bottom: 56px; }
  .sub .block h2 { margin-bottom: 1.2em; }
  .sch-row { padding: 18px 0; }
  .faq-q { padding: 18px 40px 18px 1.9em; font-size: 1.02em; }
  .ft-in { gap: 36px; }
}
@media (max-width: 400px) { :root { --gutter: 24px; } }

/* ---- 横はみ出し防止（スマホでヒーロー写真を左右いっぱいにした分） ---- */
html, body { overflow-x: hidden; overflow-x: clip; }
.hero { overflow-x: hidden; }
@media (max-width: 800px) { .hero-img { width: 100%; } }
/* iOS Safari は body の overflow-x を無視することがあるため、主要ブロック側でもはみ出しを切る */
.hd, main, .ft, .cta-band { overflow-x: hidden; }

/* ---- iOS Safari の日付入力：幅が効かない・中央寄せになる対策 ---- */
input[type=date] { -webkit-appearance: none; appearance: none; display: block; width: 100%; max-width: 100%; min-width: 0; box-sizing: border-box; text-align: left; line-height: 1.4; }
input[type=date]::-webkit-date-and-time-value { text-align: left; }
input[type=date]::-webkit-calendar-picker-indicator { margin-left: auto; }
.wish-in .field { min-width: 0; }

/* ---- 日付ボタンとカレンダー ---- */
.datefield { position: relative; }
.datebtn { width: 100%; min-height: 48px; padding: .7em .9em; border: 1px solid #c9c2b3; border-radius: 2px; background: #fff; color: var(--muted); font: inherit; text-align: left; cursor: pointer; display: flex; align-items: center; justify-content: space-between; }
.datebtn::after { content: ""; width: 16px; height: 16px; flex: 0 0 16px; background: no-repeat center / 16px url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2333312d' stroke-width='1.6'%3E%3Crect x='3' y='5' width='18' height='16' rx='2'/%3E%3Cpath d='M3 10h18M8 3v4M16 3v4'/%3E%3C/svg%3E"); }
.datebtn.has-value { color: var(--ink); }
.datebtn[aria-invalid=true] { border-color: var(--err); background: var(--err-l); }
.cal { position: absolute; z-index: 30; left: 0; top: calc(100% + 6px); width: min(320px, 100%); background: var(--paper); border: 1px solid var(--line); box-shadow: 0 10px 30px rgba(51, 49, 45, .12); padding: 12px; }
.cal[hidden] { display: none; }
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.cal-title { margin: 0; font-family: var(--ff-head); letter-spacing: .06em; }
.cal-nav { width: 40px; height: 40px; border: 1px solid var(--line); background: #fff; font-size: 1.3rem; line-height: 1; cursor: pointer; color: var(--ink); }
.cal-nav[disabled] { opacity: .3; cursor: default; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.cal-wd { text-align: center; font-size: .75rem; color: var(--muted); padding: 4px 0; }
.cal-wd:first-child, .cal-day.is-hol:not([disabled]) { color: var(--err); }
.cal-day { min-height: 40px; border: 0; background: none; font: inherit; font-size: .95rem; color: var(--ink); cursor: pointer; border-radius: 2px; }
.cal-day:not([disabled]) { background: var(--olive-l); font-weight: 500; }
.cal-day:not([disabled]):hover { background: var(--olive); color: #fff; }
.cal-day[disabled] { color: #c4bfb3; cursor: default; }
.cal-day.is-selected { background: var(--ink) !important; color: #fff !important; }
.cal-note { margin: 8px 0 0; font-size: .78rem; color: var(--muted); }
.sch-row .slots { display: inline-block; font-style: normal; font-family: var(--ff-body); font-size: .8rem; letter-spacing: .06em; color: var(--err); border: 1px solid var(--err); border-radius: 2px; padding: .05em .6em; margin-left: .7em; vertical-align: middle; }
