/*
Theme Name: 和ダイニング彩
Theme URI: https://www.hotpepper.jp/strJ004068072/
Author: Wa Dining Aya
Author URI: https://www.instagram.com/dainingtita
Description: 愛知県知多市の創作料理居酒屋「和ダイニング彩」のための和モダンなWordPressテーマ。旬の和食と地酒、心温まるおもてなしが伝わるデザイン。テーマ有効化時に必要な固定ページとメニューを自動生成します。
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: diningaya
*/

/* ============================================================
   カラートークン / ベース
   テーマカラー : #3c2f22 (深い焦茶) / サブ : #f2ede2 (生成り)
   アクセント   : #a37e4f (金茶)  / カード白 : #fbf9f4
   ※ 背景色とテキストカラーが同系色で潰れる箇所を作らない
   ============================================================ */
:root {
  --c-base:   #3c2f22; /* メイン（濃色背景・濃色テキスト） */
  --c-sub:    #f2ede2; /* サブ（淡色背景） */
  --c-accent: #a37e4f; /* 金茶アクセント（罫線・装飾用） */
  --c-accent-dark: #8a6638;  /* 淡色背景上の金茶テキスト（コントラスト確保） */
  --c-accent-light: #cda96b; /* 濃色背景上の金茶テキスト（コントラスト確保） */
  --c-paper:  #fbf9f4; /* カード等の最も明るい面 */
  --c-line:   #d9cfbd; /* 罫線 */
  --c-on-base: #f2ede2; /* 濃色背景上のテキスト */
  --c-muted:  #6b5d4d;  /* 淡色背景上の控えめテキスト */

  --maxw: 1120px;
  --gut: clamp(20px, 5vw, 56px);
  --serif: "Shippori Mincho", "Noto Serif JP", "Yu Mincho", "游明朝", serif;
  --sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--c-base);
  background: var(--c-sub);
  line-height: 1.9;
  font-size: 16px;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--c-accent-dark); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--c-base); }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.45; margin: 0 0 .6em; letter-spacing: .04em; }
p { margin: 0 0 1.4em; }

/* レイアウト用ユーティリティ */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.section { padding-block: clamp(64px, 9vw, 128px); }
.section--paper { background: var(--c-paper); }
.section--base { background: var(--c-base); color: var(--c-on-base); }
.section--base h1, .section--base h2, .section--base h3 { color: var(--c-on-base); }

/* 縦書き・ラテン小見出しなどの装飾ラベル */
.eyebrow {
  display: inline-flex; align-items: center; gap: .7em;
  font-family: var(--serif); font-size: .82rem; letter-spacing: .32em;
  text-transform: uppercase; color: var(--c-accent-dark); margin-bottom: 1.1em;
}
.section--base .eyebrow, .hero .eyebrow { color: var(--c-accent-light); }
.eyebrow::before { content: ""; width: 34px; height: 1px; background: currentColor; display: inline-block; }

