@charset "UTF-8";
/* ============================================================
   store-kappo.css — 飲食・小料理テーマ
   方向: クラシック(8)×エディトリアル(1)。夜の色面と白木、縦書きの屋号
   シグネチャー: 軒先の看板のような縦書き屋号+点線リーダーの品書き
   ============================================================ */
:root {
  --st-bg: #f3ede3;          /* 和紙 */
  --st-surface: #fbf8f2;
  --st-ink: #231f1b;         /* 墨 */
  --st-muted: #6b635a;
  --st-line: #d9cfbf;
  --st-accent: #8c4a2f;      /* 柿渋 */
  --st-accent-ink: #fbf8f2;
  --night: #1d1916;          /* 夜 */
  --night-2: #2a241f;
  --lamp: #d8b27a;           /* 提灯の灯(夜の上だけで使う) */
  --on-night: #efe7da;
  --st-font-display: "Zen Old Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --st-font-body: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --st-radius: 2px;
  --wrap: min(1120px, 100% - 40px);
}

h1, h2, h3 { font-family: var(--st-font-display); font-weight: 700; line-height: 1.5; letter-spacing: 0.08em; }
.k-wrap { width: var(--wrap); margin-inline: auto; }
.k-section { padding-block: clamp(80px, 11vw, 140px); }

/* 見出し: 縦の細罫+英字なし。和の小見出し */
.k-head { display: flex; align-items: flex-start; gap: 18px; }
.k-head__label {
  writing-mode: vertical-rl;
  font-family: var(--st-font-display); font-size: 13px; letter-spacing: 0.4em;
  color: var(--st-accent); padding-left: 14px; border-left: 1px solid currentColor;
}
.k-head__title { font-size: clamp(26px, 3.6vw, 38px); }
.k-head__lead { margin-top: 14px; color: var(--st-muted); max-width: 32em; }

/* ヘッダー */
.k-header {
  position: sticky; top: 0; z-index: var(--z-header);
  background: var(--night); color: var(--on-night);
  border-bottom: 1px solid rgba(239, 231, 218, 0.1);
}
.k-header__inner {
  width: var(--wrap); margin-inline: auto; min-height: 64px;
  display: flex; align-items: center; gap: 28px;
}
.k-header__name { font-family: var(--st-font-display); font-weight: 700; font-size: 19px; letter-spacing: 0.16em; text-decoration: none; }
.k-header__nav { margin-left: auto; display: flex; gap: 24px; font-size: 14px; }
.k-header__nav a { text-decoration: none; }
.k-header__nav a:hover { color: var(--lamp); }
.k-header__tel {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border: 1px solid rgba(216, 178, 122, 0.6); color: var(--lamp);
  text-decoration: none; font-weight: 500; letter-spacing: 0.08em;
}
.k-header__tel svg { width: 16px; height: 16px; }
.k-header__tel:hover { background: var(--lamp); color: var(--night); }

