/* ============================================================
   Feel so crazy !!  ─ Style Sheet
   Palette: 青 #3b6da4 × 赤 × 木の色
   Mobile-first / Pure HTML+CSS+JS
============================================================ */

:root {
  /* Brand colors */
  --c-blue: #3b6da4;
  --c-blue-deep: #244668;
  --c-blue-ink: #142436;
  --c-red: #c1272d;
  --c-red-deep: #8a1418;
  --c-wood: #b8865b;
  --c-wood-deep: #6e4a2a;
  --c-cream: #f5ede0;

  /* Base */
  --c-bg: #0e1116;
  --c-bg-2: #161b22;
  --c-text: #efe8da;
  --c-text-mute: #b6b1a6;
  --c-line: rgba(245,237,224,0.18);

  /* Type */
  --ff-jp: "Shippori Mincho", "Yu Mincho", "游明朝", serif;
  --ff-jp-sans: "Noto Sans JP", "Hiragino Sans", sans-serif;
  --ff-en: "Bebas Neue", "Helvetica Neue", sans-serif;

  /* Layout */
  --container: 1180px;
  --pad-x: clamp(20px, 5vw, 56px);
  --section-pad-y: clamp(72px, 12vw, 140px);

  /* Header */
  --header-h: 64px;
}

@media (min-width: 768px){
  :root { --header-h: 80px; }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--ff-jp-sans);
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.04em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }
button { font: inherit; cursor: pointer; }

/* ===== Header ===== */
.site-header {
  position: fixed; inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 100;
  display: flex; align-items: center;
  transition: background .35s ease, backdrop-filter .35s ease, border-color .35s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(14,17,22,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--c-line);
}
.site-header__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.site-header__logo {
  display: inline-flex; align-items: baseline; gap: 12px;
  font-family: var(--ff-en);
  letter-spacing: .08em;
}
.logo-mark {
  display: inline-block;
  background: var(--c-red);
  color: #fff;
  padding: 4px 9px 2px;
  border-radius: 3px;
  font-size: 18px;
  line-height: 1;
}
.logo-text {
  font-size: 18px;
  color: var(--c-cream);
}
.logo-text em {
  font-style: normal;
  color: var(--c-red);
  margin-left: 2px;
}

/* Header nav (PC) */
.site-header__nav { display: none; }
@media (min-width: 1024px){
  .site-header__nav { display: block; }
  .site-header__nav ul { display: flex; gap: 28px; align-items: center; }
  .site-header__nav a {
    font-family: var(--ff-jp-sans);
    font-size: 14px;
    color: var(--c-cream);
    position: relative;
    padding: 6px 0;
    transition: color .2s;
  }
  .site-header__nav a:hover { color: var(--c-red); }
  .site-header__nav a.is-intl {
    border: 1px solid var(--c-cream);
    padding: 8px 14px;
    border-radius: 999px;
    font-family: var(--ff-en);
    letter-spacing: .1em;
    font-size: 12px;
  }
  .site-header__nav a.is-intl:hover {
    background: var(--c-cream); color: var(--c-bg);
  }
}

/* Hamburger */
.hamburger {
  width: 44px; height: 44px;
  background: transparent; border: 0; padding: 0;
  position: relative; z-index: 110;
  display: inline-flex; align-items: center; justify-content: center;
}
.hamburger span {
  position: absolute;
  left: 10px; right: 10px;
  height: 2px; background: var(--c-cream);
  transition: transform .35s ease, opacity .25s ease, top .35s ease;
}
.hamburger span:nth-child(1){ top: 14px; }
.hamburger span:nth-child(2){ top: 21px; }
.hamburger span:nth-child(3){ top: 28px; }
.hamburger.is-open span:nth-child(1){ top: 21px; transform: rotate(45deg); }
.hamburger.is-open span:nth-child(2){ opacity: 0; }
.hamburger.is-open span:nth-child(3){ top: 21px; transform: rotate(-45deg); }

@media (min-width: 1024px){
  .hamburger { display: none; }
}

/* ===== Drawer ===== */
.drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  opacity: 0; pointer-events: none;
  transition: opacity .35s ease;
  z-index: 99;
}
.drawer-overlay.is-open { opacity: 1; pointer-events: auto; }

.drawer {
  position: fixed; top: 0; right: 0;
  width: min(86vw, 380px);
  height: 100dvh;
  background: linear-gradient(180deg, var(--c-blue-ink) 0%, #0a121b 100%);
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.65,.05,.36,1);
  z-index: 105;
  overflow-y: auto;
  border-left: 1px solid var(--c-line);
}
.drawer.is-open { transform: translateX(0); }
.drawer__inner {
  padding: calc(var(--header-h) + 24px) 32px 48px;
}
.drawer__brand {
  font-family: var(--ff-en);
  font-size: 32px;
  color: var(--c-cream);
  margin: 0 0 32px;
  letter-spacing: .06em;
}
.drawer__brand em {
  font-style: normal;
  color: var(--c-red);
}
.drawer__list li { border-bottom: 1px solid var(--c-line); }
.drawer__list a {
  display: block;
  padding: 16px 0;
  font-family: var(--ff-jp);
  font-size: 17px;
  color: var(--c-cream);
  transition: color .2s, padding .2s;
}
.drawer__list a:hover { color: var(--c-red); padding-left: 8px; }

