/*
 * style.css — 薬膳カレー Natural Trip v2
 * 和モダン × 薬棚（アポセカリー）× 侍の墨。「スパイスを、選ぶ。重ねる。」
 * 手前＝白木と墨の静、奥＝極彩色の動。極彩色は「空間」セクション1か所だけに使う。
 * 効能・症状名は一切書かない（薬機法・景表法・健康増進法）。香り・辛さ・和名・相性のみ。
 */
:root {
  --ink: #1c1a18;          /* 墨 */
  --ink-2: #26231f;
  --paper: #f3ede0;        /* 生成り */
  --paper-2: #e8dfcd;
  --turmeric: #d8a22a;     /* ウコン */
  --chili: #b5342a;        /* 唐辛子 */
  --cinnamon: #7a5230;     /* シナモン */
  --sumi-soft: #4a443c;
  --line: rgba(243, 237, 224, .22);
  --line-dark: rgba(28, 26, 24, .16);
  --serif: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --en: "Cormorant Garamond", "Noto Serif", Georgia, serif;
  --nav: 88px;             /* PCの黒い縦ナビ幅 */
  --wrap: 1180px;
  --gutter: max(28px, 4vw);
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--paper); color: var(--ink);
  font-family: var(--sans); font-size: 16px; line-height: 1.9;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3, p, figure, dl, dd { margin: 0; }
.wrap { width: min(var(--wrap), 100% - var(--gutter) * 2); margin-inline: auto; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); }

/* ── PC：左の黒い縦ナビ ── */
.rail {
  position: fixed; left: 0; top: 0; bottom: 0; width: var(--nav); z-index: 40;
  background: var(--ink); color: var(--paper);
  display: grid; grid-template-rows: auto 1fr auto; justify-items: center; align-items: center;
  border-right: 1px solid rgba(216, 162, 42, .35);
}
.rail-mark { padding-top: 24px; }
.rail-mark img { width: 44px; }
.rail-nav { display: grid; gap: clamp(18px, 3vh, 34px); }
.rail-nav a {
  writing-mode: vertical-rl; text-decoration: none; font-family: var(--serif);
  font-size: 14px; letter-spacing: .28em; padding: 4px 0; opacity: .82;
  border-right: 1px solid transparent; transition: opacity .25s, border-color .25s, color .25s;
}
.rail-nav a:hover, .rail-nav a:focus-visible { opacity: 1; color: var(--turmeric); border-color: var(--turmeric); }
.rail-lang { padding-bottom: 22px; font-size: 12px; }
.rail-lang summary { list-style: none; cursor: pointer; writing-mode: vertical-rl; letter-spacing: .2em; padding: 10px 4px; border: 1px solid var(--line); }
.rail-lang summary::-webkit-details-marker { display: none; }
.rail-lang ul { position: fixed; left: var(--nav); bottom: 20px; margin: 0; padding: 8px 0; list-style: none; background: var(--ink-2); border: 1px solid var(--line); min-width: 150px; }
.rail-lang li a { display: block; padding: 7px 18px; text-decoration: none; font-size: 13px; }
.rail-lang li a:hover { background: var(--cinnamon); }
.page { padding-left: var(--nav); }