/* ヒーロー: 夜の面に写真と縦書き屋号 */
.k-hero { background: var(--night); color: var(--on-night); padding: clamp(24px, 4vw, 48px) 0 clamp(56px, 8vw, 96px); }
.k-hero__grid {
  width: min(1320px, 100% - 40px); margin-inline: auto;
  display: grid; grid-template-columns: 1fr clamp(240px, 26vw, 340px); gap: clamp(24px, 4vw, 56px);
  align-items: stretch;
}
.k-hero__photo { position: relative; min-height: min(72vh, 640px); overflow: hidden; }
.k-hero__photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.k-hero__photo::after { /* 写真の縁を夜に溶かす */
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 70%, rgba(29, 25, 22, 0.55));
}
.k-hero__side { display: flex; flex-direction: column; justify-content: space-between; gap: 32px; padding-block: 8px; }
.k-hero__sign {
  align-self: flex-end;
  display: flex; flex-direction: row-reverse; align-items: flex-start; gap: 18px;
}
.k-hero__name {
  writing-mode: vertical-rl;
  font-size: clamp(44px, 5.4vw, 72px); font-weight: 900; letter-spacing: 0.24em; line-height: 1.1;
  padding: 28px 18px; background: var(--night-2);
  border: 1px solid rgba(216, 178, 122, 0.35);
  box-shadow: 0 0 0 6px var(--night), 0 0 0 7px rgba(216, 178, 122, 0.2);
}
.k-hero__name small { display: block; font-size: 0.34em; letter-spacing: 0.5em; color: var(--lamp); margin-bottom: 0.6em; }
.k-hero__catch {
  writing-mode: vertical-rl;
  font-family: var(--st-font-display); font-size: clamp(17px, 1.6vw, 20px); letter-spacing: 0.3em; line-height: 2.1;
  color: rgba(239, 231, 218, 0.85);
}
.k-hero__meta { display: grid; gap: 14px; }
.k-hero__meta .open-status { color: var(--lamp); }
.k-hero__place { font-size: 14px; color: rgba(239, 231, 218, 0.7); }
.k-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 12px 24px;
  background: var(--st-accent); color: var(--st-accent-ink);
  border: 1px solid var(--st-accent); border-radius: var(--st-radius);
  font-weight: 700; letter-spacing: 0.1em; text-decoration: none;
  transition: background 0.3s, color 0.3s;
}
.k-btn svg { width: 18px; height: 18px; }
.k-btn:hover { background: #a55a3a; border-color: #a55a3a; }
.k-btn--line { background: transparent; color: var(--on-night); border-color: rgba(239, 231, 218, 0.4); }
.k-btn--line:hover { background: var(--on-night); color: var(--night); border-color: var(--on-night); }
.k-hero__actions { display: grid; gap: 10px; }

/* 受け取り前のヒーロー(写真なし=事実だけの面) */
.k-hero__facts {
  position: relative; min-height: min(60vh, 520px);
  border: 1px solid rgba(216, 178, 122, 0.25);
  padding: clamp(28px, 5vw, 56px);
  display: grid; align-content: end; gap: 16px;
  background:
    repeating-linear-gradient(90deg, transparent 0 46px, rgba(216, 178, 122, 0.06) 46px 47px),
    var(--night-2);
}
.k-hero__facts p { font-family: var(--st-font-display); font-size: clamp(22px, 2.8vw, 34px); letter-spacing: 0.12em; }
.k-hero__facts dl { display: grid; grid-template-columns: 6em 1fr; gap: 6px 16px; font-size: 14px; color: rgba(239, 231, 218, 0.8); }
.k-hero__facts dt { color: var(--lamp); }

/* 今日のひとこと帯 */
.k-today { background: var(--st-surface); border-bottom: 1px solid var(--st-line); }
.k-today__inner {
  width: var(--wrap); margin-inline: auto; padding: 18px 0;
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px 32px; font-size: 14px;
}
.k-today__label { font-family: var(--st-font-display); font-weight: 700; color: var(--st-accent); letter-spacing: 0.2em; }

/* 店主より */
.k-story__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(32px, 7vw, 110px); align-items: center; }
.k-story__photo { position: relative; }
.k-story__photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.k-story__photo figcaption { margin-top: 10px; font-size: 13px; color: var(--st-muted); }
.k-story__photo::before { /* ずらした枠線 */
  content: ""; position: absolute; inset: 18px -18px -18px 18px; border: 1px solid var(--st-line); z-index: -1;
}
.k-story__text { margin-top: 32px; display: grid; gap: 1.2em; font-size: 16px; }
.k-story__sign { font-family: var(--st-font-display); text-align: right; letter-spacing: 0.2em; }