.drawer__intl { margin-top: 36px; }
.drawer__intl-ttl {
  font-family: var(--ff-en);
  letter-spacing: .12em;
  color: var(--c-wood);
  font-size: 12px;
  margin: 0 0 12px;
}
.drawer__intl ul {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.drawer__intl a {
  display: block;
  padding: 10px 12px;
  border: 1px solid var(--c-line);
  border-radius: 4px;
  font-size: 13px;
  text-align: center;
  color: var(--c-cream);
  transition: background .2s, border-color .2s;
}
.drawer__intl a:hover { background: var(--c-blue); border-color: var(--c-blue); }

.drawer__sns {
  margin-top: 32px;
  display: flex; gap: 16px; flex-wrap: wrap;
}
.drawer__sns a {
  flex: 1;
  text-align: center;
  padding: 14px;
  background: var(--c-red);
  color: #fff;
  border-radius: 4px;
  font-size: 14px;
  letter-spacing: .08em;
  transition: background .2s;
}
.drawer__sns a:hover { background: var(--c-red-deep); }
.drawer__sns a:nth-child(2){ background: var(--c-wood-deep); }
.drawer__sns a:nth-child(2):hover { background: var(--c-wood); }

body.is-locked { overflow: hidden; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: #000;
}
.hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: saturate(1.05) contrast(1.05);
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
}
/* Hide ALL native media controls across browsers (Chrome, Safari, iOS, Firefox) */
.hero__video::-webkit-media-controls,
.hero__video::-webkit-media-controls-enclosure,
.hero__video::-webkit-media-controls-panel,
.hero__video::-webkit-media-controls-play-button,
.hero__video::-webkit-media-controls-start-playback-button,
.hero__video::-webkit-media-controls-overlay-play-button,
.hero__video::-webkit-media-controls-overlay-enclosure,
.hero__video::-webkit-media-controls-timeline,
.hero__video::-webkit-media-controls-current-time-display,
.hero__video::-webkit-media-controls-time-remaining-display,
.hero__video::-webkit-media-controls-mute-button,
.hero__video::-webkit-media-controls-volume-slider,
.hero__video::-webkit-media-controls-fullscreen-button,
.hero__video::-webkit-media-controls-toggle-closed-captions-button {
  display: none !important;
  -webkit-appearance: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
  visibility: hidden !important;
  width: 0 !important;
  height: 0 !important;
}
/* Firefox */
.hero__video::-moz-media-controls { display: none !important; }
/* Extra safety: no focus/outline on the video element */
.hero__video:focus,
.hero__video:focus-visible { outline: none !important; }
.hero__overlay {
  position: absolute; inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse at center, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.65) 75%),
    linear-gradient(180deg, rgba(20,36,54,0.55) 0%, rgba(14,17,22,0.85) 100%);
}
.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 var(--pad-x);
  max-width: 880px;
}
/* Hero status badge (business hours) */
.hero__status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 14px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  margin-bottom: 20px;
  font-family: var(--ff-ja);
  font-size: 12.5px;
  letter-spacing: .05em;
  color: rgba(255, 255, 255, 0.95);
  animation: fadeInUp 0.9s .1s both;
}
.hero__status.is-open { background: rgba(220, 38, 38, 0.18); border-color: rgba(255, 90, 90, 0.5); }
.hero__status.is-closed { background: rgba(255, 255, 255, 0.06); border-color: rgba(255, 255, 255, 0.12); }
.hero__status.is-closed-special {
  background: rgba(220, 38, 38, 0.28);
  border-color: rgba(255, 90, 90, 0.7);
  color: #fff;
  box-shadow: 0 4px 18px rgba(220, 38, 38, 0.25);
}
.hero__status.is-special-open {
  background: rgba(21, 128, 61, 0.32);
  border-color: rgba(134, 239, 172, 0.7);
  color: #fff;
  box-shadow: 0 4px 18px rgba(21, 128, 61, 0.28);
}
.hero__status.is-special-open .hero__status-dot {
  background: #4ade80;
  animation: pulseDotGreen 2s infinite;
}
@keyframes pulseDotGreen {
  0%   { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.55); }
  70%  { box-shadow: 0 0 0 10px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

/* 臨時休業告知バナー（TOP・サブページ共通） */
.closed-banner {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: linear-gradient(90deg, #b91c1c 0%, #dc2626 100%);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
  animation: fadeInDown 0.5s both;
}
/* アナウンスバナー（青・情報）：営業再開告知など */
.closed-banner--announce {
  background: linear-gradient(90deg, #1e40af 0%, #3b6da4 100%);
  border-bottom-color: rgba(255, 255, 255, 0.2);
}
/* 特別営業バナー（緑・営業告知）：本日限定営業など */
.closed-banner--special {
  background: linear-gradient(90deg, #166534 0%, #15803d 100%);
  border-bottom-color: rgba(255, 255, 255, 0.25);
  animation: fadeInDown 0.5s both, glowGreen 3s 0.5s ease-in-out infinite;
}
@keyframes glowGreen {
  0%, 100% { box-shadow: 0 2px 12px rgba(21, 128, 61, 0.4); }
  50%      { box-shadow: 0 2px 24px rgba(74, 222, 128, 0.65); }
}
.closed-banner__link {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  color: #fff;
  font-family: var(--ff-ja);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease;
}
.closed-banner__link:hover {
  background: rgba(255, 255, 255, 0.32);
  transform: translateX(2px);
}
.closed-banner__link[hidden] { display: none; }
@media (max-width: 600px) {
  .closed-banner__link { font-size: 12px; padding: 5px 11px; }
}
.closed-banner[hidden] { display: none; }
.closed-banner__inner {
  max-width: var(--container-max, 1200px);
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--ff-ja);
  font-size: 14px;
  line-height: 1.5;
}
.closed-banner__badge {
  flex-shrink: 0;
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-family: var(--ff-en);
  font-size: 11px;
  letter-spacing: .15em;
  font-weight: 700;
  text-transform: uppercase;
}
.closed-banner__text { margin: 0; }
.closed-banner__text strong { font-weight: 700; }
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-100%); }
  to { opacity: 1; transform: translateY(0); }
}
/* バナー表示中は header と hero をバナー高さ分下にズラス */
body.has-closed-banner {
  --closed-banner-h: 52px;
}
body.has-closed-banner .site-header { top: var(--closed-banner-h); }
body.has-closed-banner main { padding-top: var(--closed-banner-h); }
body.has-closed-banner .drawer { top: var(--closed-banner-h); }
@media (max-width: 600px) {
  .closed-banner__inner {
    padding: 10px 16px;
    font-size: 12.5px;
    align-items: flex-start;
    gap: 10px;
  }
  .closed-banner__badge { font-size: 10px; padding: 3px 8px; }
  body.has-closed-banner { --closed-banner-h: 76px; }
}
.hero__status-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #9ca3af;
  box-shadow: 0 0 0 0 rgba(156, 163, 175, 0);
}
.hero__status.is-open .hero__status-dot,
.hero__status.is-closed-special .hero__status-dot {
  background: #ff5a5a;
  animation: pulseDot 2s infinite;
}
@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(255, 90, 90, 0.6); }
  70% { box-shadow: 0 0 0 10px rgba(255, 90, 90, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 90, 90, 0); }
}
.hero__status-text strong { font-weight: 700; color: #fff; }
.hero__status-sep { opacity: .45; margin: 0 4px; }
@media (max-width: 600px) {
  .hero__status { font-size: 11.5px; padding: 7px 14px 7px 12px; }
  .hero__status-sep { display: none; }
  .hero__status-text { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; line-height: 1.3; }
}

.hero__eyebrow {
  font-family: var(--ff-en);
  letter-spacing: .35em;
  font-size: 13px;
  color: var(--c-red);
  margin: 0 0 24px;
  opacity: 0;
  animation: fadeUp .9s .2s ease forwards;
}
.hero__title {
  font-family: var(--ff-jp);
  font-weight: 900;
  font-size: clamp(40px, 9vw, 88px);
  line-height: 1.15;
  margin: 0 0 28px;
  letter-spacing: .04em;
  color: var(--c-cream);
  text-shadow: 0 4px 30px rgba(0,0,0,0.7);
}
.hero__title span {
  display: block;
  opacity: 0;
  animation: fadeUp 1s ease forwards;
}
.hero__title span:nth-child(1){ animation-delay: .4s; }
.hero__title span:nth-child(2){
  animation-delay: .7s;
  color: var(--c-red);
}
.hero__brand {
  font-family: var(--ff-en);
  font-size: clamp(28px, 5vw, 48px);
  margin: 0 0 24px;
  letter-spacing: .08em;
  color: var(--c-cream);
  opacity: 0;
  animation: fadeUp 1s 1s ease forwards;
}
.hero__brand em {
  font-style: normal;
  color: var(--c-red);
}
.hero__lead {
  font-family: var(--ff-jp);
  font-size: clamp(14px, 2.2vw, 17px);
  color: var(--c-cream);
  line-height: 2;
  margin: 0 0 40px;
  opacity: 0;
  animation: fadeUp 1s 1.3s ease forwards;
}
.hero__cta {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s 1.6s ease forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Hero scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: inline-flex;
  flex-direction: column; align-items: center; gap: 8px;
  color: var(--c-cream);
  font-family: var(--ff-en);
  letter-spacing: .25em;
  font-size: 11px;
  opacity: .8;
}
.hero__scroll span {
  width: 1px; height: 48px;
  background: var(--c-cream);
  display: block;
  position: relative;
  overflow: hidden;
}
.hero__scroll span::after {
  content: ""; position: absolute;
  inset: -100% 0 auto 0;
  height: 50%;
  background: var(--c-red);
  animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: translateY(0); }
  100% { transform: translateY(400%); }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center; justify-content: center;
  min-width: 200px;
  padding: 16px 28px;
  font-family: var(--ff-jp);
  font-size: 15px;
  letter-spacing: .12em;
  border: 1px solid transparent;
  border-radius: 2px;
  transition: background .25s, color .25s, border-color .25s, transform .15s;
}
.btn--primary {
  background: var(--c-red);
  color: #fff;
  border-color: var(--c-red);
}
.btn--primary:hover {
  background: var(--c-red-deep);
  border-color: var(--c-red-deep);
}
.btn--ghost {
  background: transparent;
  color: var(--c-cream);
  border-color: var(--c-cream);
}
.btn--ghost:hover {
  background: var(--c-cream);
  color: var(--c-bg);
}
.btn:active { transform: translateY(1px); }

