/* =========================================================
   KYABEL SITE 64 — style.css
   Tailored Sidebar／ホスト・左右固定3カラム・昼のアトリエ。
   モバイル基底 → @media(min-width:1280px) で3カラム固定レール（sticky 自然高）。
   採寸線モチーフ＝キャメルの破線と目盛りが罫として機能（構造=情報）。
   ========================================================= */

/* ---------- 基底 ---------- */
body {
  font-family: var(--f-body);
  color: var(--text);
  background: var(--bg);
  font-size: 16px;
  overflow-x: hidden;
}
body.is-locked { overflow: hidden; }

.center, .rail { min-width: 0; }
img.host-card__img, .lb-stage__ph img { width: 100%; }

/* 生地地紋（極薄・昼のアトリエ） */
body::before {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    repeating-linear-gradient(90deg, transparent 0 39px, rgba(138,125,109,.05) 39px 40px),
    linear-gradient(180deg, #f5f2ea, var(--off));
}

/* ---------- 汎用見出し ---------- */
.kicker {
  font-family: var(--f-mono); font-size: 13px; letter-spacing: .22em;
  color: var(--accent-tx); text-transform: uppercase; display: inline-flex; align-items: center; gap: 10px;
}
.kicker::before { content: ""; width: 26px; height: 0; border-top: 1.5px solid var(--accent);
  box-shadow: 0 6px 0 -5px var(--accent), 0 -6px 0 -5px var(--accent); }
.sec { padding: 46px 0; position: relative; overflow-x: clip; }
.sec__head { margin-bottom: 26px; }
.sec__title {
  font-family: var(--f-display); font-weight: 600; color: var(--char);
  font-size: clamp(1.6rem, 1.1rem + 2vw, 2.35rem); line-height: 1.16; margin-top: 10px;
  letter-spacing: .01em;
}
.sec__title .en { display: block; font-family: var(--f-mono); font-size: 12px; letter-spacing: .2em;
  color: var(--taupe-d); margin-bottom: 6px; }
.sec__lead { color: var(--text-sub); margin-top: 12px; max-width: 54ch; font-size: 16px; }
.rule-tape { height: 14px; margin: 6px 0 0; background-repeat: repeat-x;
  background-image:
    linear-gradient(90deg, var(--accent), var(--accent)),
    repeating-linear-gradient(90deg, var(--line) 0 1px, transparent 1px 24px);
  background-size: 100% 1.5px, 100% 8px; background-position: 0 0, 0 3px; opacity: .8; }

/* ---------- ボタン ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 46px; padding: 0 20px; border-radius: var(--radius); font-size: 15px; font-weight: 600;
  letter-spacing: .02em; border: 1.5px solid transparent; transition: background .2s, color .2s, border-color .2s, transform .15s;
}
.btn svg { width: 18px; height: 18px; }
.btn--block { width: 100%; }
.btn--camel { background: var(--camel); color: var(--on-camel); border-color: var(--camel); }
.btn--camel:hover { background: var(--camel-d); border-color: var(--camel-d); }
.btn--ghost { background: transparent; color: var(--char); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent-tx); }
.btn--line { background: var(--char); color: var(--off); border-color: var(--char); }
.btn--line:hover { background: var(--ink); }

/* ---------- レイアウト（基底=縦積み。デスクトップで3カラム化） ---------- */
.layout { width: 100%; }
.center { padding: 0 var(--pad) 40px; }
.rail { padding: 0 var(--pad); }

/* ---------- 左レール（ブランド＋メニュー） ---------- */
.rail-brand { display: flex; align-items: center; gap: 12px; padding: 4px 0 8px; }
.rail-brand__mark { width: 40px; height: 40px; flex: none; }
.rail-brand__name { font-family: var(--f-display); font-size: 1.5rem; font-weight: 600; letter-spacing: .06em; color: var(--char); }
.rail-brand__theme { font-family: var(--f-mono); font-size: 12px; letter-spacing: .16em; color: var(--taupe-d); display: block; margin-top: 2px; }

.rail-nav { display: flex; flex-direction: column; gap: 2px; margin-top: 4px; }
.rail-nav__item {
  position: relative; display: grid;
  grid-template-columns: 26px auto minmax(0, 1fr) 24px;
  align-items: center; column-gap: 10px;
  min-height: 44px; padding: 4px 8px; border-radius: var(--radius); color: var(--char);
  transition: background .18s, color .18s;
}
.rail-nav__item:hover { background: var(--panel-2); }
.rail-nav__num { grid-column: 1; font-family: var(--f-mono); font-size: 12px; color: var(--taupe-d); letter-spacing: .06em; }
.rail-nav__en { grid-column: 2; font-size: 15px; font-weight: 600; letter-spacing: .04em; }
.rail-nav__ja { grid-column: 3; font-size: 14px; color: var(--text-sub); }
.rail-nav__mark { grid-column: 4; justify-self: end;
  width: 0; height: 1.5px; background: var(--accent); transition: width .28s var(--ease); }
.rail-nav__item.is-active { background: #fff; color: var(--accent-tx); box-shadow: var(--shadow-sm); }
.rail-nav__item.is-active .rail-nav__num { color: var(--accent-tx); }
.rail-nav__item.is-active .rail-nav__mark { width: 22px; }

.rail-current { margin: 10px 0 4px; padding: 8px 10px; border: 1px dashed var(--line);
  border-radius: var(--radius); background: var(--panel-2); }
.rail-current__k { font-family: var(--f-mono); font-size: 11px; letter-spacing: .18em; color: var(--taupe-d); }
.rail-current__v { font-family: var(--f-display); font-size: 1.05rem; color: var(--char); margin-top: 2px; min-height: 1.2em; }

.rail-sns { display: flex; gap: 10px; margin: 12px 0; }
.rail-sns a { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line);
  border-radius: var(--radius); color: var(--char); transition: border-color .18s, color .18s; }
.rail-sns a:hover { border-color: var(--accent); color: var(--accent-tx); }
.rail-sns svg { width: 20px; height: 20px; }
.rail-foot { font-size: 14px; color: var(--text-sub); line-height: 1.7; border-top: 1px solid var(--line-soft); padding-top: 12px; }

/* ---------- ヒーロー（中央・採寸線パララックス） ---------- */
.hero { position: relative; padding: 30px 0 8px; }
.hero__frame { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line);
  background: var(--panel); box-shadow: var(--shadow-sm); }