/* ── ヒーロー ── */
.hero { position: relative; min-height: min(760px, 100svh); display: grid; align-items: center; overflow: hidden; background: var(--ink); }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 28% center; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(20,17,14,.25) 0 38%, rgba(20,17,14,.72) 62%, rgba(20,17,14,.9) 100%);
}
.hero-in { position: relative; z-index: 1; margin-left: auto; padding: 64px var(--gutter); width: min(560px, 92%); color: var(--paper); }
.hero-logo { width: min(420px, 82%); margin-bottom: 30px; }
.hero-catch { font-family: var(--serif); font-weight: 500; font-size: clamp(26px, 3vw, 40px); letter-spacing: .14em; line-height: 1.85; text-shadow: 0 2px 20px rgba(0,0,0,.6); }
.hero-catch b { color: var(--turmeric); font-weight: 500; }
.hero-lead { margin-top: 22px; font-size: 15px; letter-spacing: .08em; color: #e6ddcb; line-height: 2.1; }
.hero-cta { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  display: inline-flex; align-items: center; gap: 12px; text-decoration: none; font-family: var(--serif);
  letter-spacing: .16em; font-size: 14px; padding: 13px 26px; border: 1px solid var(--turmeric); color: var(--paper);
  background: transparent; transition: background .25s, color .25s;
}
.btn::after { content: ""; width: 6px; height: 6px; border-top: 1px solid currentColor; border-right: 1px solid currentColor; transform: rotate(45deg); }
.btn:hover, .btn:focus-visible { background: var(--turmeric); color: var(--ink); }
.btn.fill { background: var(--turmeric); color: var(--ink); }
.btn.fill:hover { background: var(--paper); border-color: var(--paper); }
.btn.dark { border-color: var(--ink); color: var(--ink); }
.btn.dark:hover { background: var(--ink); color: var(--paper); }
.hero-note { position: absolute; right: var(--gutter); bottom: 16px; z-index: 1; font-size: 11px; color: rgba(243,237,224,.6); letter-spacing: .08em; }

/* ── 章の共通 ── */
.sec { padding-block: clamp(72px, 8vw, 118px); position: relative; }
.ttl { text-align: center; margin-bottom: clamp(38px, 4.6vw, 64px); }
.ttl .en { display: block; font-family: var(--en); font-size: clamp(26px, 3.2vw, 42px); letter-spacing: .16em; color: var(--cinnamon); font-weight: 500; }
.ttl h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(17px, 1.6vw, 21px); letter-spacing: .3em; margin-top: 6px; }
.ttl h2::after { content: ""; display: block; width: 46px; height: 1px; background: var(--turmeric); margin: 20px auto 0; }
.ttl p { margin-top: 20px; font-size: 15px; color: var(--sumi-soft); letter-spacing: .06em; }
.sec.dark { background: var(--ink); color: var(--paper); }
.sec.dark .ttl .en { color: var(--turmeric); }
.sec.dark .ttl p { color: #cdc5b5; }

/* ── 3ステップ ── */
.steps { background: var(--paper-2); }
.step-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 3vw, 44px); }
.step { text-align: center; position: relative; }
.step + .step::before { content: ""; position: absolute; left: calc(-1 * clamp(9px, 1.5vw, 22px)); top: 42px; width: 1px; height: calc(100% - 60px); background: var(--line-dark); }
.step .no { font-family: var(--en); font-size: clamp(38px, 4.4vw, 58px); color: var(--turmeric); line-height: 1; }
.step h3 { font-family: var(--serif); font-weight: 500; font-size: clamp(17px, 1.8vw, 22px); letter-spacing: .16em; margin: 6px 0 14px; }
.step figure { margin: 0 auto 16px; width: min(220px, 70%); aspect-ratio: 1; border-radius: 50%; overflow: hidden; box-shadow: 0 14px 30px rgba(28,26,24,.16); }
.step figure img { width: 100%; height: 100%; object-fit: cover; }
.step p { font-size: 14.5px; color: var(--sumi-soft); text-align: left; }