/* Instagram button (hero CTA — mobile only) */
.btn--instagram {
  background: linear-gradient(135deg, #b88a3a 0%, #a94266 50%, #5a3f8c 100%);
  color: rgba(255,255,255,0.92);
  border-color: transparent;
  gap: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.28);
}
.btn--instagram:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}
.btn--instagram svg { flex-shrink: 0; }
.hero__cta-instagram { display: none; }
@media (max-width: 767px) {
  .hero__cta-instagram { display: inline-flex; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { min-width: 0; width: 100%; }
}

/* ===== Sections (common) ===== */
.section {
  position: relative;
  padding: var(--section-pad-y) 0;
  overflow: hidden;
}
.section__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  position: relative;
  z-index: 2;
}
.eyebrow {
  font-family: var(--ff-en);
  font-size: 13px;
  letter-spacing: .3em;
  color: var(--c-red);
  margin: 0 0 20px;
}
.section__title {
  font-family: var(--ff-jp);
  font-weight: 900;
  font-size: clamp(28px, 6vw, 52px);
  line-height: 1.3;
  letter-spacing: .04em;
  margin: 0 0 36px;
  color: var(--c-cream);
}
.section__lead {
  font-family: var(--ff-jp);
  font-size: clamp(15px, 2vw, 17px);
  line-height: 2.1;
  color: var(--c-text-mute);
  max-width: 640px;
  margin: 0 0 36px;
}

/* Decorative giant kanji */
.section__deco {
  position: absolute;
  bottom: -40px;
  right: -20px;
  z-index: 1;
  font-family: var(--ff-jp);
  font-weight: 900;
  font-size: clamp(140px, 30vw, 360px);
  line-height: 1;
  color: var(--c-blue);
  opacity: .08;
  pointer-events: none;
  user-select: none;
}

.link-arrow {
  display: inline-flex;
  align-items: center; gap: 12px;
  font-family: var(--ff-jp);
  font-size: 15px;
  color: var(--c-cream);
  padding-bottom: 6px;
  border-bottom: 1px solid var(--c-cream);
  transition: color .2s, border-color .2s, gap .25s;
}
.link-arrow span { display: inline-block; transition: transform .25s; }
.link-arrow:hover { color: var(--c-red); border-color: var(--c-red); gap: 18px; }
.link-arrow:hover span { transform: translateX(4px); }

/* ===== Message ===== */
.section--message {
  background: var(--c-bg);
  position: relative;
}
.section--message::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--c-red) 50%, transparent 100%);
  opacity: .6;
}
.message__body {
  max-width: 720px;
  font-family: var(--ff-jp);
  font-size: clamp(15px, 2vw, 17px);
  line-height: 2.2;
  color: var(--c-cream);
}
.message__body p { margin: 0 0 24px; }
.message__body strong {
  color: #fff;
  font-weight: 700;
  background: linear-gradient(transparent 65%, rgba(193,39,45,0.35) 65%);
  padding: 0 2px;
}
.message__quote {
  margin: 40px 0;
  padding: 32px 24px;
  border-left: 4px solid var(--c-red);
  background:
    linear-gradient(90deg, rgba(193,39,45,0.08) 0%, transparent 100%);
}
.message__quote p {
  margin: 0;
  font-family: var(--ff-jp);
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 700;
  line-height: 1.6;
  color: var(--c-cream);
  letter-spacing: .04em;
}
.message__sign {
  margin-top: 40px !important;
  text-align: right;
  font-family: var(--ff-jp);
  color: var(--c-wood);
  letter-spacing: .15em;
}
.ttl-em { font-style: normal; color: var(--c-red); margin: 0 2px; }

/* ===== Origin ===== */
.section--origin {
  background: linear-gradient(180deg, var(--c-bg) 0%, var(--c-blue-ink) 100%);
}
.origin__story {
  max-width: 720px;
  font-family: var(--ff-jp);
  font-size: clamp(15px, 2vw, 17px);
  line-height: 2.2;
  color: var(--c-text-mute);
  margin-bottom: 36px;
}
.origin__story p { margin: 0 0 24px; }
.origin__story strong {
  color: var(--c-cream);
  font-weight: 700;
  background: linear-gradient(transparent 65%, rgba(193,39,45,0.35) 65%);
  padding: 0 2px;
}
.origin__memory {
  margin: 40px 0;
  padding: 32px 28px;
  background: rgba(245,237,224,0.04);
  border: 1px solid var(--c-line);
  border-radius: 4px;
  position: relative;
}
.origin__memory::before {
  content: "“";
  position: absolute;
  top: -8px; left: 16px;
  font-family: var(--ff-jp);
  font-size: 64px;
  line-height: 1;
  color: var(--c-red);
  opacity: .5;
}
.origin__memory p {
  margin: 0 0 16px;
  color: var(--c-cream);
}
.origin__memory p:last-child { margin-bottom: 0; }
.origin__memory em {
  display: block;
  font-style: normal;
  font-family: var(--ff-jp);
  color: var(--c-wood);
  margin-top: 8px;
  letter-spacing: .08em;
}
.origin__conclusion {
  font-size: clamp(16px, 2.2vw, 19px) !important;
  color: var(--c-cream) !important;
  line-height: 1.9 !important;
  padding: 24px 0 0;
  border-top: 1px solid var(--c-line);
}

/* ===== Origin：想いの概要ブロック ===== */
.origin__intro {
  max-width: 820px;
  margin: 20px 0 44px;
  padding: 22px 26px;
  border: 1px solid var(--c-line);
  border-left: 3px solid var(--c-red);
  background: linear-gradient(90deg, rgba(193,39,45,0.06) 0%, rgba(59,109,164,0.04) 100%);
  border-radius: 0 4px 4px 0;
}
.origin__intro-lead {
  margin: 0 0 14px;
  font-family: var(--ff-jp);
  font-size: clamp(15px, 1.9vw, 17px);
  line-height: 1.95;
  color: var(--c-cream);
}
.origin__intro-lead strong {
  color: #fff;
  font-weight: 700;
  background: linear-gradient(transparent 65%, rgba(193,39,45,0.35) 65%);
  padding: 0 2px;
}
.origin__intro-lead em {
  font-style: normal;
  color: var(--c-wood);
  letter-spacing: .03em;
}
.origin__intro-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-en);
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: none;
  color: var(--c-cream);
  border-bottom: 1px solid rgba(196,50,53,0.7);
  padding-bottom: 4px;
  transition: color .2s, border-color .2s, transform .2s;
}
.origin__intro-link:hover { color: var(--c-red); border-bottom-color: var(--c-red); transform: translateX(2px); }
.origin__intro-link span { color: var(--c-red); font-family: var(--ff-en); }

/* Originのctaは複数リンクを並べる */
.origin__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
  margin-top: 20px;
}
.origin__cta--center { justify-content: center; margin-top: 32px; }
@media (max-width: 640px) {
  .origin__cta { gap: 16px; }
  .origin__intro { padding: 18px 20px; margin: 16px 0 32px; }
}

/* Origin：食材一覧カード（左カラム）*/
.split-media__left { display: block; }
.origin__facts {
  margin-top: 20px;
  padding: 18px 20px;
  background: rgba(245,237,224,0.04);
  border: 1px solid var(--c-line);
  border-radius: 4px;
}
.origin__facts dl { margin: 0; }
.origin__facts dl > div {
  display: flex;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(245,237,224,0.15);
  align-items: baseline;
}
.origin__facts dl > div:last-child { border-bottom: 0; }
.origin__facts dt {
  flex: 0 0 auto;
  min-width: 120px;
  font-family: var(--ff-en);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--c-red);
  padding-top: 2px;
}
.origin__facts dd {
  margin: 0;
  font-family: var(--ff-jp);
  font-size: 13px;
  line-height: 1.7;
  color: var(--c-cream);
}
@media (max-width: 767px) {
  .origin__facts { margin-top: 16px; padding: 14px 16px; }
  .origin__facts dl > div { flex-direction: column; gap: 2px; padding: 10px 0; }
  .origin__facts dt { min-width: 0; }
}

