/* ============================================
   CLUB LEGASEE — Ginza
   ============================================ */
:root {
  --black: #0a0a0c;
  --black-soft: #101014;
  --black-panel: #16161c;
  --gold: #c9a961;
  --gold-light: #e3cd94;
  --gold-dim: rgba(201, 169, 97, 0.4);
  --white: #f2efe8;
  --gray: #9a968c;
  --serif-en: 'Cormorant Garamond', serif;
  --serif-ja: 'Shippori Mincho', serif;
  --sans-en: 'Lato', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--black) url('assets/marble.jpg') repeat;
  background-size: 760px auto;
  color: var(--white);
  font-family: var(--serif-ja);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.08em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
em { font-style: normal; color: var(--gold-light); }

/* ---------- Loader ---------- */
.loader {
  position: fixed; inset: 0; z-index: 100;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 1s ease 0.2s, visibility 1s ease 0.2s;
}
.loader.is-done { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-logo {
  font-family: var(--serif-en);
  font-size: 1.6rem; letter-spacing: 0.5em; text-indent: 0.5em;
  color: var(--gold);
  display: block;
  animation: loaderFade 1.8s ease both;
}
.loader-line {
  display: block; height: 1px; margin-top: 14px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: loaderLine 1.6s ease both 0.3s;
}
@keyframes loaderFade { from { opacity: 0; letter-spacing: 0.8em; } to { opacity: 1; letter-spacing: 0.5em; } }
@keyframes loaderLine { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* ---------- Header ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 40px;
  transition: background 0.5s ease, padding 0.5s ease;
}
.header.is-scrolled {
  background: rgba(10, 10, 12, 0.92);
  backdrop-filter: blur(8px);
  padding: 14px 40px;
  border-bottom: 1px solid rgba(201, 169, 97, 0.15);
}
.header-logo { display: flex; align-items: center; }
.header-logo img { height: 34px; width: auto; display: block; }
.gnav ul { display: flex; gap: 36px; }
.gnav a {
  font-family: var(--serif-en);
  font-size: 0.9rem; letter-spacing: 0.2em;
  color: var(--white);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s;
}
.gnav a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s ease;
}
.gnav a:hover { color: var(--gold-light); }
.gnav a:hover::after { transform: scaleX(1); transform-origin: left; }