/* ── スパイス図鑑 ── */
.jars { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 14px; }
.jar {
  background: linear-gradient(180deg, #211e1b, #171412); border: 1px solid rgba(243,237,224,.14);
  padding: 14px 14px 18px; text-align: center; transition: border-color .25s, transform .25s;
}
.jar:hover { border-color: var(--turmeric); transform: translateY(-3px); }
.jar img { width: 74%; margin: 0 auto 10px; filter: brightness(1.06) contrast(1.02);
  -webkit-mask-image: linear-gradient(180deg, #000 86%, transparent 99%); mask-image: linear-gradient(180deg, #000 86%, transparent 99%); }
.jar .ja { font-family: var(--serif); font-size: 16.5px; letter-spacing: .1em; }
.jar .wa { font-size: 12px; color: var(--turmeric); letter-spacing: .12em; margin-top: 2px; }
.jar .note { font-size: 12.5px; color: #cdc5b5; margin-top: 8px; line-height: 1.75; min-height: 4.4em; text-align: left; }
.jar .heat { margin-top: 8px; display: flex; gap: 3px; justify-content: center; }
.jar .heat i { width: 7px; height: 7px; border: 1px solid var(--chili); transform: rotate(45deg); }
.jar .heat i.on { background: var(--chili); }
.jar-more { margin-top: 28px; padding: 22px 24px; border: 1px solid var(--line); }
.jar-more h3 { font-family: var(--serif); font-weight: 500; letter-spacing: .2em; color: var(--turmeric); font-size: 15px; margin-bottom: 10px; }
.jar-more p { font-size: 14px; color: #cdc5b5; line-height: 2; }

/* ── Spice+ ── */
.plus { background: var(--paper); }
.plus-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.plus-item { border: 1px solid var(--line-dark); padding: 26px 18px 24px; text-align: center; background: #fff8ec; position: relative; }
.plus-item .lv { font-family: var(--en); font-size: 13px; letter-spacing: .3em; color: var(--cinnamon); }
.plus-item h3 { font-family: var(--serif); font-weight: 500; font-size: clamp(18px, 1.9vw, 23px); letter-spacing: .14em; margin: 8px 0 12px; }
.plus-item .price { font-family: var(--en); font-size: 28px; color: var(--chili); }
.plus-item .price small { font-size: 13px; font-family: var(--sans); margin-left: 2px; }
.plus-item .dots { display: flex; gap: 5px; justify-content: center; margin-top: 14px; }
.plus-item .dots i { width: 9px; height: 9px; border-radius: 50%; border: 1px solid var(--turmeric); }
.plus-item .dots i.on { background: var(--turmeric); }
.plus-note { margin-top: 24px; text-align: center; font-size: 14px; color: var(--sumi-soft); }

/* ── 22ブレンド ── */
.blends { background: var(--ink-2); color: var(--paper); }
.season-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.season { border: 1px solid var(--line); padding: 22px 20px 24px; }
.season h3 { font-family: var(--serif); font-weight: 500; letter-spacing: .3em; font-size: 17px; margin-bottom: 4px; }
.season .en { font-family: var(--en); font-size: 13px; letter-spacing: .2em; color: var(--turmeric); }
.season ul { margin: 14px 0 0; padding: 0; list-style: none; display: grid; gap: 6px; }
.season li { font-family: var(--serif); font-size: 14px; padding: 7px 10px; border: 1px solid var(--line); color: #e0d8c7; letter-spacing: .04em; }
.season.spring h3 { color: #d9b3c4; } .season.summer h3 { color: #9ec9c6; }
.season.autumn h3 { color: var(--turmeric); } .season.winter h3 { color: #b9c8d6; }
.blend-special { margin-top: 18px; border: 1px solid var(--turmeric); padding: 22px 24px; display: flex; flex-wrap: wrap; align-items: center; gap: 14px 22px; }
.blend-special .no { font-family: var(--en); font-size: 30px; color: var(--turmeric); }
.blend-special h3 { font-family: var(--serif); font-weight: 500; font-size: 19px; letter-spacing: .16em; }
.blend-special p { font-size: 14px; color: #cdc5b5; flex: 1 1 320px; }
.blends-note { margin-top: 22px; font-size: 13.5px; color: #b8b0a2; text-align: center; line-height: 2; }

/* ── 空間（手前＝侍／奥＝極彩色） ── */
.space { padding: 0; background: var(--ink); color: var(--paper); }
.space-split { display: grid; grid-template-columns: 1fr 1fr; }
.space-half { position: relative; min-height: min(620px, 78vh); display: grid; align-items: end; }
.space-half > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.space-half .txt { position: relative; padding: clamp(34px, 3.4vw, 54px); background: linear-gradient(180deg, transparent, rgba(14,12,10,.55) 22%, rgba(14,12,10,.93) 58%); }
.space-half .en { font-family: var(--en); font-size: clamp(22px, 2.4vw, 32px); letter-spacing: .14em; color: var(--turmeric); text-shadow: 0 2px 14px rgba(0,0,0,.8); }
.space-half h3 { font-family: var(--serif); font-weight: 500; font-size: clamp(19px, 2vw, 25px); letter-spacing: .18em; margin: 4px 0 12px; text-shadow: 0 2px 14px rgba(0,0,0,.8); }
.space-half p { font-size: 14.5px; color: #ded6c6; line-height: 2; }
.space-half.back .en { color: #f0b8c2; }
.space-ink { padding: clamp(60px, 7vw, 100px) 0; background: var(--paper) url("../img/washi-ink.webp") center/cover; color: var(--ink); }  /* 親 .space の生成り文字色を打ち消す */
.space-ink .wrap { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(24px, 4vw, 60px); align-items: center; }
.space-ink figure { margin: 0; border: 1px solid var(--line-dark); padding: 8px; background: rgba(255,255,255,.55); }
.space-ink h3 { font-family: var(--serif); font-weight: 500; font-size: clamp(20px, 2.3vw, 30px); letter-spacing: .14em; line-height: 1.8; }
.space-ink p { margin-top: 18px; color: var(--sumi-soft); }

/* ── メニュー ── */
.menu-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(26px, 4vw, 58px); align-items: center; }
.menu-photo { margin: 0; border: 1px solid var(--line-dark); padding: 8px; background: #fff8ec; }
.menu-photo img { aspect-ratio: 3/2; object-fit: cover; width: 100%; }
.menu-photo figcaption { font-size: 12px; color: var(--sumi-soft); padding-top: 8px; text-align: right; }
.menu-body h3 { font-family: var(--serif); font-weight: 500; font-size: clamp(21px, 2.3vw, 30px); letter-spacing: .12em; line-height: 1.7; }
.menu-body > p { margin-top: 16px; color: var(--sumi-soft); }
.plist { margin: 24px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line-dark); }
.plist li { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; padding: 13px 2px; border-bottom: 1px solid var(--line-dark); font-family: var(--serif); letter-spacing: .06em; }
.plist li span:last-child { color: var(--chili); font-size: 19px; white-space: nowrap; }
.plist li small { display: block; font-family: var(--sans); font-size: 12px; color: var(--sumi-soft); letter-spacing: 0; }
.tea { background: var(--paper-2); }
.tea-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.tea-card { border: 1px solid var(--line-dark); padding: 24px 22px 26px; background: #fff8ec; }
.tea-card h3 { font-family: var(--serif); font-weight: 500; font-size: 19px; letter-spacing: .14em; }
.tea-card .price { font-family: var(--en); font-size: 24px; color: var(--chili); margin: 4px 0 12px; }
.tea-card p { font-size: 13.5px; color: var(--sumi-soft); line-height: 2; }


/* ── ルー（水を使わない・グループ2店舗の素材） ── */
.roux { background: var(--ink); color: var(--paper); }
.roux .ttl .en { color: var(--turmeric); }
.roux .ttl h2 { font-size: clamp(24px, 3vw, 38px); letter-spacing: .2em; }
.roux-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(26px, 4vw, 60px); align-items: center; }
.roux-photo { margin: 0; border: 1px solid var(--line); padding: 8px; }
.roux-photo img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.roux-body .lead { font-family: var(--serif); font-size: clamp(17px, 1.9vw, 23px); letter-spacing: .1em; line-height: 2; color: var(--paper); }
.roux-from { margin-top: 30px; display: grid; gap: 18px; }
.roux-from article { border-left: 2px solid var(--turmeric); padding: 4px 0 4px 20px; }
.roux-from .en { font-family: var(--en); font-size: 13px; letter-spacing: .3em; color: var(--turmeric); }
.roux-from h3 { font-family: var(--serif); font-weight: 500; font-size: clamp(16px, 1.7vw, 20px); letter-spacing: .1em; line-height: 1.7; margin: 4px 0 8px; }
.roux-from p { font-size: 14px; color: #cdc5b5; line-height: 1.95; }

/* ── 紅茶・コーヒーのブランド ── */
.brand-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 26px; }
.brand { border: 1px solid var(--line-dark); background: #fff8ec; padding: 26px 24px 28px; }
.brand .en { font-family: var(--en); font-size: clamp(17px, 1.9vw, 23px); letter-spacing: .24em; color: var(--cinnamon); }
.brand h3 { font-family: var(--serif); font-weight: 500; font-size: clamp(17px, 1.8vw, 21px); letter-spacing: .12em; margin: 6px 0 12px; }
.brand p { font-size: 14.5px; color: var(--sumi-soft); line-height: 2; }

/* ── 店舗情報 ── */
.access { background: var(--ink); color: var(--paper); }
.info { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 54px); align-items: start; }
.info dl { margin: 0; border-top: 1px solid var(--line); }
.info dl div { display: grid; grid-template-columns: 7.5em 1fr; gap: 12px; padding: 15px 2px; border-bottom: 1px solid var(--line); }
.info dt { font-family: var(--serif); color: var(--turmeric); letter-spacing: .14em; }
.info .tel { font-family: var(--en); font-size: 26px; letter-spacing: .04em; text-decoration: none; }
.notice { border: 1px solid var(--line); padding: 22px 24px; }
.notice h3 { font-family: var(--serif); font-weight: 500; letter-spacing: .16em; color: var(--turmeric); font-size: 16px; margin-bottom: 10px; }
.notice ul { margin: 0; padding-left: 1.2em; font-size: 14.5px; color: #ded6c6; }
.notice li + li { margin-top: 6px; }

/* ── FAQ ── */
.faq .wrap { max-width: 880px; }
.faq details { border-bottom: 1px solid var(--line-dark); }
.faq details:first-of-type { border-top: 1px solid var(--line-dark); }
.faq summary { cursor: pointer; list-style: none; padding: 19px 44px 19px 2px; font-family: var(--serif); letter-spacing: .08em; font-size: 16.5px; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "＋"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%); color: var(--turmeric); }
.faq details[open] summary::after { content: "－"; }
.faq details p { padding: 0 2px 20px; color: var(--sumi-soft); }

/* ── フッター ── */
.ftr { background: var(--ink); color: var(--paper); border-top: 1px solid rgba(216,162,42,.4); padding: 58px 0 108px; text-align: center; }
.ftr img { width: min(300px, 66%); margin: 0 auto 22px; }
.ftr p { font-size: 14px; color: #cdc5b5; }
.ftr .sns { margin: 20px 0; display: flex; gap: 22px; justify-content: center; font-family: var(--en); letter-spacing: .12em; font-size: 15px; }
.ftr small { display: block; margin-top: 24px; font-size: 12px; color: #8f887c; letter-spacing: .06em; }

/* ── スマホ下部の固定バー・上部バー ── */
.bar, .topbar { display: none; }

/* ── モーション ── */
@media (prefers-reduced-motion: no-preference) {
  .rv { opacity: 0; transform: translateY(16px); transition: opacity .8s ease, transform .8s ease; }
  .rv.on { opacity: 1; transform: none; }
  .hero-logo, .hero-catch, .hero-lead, .hero-cta { animation: fade 1.2s ease both; }
  .hero-catch { animation-delay: .15s; } .hero-lead { animation-delay: .3s; } .hero-cta { animation-delay: .45s; }
  @keyframes fade { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
}

/* ── タブレット以下 ── */
@media (max-width: 960px) {
  :root { --nav: 0px; --gutter: 20px; }
  .rail { display: none; }
  .topbar {
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    position: sticky; top: 0; z-index: 40; background: rgba(22,19,17,.96); color: var(--paper);
    padding: 10px var(--gutter); border-bottom: 1px solid var(--line); backdrop-filter: blur(6px);
  }
  .topbar img { height: 34px; width: auto; }
  .topbar details { position: relative; font-size: 12px; }
  .topbar summary { list-style: none; cursor: pointer; border: 1px solid var(--line); padding: 6px 13px; letter-spacing: .08em; }
  .topbar summary::-webkit-details-marker { display: none; }
  .topbar ul { position: absolute; right: 0; top: calc(100% + 6px); margin: 0; padding: 6px 0; list-style: none; background: var(--ink-2); border: 1px solid var(--line); min-width: 150px; }
  .topbar li a { display: block; padding: 8px 16px; text-decoration: none; }
  .hero { min-height: 0; }
  .hero-bg img { object-position: center; }
  .hero-bg::after { background: linear-gradient(180deg, rgba(20,17,14,.5) 0 30%, rgba(20,17,14,.82) 100%); }
  .hero-in { width: 100%; padding: 46px var(--gutter) 54px; margin-left: 0; }
  .hero-logo { width: min(320px, 74%); }
  .hero-note { position: static; display: block; text-align: right; margin-top: 18px; }
  .step-grid, .plus-grid, .season-grid, .tea-grid, .menu-grid, .info, .space-split, .roux-grid, .brand-grid { grid-template-columns: 1fr; }
  .step + .step::before { display: none; }
  .step + .step { padding-top: 26px; border-top: 1px solid var(--line-dark); }
  .step figure { width: min(180px, 52%); }
  .space-half { min-height: 58vh; }
  .space-ink .wrap { grid-template-columns: 1fr; }
  .jars { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; }
  .jar .note { min-height: 0; }
  .bar {
    display: grid; grid-template-columns: repeat(3, 1fr); position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
    background: rgba(18,16,14,.97); border-top: 1px solid var(--turmeric); padding-bottom: env(safe-area-inset-bottom);
  }
  .bar a { display: grid; justify-items: center; gap: 2px; padding: 9px 0 8px; text-decoration: none; color: var(--paper); font-family: var(--serif); font-size: 12px; letter-spacing: .16em; }
  .bar a + a { border-left: 1px solid var(--line); }
  .bar svg { width: 21px; height: 21px; fill: none; stroke: var(--turmeric); stroke-width: 1.5; }
}
@media (max-width: 520px) {
  .plus-grid { grid-template-columns: 1fr 1fr; }
  .season-grid { grid-template-columns: 1fr 1fr; }
  .info dl div { grid-template-columns: 6em 1fr; }
}

/* ── 言語別（ビルドが <html lang> を設定） ── */
:lang(ko) { --serif: "Noto Serif KR", serif; --sans: "Noto Sans KR", sans-serif; }
:lang(zh-Hans) { --serif: "Noto Serif SC", serif; --sans: "Noto Sans SC", sans-serif; }
:lang(zh-Hant) { --serif: "Noto Serif TC", serif; --sans: "Noto Sans TC", sans-serif; }
:lang(th) { --serif: "Noto Serif Thai", serif; --sans: "Noto Sans Thai", sans-serif; }
:lang(my) { --serif: "Noto Serif Myanmar", serif; --sans: "Noto Sans Myanmar", sans-serif; }
:lang(en), :lang(es), :lang(fr), :lang(de), :lang(it), :lang(id), :lang(ms), :lang(vi) { --serif: "Noto Serif", Georgia, serif; --sans: "Noto Sans", Arial, sans-serif; }
html:not(:lang(ja)):not(:lang(zh)) .rail-nav a { writing-mode: horizontal-tb; font-size: 11px; letter-spacing: .06em; text-align: center; }
html:not(:lang(ja)):not(:lang(zh)) .rail-lang summary { writing-mode: horizontal-tb; }
html:not(:lang(ja)):not(:lang(zh)) :is(.ttl h2, .step h3, .season h3, .info dt, .hero-catch) { letter-spacing: .04em; }
html:is(:lang(th), :lang(my)) body { line-height: 2.1; }
html:is(:lang(th), :lang(my)) * { letter-spacing: 0 !important; }
html:not(:lang(ja)):not(:lang(zh)) .ttl h2 { font-size: clamp(15px, 1.4vw, 18px); }