/* ===== 共通：画像とテキストの並列レイアウト（PC/タブレットのみ）===== */
.split-media {
  margin: 32px 0 40px;
  display: block;
}
.split-media__figure {
  margin: 0 0 24px;
  padding: 0;
  position: relative;
}
.split-media__figure picture {
  display: block;
  overflow: hidden;
  border-radius: 4px;
  background:
    radial-gradient(circle at 30% 30%, var(--c-red-deep) 0%, transparent 60%),
    radial-gradient(circle at 70% 70%, var(--c-wood-deep) 0%, transparent 60%),
    var(--c-blue-ink);
  box-shadow: 0 20px 60px -20px rgba(0,0,0,0.7), 0 0 0 1px var(--c-line);
}
.split-media__figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  padding: 20px;
  filter: drop-shadow(0 14px 24px rgba(0,0,0,0.45));
}
.split-media__figure figcaption {
  margin-top: 12px;
  font-family: var(--ff-en);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--c-wood);
  text-align: right;
}
.split-media__body { display: block; }

/* タブレット・PC：画像左、テキスト右の並列 */
@media (min-width: 768px) {
  .split-media {
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: 40px;
    align-items: start;
    margin: 48px 0 56px;
  }
  .split-media__figure { margin: 0; }
  .split-media__figure picture {
    position: sticky;
    top: 100px;
  }
  /* 画像は控えめサイズに（強調しすぎない） */
  .split-media--menu .split-media__figure picture {
    aspect-ratio: 3 / 2;
  }
  .split-media--menu .split-media__figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 28px;
  }
  /* Originのみ：左カラムに画像＋食材一覧カードで左右の高さを揃える */
  .split-media--origin {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    align-items: start;
  }
  .split-media--origin .split-media__left {
    position: sticky;
    top: 100px;
    align-self: start;
  }
  .split-media--origin .split-media__figure picture {
    position: static;
    top: auto;
  }
}
@media (min-width: 1024px) {
  .split-media { gap: 56px; }
  .split-media--origin { grid-template-columns: minmax(0, 4fr) minmax(0, 6fr); gap: 64px; }
}

/* ===== Craft ===== */
.section--craft {
  background: var(--c-blue-ink);
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}
.craft__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
@media (min-width: 640px){
  .craft__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (min-width: 1024px){
  .craft__grid { grid-template-columns: repeat(4, 1fr); }
}
.craft__card {
  position: relative;
  background: rgba(245,237,224,0.04);
  border: 1px solid var(--c-line);
  padding: 32px 24px;
  border-radius: 2px;
  transition: transform .3s, background .3s, border-color .3s;
}
.craft__card:hover {
  transform: translateY(-4px);
  background: rgba(193,39,45,0.08);
  border-color: var(--c-red);
}
.craft__no {
  font-family: var(--ff-en);
  font-size: 14px;
  letter-spacing: .25em;
  color: var(--c-red);
  margin: 0 0 12px;
}
.craft__card h3 {
  font-family: var(--ff-jp);
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--c-cream);
}
.craft__card p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--c-text-mute);
  margin: 0;
}

/* ===== Ingredient panel (使用食材） — shared across TOP/menu/about ===== */
.ingredient-panel {
  margin: 48px 0 0;
  padding: 32px 28px;
  border: 1px solid var(--c-line);
  border-left: 3px solid var(--c-red);
  border-radius: 4px;
  background:
    linear-gradient(180deg, rgba(193,39,45,0.05) 0%, rgba(59,109,164,0.05) 100%),
    rgba(245,237,224,0.02);
}
.ingredient-panel__eyebrow {
  font-family: var(--ff-en);
  font-size: 11px;
  letter-spacing: .3em;
  color: var(--c-red);
  margin: 0 0 8px;
  text-transform: uppercase;
}
.ingredient-panel__title {
  font-family: var(--ff-jp);
  font-size: 22px;
  font-weight: 700;
  color: var(--c-cream);
  margin: 0 0 8px;
}
.ingredient-panel__lead {
  font-size: 14px;
  line-height: 1.9;
  color: var(--c-text-mute);
  margin: 0 0 24px;
}
.ingredient-panel__lead strong {
  color: var(--c-red);
  background: rgba(193,39,45,0.12);
  padding: 1px 4px;
  border-radius: 2px;
}
.ingredient-groups {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 720px){
  .ingredient-groups { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}
.ingredient-group {
  padding: 20px 18px;
  background: rgba(0,0,0,0.25);
  border: 1px solid var(--c-line);
  border-radius: 3px;
}
.ingredient-group__label {
  font-family: var(--ff-en);
  font-size: 10px;
  letter-spacing: .28em;
  color: var(--c-red);
  margin: 0 0 4px;
  text-transform: uppercase;
}
.ingredient-group__title {
  font-family: var(--ff-jp);
  font-size: 15px;
  font-weight: 700;
  color: var(--c-cream);
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(245,237,224,0.15);
}
.ingredient-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ingredient-list li {
  font-size: 13px;
  line-height: 1.6;
  color: var(--c-text);
  padding-left: 14px;
  position: relative;
}
.ingredient-list li::before {
  content: "•";
  color: var(--c-red);
  position: absolute;
  left: 0;
  font-weight: 700;
}
.ingredient-list li .ingredient-note {
  font-size: 11px;
  color: var(--c-text-mute);
  margin-left: 4px;
}
.ingredient-panel__footer {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(245,237,224,0.1);
  font-size: 12px;
  color: var(--c-text-mute);
  letter-spacing: .05em;
  text-align: center;
}
.ingredient-panel__footer strong {
  color: var(--c-cream);
  font-weight: 700;
}

/* ===== Menu ===== */
.section--menu {
  background:
    linear-gradient(180deg, var(--c-blue-ink) 0%, var(--c-bg) 100%);
}

/* Hero menu (なでしこ主役カード) */
.hero-menu {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-bottom: 64px;
  background: var(--c-bg-2);
  border: 1px solid var(--c-red);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
@media (min-width: 900px){
  .hero-menu { grid-template-columns: 5fr 6fr; }
}
.hero-menu__img {
  position: relative;
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(circle at 30% 30%, var(--c-red-deep) 0%, transparent 60%),
    radial-gradient(circle at 70% 70%, var(--c-wood-deep) 0%, transparent 60%),
    var(--c-blue-ink);
  display: flex; align-items: center; justify-content: center;
}
@media (min-width: 900px){
  .hero-menu__img { aspect-ratio: auto; height: 100%; min-height: 420px; }
}

/* Transparent nadeshiko image inside hero-menu__img */
.hero-menu__img--transparent picture,
.hero-menu__img--transparent picture img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 24px;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,0.45));
}
@media (min-width: 900px){
  .hero-menu__img--transparent picture,
  .hero-menu__img--transparent picture img { padding: 32px; }
}
.hero-menu__placeholder {
  font-family: var(--ff-en);
  letter-spacing: .25em;
  font-size: 16px;
  color: rgba(245,237,224,0.4);
}
.hero-menu__badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--c-red);
  color: #fff;
  font-family: var(--ff-jp);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  padding: 6px 12px;
  border-radius: 2px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}
.hero-menu__body {
  padding: clamp(28px, 5vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-menu__eyebrow {
  font-family: var(--ff-en);
  font-size: 13px;
  letter-spacing: .3em;
  color: var(--c-red);
  margin: 0 0 16px;
}
.hero-menu__name {
  font-family: var(--ff-jp);
  font-weight: 900;
  font-size: clamp(28px, 5vw, 40px);
  line-height: 1.3;
  letter-spacing: .04em;
  margin: 0 0 20px;
  color: var(--c-cream);
}
.hero-menu__desc {
  font-family: var(--ff-jp);
  font-size: 15px;
  line-height: 2;
  color: var(--c-text-mute);
  margin: 0 0 20px;
}
.hero-menu__desc strong {
  color: var(--c-cream);
  font-weight: 700;
  background: linear-gradient(transparent 65%, rgba(193,39,45,0.35) 65%);
  padding: 0 2px;
}
.hero-menu__note {
  font-size: 13px;
  color: var(--c-wood);
  margin: 0 0 24px;
  padding: 12px 14px;
  border-left: 3px solid var(--c-wood);
  background: rgba(184,134,91,0.08);
  line-height: 1.8;
}
.hero-menu__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--ff-en);
  color: var(--c-red);
  border-top: 1px solid var(--c-line);
  padding-top: 20px;
}
.hero-menu__yen { font-size: 22px; }
.hero-menu__val { font-size: 36px; font-weight: 700; }
.hero-menu__tax {
  font-size: 11px;
  color: var(--c-text-mute);
  letter-spacing: .15em;
  margin-left: auto;
}