/* 品書き */
.k-menu { background: var(--st-surface); border-block: 1px solid var(--st-line); }
.k-menu__grid { display: grid; grid-template-columns: auto 1fr; gap: clamp(32px, 6vw, 88px); }
.k-menu__lists { display: grid; grid-template-columns: 1fr 1fr; gap: 16px clamp(28px, 4vw, 64px); }
.k-menu__group h3 {
  font-size: 18px; padding-bottom: 10px; margin-bottom: 8px;
  border-bottom: 1px solid var(--st-ink); letter-spacing: 0.3em;
}
.k-menu__group ul { list-style: none; padding: 0; }
.k-menu__row {
  display: flex; align-items: baseline; gap: 10px; padding: 9px 0; font-size: 15px;
}
.k-menu__row::after { /* 点線リーダーを中央に(orderで並べる) */
  content: ""; flex: 1; order: 1; border-bottom: 1px dotted var(--st-line); transform: translateY(-4px);
}
.k-menu__row span:last-child { order: 2; font-family: var(--st-font-display); font-weight: 700; white-space: nowrap; }
.k-menu__row small { display: block; color: var(--st-muted); font-size: 12px; }
.k-menu__course {
  grid-column: 1 / -1; margin-top: 24px; padding: 24px 28px;
  border: 1px solid var(--st-accent); display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px 24px;
}
.k-menu__course h3 { font-size: 20px; color: var(--st-accent); }
.k-menu__course p { font-size: 14px; color: var(--st-muted); flex: 1 1 18em; }
.k-menu__course strong { font-family: var(--st-font-display); font-size: 24px; }
.k-menu__note { grid-column: 1 / -1; font-size: 13px; color: var(--st-muted); }

.k-dishes { margin-top: clamp(56px, 8vw, 88px); display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 16px; }
.k-dishes figure { overflow: hidden; }
.k-dishes img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform 1.2s var(--st-ease); }
.k-dishes figure:first-child img { aspect-ratio: 4 / 3.3; }
.k-dishes figure:hover img { transform: scale(1.04); }
.k-dishes figcaption { padding-top: 10px; font-size: 13px; color: var(--st-muted); }

/* 店のこと */
.k-place__grid { display: grid; grid-template-columns: 1fr 0.8fr; gap: clamp(32px, 6vw, 88px); align-items: center; }
.k-place__stats { margin-top: 40px; display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--st-line); }
.k-place__stats div { padding: 22px 0; border-bottom: 1px solid var(--st-line); }
.k-place__stats div:nth-child(odd) { padding-right: 20px; border-right: 1px solid var(--st-line); }
.k-place__stats div:nth-child(even) { padding-left: 24px; }
.k-place__stats dt { font-size: 13px; color: var(--st-muted); }
.k-place__stats dd { font-family: var(--st-font-display); font-size: 26px; font-weight: 700; }
.k-place__stats dd small { font-size: 14px; margin-left: 4px; }
.k-place__photo img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; }

/* ご予約(夜の帯) */
.k-reserve { background: var(--night); color: var(--on-night); text-align: center; }
.k-reserve h2 { font-size: clamp(26px, 3.6vw, 38px); }
.k-reserve p { margin-top: 16px; color: rgba(239, 231, 218, 0.78); }
.k-reserve__tel {
  display: inline-flex; align-items: center; gap: 14px; margin-top: 36px;
  font-family: var(--st-font-display); font-size: clamp(32px, 5vw, 52px); font-weight: 700; letter-spacing: 0.08em;
  color: var(--lamp); text-decoration: none;
}
.k-reserve__tel svg { width: 0.8em; height: 0.8em; }
.k-reserve__hours { font-size: 14px; }
.k-reserve__notes { margin: 40px auto 0; max-width: 640px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; list-style: none; padding: 0; }
.k-reserve__notes li { padding: 16px; border: 1px solid rgba(239, 231, 218, 0.18); font-size: 14px; }

/* 営業案内・アクセス */
.k-info__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); margin-top: 48px; }
.k-info__table { display: grid; grid-template-columns: 7em 1fr; border-top: 1px solid var(--st-line); }
.k-info__table dt, .k-info__table dd { padding: 16px 0; border-bottom: 1px solid var(--st-line); }
.k-info__table dt { font-weight: 500; color: var(--st-muted); font-size: 14px; }
.k-info__table a { color: var(--st-accent); }

/* FAQ */
.k-faq { max-width: 760px; margin: 40px auto 0; }
.k-faq details { border-bottom: 1px solid var(--st-line); }
.k-faq summary { padding: 20px 36px 20px 0; font-weight: 500; position: relative; }
.k-faq summary::after {
  content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  font-family: var(--st-font-display); font-size: 22px; color: var(--st-accent); transition: transform 0.3s;
}
.k-faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.k-faq details p { padding: 0 0 22px; color: var(--st-muted); }