.sec-title { font-size: clamp(1.7rem, 3.6vw, 2.6rem); margin-bottom: .9em; }
.sec-title .ja-sub { display: block; font-size: .9rem; letter-spacing: .3em; color: var(--c-muted); margin-top: .8em; font-family: var(--sans); }
.section--base .sec-title .ja-sub { color: #cdbfa8; }

.lead { font-size: 1.02rem; max-width: 40em; }

/* ボタン */
.btn {
  display: inline-flex; align-items: center; gap: .6em;
  padding: .95em 2.2em; border-radius: 999px;
  font-family: var(--sans); font-size: .95rem; letter-spacing: .08em;
  background: var(--c-base); color: var(--c-sub);
  border: 1px solid var(--c-base); transition: all .3s var(--ease);
}
.btn:hover { background: transparent; color: var(--c-base); }
.btn--ghost { background: transparent; color: var(--c-base); }
.btn--ghost:hover { background: var(--c-base); color: var(--c-sub); }
.section--base .btn { background: var(--c-accent); border-color: var(--c-accent); color: #1f1810; }
.section--base .btn:hover { background: transparent; color: var(--c-sub); border-color: var(--c-sub); }

/* ============================================================
   ヘッダー
   ============================================================ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: clamp(14px, 2.2vw, 22px) var(--gut);
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
}
.site-header.is-scrolled,
.site-header.is-solid {
  background: rgba(60, 47, 34, .96);
  box-shadow: 0 6px 30px rgba(0,0,0,.18);
  backdrop-filter: blur(6px);
}
.brand { display: flex; align-items: baseline; gap: .6em; line-height: 1; }
.brand a { display: flex; align-items: baseline; gap: .55em; color: #fff; }
.brand .brand-mark { font-family: var(--serif); font-size: 1.5rem; letter-spacing: .14em; color: #fff; }
.brand .brand-en { font-size: .62rem; letter-spacing: .34em; color: #d9c9ad; text-transform: uppercase; }
.site-header:not(.is-scrolled):not(.is-solid) .brand .brand-mark,
.site-header:not(.is-scrolled):not(.is-solid) .brand a { color: #fff; }

/* グローバルナビ（※メニュー項目に背景色は付けない） */
.global-nav ul { list-style: none; display: flex; align-items: center; gap: clamp(18px, 2.4vw, 38px); margin: 0; padding: 0; }
.global-nav a {
  position: relative; display: inline-block;
  font-family: var(--serif); font-size: .98rem; letter-spacing: .12em;
  color: #f4ecdc; background: none; padding: .2em 0;
}
.global-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -4px; width: 100%; height: 1px;
  background: var(--c-accent); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.global-nav a:hover::after,
.global-nav .current-menu-item > a::after,
.global-nav .current_page_item > a::after { transform: scaleX(1); }
.global-nav .current-menu-item > a,
.global-nav .current_page_item > a { color: #fff; }
/* ナビにテーマが背景色を付けようとしても無効化 */
.global-nav li, .global-nav li a { background-color: transparent !important; }

.nav-tel { display: none; }

/* ハンバーガー */
.nav-toggle { display: none; }

/* ============================================================
   ヒーロー（トップ）
   ============================================================ */
.hero { position: relative; height: 100vh; min-height: 560px; display: grid; place-items: center; overflow: hidden; color: #fff; text-align: center; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media video, .hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(31,24,16,.55) 0%, rgba(31,24,16,.32) 40%, rgba(31,24,16,.62) 100%); }
.hero__inner { position: relative; z-index: 1; padding-inline: var(--gut); }
.hero__title { font-family: var(--serif); font-weight: 600; font-size: clamp(2.6rem, 8vw, 5.4rem); letter-spacing: .18em; margin: 0; text-shadow: 0 2px 30px rgba(0,0,0,.4); }
.hero__title .wa { display:block; font-size: .34em; letter-spacing: .5em; margin-bottom: .8em; color: var(--c-accent-light); }
.hero__tagline { margin-top: 1.4em; font-family: var(--serif); font-size: clamp(.95rem, 2.2vw, 1.2rem); letter-spacing: .22em; }
.hero__scroll { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 1; writing-mode: vertical-rl; font-size: .68rem; letter-spacing: .3em; color: #f4ecdc; }
.hero__scroll::after { content: ""; display: block; width: 1px; height: 46px; margin: 10px auto 0; background: linear-gradient(#f4ecdc, transparent); animation: scrolldown 2s var(--ease) infinite; }
@keyframes scrolldown { 0% { transform: scaleY(0); transform-origin: top; } 45% { transform: scaleY(1); transform-origin: top; } 55% { transform: scaleY(1); transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ============================================================
   交互レイアウト（画像＋テキスト）
   ============================================================ */
.feature { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(28px, 5vw, 72px); }
.feature + .feature { margin-top: clamp(56px, 8vw, 110px); }
.feature__media { position: relative; }
.feature__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 4px; box-shadow: 0 24px 50px -28px rgba(60,47,34,.5); }
.feature__media .tag { position: absolute; bottom: -14px; left: -14px; background: var(--c-accent); color: #1f1810; font-family: var(--serif); font-size: .82rem; letter-spacing: .14em; padding: .5em 1.2em; border-radius: 2px; }
.feature--reverse .feature__media { order: 2; }
.feature__body { max-width: 36em; }

/* ============================================================
   ランチ 3カラム
   ============================================================ */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.6vw, 30px); }
.card { background: var(--c-paper); border-radius: 4px; overflow: hidden; box-shadow: 0 16px 40px -30px rgba(60,47,34,.55); transition: transform .35s var(--ease); }
.card:hover { transform: translateY(-6px); }
.card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.card__body { padding: 18px 20px 22px; }
.card__name { font-family: var(--serif); font-size: 1.12rem; margin: 0 0 .3em; }
.card__price { color: var(--c-accent-dark); font-weight: 700; letter-spacing: .04em; }
.card__desc { font-size: .86rem; color: var(--c-muted); margin: .5em 0 0; }

/* ============================================================
   ギャラリー（料理・酒）
   ============================================================ */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gallery a, .gallery figure { margin: 0; overflow: hidden; border-radius: 3px; }
.gallery img { width: 100%; aspect-ratio: 1/1; object-fit: cover; transition: transform .6s var(--ease); }
.gallery img:hover { transform: scale(1.07); }
.gallery .g-tall { grid-row: span 2; }
.gallery .g-tall img { aspect-ratio: 1/2.05; }

/* ============================================================
   情報（営業時間・アクセス） 横並び
   ============================================================ */
.info-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(30px, 5vw, 64px); align-items: start; }
.info-list { width: 100%; border-collapse: collapse; }
.info-list th, .info-list td { text-align: left; padding: 14px 4px; border-bottom: 1px solid rgba(242,237,226,.18); vertical-align: top; font-weight: 400; }
.info-list th { width: 9em; font-family: var(--serif); letter-spacing: .1em; color: var(--c-accent-light); }
.section--base .info-list td { color: var(--c-on-base); }
.tel-block { text-align: center; padding: 30px; border: 1px solid rgba(242,237,226,.22); border-radius: 6px; }
.tel-block .label { font-size: .82rem; letter-spacing: .26em; color: #cdbfa8; }
.tel-block .num { display: inline-block; font-family: var(--serif); font-size: clamp(2rem, 6vw, 2.9rem); letter-spacing: .06em; color: #fff; margin: .15em 0; }
.tel-block .hours { font-size: .82rem; color: #cdbfa8; }

/* ============================================================
   汎用ページ（page.php / 本文ブロック）
   ============================================================ */
.page-hero { position: relative; padding: clamp(140px, 20vh, 220px) 0 clamp(48px, 8vw, 92px); background: var(--c-base); color: var(--c-on-base); text-align: center; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background-image: var(--hero-img); background-size: cover; background-position: center; opacity: .22; }
.page-hero__inner { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(1.9rem, 5vw, 3rem); letter-spacing: .14em; margin: 0; color: #fff; }
.page-hero .en { display: block; font-family: var(--serif); font-size: .78rem; letter-spacing: .4em; color: var(--c-accent-light); text-transform: uppercase; margin-top: 1em; }
.crumbs { font-size: .76rem; letter-spacing: .1em; color: var(--c-muted); padding: 16px 0; }
.crumbs a { color: var(--c-muted); }

.page-body { padding-block: clamp(48px, 8vw, 96px); }
.entry-content { max-width: 820px; margin-inline: auto; }
.entry-content > * { margin-bottom: 1.4em; }
.entry-content h2 { font-size: clamp(1.4rem, 3.4vw, 2rem); margin-top: 1.8em; padding-bottom: .4em; border-bottom: 1px solid var(--c-line); }
.entry-content h3 { font-size: 1.25rem; margin-top: 1.6em; color: var(--c-accent-dark); }
.entry-content img { border-radius: 4px; }
.entry-content figure { margin: 1.6em 0; }
.entry-content ul, .entry-content ol { padding-left: 1.4em; }
.entry-content blockquote { margin: 1.6em 0; padding: .4em 1.4em; border-left: 3px solid var(--c-accent); color: var(--c-muted); }
.entry-content a { text-decoration: underline; text-underline-offset: 3px; }

/* WordPress標準のテーブル（メニュー表など） */
.entry-content table { width: 100%; border-collapse: collapse; margin: 0; font-size: .97rem; background: transparent; }
.entry-content figure.wp-block-table { margin: 1.4em 0; }
.entry-content table th, .entry-content table td { padding: 13px 16px; border: 0; border-bottom: 1px dashed var(--c-line); text-align: left; }
.entry-content .spec-table { margin: 1.4em 0; }
.entry-content .spec-table th { width: 7em; font-family: var(--serif); color: var(--c-accent-dark); white-space: nowrap; vertical-align: top; font-weight: 400; }
/* 価格表：1列目=品名 / 2列目=価格（右寄せ・アクセント色） */
.entry-content figure.menu-table table td:last-child { text-align: right; white-space: nowrap; color: var(--c-accent-dark); font-weight: 700; width: 7em; }
.entry-content figure.menu-table table td:first-child { color: var(--c-base); }

/* メニューページ専用の章立て */
.menu-section { margin-bottom: clamp(40px, 6vw, 72px); }
.menu-section__head { display: flex; align-items: baseline; gap: 1em; margin-bottom: .4em; }
.menu-section__head h2 { border: 0; margin: 0; }
.menu-section__head .en { font-family: var(--serif); font-size: .78rem; letter-spacing: .26em; color: var(--c-accent-dark); text-transform: uppercase; }
.menu-note { font-size: .82rem; color: var(--c-muted); }
.menu-figure { margin: 1.6em 0; }
.menu-figure img { border-radius: 6px; box-shadow: 0 18px 40px -28px rgba(60,47,34,.5); }
.menu-figure figcaption { font-size: .8rem; color: var(--c-muted); margin-top: .6em; text-align: center; }

/* ============================================================
   お問い合わせ / 予約ページ
   ============================================================ */
.contact-lead { text-align: center; max-width: 40em; margin: 0 auto clamp(30px, 5vw, 50px); }
.contact-tel { text-align: center; background: var(--c-base); color: var(--c-on-base); border-radius: 8px; padding: clamp(34px, 6vw, 60px) 24px; margin-bottom: clamp(34px, 5vw, 52px); }
.contact-tel .label { font-size: .82rem; letter-spacing: .3em; color: #cdbfa8; }
.contact-tel .num { display: inline-block; font-family: var(--serif); font-size: clamp(2.3rem, 8vw, 3.6rem); letter-spacing: .05em; color: #fff; margin: .2em 0 .1em; }
.contact-tel .num a { color: #fff; }
.contact-tel .hours { font-size: .86rem; color: #cdbfa8; }
.contact-sub { max-width: 720px; margin: 0 auto; }
.contact-block { margin-top: clamp(34px, 5vw, 52px); }
.contact-block > h2 { text-align: center; font-size: 1.4rem; border: 0; }
.contact-block > h2 .en { display:block; font-size: .72rem; letter-spacing: .3em; color: var(--c-accent-dark); margin-top: .6em; }
.reserve-frame { position: relative; width: 100%; border: 1px solid var(--c-line); border-radius: 6px; overflow: hidden; }
.reserve-frame iframe { width: 100%; min-height: 640px; border: 0; display: block; }

/* ----- Contact Form 7 標準クラス構造に基づくスタイル ----- */
.wpcf7 { max-width: 680px; margin: 0 auto; }
.wpcf7-form p { margin: 0 0 1.2em; }
.wpcf7-form label { display: block; font-family: var(--serif); font-size: .95rem; letter-spacing: .04em; margin-bottom: .5em; color: var(--c-base); }
.wpcf7-form-control-wrap { display: block; }
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="number"],
.wpcf7 input[type="date"],
.wpcf7 select,
.wpcf7 textarea {
  width: 100%; padding: .85em 1em; font: inherit; color: var(--c-base);
  background: #fff; border: 1px solid var(--c-line); border-radius: 4px;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.wpcf7 input:focus, .wpcf7 select:focus, .wpcf7 textarea:focus {
  outline: none; border-color: var(--c-accent); box-shadow: 0 0 0 3px rgba(163,126,79,.15);
}
.wpcf7 textarea { min-height: 150px; resize: vertical; }
.wpcf7 .wpcf7-list-item { display: inline-block; margin: 0 1.2em .4em 0; }
.wpcf7 .wpcf7-submit {
  display: inline-block; margin-top: .6em; padding: .95em 3em; cursor: pointer;
  font: inherit; letter-spacing: .1em; color: var(--c-sub); background: var(--c-base);
  border: 1px solid var(--c-base); border-radius: 999px; transition: all .3s var(--ease);
}
.wpcf7 .wpcf7-submit:hover { background: var(--c-accent); border-color: var(--c-accent); color: #1f1810; }
.wpcf7 .wpcf7-spinner { margin: 0 0 0 .6em; }
.wpcf7-not-valid-tip { color: #b3402e; font-size: .82rem; }
.wpcf7 .wpcf7-response-output { border-radius: 4px; padding: .9em 1.1em; font-size: .9rem; margin: 1.4em 0 0; }
span.wpcf7-list-item { margin-left: 0; }

/* ============================================================
   アクセスページ
   ============================================================ */
.map-frame { width: 100%; border-radius: 8px; overflow: hidden; border: 1px solid var(--c-line); box-shadow: 0 18px 40px -30px rgba(60,47,34,.5); }
.map-frame iframe { width: 100%; height: clamp(320px, 50vh, 460px); border: 0; display: block; }
.access-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 56px); align-items: start; margin-top: clamp(34px, 5vw, 52px); }
.access-table { width: 100%; border-collapse: collapse; }
.access-table th, .access-table td { text-align: left; padding: 15px 6px; border-bottom: 1px solid var(--c-line); vertical-align: top; font-weight: 400; }
.access-table th { width: 7.5em; font-family: var(--serif); color: var(--c-accent-dark); letter-spacing: .08em; }

/* ============================================================
   フッター（※ナビ項目に背景色は付けない）
   ============================================================ */
.site-footer { background: var(--c-base); color: var(--c-on-base); padding: clamp(56px, 8vw, 84px) 0 0; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(28px, 5vw, 56px); }
.footer-brand .fmark { font-family: var(--serif); font-size: 1.7rem; letter-spacing: .14em; color: #fff; }
.footer-brand .fen { font-size: .64rem; letter-spacing: .34em; color: #cdbfa8; text-transform: uppercase; display:block; margin-top:.5em; }
.footer-brand p { margin-top: 1.4em; font-size: .9rem; color: #cdbfa8; max-width: 24em; }
.footer-col h4 { font-family: var(--serif); font-size: .92rem; letter-spacing: .14em; color: var(--c-accent-light); margin-bottom: 1.1em; }
.footer-nav ul { list-style: none; margin: 0; padding: 0; }
.footer-nav li { margin-bottom: .7em; }
.footer-nav a { color: #ece2d0; background: none !important; font-size: .92rem; letter-spacing: .05em; }
.footer-nav a:hover { color: #fff; }
.footer-sns a { color: #ece2d0; font-size: .92rem; display: inline-flex; gap: .5em; margin-bottom: .7em; }
.footer-contact p { font-size: .9rem; color: #cdbfa8; margin: 0 0 .5em; }
.footer-contact .ftel { font-family: var(--serif); font-size: 1.5rem; color: #fff; letter-spacing: .04em; }
.footer-bottom { margin-top: clamp(40px, 6vw, 64px); border-top: 1px solid rgba(242,237,226,.16); padding: 22px 0; font-size: .76rem; color: #b7a98f; text-align: center; letter-spacing: .06em; }

/* ============================================================
   ふわっと表示
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } .hero__scroll::after { animation: none; } }

/* ============================================================
   レスポンシブ
   ============================================================ */
@media (max-width: 900px) {
  .feature, .info-grid, .access-grid { grid-template-columns: 1fr; }
  .feature--reverse .feature__media { order: 0; }
  .cards { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .gallery .g-tall { grid-row: span 1; }
  .gallery .g-tall img { aspect-ratio: 1/1; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  /* スマホ：ナビをドロワー化 */
  .nav-toggle {
    display: flex; flex-direction: column; justify-content: center; gap: 6px;
    width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer; z-index: 120;
  }
  .nav-toggle span { display: block; width: 26px; height: 2px; background: #fff; margin-inline: auto; transition: transform .3s var(--ease), opacity .3s var(--ease); }
  .is-menu-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .is-menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .is-menu-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .global-nav {
    position: fixed; inset: 0; background: rgba(60,47,34,.985);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: opacity .4s var(--ease), visibility .4s var(--ease); z-index: 110;
  }
  .is-menu-open .global-nav { opacity: 1; visibility: visible; }
  /* メニューを開いている間は背面をスクロールさせない */
  .is-menu-open { overflow: hidden; touch-action: none; }
  /* ヘッダーの backdrop-filter が fixed の基準を作りメニューが一緒にスクロールするのを防ぐ */
  .is-menu-open .site-header { backdrop-filter: none; -webkit-backdrop-filter: none; }
  .global-nav ul { flex-direction: column; gap: 26px; text-align: center; }
  .global-nav a { font-size: 1.3rem; }
  .nav-tel { display: block; margin-top: 18px; font-family: var(--serif); }
  .nav-tel a { color: var(--c-accent); font-size: 1.2rem; letter-spacing: .08em; }

  /* ロゴ：横幅に収まらないため縦並びに */
  .brand a { flex-direction: column; align-items: flex-start; gap: 2px; }
  .brand .brand-mark { font-size: 1.3rem; line-height: 1.2; }
  .brand .brand-en { font-size: .58rem; }

  body { font-size: 15px; }
  .cards { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; }
}