.menu-sub-ttl {
  font-family: var(--ff-en);
  font-size: 14px;
  letter-spacing: .3em;
  color: var(--c-wood);
  margin: 40px 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--c-line);
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px;
}
.menu-sub-ttl:first-of-type { margin-top: 8px; }
.menu-sub-ttl__en {
  font-family: var(--ff-jp);
  font-size: 12px;
  letter-spacing: .15em;
  color: var(--c-text-mute);
}

/* ドットリーダー型のメニューリスト */
.menu-list {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
}
.menu-item {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 18px 4px;
  border-bottom: 1px dashed rgba(245,237,224,0.12);
}
.menu-item:last-child { border-bottom: none; }
.menu-item__head {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
  flex: 0 0 auto;
}
.menu-item__name {
  font-family: var(--ff-jp);
  font-size: 17px;
  font-weight: 700;
  margin: 0;
  color: var(--c-cream);
  letter-spacing: .04em;
}
@media (min-width: 640px) {
  .menu-item__name { font-size: 19px; }
}
.menu-item__tag {
  font-family: var(--ff-en);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
  background: rgba(245,237,224,0.08);
  color: var(--c-text-mute);
  border: 1px solid rgba(245,237,224,0.12);
  white-space: nowrap;
}
.menu-item__tag--limited {
  font-family: var(--ff-jp);
  letter-spacing: .15em;
  background: rgba(196, 50, 53, 0.15);
  color: var(--c-red);
  border-color: rgba(196, 50, 53, 0.4);
}
.menu-item__tag--sendan {
  font-family: var(--ff-jp);
  letter-spacing: .1em;
  background: rgba(59, 109, 164, 0.18);
  color: #8fb3df;
  border-color: rgba(59, 109, 164, 0.45);
}
.menu-item__dots {
  flex: 1 1 auto;
  min-width: 24px;
  height: 1px;
  background-image: radial-gradient(circle, rgba(245,237,224,0.3) 1px, transparent 1.5px);
  background-size: 6px 6px;
  background-repeat: repeat-x;
  background-position: 0 center;
  align-self: center;
}
.menu-item__price {
  font-family: var(--ff-en);
  font-size: 18px;
  color: var(--c-cream);
  margin: 0;
  flex: 0 0 auto;
  letter-spacing: .05em;
}
.menu-item__price span {
  font-size: 22px;
  margin-left: 2px;
}
.menu-item.is-soon .menu-item__name,
.menu-item.is-soon .menu-item__price {
  color: var(--c-text-mute);
}
.menu-item.is-limited .menu-item__name {
  color: var(--c-cream);
}

.menu-foot-note {
  margin: 28px 0 32px;
  font-size: 12px;
  line-height: 1.8;
  color: var(--c-text-mute);
}
.menu-foot-note a {
  color: var(--c-cream);
  border-bottom: 1px solid rgba(245,237,224,0.3);
}
.menu-foot-note a:hover {
  color: var(--c-red);
  border-bottom-color: var(--c-red);
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 40px;
}
@media (min-width: 640px){
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px){
  .menu-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; }
}
.menu-card {
  background: var(--c-bg-2);
  border: 1px solid var(--c-line);
  border-radius: 4px;
  overflow: hidden;
  transition: transform .3s, border-color .3s;
}
.menu-card:hover {
  transform: translateY(-6px);
  border-color: var(--c-red);
}
.menu-card__img {
  aspect-ratio: 4/3;
  background:
    repeating-linear-gradient(45deg, var(--c-blue-deep) 0 10px, var(--c-blue-ink) 10px 20px);
  display: flex; align-items: center; justify-content: center;
}
.menu-card__placeholder {
  font-family: var(--ff-en);
  letter-spacing: .2em;
  color: rgba(245,237,224,0.4);
  font-size: 14px;
}
.menu-card__body { padding: 24px; }
.menu-card__body h3 {
  font-family: var(--ff-jp);
  font-size: 20px;
  margin: 0 0 8px;
  color: var(--c-cream);
}
.menu-card__body > p {
  font-size: 13px;
  color: var(--c-text-mute);
  line-height: 1.8;
  margin: 0 0 16px;
}
.menu-card__price {
  font-family: var(--ff-en);
  font-size: 24px;
  color: var(--c-red);
  margin: 0;
}
.menu-card__price span { font-size: 28px; margin-left: 2px; }

/* ===== Reservation ===== */
.section--reservation {
  background: var(--c-bg);
  padding: clamp(60px, 10vw, 100px) 0;
}
.reservation__card {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(40px, 7vw, 72px) clamp(28px, 5vw, 56px);
  text-align: center;
  background:
    linear-gradient(135deg, var(--c-blue) 0%, var(--c-blue-deep) 100%);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.reservation__card::before {
  content: "予約";
  position: absolute;
  bottom: -30px; right: -10px;
  font-family: var(--ff-jp);
  font-weight: 900;
  font-size: clamp(100px, 20vw, 200px);
  line-height: 1;
  color: #fff;
  opacity: .06;
  pointer-events: none;
}
.reservation__title {
  font-family: var(--ff-jp);
  font-weight: 900;
  font-size: clamp(26px, 5vw, 42px);
  line-height: 1.4;
  letter-spacing: .04em;
  color: #fff;
  margin: 0 0 24px;
  position: relative;
}
.reservation__lead {
  font-family: var(--ff-jp);
  font-size: clamp(15px, 2vw, 17px);
  line-height: 2.1;
  color: var(--c-cream);
  margin: 0 0 16px;
  position: relative;
}
.reservation__lead strong {
  color: #fff;
  font-weight: 700;
  background: linear-gradient(transparent 65%, rgba(193,39,45,0.55) 65%);
  padding: 0 2px;
}
.reservation__small {
  font-size: 12px;
  color: var(--c-cream);
  opacity: .7;
  margin: 0;
  position: relative;
  letter-spacing: .08em;
}

/* ===== Access ===== */
.section--access {
  background: var(--c-bg);
  border-top: 1px solid var(--c-line);
}
.access__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 900px){
  .access__grid { grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
}
.access__info dl {
  margin: 0 0 24px;
  display: grid;
  grid-template-columns: 110px 1fr;
  row-gap: 14px;
  column-gap: 16px;
}
.access__info dt {
  font-family: var(--ff-jp);
  color: var(--c-wood);
  font-size: 14px;
  letter-spacing: .12em;
  padding-top: 2px;
}
.access__info dd {
  margin: 0;
  font-family: var(--ff-jp-sans);
  color: var(--c-cream);
  font-size: 15px;
}
.access__note {
  font-size: 13px;
  color: var(--c-text-mute);
  margin: 0 0 24px;
  padding: 14px 16px;
  border-left: 3px solid var(--c-red);
  background: rgba(193,39,45,0.06);
}
.access__cta { display: flex; gap: 12px; flex-wrap: wrap; }
.access__cta .btn { min-width: 0; flex: 1; padding: 14px 20px; font-size: 13px; }

.access__map {
  aspect-ratio: 4/3;
  background:
    radial-gradient(circle at 30% 40%, var(--c-blue) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, var(--c-wood-deep) 0%, transparent 50%),
    var(--c-blue-ink);
  border: 1px solid var(--c-line);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
}
.access__map-placeholder {
  font-family: var(--ff-en);
  letter-spacing: .3em;
  color: var(--c-cream);
  font-size: 14px;
}

/* ===== News ===== */
.section--news {
  background: var(--c-blue-ink);
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}
.news-list {
  margin: 0 0 36px;
  border-top: 1px solid var(--c-line);
}
.news-list li { border-bottom: 1px solid var(--c-line); }
.news-list a {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 16px;
  align-items: center;
  padding: 20px 0;
  transition: padding .2s, color .2s;
}
.news-list a:hover { padding-left: 8px; color: var(--c-red); }
.news-list time {
  font-family: var(--ff-en);
  font-size: 14px;
  letter-spacing: .1em;
  color: var(--c-wood);
}
.news-list__cat {
  font-size: 11px;
  letter-spacing: .15em;
  padding: 4px 10px;
  border: 1px solid var(--c-red);
  color: var(--c-red);
  border-radius: 2px;
}
.news-list__ttl {
  margin: 0;
  font-size: 15px;
  color: var(--c-cream);
  font-family: var(--ff-jp);
}
@media (max-width: 599px){
  .news-list a { grid-template-columns: auto auto; grid-template-rows: auto auto; }
  .news-list__ttl { grid-column: 1 / -1; }
}

/* ===== Event ===== */
.section--event {
  background:
    linear-gradient(180deg, var(--c-blue-ink) 0%, var(--c-bg) 100%);
}
.event__card {
  position: relative;
  padding: clamp(40px, 8vw, 80px);
  background:
    linear-gradient(135deg, var(--c-red) 0%, var(--c-red-deep) 100%);
  border-radius: 4px;
  overflow: hidden;
  text-align: center;
}
.event__card::before {
  content: "";
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(45deg, rgba(0,0,0,0.05) 0 20px, transparent 20px 40px);
  pointer-events: none;
}
.event__date {
  font-family: var(--ff-en);
  font-size: 14px;
  letter-spacing: .3em;
  color: var(--c-cream);
  margin: 0 0 20px;
  position: relative;
}
.event__title {
  font-family: var(--ff-jp);
  font-weight: 900;
  font-size: clamp(28px, 6vw, 56px);
  color: #fff;
  margin: 0 0 24px;
  line-height: 1.3;
  position: relative;
}
.event__lead {
  font-family: var(--ff-jp);
  color: var(--c-cream);
  margin: 0 0 32px;
  position: relative;
}
.event__card .btn {
  position: relative;
  background: #fff;
  color: var(--c-red-deep);
  border-color: #fff;
}
.event__card .btn:hover {
  background: var(--c-bg);
  color: #fff;
  border-color: var(--c-bg);
}

/* ===== External ===== */
.section--external {
  background: var(--c-bg);
}
.external__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 720px){
  .external__grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}