.menu-btn {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 44px; height: 44px;
  position: relative; z-index: 60;
}
.menu-btn span {
  display: block; width: 26px; height: 1px;
  background: var(--gold-light);
  margin: 5px auto;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.menu-btn.is-open span:nth-child(1) { transform: translateY(3px) rotate(45deg); }
.menu-btn.is-open span:nth-child(2) { transform: translateY(-3px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 55;
  background: rgba(10, 10, 12, 0.97);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu ul { text-align: center; }
.mobile-menu li + li { margin-top: 30px; }
.mobile-menu a {
  font-family: var(--serif-en);
  font-size: 1.4rem; letter-spacing: 0.3em;
  color: var(--white);
  display: block;
}
.mobile-menu a small {
  display: block;
  font-family: var(--serif-ja);
  font-size: 0.7rem; letter-spacing: 0.2em;
  color: var(--gray);
  margin-top: 4px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 100svh; min-height: 620px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('assets/hero.jpg') center 65% / cover no-repeat;
  animation: heroZoom 14s ease-out both;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 75% 60% at 50% 46%, rgba(10, 10, 12, 0.42), rgba(10, 10, 12, 0.72) 78%),
    linear-gradient(180deg, rgba(10, 10, 12, 0.6) 0%, rgba(10, 10, 12, 0.32) 45%, rgba(10, 10, 12, 0.88) 100%);
}
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero-ornament {
  position: absolute; width: 180px; height: 180px;
  pointer-events: none;
}
.hero-ornament--tl {
  top: 90px; left: 40px;
  border-top: 1px solid var(--gold-dim);
  border-left: 1px solid var(--gold-dim);
}
.hero-ornament--br {
  bottom: 90px; right: 40px;
  border-bottom: 1px solid var(--gold-dim);
  border-right: 1px solid var(--gold-dim);
}
.hero-content { text-align: center; position: relative; z-index: 1; padding: 0 20px; }
.hero-sub {
  font-family: var(--sans-en);
  font-weight: 300;
  font-size: 0.75rem; letter-spacing: 0.7em; text-indent: 0.7em;
  color: var(--gold);
  margin-bottom: 28px;
}
.hero-logo { line-height: 0; }
.hero-logo-img {
  width: clamp(280px, 44vw, 560px);
  height: auto;
  filter: drop-shadow(0 4px 30px rgba(0, 0, 0, 0.6));
}
.hero-copy {
  margin-top: 36px;
  font-size: clamp(0.85rem, 1.6vw, 1.05rem);
  letter-spacing: 0.35em; text-indent: 0.35em;
  color: var(--white);
  opacity: 0.9;
}
.fade-item { opacity: 0; transform: translateY(16px); transition: opacity 1.4s ease, transform 1.4s ease; }
body.is-loaded .fade-item { opacity: 1; transform: none; }
body.is-loaded .fade-item:nth-child(1) { transition-delay: 0.9s; }
body.is-loaded .fade-item:nth-child(2) { transition-delay: 1.2s; }
body.is-loaded .fade-item:nth-child(3) { transition-delay: 1.6s; }

.hero-open {
  margin-top: 40px;
  display: inline-flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 18px 54px;
  border: 1px solid var(--gold-dim);
  background: rgba(10, 10, 12, 0.35);
}
.hero-open-en {
  font-family: var(--serif-en);
  font-size: 0.8rem; letter-spacing: 0.5em; text-indent: 0.5em;
  color: var(--gold);
  text-transform: uppercase;
}
.hero-open-date {
  font-family: var(--serif-en);
  font-size: 1.7rem; letter-spacing: 0.18em;
  color: var(--gold-light);
  line-height: 1.2;
}

.hero-scroll {
  position: absolute; bottom: 0; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero-scroll span:first-child {
  font-family: var(--sans-en);
  font-size: 0.65rem; letter-spacing: 0.4em;
  color: var(--gray);
  writing-mode: vertical-rl;
}
.hero-scroll-line {
  width: 1px; height: 70px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollLine 2.2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollLine {
  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; }
}

/* ---------- Sections (common) ---------- */
.section { position: relative; padding: 130px 40px; }
.section-inner { max-width: 1080px; margin: 0 auto; }
.section-head { margin-bottom: 70px; }
.section-head--center { text-align: center; }
.section-en {
  font-family: var(--serif-en);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.25em;
  color: var(--gold);
  line-height: 1;
}
.section-ja {
  font-size: 0.8rem; font-weight: 400;
  letter-spacing: 0.3em;
  color: var(--gray);
  margin-top: 16px;
  display: flex; align-items: center; gap: 16px;
}
.section-ja::before {
  content: ''; width: 46px; height: 1px;
  background: var(--gold-dim);
}
.section-head--center .section-ja { justify-content: center; }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 1.1s ease, transform 1.1s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Photo ---------- */
.photo {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(201, 169, 97, 0.25);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
}

/* ---------- News ---------- */
.news {
  padding: 34px 40px;
  background: rgba(13, 13, 17, 0.85);
  border-bottom: 1px solid rgba(201, 169, 97, 0.15);
}
.news-row { display: flex; align-items: baseline; gap: 40px; }
.news-title {
  font-family: var(--serif-en);
  font-size: 1.1rem; letter-spacing: 0.3em;
  color: var(--gold);
  flex-shrink: 0;
}
.news-list li {
  display: flex; align-items: baseline; gap: 24px;
  font-size: 0.85rem;
}
.news-list time {
  font-family: var(--serif-en);
  color: var(--gold-light);
  letter-spacing: 0.1em;
  flex-shrink: 0;
}
.news-list span { color: #d8d5cc; }

/* ---------- Concept ---------- */
.concept {
  background:
    radial-gradient(ellipse 60% 45% at 85% 10%, rgba(201, 169, 97, 0.06), transparent 65%),
    rgba(10, 10, 12, 0.5);
}
.concept-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 80px;
}
.concept-copy {
  font-size: clamp(1.3rem, 2.6vw, 1.75rem);
  line-height: 2.2;
  letter-spacing: 0.12em;
  font-weight: 500;
}
.concept-text p + p { margin-top: 1.6em; }
.concept-text { color: #cfccc3; font-size: 0.92rem; }
.concept-visual { max-width: 860px; margin: 0 auto; width: 100%; }

/* ---------- Interior ---------- */
.interior { background: rgba(10, 10, 12, 0.3); }
.interior-lead {
  color: #cfccc3;
  font-size: 0.92rem;
  margin-bottom: 56px;
}
.interior-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.interior-grid figure { margin: 0; overflow: hidden; }
.interior-grid .photo {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 1.2s ease;
}
.interior-grid figure:hover .photo { transform: scale(1.04); }

/* ---------- System ---------- */
.system { background: rgba(13, 13, 17, 0.78); }
.system-table { max-width: 720px; margin: 0 auto; }
.system-table dl { border-top: 1px solid rgba(201, 169, 97, 0.25); }
.system-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 26px 10px;
  border-bottom: 1px solid rgba(201, 169, 97, 0.25);
}
.system-row dt { font-size: 0.95rem; letter-spacing: 0.15em; color: var(--white); }
.system-row dd {
  font-family: var(--serif-en);
  font-size: 1.35rem; letter-spacing: 0.08em;
  color: var(--gold-light);
}
.system-row dd span {
  font-family: var(--serif-ja);
  font-size: 0.72rem; color: var(--gray);
  margin-left: 6px;
}
.system-note {
  margin-top: 28px;
  font-size: 0.75rem; line-height: 2.1;
  color: var(--gray);
}

/* ---------- Drink Menu ---------- */
.menu { background: rgba(10, 10, 12, 0.55); }
.menu-lead {
  color: #cfccc3;
  font-size: 0.92rem;
  margin-bottom: 60px;
}
.menu-reco { margin-bottom: 70px; }
.menu-reco-title {
  font-family: var(--serif-en);
  font-size: 1.05rem; letter-spacing: 0.4em;
  color: var(--gold);
  margin-bottom: 28px;
}
.menu-reco-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 18px;
}
.reco-card {
  display: flex; flex-direction: column; gap: 8px;
  padding: 26px 20px 22px;
  border: 1px solid rgba(201, 169, 97, 0.45);
  background:
    linear-gradient(160deg, rgba(201, 169, 97, 0.1), transparent 45%),
    rgba(16, 16, 20, 0.8);
  text-align: center;
}
.reco-cat {
  font-family: var(--sans-en);
  font-size: 0.6rem; letter-spacing: 0.3em;
  color: var(--gray);
  text-transform: uppercase;
}
.reco-name {
  font-size: 0.95rem; font-weight: 500;
  color: var(--white);
  line-height: 1.6;
  min-height: 3.2em;
  display: flex; align-items: center; justify-content: center;
}
.reco-price {
  font-family: var(--serif-en);
  font-size: 1.25rem; letter-spacing: 0.08em;
  color: var(--gold-light);
}
.menu-full { max-width: 860px; margin: 0 auto; }
.menu-cat {
  border-bottom: 1px solid rgba(201, 169, 97, 0.25);
}
.menu-cat:first-of-type { border-top: 1px solid rgba(201, 169, 97, 0.25); }
.menu-cat summary {
  list-style: none;
  cursor: pointer;
  display: flex; align-items: baseline; gap: 18px;
  padding: 24px 34px 24px 10px;
  font-family: var(--serif-en);
  font-size: 1.25rem; letter-spacing: 0.15em;
  color: var(--gold);
  position: relative;
  transition: color 0.3s;
}
.menu-cat summary::-webkit-details-marker { display: none; }
.menu-cat summary:hover { color: var(--gold-light); }
.menu-cat summary small {
  font-family: var(--serif-ja);
  font-size: 0.72rem; letter-spacing: 0.2em;
  color: var(--gray);
}
.menu-cat summary::after {
  content: ''; position: absolute; right: 12px; top: 50%;
  width: 9px; height: 9px;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.3s;
}
.menu-cat[open] summary::after { transform: translateY(-30%) rotate(225deg); }
.menu-cat dl { padding: 0 10px 26px; }
.menu-cat dl div {
  display: flex; justify-content: space-between; align-items: baseline; gap: 20px;
  padding: 9px 0;
}
.menu-cat dt { font-size: 0.88rem; color: #d8d5cc; }
.menu-cat dt small { display: block; font-size: 0.72rem; color: var(--gray); }
.menu-cat dd {
  font-family: var(--serif-en);
  font-size: 1.02rem; letter-spacing: 0.06em;
  color: var(--gold-light);
  flex-shrink: 0;
}
.menu-sub {
  padding: 4px 10px 8px;
  font-family: var(--serif-en);
  font-size: 0.85rem; letter-spacing: 0.35em;
  color: var(--gray);
  text-transform: uppercase;
}
.menu-full .system-note { margin-top: 30px; }

/* ---------- Information ---------- */
.info-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 60px;
  align-items: start;
}
.info-table dl { border-top: 1px solid rgba(201, 169, 97, 0.25); }
.info-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 20px;
  padding: 24px 10px;
  border-bottom: 1px solid rgba(201, 169, 97, 0.25);
}
.info-row dt { color: var(--gold); font-size: 0.85rem; letter-spacing: 0.2em; }
.info-row dd { font-size: 0.92rem; color: #d8d5cc; }
.info-row dd a { transition: color 0.3s; }
.info-row dd a:hover { color: var(--gold-light); }

/* ---------- Access ---------- */
.access { background: rgba(13, 13, 17, 0.78); }
.access-map {
  border: 1px solid rgba(201, 169, 97, 0.2);
  filter: grayscale(1) brightness(0.85) contrast(1.05);
}
.access-map iframe { display: block; }
.access-text { margin-top: 34px; font-size: 0.9rem; color: #d8d5cc; }
.access-text p { margin-bottom: 10px; }
.access-text li {
  position: relative;
  padding-left: 20px;
  color: var(--gray);
  font-size: 0.85rem;
}
.access-text li::before {
  content: ''; position: absolute; left: 0; top: 0.95em;
  width: 10px; height: 1px;
  background: var(--gold);
}
.map-link {
  display: inline-block;
  margin-top: 26px;
  padding: 12px 44px;
  border: 1px solid var(--gold);
  font-family: var(--serif-en);
  font-size: 0.85rem; letter-spacing: 0.35em; text-indent: 0.35em;
  color: var(--gold-light);
  transition: background 0.4s ease;
}
.map-link:hover { background: rgba(201, 169, 97, 0.12); }

/* ---------- Recruit ---------- */
.recruit { overflow: hidden; }
.recruit-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 65% 60% at 50% 100%, rgba(201, 169, 97, 0.1), transparent 65%),
    rgba(10, 10, 12, 0.45);
}
.recruit .section-inner { position: relative; }
.recruit-body { text-align: center; }
.recruit-copy {
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  letter-spacing: 0.18em;
  margin-bottom: 30px;
  font-weight: 500;
}
.recruit-text { color: #cfccc3; font-size: 0.9rem; margin-bottom: 50px; }
.recruit-detail { max-width: 640px; margin: 0 auto 60px; text-align: left; }
.recruit-detail dl { border-top: 1px solid rgba(201, 169, 97, 0.25); }
.recruit-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 20px;
  padding: 20px 10px;
  border-bottom: 1px solid rgba(201, 169, 97, 0.25);
  font-size: 0.88rem;
}
.recruit-row dt { color: var(--gold); letter-spacing: 0.2em; }
.recruit-row dd { color: #d8d5cc; }
.recruit-btn {
  display: inline-block;
  padding: 22px 70px;
  border: 1px solid var(--gold);
  position: relative;
  transition: background 0.4s ease;
}
.recruit-btn:hover { background: rgba(201, 169, 97, 0.12); }
.recruit-btn-en {
  display: block;
  font-family: var(--serif-en);
  font-size: 0.8rem; letter-spacing: 0.4em; text-indent: 0.4em;
  color: var(--gold);
  margin-bottom: 6px;
}
.recruit-btn-tel {
  font-family: var(--serif-en);
  font-size: 1.5rem; letter-spacing: 0.12em;
  color: var(--gold-light);
}

/* ---------- Contact ---------- */
.contact { background: rgba(13, 13, 17, 0.8); }
.contact-body { text-align: center; }
.contact-text { color: #cfccc3; font-size: 0.92rem; margin-bottom: 46px; }
.contact-tel {
  display: inline-flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 26px 80px;
  border: 1px solid var(--gold);
  transition: background 0.4s ease;
}
.contact-tel:hover { background: rgba(201, 169, 97, 0.12); }
.contact-tel-en {
  font-family: var(--serif-en);
  font-size: 0.8rem; letter-spacing: 0.45em; text-indent: 0.45em;
  color: var(--gold);
  text-transform: uppercase;
}
.contact-tel-num {
  font-family: var(--serif-en);
  font-size: 2rem; letter-spacing: 0.1em;
  color: var(--gold-light);
  line-height: 1.2;
}
.contact-tel-note { font-size: 0.72rem; color: var(--gray); letter-spacing: 0.15em; }
.contact-sns {
  margin-top: 40px;
  display: flex; justify-content: center; gap: 18px; flex-wrap: wrap;
}
.sns-pill {
  display: inline-flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 12px 36px;
  border: 1px solid rgba(201, 169, 97, 0.25);
  font-family: var(--serif-en);
  font-size: 0.85rem; letter-spacing: 0.25em;
  color: var(--gray);
}
.sns-pill small {
  font-family: var(--sans-en);
  font-size: 0.55rem; letter-spacing: 0.3em;
  color: #5c594f;
  text-transform: uppercase;
}

/* ---------- モバイル固定CTA ---------- */
.cta-bar {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
  background: rgba(10, 10, 12, 0.95);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(201, 169, 97, 0.3);
}
.cta-bar a {
  flex: 1;
  text-align: center;
  padding: 16px 0;
  font-size: 0.85rem; letter-spacing: 0.2em;
}
.cta-bar-tel {
  background: linear-gradient(160deg, #d9bf7f, var(--gold) 60%, #a8863f);
  color: #16130a;
  font-weight: 600;
}
.cta-bar-map { color: var(--gold-light); }

/* ---------- Footer ---------- */
.footer {
  text-align: center;
  padding: 80px 20px 50px;
  border-top: 1px solid rgba(201, 169, 97, 0.15);
  background: rgba(10, 10, 12, 0.6);
}
.footer-logo { margin-bottom: 24px; }
.footer-logo img { height: 52px; width: auto; }
.footer-address { font-size: 0.75rem; color: var(--gray); margin-bottom: 30px; }
.footer-copy {
  font-family: var(--sans-en);
  font-size: 0.65rem; letter-spacing: 0.2em;
  color: #5c594f;
}

/* ---------- Capture mode (フルページ撮影用) ---------- */
.map-capture-note { display: none; }
html.capture .access-map iframe { display: none; }
html.capture .access-map .map-capture-note {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  height: 420px;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(201, 169, 97, 0.07), transparent 70%),
    var(--black-panel);
}
html.capture .map-capture-note span {
  font-family: var(--serif-en);
  font-size: 1.1rem; letter-spacing: 0.4em; text-indent: 0.4em;
  color: var(--gold);
}
html.capture .map-capture-note small {
  font-size: 0.72rem; letter-spacing: 0.15em;
  color: var(--gray);
}
html.capture .loader { display: none; }
html.capture .hero { height: 900px; min-height: 0; }
html.capture .hero-bg { animation: none; }
html.capture .fade-item,
html.capture .reveal { opacity: 1; transform: none; transition: none; }

/* ---------- Responsive ---------- */
@media (max-width: 840px) {
  .gnav { display: none; }
  .menu-btn { display: block; }
  .header { padding: 16px 20px; }
  .header.is-scrolled { padding: 12px 20px; }

  .section { padding: 90px 24px; }
  .section-head { margin-bottom: 50px; }

  .hero-ornament { width: 90px; height: 90px; }
  .hero-ornament--tl { left: 20px; top: 76px; }
  .hero-ornament--br { right: 20px; bottom: 76px; }

  .header-logo img { height: 26px; }
  .concept-body { grid-template-columns: 1fr; gap: 36px; margin-bottom: 60px; }
  .interior-grid { grid-template-columns: 1fr; gap: 20px; }
  .footer-logo img { height: 40px; }
  .news { padding: 26px 24px; }
  .news-row { flex-direction: column; gap: 10px; }
  .news-list li { flex-direction: column; gap: 2px; }
  .menu-reco-grid { grid-template-columns: 1fr 1fr; }
  .reco-name { min-height: 0; }
  .contact-tel { padding: 22px 46px; }
  .contact-tel-num { font-size: 1.6rem; }
  .cta-bar { display: flex; }
  body { padding-bottom: 54px; }
  .footer { padding-bottom: 70px; }
  .info-grid { grid-template-columns: 1fr; gap: 40px; }
  .info-visual { max-width: 420px; margin: 0 auto; width: 100%; }
  .info-row { grid-template-columns: 96px 1fr; gap: 14px; padding: 20px 6px; }
  .recruit-row { grid-template-columns: 96px 1fr; gap: 14px; }
  .recruit-btn { padding: 18px 46px; }
  .access-map iframe { height: 320px; }
}