.hero__media { position: relative; aspect-ratio: 4 / 3; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__tape { position: absolute; inset: 0; pointer-events: none; z-index: 2;
  background-image:
    repeating-linear-gradient(90deg, rgba(179,133,78,.5) 0 1.5px, transparent 1.5px 3px, transparent 3px 26px),
    linear-gradient(90deg, rgba(179,133,78,.55), rgba(179,133,78,.55));
  background-size: 100% 14px, 100% 1.5px; background-repeat: repeat-x; background-position: 0 24px, 0 24px;
  opacity: .5; will-change: transform; }
.hero__grain { position: absolute; inset: -8%; z-index: 1; pointer-events: none; opacity: .5; will-change: transform;
  background:
    radial-gradient(60% 50% at 78% 22%, rgba(201,154,94,.28), transparent 70%),
    radial-gradient(50% 60% at 15% 85%, rgba(138,125,109,.22), transparent 72%); }
.hero__caption { position: absolute; left: 0; right: 0; bottom: 0; z-index: 3; padding: 20px;
  background: linear-gradient(0deg, rgba(25,24,22,.62), rgba(25,24,22,.15) 55%, transparent);
  color: var(--off); }
.hero__kicker { font-family: var(--f-mono); font-size: 12px; letter-spacing: .24em; color: #f0dcbe; }
.hero__body { padding: 22px 4px 8px; }
.hero h1 { font-family: var(--f-display); font-weight: 600; color: var(--char); letter-spacing: .01em;
  font-size: clamp(1.9rem, 1.2rem + 3.4vw, 2.9rem); line-height: 1.14; }
.hero__sub { color: var(--text-sub); margin-top: 16px; font-size: 16.5px; max-width: 56ch; line-height: 1.85; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.hero__spec { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 20px; padding-top: 16px; border-top: 1px dashed var(--line); }
.hero__spec div { display: flex; flex-direction: column; }
.hero__spec dt { font-family: var(--f-mono); font-size: 11px; letter-spacing: .16em; color: var(--taupe-d); }
.hero__spec dd { font-size: 15px; color: var(--char); font-weight: 600; }

/* ---------- ヒーロー直後の再掲（モバイル） ---------- */
.recap { display: none; margin: 4px 0 8px; border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; background: var(--panel); box-shadow: var(--shadow-sm); }
.recap__row { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
.recap__cell { padding: 16px 18px; }
.recap__cell + .recap__cell { border-left: 1px solid var(--line-soft); }
.recap__k { font-family: var(--f-mono); font-size: 11px; letter-spacing: .16em; color: var(--taupe-d); }
.recap__v { font-family: var(--f-display); color: var(--char); font-size: 1.5rem; margin-top: 2px; }
.recap__v b { color: var(--accent-tx); }
.recap__v small { font-size: .9rem; }
.recap__date { font-size: 14px; color: var(--text-sub); margin-top: 2px; }
.recap__cta { padding: 0 18px 16px; }

/* ---------- ルックブック ---------- */
.lb-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.lb-tab { display: inline-flex; flex-direction: column; align-items: flex-start; gap: 2px;
  padding: 8px 14px; min-height: 46px; border: 1.5px solid var(--line); border-radius: var(--radius);
  background: var(--panel); transition: border-color .18s, background .18s; }
.lb-tab__en { font-family: var(--f-mono); font-size: 12px; letter-spacing: .12em; color: var(--taupe-d); }
.lb-tab__ja { font-size: 15px; font-weight: 600; color: var(--char); }
.lb-tab:hover { border-color: var(--accent); }
.lb-tab.is-active { border-color: var(--accent); background: #fff; box-shadow: var(--shadow-sm); }
.lb-tab.is-active .lb-tab__en { color: var(--accent-tx); }
.lb-stage { display: grid; grid-template-columns: minmax(0, 1fr); gap: 20px; }
.lb-stage__ph { position: relative; aspect-ratio: 4 / 5; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line); background: var(--panel-2); }
.lb-stage__ph img { width: 100%; height: 100%; object-fit: cover; transition: opacity .35s var(--ease); }
.lb-stage__tape { position: absolute; left: 0; bottom: 14px; width: 100%; height: 12px;
  background: repeating-linear-gradient(90deg, rgba(179,133,78,.6) 0 1.5px, transparent 1.5px 22px); }
.lb-stage__meta { align-self: center; }
.lb-stage__host { font-family: var(--f-display); font-size: 1.35rem; color: var(--char); }
.lb-stage__note { color: var(--text-sub); margin: 10px 0 18px; font-size: 16px; }

/* ---------- ホストカード ---------- */
.host-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.pickup-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.host-card { display: flex; flex-direction: column; text-align: left; border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden; background: var(--panel); box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s, border-color .2s; }
.host-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--accent); }
.host-card__ph { position: relative; aspect-ratio: 3 / 4; background: var(--panel-2); }
.host-card__ph img { width: 100%; height: 100%; object-fit: cover; }
.host-card__tag { position: absolute; top: 10px; left: 10px; font-family: var(--f-mono); font-size: 11px;
  letter-spacing: .14em; padding: 4px 8px; border-radius: 2px; background: var(--char); color: var(--off); }
.host-card__tag--new { background: var(--camel); color: var(--on-camel); }
.host-card__body { padding: 12px 14px 16px; display: flex; flex-direction: column; gap: 2px; }
.host-card__name { font-family: var(--f-display); font-size: 1.2rem; color: var(--char); letter-spacing: .02em; }
.host-card__kana { font-size: 14px; color: var(--text-sub); }
.host-card__fabric { font-size: 14px; color: var(--taupe-d); margin-top: 6px; padding-top: 6px; border-top: 1px dashed var(--line-soft); }
.host-card__more { font-size: 14px; color: var(--accent-tx); font-weight: 600; margin-top: 8px; }
.host-card__more::after { content: " →"; }

/* ---------- FIRST GUIDE ---------- */
.fg-steps { display: flex; flex-direction: column; gap: 4px; counter-reset: none; }
.fg-step { display: grid; grid-template-columns: 56px minmax(0, 1fr); gap: 16px; padding: 18px 0;
  border-bottom: 1px dashed var(--line); position: relative; }
.fg-step:last-child { border-bottom: 0; }
.fg-step__no { font-family: var(--f-mono); font-size: 1.4rem; color: var(--accent-tx); font-weight: 500;
  border-right: 1.5px solid var(--line); padding-right: 12px; }
.fg-step__en { font-family: var(--f-mono); font-size: 11px; letter-spacing: .18em; color: var(--taupe-d); }
.fg-step__ja { font-family: var(--f-display); font-size: 1.25rem; color: var(--char); margin: 2px 0 6px; }
.fg-step__text { color: var(--text-sub); font-size: 16px; }
.fg-note { margin-top: 18px; font-size: 14px; color: var(--text-sub); }

/* ---------- SYSTEM 料金表 ---------- */
.systable { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--panel); }
.systable table { font-size: 16px; }
.systable th, .systable td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--line-soft); }
.systable th[scope="row"] { font-weight: 600; color: var(--char); width: 46%; }
.systable td { font-family: var(--f-mono); color: var(--ink); }
.systable td .unit { font-family: var(--f-body); font-size: 14px; color: var(--text-sub); }
.systable tr:last-child th, .systable tr:last-child td { border-bottom: 0; }
.systable tbody tr:nth-child(odd) { background: var(--panel-2); }
.sys-notes { margin-top: 16px; display: flex; flex-direction: column; gap: 6px; }
.sys-notes li { font-size: 14px; color: var(--text-sub); padding-left: 16px; position: relative; }
.sys-notes li::before { content: ""; position: absolute; left: 0; top: .7em; width: 8px; height: 1.5px; background: var(--accent); }