.external__card {
  position: relative;
  padding: 36px 32px;
  background: var(--c-bg-2);
  border: 1px solid var(--c-line);
  border-radius: 4px;
  transition: transform .3s, border-color .3s, background .3s;
  overflow: hidden;
}
.external__card::after {
  content: "";
  position: absolute;
  inset: auto -40px -40px auto;
  width: 160px; height: 160px;
  background: radial-gradient(circle, var(--c-red) 0%, transparent 70%);
  opacity: .15;
  transition: opacity .3s;
}
.external__card:hover {
  transform: translateY(-4px);
  border-color: var(--c-red);
}
.external__card:hover::after { opacity: .35; }
.external__card--alt::after {
  background: radial-gradient(circle, var(--c-wood) 0%, transparent 70%);
}
.external__card--alt:hover { border-color: var(--c-wood); }

.external__label {
  font-family: var(--ff-en);
  font-size: 14px;
  letter-spacing: .25em;
  color: var(--c-red);
  margin: 0 0 8px;
}
.external__card--alt .external__label { color: var(--c-wood); }
.external__handle {
  font-family: var(--ff-jp);
  font-size: 28px;
  color: var(--c-cream);
  margin: 0 0 12px;
  font-weight: 700;
}
.external__desc {
  font-size: 14px;
  color: var(--c-text-mute);
  margin: 0;
}
.external__arrow {
  position: absolute;
  top: 32px; right: 32px;
  font-family: var(--ff-en);
  font-size: 28px;
  color: var(--c-cream);
  transition: transform .3s;
}
.external__card:hover .external__arrow { transform: translate(4px, -4px); }

/* ===== Footer ===== */
.site-footer {
  background: #06090d;
  padding: 80px 0 32px;
  border-top: 1px solid var(--c-line);
}
.site-footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  text-align: center;
}
.site-footer__brand {
  font-family: var(--ff-en);
  font-size: 36px;
  color: var(--c-cream);
  letter-spacing: .06em;
  margin: 0 0 40px;
}
.site-footer__brand em { font-style: normal; color: var(--c-red); }

.site-footer__nav ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 28px;
  margin-bottom: 32px;
}
.site-footer__nav a {
  font-size: 13px;
  color: var(--c-text-mute);
  transition: color .2s;
}
.site-footer__nav a:hover { color: var(--c-red); }

.site-footer__intl {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.site-footer__intl a {
  font-family: var(--ff-en);
  font-size: 12px;
  letter-spacing: .15em;
  padding: 8px 14px;
  border: 1px solid var(--c-line);
  border-radius: 999px;
  color: var(--c-cream);
  transition: background .2s, border-color .2s;
}
.site-footer__intl a:hover { background: var(--c-blue); border-color: var(--c-blue); }

.site-footer__sns {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
}
.site-footer__sns a {
  font-size: 14px;
  color: var(--c-cream);
  position: relative;
  padding-bottom: 4px;
}
.site-footer__sns a::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: var(--c-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s;
}
.site-footer__sns a:hover::after { transform: scaleX(1); }

.site-footer__copyright {
  display: block;
  font-family: var(--ff-en);
  font-size: 12px;
  letter-spacing: .2em;
  color: var(--c-text-mute);
}

/* ===== Page top ===== */
.page-top {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 90;
  width: 48px; height: 48px;
  background: var(--c-red);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center; justify-content: center;
  font-size: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, transform .2s, background .2s;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}
.page-top.is-visible { opacity: 1; pointer-events: auto; }
.page-top:hover { background: var(--c-red-deep); transform: translateY(-2px); }

/* ===== Reveal on scroll ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .9s ease, transform .9s cubic-bezier(.22,.61,.36,1);
}
.reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Reduced motion ===== */
@media (prefers-reduced-motion: reduce){
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .hero__video { display: none; }
  .hero { background: url(/videos/hero-poster.jpg) center/cover no-repeat; }
}

/* ==================================================
   下層ページ共通スタイル
   ================================================== */

/* ===== ページ遷移フェード（SPA チック） ===== */
.page-transition {
  animation: pageEnter .6s cubic-bezier(.22,.61,.36,1) both;
}
@keyframes pageEnter {
  0%   { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}
.page-transition-out {
  animation: pageLeave .35s cubic-bezier(.55,.05,.68,.19) both;
}
@keyframes pageLeave {
  0%   { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-16px); }
}

/* 遷移オーバーレイ（フェードカーテン） */
.page-curtain {
  position: fixed; inset: 0;
  background: var(--c-bg);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
.page-curtain.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* ===== サブページ ヒーロー ===== */
.subpage-hero {
  position: relative;
  min-height: 42vh;
  padding: 140px 20px 60px;
  display: flex; flex-direction: column; justify-content: flex-end;
  background: linear-gradient(180deg, var(--c-blue-ink) 0%, var(--c-bg) 100%);
  border-bottom: 1px solid var(--c-line);
  overflow: hidden;
}
.subpage-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(59,109,164,0.14), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(196,50,53,0.10), transparent 55%);
  pointer-events: none;
}
.subpage-hero__inner {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.subpage-hero__eyebrow {
  font-family: var(--ff-en);
  font-size: 13px;
  letter-spacing: .35em;
  color: var(--c-wood);
  margin: 0 0 20px;
  text-transform: uppercase;
}
.subpage-hero__title {
  font-family: var(--ff-jp);
  font-weight: 900;
  font-size: clamp(30px, 6vw, 56px);
  line-height: 1.3;
  margin: 0 0 20px;
  color: var(--c-cream);
  letter-spacing: .02em;
}
.subpage-hero__title em {
  color: var(--c-red);
  font-style: normal;
}
.subpage-hero__lead {
  font-size: clamp(14px, 1.6vw, 17px);
  line-height: 1.9;
  color: var(--c-text-mute);
  max-width: 640px;
  margin: 0;
}

/* 巨大な英語背景タイトル */
.subpage-hero__bgword {
  position: absolute;
  right: -20px;
  bottom: -30px;
  font-family: var(--ff-en);
  font-size: clamp(80px, 18vw, 220px);
  color: rgba(245,237,224,0.03);
  letter-spacing: .05em;
  line-height: 1;
  pointer-events: none;
  z-index: 0;
  white-space: nowrap;
}

/* ===== パンくず ===== */
.breadcrumb {
  padding: 20px 20px 0;
  max-width: 1200px;
  margin: 0 auto;
  font-family: var(--ff-en);
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--c-text-mute);
  text-transform: uppercase;
}
.breadcrumb ol {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 8px 12px;
  align-items: center;
}
.breadcrumb li { display: flex; align-items: center; gap: 12px; }
.breadcrumb li + li::before {
  content: "/";
  color: var(--c-line);
  margin-right: 4px;
}
.breadcrumb a {
  color: var(--c-text-mute);
  transition: color .2s;
}
.breadcrumb a:hover { color: var(--c-cream); }
.breadcrumb [aria-current="page"] { color: var(--c-cream); }