/* 受け取り前の説明 */
.k-before-note { background: var(--st-surface); border-bottom: 1px solid var(--st-line); }
.k-before-note .k-wrap { max-width: 760px; padding-block: 56px; }
.k-before-note h2 { font-size: 22px; }
.k-before-note p { margin-top: 12px; color: var(--st-muted); }

/* フッター */
.k-footer { background: var(--night); color: rgba(239, 231, 218, 0.8); padding: 56px 0 40px; font-size: 14px; }
.k-footer__name { font-family: var(--st-font-display); font-size: 22px; color: var(--on-night); letter-spacing: 0.2em; }
.k-footer__grid { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 24px; }

.call-bar a { background: var(--st-accent); color: var(--st-accent-ink); }
.call-bar a + a { background: transparent; color: var(--st-ink); border: 1px solid var(--st-line); }

@media (max-width: 1023px) {
  .k-header__nav { display: none; }
  .k-header__tel { margin-left: auto; }
  .k-story__grid, .k-place__grid, .k-info__grid { grid-template-columns: 1fr; }
  .k-story__photo { max-width: 420px; }
  .k-place__photo { max-width: 420px; }
  .k-menu__grid { grid-template-columns: 1fr; }
  .k-menu__grid .k-head { flex-direction: row; }
}
@media (max-width: 767px) {
  body { font-size: 15px; }
  .k-header__tel span { display: none; }
  .k-hero__grid { grid-template-columns: 1fr; }
  .k-hero__photo { min-height: 56vw; aspect-ratio: 4 / 3; }
  .k-hero__side { flex-direction: row; align-items: flex-end; gap: 16px; }
  .k-hero__sign { align-self: auto; order: 2; flex-direction: row-reverse; }
  .k-hero__name { font-size: 40px; padding: 18px 12px; }
  .k-hero__catch { display: none; }
  .k-hero__meta { flex: 1; min-width: 0; }
  .k-hero__actions .k-btn--line { display: none; }
  .k-btn { padding: 12px 14px; letter-spacing: 0.04em; white-space: nowrap; }
  .k-hero__facts { min-height: 0; padding: 28px 22px; }
  .k-menu__lists { grid-template-columns: 1fr; }
  .k-dishes { grid-template-columns: 1fr 1fr; }
  .k-dishes figure:first-child { grid-column: 1 / -1; }
  .k-reserve__notes { grid-template-columns: 1fr; }
  .k-info__table { grid-template-columns: 5.5em 1fr; }
}

.k-map-link { display: inline-flex; margin-top: 12px; font-size: 14px; color: var(--st-accent); }

/* 受け取り前ページ用の追加(屋号の長さで看板の文字を小さくする・英字の屋号は横書き) */
.k-hero__name { text-orientation: upright; }
.k-hero__name.k-name--m { font-size: clamp(32px, 3.6vw, 48px); letter-spacing: 0.16em; }
.k-hero__name.k-name--l { font-size: clamp(24px, 2.6vw, 34px); letter-spacing: 0.08em; }
.k-hero__name--flat { writing-mode: horizontal-tb; text-orientation: mixed; font-size: clamp(28px, 3.2vw, 44px); letter-spacing: 0.06em; padding: 20px 22px; }
.k-hero__name--flat small { margin: 0 0 8px; }
.k-hero__sign:has(.k-hero__name--flat) { flex-direction: column; align-items: flex-start; }
.k-hero__sign:has(.k-hero__name--flat) .k-hero__catch { writing-mode: horizontal-tb; letter-spacing: 0.12em; }
.p-prestore .k-place__photo { position: relative; }
@media (max-width: 767px) {
  .k-hero__name.k-name--m { font-size: 30px; }
  .k-hero__name.k-name--l { font-size: 22px; }
  .k-hero__name--flat { font-size: 26px; }
}
.k-hero__name--flat { overflow-wrap: normal; word-break: keep-all; font-size: clamp(22px, 2.4vw, 34px); max-width: 100%; }