/* ---------- EVENT ---------- */
.event-list { display: flex; flex-direction: column; gap: 20px; }
.event-card { display: grid; grid-template-columns: minmax(0, 1fr); border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden; background: var(--panel); box-shadow: var(--shadow-sm); }
.event-card__ph { aspect-ratio: 3 / 2; background: var(--panel-2); }
.event-card__ph img { width: 100%; height: 100%; object-fit: cover; }
.event-card__body { padding: 18px 20px; }
.event-card__meta { display: flex; gap: 12px; align-items: center; font-family: var(--f-mono); font-size: 14px; letter-spacing: .08em; }
.event-card__meta time { color: var(--accent-tx); }
.event-card__meta span { color: var(--off); background: var(--taupe-d); padding: 2px 8px; border-radius: 2px; }
.event-card__title { font-family: var(--f-display); font-size: 1.4rem; color: var(--char); margin: 8px 0 6px; }
.event-card__lead { color: var(--text-sub); font-size: 16px; }
.event-card__host { font-size: 14px; color: var(--taupe-d); margin-top: 8px; }
.event-card__link { display: inline-block; margin-top: 12px; color: var(--accent-tx); font-weight: 600; font-size: 15px; }

/* ---------- RECRUIT ---------- */
.recruit { border: 1px solid var(--line); border-radius: var(--radius-lg); background: linear-gradient(135deg, var(--panel), var(--panel-2));
  padding: 26px 22px; }
.recruit__lead { font-family: var(--f-display); font-size: 1.5rem; color: var(--char); }
.recruit__body { color: var(--text-sub); margin: 12px 0 18px; font-size: 16px; }
.recruit__points { display: grid; grid-template-columns: minmax(0, 1fr); gap: 12px; margin-bottom: 20px; }
.recruit__points div { padding: 12px 14px; background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius); }
.recruit__points dt { font-weight: 600; color: var(--accent-tx); font-size: 15px; }
.recruit__points dd { font-size: 14px; color: var(--text-sub); margin-top: 2px; }