/* ===== サブページ 本文コンテナ ===== */
.subpage-body {
  padding: 60px 20px 100px;
}
.subpage-body__inner {
  max-width: 860px;
  margin: 0 auto;
}
.subpage-body__inner--wide { max-width: 1200px; }

.prose {
  color: var(--c-text);
  font-size: 16px;
  line-height: 2;
}
.prose p { margin: 0 0 1.4em; }
.prose h2 {
  font-family: var(--ff-jp);
  font-weight: 900;
  font-size: clamp(22px, 3vw, 30px);
  color: var(--c-cream);
  margin: 3em 0 1em;
  padding-bottom: .5em;
  border-bottom: 1px solid var(--c-line);
  letter-spacing: .04em;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-family: var(--ff-jp);
  font-weight: 700;
  font-size: clamp(18px, 2.4vw, 22px);
  color: var(--c-cream);
  margin: 2.2em 0 .8em;
  letter-spacing: .04em;
}
.prose ul, .prose ol { padding-left: 1.4em; margin: 0 0 1.4em; }
.prose li { margin-bottom: .5em; }
.prose strong {
  background: linear-gradient(180deg, transparent 55%, rgba(196,50,53,0.35) 55%);
  padding: 0 2px;
  color: var(--c-cream);
  font-weight: 700;
}
.prose blockquote {
  margin: 1.6em 0;
  padding: 20px 24px;
  border-left: 3px solid var(--c-red);
  background: rgba(59,109,164,0.06);
  color: var(--c-cream);
  font-family: var(--ff-jp);
  font-style: normal;
  border-radius: 0 4px 4px 0;
}
.prose a {
  color: var(--c-cream);
  border-bottom: 1px solid rgba(196,50,53,0.7);
  transition: color .2s, border-color .2s;
}
.prose a:hover { color: var(--c-red); border-bottom-color: var(--c-red); }

/* ===== タイムライン（history） ===== */
.timeline {
  position: relative;
  list-style: none;
  padding: 0 0 0 32px;
  margin: 40px 0;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 8px; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--c-blue-ink), var(--c-red) 30%, var(--c-wood) 80%, transparent);
}
.timeline__item {
  position: relative;
  margin-bottom: 40px;
  padding-left: 8px;
}
.timeline__item::before {
  content: "";
  position: absolute;
  left: -32px; top: 8px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--c-bg);
  border: 2px solid var(--c-red);
  box-shadow: 0 0 0 4px rgba(196,50,53,0.15);
}
.timeline__year {
  font-family: var(--ff-en);
  font-size: 22px;
  letter-spacing: .1em;
  color: var(--c-cream);
  margin: 0 0 4px;
}
.timeline__month {
  font-family: var(--ff-en);
  font-size: 12px;
  letter-spacing: .2em;
  color: var(--c-wood);
  margin: 0 0 12px;
}
.timeline__title {
  font-family: var(--ff-jp);
  font-weight: 700;
  font-size: 18px;
  color: var(--c-cream);
  margin: 0 0 8px;
}
.timeline__desc {
  color: var(--c-text);
  line-height: 1.9;
  margin: 0;
}

/* ===== ブログカードグリッド ===== */
.blog-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
  margin: 32px 0;
}
@media (min-width: 700px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: 1fr 1fr 1fr; } }

.blog-card {
  display: flex; flex-direction: column;
  background: var(--c-blue-ink);
  border: 1px solid var(--c-line);
  border-radius: 4px;
  overflow: hidden;
  transition: transform .3s, border-color .3s;
  color: inherit;
}
.blog-card:hover {
  transform: translateY(-4px);
  border-color: var(--c-red);
}
.blog-card__thumb {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--c-blue-ink), var(--c-wood-dark));
  position: relative;
  overflow: hidden;
}
.blog-card__thumb--special {
  background: linear-gradient(135deg, #166534, #15803d);
}
.blog-card__thumb--special::before {
  color: rgba(255, 255, 255, 0.2);
}
.blog-card__thumb::before {
  content: attr(data-mark);
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-en);
  font-size: 44px;
  color: rgba(245,237,224,0.15);
  letter-spacing: .2em;
}
.blog-card__body { padding: 20px 22px 24px; }
.blog-card__meta {
  font-family: var(--ff-en);
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--c-wood);
  margin: 0 0 12px;
}
.blog-card__ttl {
  font-family: var(--ff-jp);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.55;
  color: var(--c-cream);
  margin: 0 0 10px;
}
.blog-card__excerpt {
  font-size: 13px;
  line-height: 1.75;
  color: var(--c-text-mute);
  margin: 0;
}

/* ===== メニュー詳細（/menu/） ===== */
.menu-detail-section {
  margin-bottom: 60px;
}
.menu-detail-section__title {
  font-family: var(--ff-jp);
  font-weight: 900;
  font-size: clamp(22px, 3vw, 28px);
  color: var(--c-cream);
  margin: 0 0 8px;
  letter-spacing: .04em;
}
.menu-detail-section__sub {
  font-family: var(--ff-en);
  font-size: 12px;
  letter-spacing: .3em;
  color: var(--c-wood);
  text-transform: uppercase;
  margin: 0 0 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--c-line);
}

/* ===== アクセス詳細 ===== */
.access-detail {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
  margin: 40px 0;
}
@media (min-width: 900px) { .access-detail { grid-template-columns: 5fr 6fr; align-items: start; } }
.access-detail__map {
  aspect-ratio: 4 / 3;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--c-line);
  background: var(--c-blue-ink);
}
.access-detail__map iframe { width: 100%; height: 100%; border: 0; display: block; }
.access-detail__info dl {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px 20px;
  margin: 0;
  padding: 20px 0;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}
.access-detail__info dt {
  font-family: var(--ff-en);
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--c-wood);
  padding-top: 4px;
  text-transform: uppercase;
}
.access-detail__info dd {
  margin: 0;
  color: var(--c-cream);
  line-height: 1.8;
}

/* ===== お問い合わせフォーム ===== */
.contact-form {
  display: flex; flex-direction: column;
  gap: 24px;
  margin: 40px 0;
}
.contact-form label {
  display: flex; flex-direction: column;
  gap: 8px;
  font-family: var(--ff-jp);
  font-size: 13px;
  letter-spacing: .1em;
  color: var(--c-cream);
}
.contact-form label .req {
  display: inline-block;
  font-size: 10px;
  color: var(--c-red);
  margin-left: 6px;
  letter-spacing: .2em;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: inherit;
  font-size: 15px;
  color: var(--c-cream);
  background: var(--c-blue-ink);
  border: 1px solid var(--c-line);
  border-radius: 4px;
  padding: 12px 14px;
  transition: border-color .2s, box-shadow .2s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--c-red);
  box-shadow: 0 0 0 3px rgba(196,50,53,0.15);
}
.contact-form textarea { min-height: 160px; resize: vertical; }
.contact-form__submit {
  align-self: flex-start;
  padding: 14px 40px;
  font-family: var(--ff-en);
  font-size: 14px;
  letter-spacing: .3em;
  background: var(--c-red);
  color: var(--c-cream);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-transform: uppercase;
  transition: background .2s, transform .2s;
}
.contact-form__submit:hover { background: var(--c-red-deep); transform: translateY(-1px); }
.contact-form__note {
  font-size: 12px;
  color: var(--c-text-mute);
  line-height: 1.8;
  margin: 0;
}

/* ===== 言語切替タブ ===== */
.lang-switcher {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin: 0 0 40px;
  padding: 8px;
  background: var(--c-blue-ink);
  border-radius: 4px;
  border: 1px solid var(--c-line);
  width: fit-content;
}
.lang-switcher a {
  padding: 8px 18px;
  font-family: var(--ff-en);
  font-size: 12px;
  letter-spacing: .2em;
  color: var(--c-text-mute);
  border-radius: 3px;
  transition: background .2s, color .2s;
  text-transform: uppercase;
}
.lang-switcher a:hover { color: var(--c-cream); }
.lang-switcher a.is-active {
  background: var(--c-red);
  color: var(--c-cream);
}

/* ===== 大きい国旗風アイコンの言語ハブ ===== */
.lang-hub-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  margin: 48px 0;
}
@media (min-width: 640px) { .lang-hub-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .lang-hub-grid { grid-template-columns: repeat(4, 1fr); } }
.lang-hub-card {
  display: flex; flex-direction: column;
  padding: 32px 28px;
  background: var(--c-blue-ink);
  border: 1px solid var(--c-line);
  border-radius: 4px;
  color: inherit;
  transition: transform .3s, border-color .3s, background .3s;
}
.lang-hub-card:hover {
  transform: translateY(-4px);
  border-color: var(--c-red);
  background: rgba(196,50,53,0.05);
}
.lang-hub-card__code {
  font-family: var(--ff-en);
  font-size: 40px;
  letter-spacing: .1em;
  color: var(--c-red);
  margin: 0 0 12px;
  line-height: 1;
}
.lang-hub-card__name {
  font-family: var(--ff-jp);
  font-weight: 700;
  font-size: 18px;
  color: var(--c-cream);
  margin: 0 0 4px;
}
.lang-hub-card__native {
  font-size: 22px;
  color: var(--c-cream);
  margin: 0 0 16px;
  font-family: var(--ff-jp);
  font-weight: 500;
}
.lang-hub-card__arrow {
  margin-top: auto;
  font-family: var(--ff-en);
  font-size: 12px;
  letter-spacing: .2em;
  color: var(--c-wood);
}

/* ===== メディア掲載カード（ブログ記事内） ===== */
.media-mention {
  margin: 40px 0;
  padding: 28px 26px;
  background: linear-gradient(135deg, rgba(59, 109, 164, 0.10), rgba(120, 89, 58, 0.10));
  border: 1px solid var(--c-line);
  border-left: 3px solid var(--c-red);
  border-radius: 4px;
}
.media-mention__label {
  font-family: var(--ff-en);
  font-size: 10.5px;
  letter-spacing: .3em;
  color: var(--c-red);
  text-transform: uppercase;
  margin: 0 0 10px;
  font-weight: 700;
}
.media-mention__title {
  font-family: var(--ff-ja);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.6;
  margin: 0 0 8px;
  color: var(--c-cream);
}
.media-mention__meta {
  font-size: 12.5px;
  color: var(--c-text-mute);
  margin: 0 0 20px;
}
.media-mention .btn { display: inline-block; }
@media (max-width: 600px) {
  .media-mention { padding: 22px 20px; margin: 32px 0; }
  .media-mention__title { font-size: 15.5px; }
}

/* ===== 次のページへの誘導カード ===== */
.next-cta {
  margin: 80px 0 0;
  padding: 40px 32px;
  background: linear-gradient(135deg, var(--c-blue-ink), rgba(196,50,53,0.15));
  border: 1px solid var(--c-line);
  border-radius: 4px;
  text-align: center;
}
.next-cta__eyebrow {
  font-family: var(--ff-en);
  font-size: 11px;
  letter-spacing: .3em;
  color: var(--c-wood);
  margin: 0 0 12px;
  text-transform: uppercase;
}
.next-cta__ttl {
  font-family: var(--ff-jp);
  font-weight: 700;
  font-size: clamp(20px, 3vw, 26px);
  color: var(--c-cream);
  margin: 0 0 24px;
}
.next-cta .btn { display: inline-block; }

/* ===== 多言語ページ用スタイル ===== */
.lang-section {
  margin: 0 0 90px;
  padding: 0;
}
.lang-section:last-child { margin-bottom: 0; }

.lang-section__eyebrow {
  font-family: var(--ff-en);
  font-size: 11px;
  letter-spacing: .3em;
  color: var(--c-wood);
  text-transform: uppercase;
  margin: 0 0 12px;
}
.lang-section__title {
  font-family: var(--ff-jp);
  font-weight: 700;
  font-size: clamp(24px, 3.4vw, 34px);
  color: var(--c-cream);
  line-height: 1.35;
  margin: 0 0 28px;
  letter-spacing: .02em;
}

/* Craft 3-column grid */
.craft-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 720px) {
  .craft-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}
.craft-card {
  padding: 28px 24px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--c-line);
  border-radius: 6px;
  transition: transform .3s ease, border-color .3s ease;
}
.craft-card:hover {
  transform: translateY(-4px);
  border-color: var(--c-wood);
}
.craft-card h3 {
  font-family: var(--ff-jp);
  font-weight: 700;
  font-size: 18px;
  color: var(--c-cream);
  margin: 0 0 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--c-wood);
  display: inline-block;
}
.craft-card p {
  color: var(--c-cream);
  opacity: .82;
  font-size: 14px;
  line-height: 1.75;
  margin: 0;
}

/* Info DL (Address / Hours etc.) */
.info-dl {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 0;
  border-top: 1px solid var(--c-line);
}
.info-dl dt,
.info-dl dd {
  padding: 14px 0;
  border-bottom: 1px solid var(--c-line);
  margin: 0;
}
.info-dl dt {
  font-family: var(--ff-en);
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--c-wood);
  text-transform: uppercase;
}
.info-dl dd {
  color: var(--c-cream);
  font-size: 15px;
  line-height: 1.7;
}
@media (min-width: 640px) {
  .info-dl {
    grid-template-columns: 200px 1fr;
  }
  .info-dl dt {
    padding-top: 18px;
    border-right: none;
  }
}

/* Lang hub cards */
.lang-hub-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 32px 28px;
  min-height: 180px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--c-line);
  border-radius: 8px;
  text-decoration: none;
  color: var(--c-cream);
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}
.lang-hub-card:hover {
  transform: translateY(-4px);
  border-color: var(--c-wood);
  background: rgba(255,255,255,0.06);
}
.lang-hub-card__flag {
  font-size: 28px;
  line-height: 1;
  margin-bottom: 12px;
}
.lang-hub-card__name {
  font-family: var(--ff-jp);
  font-weight: 700;
  font-size: 22px;
  color: var(--c-cream);
  display: block;
  margin-bottom: 8px;
}
.lang-hub-card__note {
  font-size: 12px;
  color: var(--c-wood);
  opacity: .9;
}

/* Language page container */
.lang-page {
  max-width: 900px;
  margin: 0 auto;
}

/* ===== フッター 住所行 ===== */
.site-footer__address {
  margin: 8px 0 20px;
  font-size: 12px;
  line-height: 1.7;
  color: var(--c-cream);
  opacity: .72;
  letter-spacing: .02em;
}
.site-footer__address a {
  color: var(--c-cream);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ===== index の access__map iframe対応 ===== */
.access__map { position: relative; overflow: hidden; }
.access__map iframe { display: block; width: 100%; height: 100%; min-height: 320px; border: 0; }