/* ---------- 右レール ユーティリティ widget ---------- */
.uw { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 16px 16px; box-shadow: var(--shadow-sm); }
.uw + .uw { margin-top: 14px; }
.uw__ttl { display: flex; align-items: center; gap: 8px; font-family: var(--f-display); font-size: 1.1rem; color: var(--char); margin-bottom: 10px; }
.uw__ttl svg { width: 18px; height: 18px; color: var(--accent-tx); }
.uw__link { display: inline-block; margin-top: 10px; font-size: 14px; color: var(--accent-tx); font-weight: 600; }
.uw--first { background: linear-gradient(150deg, #fff, var(--panel-2)); border-color: var(--camel); }
.uw-first__price { font-family: var(--f-display); color: var(--char); line-height: 1; }
.uw-first__price b { font-size: 2.4rem; color: var(--accent-tx); font-family: var(--f-mono); font-weight: 600; }
.uw-first__price .yen { font-size: 1rem; }
.uw-first__unit { font-size: 14px; color: var(--text-sub); font-family: var(--f-body); }
.uw-first__note { font-size: 14px; color: var(--text-sub); margin: 6px 0 10px; }
.uw-first__inc { display: flex; flex-direction: column; gap: 4px; margin-bottom: 12px; }
.uw-first__inc li { font-size: 14px; color: var(--char); padding-left: 16px; position: relative; }
.uw-first__inc li::before { content: ""; position: absolute; left: 0; top: .7em; width: 8px; height: 1.5px; background: var(--accent); }

/* INFO タブ（予約/FAQ/時間） */
.uw--info .uw-tabs { display: flex; gap: 4px; margin-bottom: 12px; }
.uw-tabs__tab { flex: 1; min-height: 40px; border: 1px solid var(--line); border-radius: var(--radius);
  font-size: 14px; font-weight: 600; color: var(--text-sub); background: var(--panel-2); }
.uw-tabs__tab[aria-selected="true"] { background: var(--char); color: var(--off); border-color: var(--char); }
.uw-pane { animation: uwfade .25s var(--ease); }
@keyframes uwfade { from { opacity: 0; } to { opacity: 1; } }

.uw-attend__switch { display: flex; gap: 6px; margin-bottom: 10px; }
.uw-attend__tab { flex: 1; min-height: 40px; border: 1px solid var(--line); border-radius: var(--radius);
  font-size: 14px; font-weight: 600; color: var(--text-sub); background: var(--panel-2); }
.uw-attend__tab[aria-selected="true"] { background: var(--char); color: var(--off); border-color: var(--char); }
.uw-attend__count { font-family: var(--f-display); color: var(--char); }
.uw-attend__count b { font-family: var(--f-mono); font-size: 1.8rem; color: var(--accent-tx); }
.uw-attend__count span { font-size: 14px; }
.uw-attend__date { font-size: 14px; color: var(--text-sub); }
.uw-attend__names { font-size: 14px; color: var(--char); margin-top: 6px; line-height: 1.7; }

.uw-tel { display: flex; align-items: center; gap: 8px; font-family: var(--f-mono); font-size: 1.15rem;
  color: var(--char); font-weight: 600; margin-bottom: 6px; }
.uw-tel svg { width: 18px; height: 18px; color: var(--accent-tx); }
.uw-reserve__note { font-size: 14px; color: var(--text-sub); margin-bottom: 10px; }
.uw-reserve__btns { display: flex; flex-direction: column; gap: 8px; }

.uw-faq__item + .uw-faq__item { border-top: 1px solid var(--line-soft); }
.uw-faq__q { display: flex; align-items: center; justify-content: space-between; gap: 10px; width: 100%;
  text-align: left; padding: 12px 0; min-height: 44px; font-size: 15px; font-weight: 600; color: var(--char); }
.uw-faq__ic { position: relative; width: 14px; height: 14px; flex: none; }
.uw-faq__ic::before, .uw-faq__ic::after { content: ""; position: absolute; background: var(--accent-tx); transition: transform .2s; }
.uw-faq__ic::before { top: 6px; left: 0; width: 14px; height: 2px; }
.uw-faq__ic::after { top: 0; left: 6px; width: 2px; height: 14px; }
.uw-faq__q[aria-expanded="true"] .uw-faq__ic::after { transform: scaleY(0); }
.uw-faq__a { padding: 0 0 12px; }
.uw-faq__a p { font-size: 14px; color: var(--text-sub); }

.uw-hours { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 4px 12px; font-size: 15px; }
.uw-hours dt { color: var(--text-sub); font-size: 14px; }
.uw-hours dd { color: var(--char); }
.uw-hours__status { display: flex; align-items: center; gap: 8px; margin-top: 10px; font-size: 14px; color: var(--text-sub); }
.uw-hours__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--taupe); }
.uw-hours__status.is-open .uw-hours__dot { background: #4a7c46; box-shadow: 0 0 0 3px rgba(74,124,70,.18); }
.uw-hours__status.is-open { color: #3f6a3c; }
.uw-hours__addr { font-size: 14px; color: var(--text-sub); margin-top: 8px; }

/* ---------- サイドパネル ---------- */
.scrim { position: fixed; inset: 0; z-index: 60; background: rgba(25,24,22,.5); opacity: 0; visibility: hidden;
  transition: opacity .28s, visibility .28s; }
.scrim.is-open { opacity: 1; visibility: visible; }
.sidepanel { position: fixed; top: 0; right: 0; bottom: 0; z-index: 70; width: min(420px, 92vw);
  background: var(--off); box-shadow: -10px 0 40px rgba(25,24,22,.2); transform: translateX(102%);
  transition: transform .34s var(--ease); overflow-y: auto; padding: 18px 20px 40px; }
.sidepanel.is-open { transform: none; }
.sidepanel__bar { display: flex; justify-content: space-between; align-items: center; position: sticky; top: -18px;
  background: var(--off); padding: 8px 0 12px; margin: -18px -20px 6px; padding-left: 20px; padding-right: 20px; border-bottom: 1px solid var(--line-soft); }
.sidepanel__bar span { font-family: var(--f-mono); font-size: 12px; letter-spacing: .18em; color: var(--taupe-d); }
.sidepanel__close { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: var(--radius); color: var(--char); }
.sidepanel__close svg { width: 20px; height: 20px; }
.sp-hero { aspect-ratio: 3 / 4; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); background: var(--panel-2); }
.sp-hero img { width: 100%; height: 100%; object-fit: cover; }
.sp-role { font-family: var(--f-mono); font-size: 14px; letter-spacing: .16em; color: var(--taupe-d); margin-top: 14px; }
.sp-name { font-family: var(--f-display); font-size: 1.8rem; color: var(--char); }
.sp-kana { font-size: 14px; color: var(--text-sub); }
.sp-tags { display: flex; gap: 6px; margin: 10px 0; }
.sp-tag { font-family: var(--f-mono); font-size: 14px; padding: 3px 9px; border: 1px solid var(--line); border-radius: 2px; color: var(--taupe-d); }
.sp-msg { font-size: 16px; color: var(--char); margin: 8px 0 14px; line-height: 1.85; }
.sp-dl { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 8px 16px; padding: 14px 0; border-top: 1px dashed var(--line); border-bottom: 1px dashed var(--line); }
.sp-dl dt { color: var(--text-sub); font-size: 14px; }
.sp-dl dd { color: var(--char); font-size: 15px; }
.sp-sched { margin: 16px 0; }
.sp-sched h3 { font-family: var(--f-display); font-size: 1.15rem; color: var(--char); margin-bottom: 8px; }
.sp-sched ul { display: flex; flex-wrap: wrap; gap: 8px; }
.sp-sched li { font-family: var(--f-mono); font-size: 14px; padding: 6px 10px; background: var(--panel-2); border-radius: var(--radius); color: var(--char); }
.sp-note { font-size: 14px; color: var(--text-sub); margin-top: 10px; }
.sp-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }

/* ---------- 左ドロワー（全幅で fixed・トグルはモバイルのみ表示） ---------- */
.drawer { position: fixed; top: 0; left: 0; bottom: 0; z-index: 70; width: min(320px, 86vw);
  background: var(--off); box-shadow: 10px 0 40px rgba(25,24,22,.2);
  transform: translateX(-102%); transition: transform .34s var(--ease); overflow-y: auto; padding: 18px 18px 40px; }
.drawer.is-open { transform: none; }
.drawer__bar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.drawer__close { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: var(--radius); color: var(--char); }
.drawer__close svg { width: 20px; height: 20px; }

/* ---------- ボトムシート（初回案内・右ユーティリティ） ---------- */
.sheet { position: fixed; left: 0; right: 0; bottom: 0; z-index: 70; max-height: 86vh; overflow-y: auto;
  background: var(--off); border-radius: 16px 16px 0 0; box-shadow: 0 -10px 40px rgba(25,24,22,.22);
  transform: translateY(102%); transition: transform .34s var(--ease); padding: 8px 18px 32px; }
.sheet.is-open { transform: none; }
.sheet__grip { width: 44px; height: 4px; border-radius: 2px; background: var(--line); margin: 8px auto 4px; }
.sheet__bar { display: flex; justify-content: space-between; align-items: center; padding: 6px 0 12px; }
.sheet__bar h2 { font-family: var(--f-display); font-size: 1.35rem; color: var(--char); }
.sheet__close { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: var(--radius); color: var(--char); }
.sheet__close svg { width: 20px; height: 20px; }
.fs-steps { display: flex; flex-direction: column; gap: 2px; }
.fs-steps li { display: grid; grid-template-columns: 44px minmax(0, 1fr); gap: 14px; padding: 14px 0; border-bottom: 1px dashed var(--line); }
.fs-steps li:last-child { border-bottom: 0; }
.fs-no { font-family: var(--f-mono); font-size: 1.2rem; color: var(--accent-tx); }
.fs-steps h3 { font-family: var(--f-display); font-size: 1.15rem; color: var(--char); margin-bottom: 4px; }
.fs-steps h3 em { font-family: var(--f-mono); font-size: 11px; letter-spacing: .12em; color: var(--taupe-d); font-style: normal; margin-left: 6px; }
.fs-steps p { font-size: 15px; color: var(--text-sub); }
.sheet__actions { margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }

/* ---------- フッター ---------- */
.foot { background: var(--char); color: #d9d2c4; padding: 40px var(--pad) calc(40px + var(--cta-h)); margin-top: 30px; }
.foot__top { display: grid; grid-template-columns: minmax(0, 1fr); gap: 24px; max-width: 1180px; margin: 0 auto; }
.foot__brand .rail-brand__name { color: var(--off); }
.foot__brand p { font-size: 14px; margin-top: 10px; color: #b8b0a1; max-width: 40ch; }
.foot-nav { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px 16px; }
.foot-nav a { font-family: var(--f-mono); font-size: 14px; letter-spacing: .08em; color: #d9d2c4; }
.foot-nav a span { font-family: var(--f-body); color: #a89f90; margin-left: 4px; }
.foot-nav a:hover { color: var(--camel-hi); }
.foot__info { font-size: 14px; line-height: 1.9; color: #c3bbac; }
.foot__demo { margin-top: 22px; padding-top: 18px; border-top: 1px solid #4a483f; font-size: 14px; color: #a89f90; max-width: 1180px; margin-left: auto; margin-right: auto; }

/* ---------- ページトップ ---------- */
.pagetop { position: fixed; right: 16px; bottom: calc(var(--cta-h) + 16px); z-index: 50; width: 48px; height: 48px;
  display: grid; place-items: center; background: var(--char); color: var(--off); border-radius: 50%;
  box-shadow: var(--shadow-md); opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity .2s, transform .2s, visibility .2s; }
.pagetop.is-show { opacity: 1; visibility: visible; transform: none; }
.pagetop svg { width: 22px; height: 22px; }

/* ---------- 上部バー・固定CTA（既定は非表示。responsive で mobile 表示） ---------- */
.topbar, .fixcta { display: none; }

/* =========================================================
   下層ページ共通コンポーネント
   ========================================================= */
/* パンくず */
.crumb { padding: 20px 0 6px; }
.crumb ol { display: flex; flex-wrap: wrap; gap: 6px; font-family: var(--f-mono); font-size: 14px; color: var(--taupe-d); }
.crumb__item { display: flex; align-items: center; gap: 6px; }
.crumb__item + .crumb__item::before { content: "/"; color: var(--line); }
.crumb a { color: var(--taupe-d); }
.crumb a:hover { color: var(--accent-tx); text-decoration: underline; }
.crumb [aria-current="page"] span { color: var(--char); }

/* ページ見出し */
.phead { padding: 8px 0 24px; }
.phead__title { font-family: var(--f-display); font-weight: 600; color: var(--char);
  font-size: clamp(1.9rem, 1.3rem + 2.6vw, 2.6rem); line-height: 1.16; margin: 10px 0; letter-spacing: .01em; }
.phead__lead { color: var(--text-sub); max-width: 56ch; font-size: 16.5px; margin-top: 12px; }
.phead--visual { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line);
  background: var(--panel); padding: 0; margin-bottom: 24px; }
.phead--visual .phead__media { aspect-ratio: 16 / 9; }
.phead--visual .phead__media img { width: 100%; height: 100%; object-fit: cover; }
.phead--visual .phead__cap { padding: 20px; }

/* フィルターチップ */
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.chip { min-height: 44px; padding: 0 16px; border: 1.5px solid var(--line); border-radius: 999px;
  font-size: 14px; font-weight: 600; color: var(--text-sub); background: var(--panel); transition: border-color .18s, background .18s, color .18s; }
.chip:hover { border-color: var(--accent); }
.chip.is-active { background: var(--char); color: var(--off); border-color: var(--char); }
.empty-msg { padding: 40px 20px; text-align: center; color: var(--text-sub); border: 1px dashed var(--line);
  border-radius: var(--radius-lg); background: var(--panel-2); font-size: 16px; }

/* HOSTカード（リンク版） */
.host-card--link { padding: 0; }
.host-card__a { display: flex; flex-direction: column; color: inherit; }

/* HOST詳細 */
.cd { }
.cd__top { display: grid; grid-template-columns: minmax(0, 1fr); gap: 22px; }
.cd__gallery { }
.cd__main { aspect-ratio: 3 / 4; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); background: var(--panel-2); }
.cd__main img { width: 100%; height: 100%; object-fit: cover; }
.cd__subs { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin-top: 10px; }
.cd__subs img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--line); background: var(--panel-2); }
.cd__role { font-family: var(--f-mono); font-size: 14px; letter-spacing: .12em; color: var(--taupe-d); }
.cd__name { font-family: var(--f-display); font-size: clamp(1.8rem, 1.3rem + 2vw, 2.4rem); color: var(--char); line-height: 1.15; margin: 4px 0; }
.cd__kana { font-size: 15px; color: var(--text-sub); }
.cd-tags { display: flex; gap: 8px; margin: 12px 0; }
.cd-tag { font-family: var(--f-mono); font-size: 14px; padding: 4px 10px; border: 1px solid var(--line); border-radius: 2px; color: var(--taupe-d); }
.cd__msg { font-size: 16.5px; color: var(--char); line-height: 1.9; margin: 14px 0; }
.cd-dl { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 10px 18px; padding: 16px 0; border-top: 1px dashed var(--line); border-bottom: 1px dashed var(--line); }
.cd-dl dt { color: var(--text-sub); font-size: 14px; }
.cd-dl dd { color: var(--char); font-size: 16px; }
.cd-sched { margin: 18px 0; }
.cd-sched h2 { font-family: var(--f-display); font-size: 1.3rem; color: var(--char); margin-bottom: 10px; }
.cd-sched ul { display: flex; flex-wrap: wrap; gap: 8px; }
.cd-sched li { font-family: var(--f-mono); font-size: 14px; padding: 8px 12px; background: var(--panel-2); border-radius: var(--radius); color: var(--char); }
.cd-note { font-size: 14px; color: var(--text-sub); margin-top: 10px; }
.cd-sns { display: flex; gap: 10px; margin: 16px 0; }
.cd-sns a { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: var(--radius); color: var(--char); }
.cd-sns a:hover { border-color: var(--accent); color: var(--accent-tx); }
.cd-sns svg { width: 20px; height: 20px; }
.cd-actions { display: flex; flex-wrap: wrap; gap: 10px; margin: 16px 0; }
.cd-nav { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 26px; padding-top: 18px; border-top: 1px solid var(--line); }
.cd-nav a { font-size: 15px; color: var(--accent-tx); font-weight: 600; }
.cd-nav a[aria-disabled="true"] { color: var(--taupe); pointer-events: none; }

/* スケジュール */
.sched-tabs { display: flex; gap: 8px; margin-bottom: 20px; }
.sched-tab { min-height: 46px; padding: 0 20px; border: 1.5px solid var(--line); border-radius: var(--radius);
  font-size: 15px; font-weight: 600; color: var(--text-sub); background: var(--panel); }
.sched-tab[aria-selected="true"] { background: var(--char); color: var(--off); border-color: var(--char); }
.sched-week { display: grid; grid-template-columns: minmax(0, 1fr); gap: 14px; }
.sday { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--panel); }
.sday__head { display: flex; justify-content: space-between; align-items: center; padding: 12px 16px; background: var(--panel-2); border-bottom: 1px solid var(--line); }
.sday__date { font-family: var(--f-display); font-size: 1.1rem; color: var(--char); }
.sday__count { font-family: var(--f-mono); font-size: 14px; color: var(--accent-tx); }
.sday__row a { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 12px 16px; border-bottom: 1px solid var(--line-soft); min-height: 48px; }
.sday__row:last-child a { border-bottom: 0; }
.sday__row a:hover { background: var(--panel-2); }
.sday__name { font-size: 16px; color: var(--char); font-weight: 600; }
.sday__name em { font-style: normal; font-size: 14px; color: var(--text-sub); margin-left: 8px; }
.sday__time { font-family: var(--f-mono); font-size: 15px; color: var(--accent-tx); }
.sday__empty { padding: 16px; color: var(--text-sub); font-size: 15px; }

/* ニュース一覧 */
.news-list { display: flex; flex-direction: column; gap: 2px; }
.news-item__link { display: grid; grid-template-columns: minmax(0, 1fr); gap: 4px; padding: 18px 4px; border-bottom: 1px solid var(--line-soft); }
.news-item__link:hover .news-item__title { color: var(--accent-tx); }
.news-item__meta { display: flex; gap: 12px; align-items: center; font-family: var(--f-mono); font-size: 14px; }
.news-item__date { color: var(--accent-tx); }
.news-item__cat { color: var(--off); background: var(--taupe-d); padding: 2px 8px; border-radius: 2px; }
.news-item__title { font-family: var(--f-display); font-size: 1.25rem; color: var(--char); }
.news-item__lead { font-size: 15px; color: var(--text-sub); }
.pager { display: flex; justify-content: center; gap: 8px; margin-top: 26px; }
.pager span, .pager a { min-width: 40px; min-height: 40px; display: grid; place-items: center; border: 1px solid var(--line);
  border-radius: var(--radius); font-family: var(--f-mono); font-size: 14px; color: var(--text-sub); }
.pager .is-current { background: var(--char); color: var(--off); border-color: var(--char); }

/* 記事詳細 */
.article__meta { display: flex; gap: 12px; align-items: center; font-family: var(--f-mono); font-size: 14px; margin-bottom: 12px; }
.article__meta time { color: var(--accent-tx); }
.article__meta span.cat { color: var(--off); background: var(--taupe-d); padding: 2px 8px; border-radius: 2px; }
.article__figure { aspect-ratio: 3 / 2; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); background: var(--panel-2); margin: 16px 0 20px; }
.article__figure img { width: 100%; height: 100%; object-fit: cover; }
.article__body p { font-size: 16.5px; color: var(--char); line-height: 1.95; margin-bottom: 16px; }
.related { margin-top: 30px; padding-top: 20px; border-top: 1px solid var(--line); }
.related h2 { font-family: var(--f-display); font-size: 1.3rem; color: var(--char); margin-bottom: 12px; }

/* ギャラリー */
.gal-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.gal-cell { position: relative; aspect-ratio: 1 / 1; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); background: var(--panel-2); }
.gal-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s var(--ease); }
.gal-cell:hover img { transform: scale(1.04); }
.gal-cell__cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 10px 12px; font-size: 14px; color: var(--off);
  background: linear-gradient(0deg, rgba(25,24,22,.7), transparent); text-align: left; }

/* ライトボックス */
.lightbox { position: fixed; inset: 0; z-index: 80; background: rgba(25,24,22,.85); display: grid; grid-template-rows: minmax(0, 1fr) auto; }
.lightbox__scrim { position: absolute; inset: 0; }
.lightbox__stage { position: relative; z-index: 1; display: grid; place-items: center; padding: 20px; }
.lightbox__stage img { max-width: min(92vw, 900px); max-height: 76vh; border-radius: var(--radius); }
.lightbox__cap { position: relative; z-index: 1; text-align: center; color: var(--off); padding: 0 0 20px; font-size: 15px; }
.lightbox__close { position: absolute; top: 14px; right: 14px; z-index: 2; width: 48px; height: 48px; display: grid; place-items: center;
  background: rgba(242,239,232,.14); color: var(--off); border-radius: 50%; }
.lightbox__close svg { width: 22px; height: 22px; }
.lightbox__prev, .lightbox__next { position: absolute; top: 50%; transform: translateY(-50%); z-index: 2; width: 52px; height: 52px;
  display: grid; place-items: center; background: rgba(242,239,232,.14); color: var(--off); border-radius: 50%; }
.lightbox__prev { left: 12px; } .lightbox__next { right: 12px; }
.lightbox__prev svg, .lightbox__next svg { width: 24px; height: 24px; }

/* システム：初回強調＋アコーディオン */
.sys-first { display: grid; grid-template-columns: minmax(0, 1fr); gap: 18px; align-items: center;
  border: 1px solid var(--camel); border-radius: var(--radius-lg); background: linear-gradient(150deg, #fff, var(--panel-2)); padding: 22px; margin-bottom: 26px; }
.sys-first__price b { font-family: var(--f-mono); font-size: 2.8rem; color: var(--accent-tx); font-weight: 600; line-height: 1; }
.sys-first__price .yen { font-size: 1.1rem; }
.sys-first__unit { font-size: 15px; color: var(--text-sub); }
.sys-first__note { font-size: 14px; color: var(--text-sub); margin-top: 6px; }
.acc { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--panel); }
.acc__item + .acc__item { border-top: 1px solid var(--line-soft); }
.acc__q { display: flex; justify-content: space-between; align-items: center; gap: 12px; width: 100%; text-align: left;
  padding: 16px 18px; min-height: 52px; font-size: 16px; font-weight: 600; color: var(--char); }
.acc__ic { position: relative; width: 16px; height: 16px; flex: none; }
.acc__ic::before, .acc__ic::after { content: ""; position: absolute; background: var(--accent-tx); transition: transform .2s; }
.acc__ic::before { top: 7px; left: 0; width: 16px; height: 2px; }
.acc__ic::after { top: 0; left: 7px; width: 2px; height: 16px; }
.acc__q[aria-expanded="true"] .acc__ic::after { transform: scaleY(0); }
.acc__a { padding: 0 18px 16px; }
.acc__a p { font-size: 15.5px; color: var(--text-sub); line-height: 1.85; }
.subsec { margin-top: 30px; }
.subsec__title { font-family: var(--f-display); font-size: 1.5rem; color: var(--char); margin-bottom: 14px; }
.info-dl { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 10px 18px; }
.info-dl dt { color: var(--text-sub); font-size: 15px; }
.info-dl dd { color: var(--char); font-size: 16px; }

/* アクセス */
.access-map { aspect-ratio: 16 / 9; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); background: var(--panel-2); margin-bottom: 22px; }
.access-map img { width: 100%; height: 100%; object-fit: cover; }
.access-steps { counter-reset: st; display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
.access-steps li { display: grid; grid-template-columns: 34px minmax(0, 1fr); gap: 12px; align-items: start; font-size: 16px; color: var(--char); }
.access-steps li::before { counter-increment: st; content: counter(st); font-family: var(--f-mono); color: var(--accent-tx);
  border: 1.5px solid var(--line); border-radius: 50%; width: 30px; height: 30px; display: grid; place-items: center; font-size: 14px; }

/* 求人セクション */
.rc-points { display: grid; grid-template-columns: minmax(0, 1fr); gap: 12px; margin: 16px 0 6px; }
.rc-points div { padding: 14px 16px; background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius); }
.rc-points dt { font-weight: 600; color: var(--accent-tx); font-size: 16px; }
.rc-points dd { font-size: 15px; color: var(--text-sub); margin-top: 4px; }
.rc-list { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
.rc-list li { font-size: 16px; color: var(--char); padding-left: 18px; position: relative; }
.rc-list li::before { content: ""; position: absolute; left: 0; top: .75em; width: 9px; height: 1.5px; background: var(--accent); }
.rc-flow { display: grid; grid-template-columns: minmax(0, 1fr); gap: 10px; }
.rc-flow div { display: grid; grid-template-columns: 40px minmax(0, 1fr); gap: 12px; padding: 12px 0; border-bottom: 1px dashed var(--line); }
.rc-flow div:last-child { border-bottom: 0; }
.rc-flow dt { font-family: var(--f-mono); color: var(--accent-tx); font-size: 15px; }
.rc-flow dd { font-size: 16px; color: var(--char); }

/* フォーム */
.form { display: flex; flex-direction: column; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field > label, .field__label { font-size: 15px; font-weight: 600; color: var(--char); }
.field .req { color: var(--camel-d); font-size: 14px; margin-left: 6px; }
.field input, .field select, .field textarea { min-height: 48px; padding: 12px 14px; border: 1.5px solid var(--line);
  border-radius: var(--radius); background: #fff; font-size: 16px; color: var(--ink); }
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); outline: none; box-shadow: 0 0 0 3px rgba(179,133,78,.16); }
.field--row { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 14px; }
.field__err { font-size: 14px; color: #b23a2a; min-height: 0; }
.field.is-invalid input, .field.is-invalid select, .field.is-invalid textarea { border-color: #b23a2a; }
.consent { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--char); }
.consent input { min-height: 0; width: 22px; height: 22px; margin-top: 2px; flex: none; }
.form__submit { margin-top: 8px; }
.form-note { font-size: 14px; color: var(--text-sub); }

/* モーダル（デモ完了） */
.modal { position: fixed; inset: 0; z-index: 80; display: grid; place-items: center; padding: 20px;
  background: rgba(25,24,22,.55); opacity: 0; visibility: hidden; transition: opacity .25s, visibility .25s; }
.modal.is-open { opacity: 1; visibility: visible; }
.modal__box { background: var(--off); border-radius: var(--radius-lg); max-width: 440px; width: 100%; padding: 28px 24px;
  box-shadow: var(--shadow-md); transform: translateY(10px); transition: transform .25s var(--ease); }
.modal.is-open .modal__box { transform: none; }
.modal__box h2 { font-family: var(--f-display); font-size: 1.5rem; color: var(--char); margin-bottom: 10px; }
.modal__box p { font-size: 16px; color: var(--text-sub); margin-bottom: 18px; }

/* プライバシー等 長文 */
.prose h2 { font-family: var(--f-display); font-size: 1.4rem; color: var(--char); margin: 26px 0 10px; }
.prose p, .prose li { font-size: 16px; color: var(--char); line-height: 1.9; }
.prose ul { list-style: disc; padding-left: 1.4em; margin: 8px 0; }
.prose p { margin-bottom: 12px; }

/* =========================================================
   デスクトップ（≥1280px）：3カラム固定レール（sticky 自然高）
   ========================================================= */
@media (min-width: 1280px) {
  .layout {
    display: grid;
    grid-template-columns: var(--rail-l) minmax(0, 1fr) var(--rail-r);
    gap: var(--gap);
    max-width: 1440px; margin: 0 auto; padding: 24px 24px 0; align-items: start;
  }
  .rail { position: sticky; top: 20px; padding: 0; }          /* 自然高 sticky（overflow 指定なし＝clip/scroll しない） */
  .rail--left { align-self: start; }
  .rail--right { align-self: start; }
  .center { padding: 0; max-width: var(--center-max); margin: 0 auto; width: 100%; }
  .center > .hero { padding-top: 4px; }
  .recap { display: none !important; }
  .pagetop { bottom: 24px; }
  .foot { padding-bottom: 40px; }
  /* デスクトップは固定UI無し → 本文回避余白を消す */
  :root { --cta-h: 0px; }
}
