/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #0a0a0a;
  --dark: #2a2622;
  --text: #2a2622;
  --text-mute: #6b6660;
  --text-light: #a39d92;
  --line: #e8e1d2;
  --line-soft: #f0ebe0;
  --accent: #b8a07a;
  --accent-dark: #9a8462;
  --beige-bg: #f6f1e7;
  --beige-soft: #faf6ee;
  --footer-bg: #2a2622;
  --gray: #f6f6f6;
  --cream: #ffffff;
  --font: 'Noto Sans JP', 'Hiragino Sans', sans-serif;
  --font-serif: 'Noto Serif JP', 'Hiragino Mincho ProN', serif;
  --font-en: 'Cormorant Garamond', serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  background: #fff;
}
img { display: block; width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; background: none; border: none; font-family: inherit; }
ul { list-style: none; }

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ===== SCROLL FADE ===== */
.js-fade {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 1s cubic-bezier(.16,1,.3,1), transform 1s cubic-bezier(.16,1,.3,1);
}
.js-fade.is-inview { opacity: 1; transform: translateY(0); }

/* ===== COMMON ===== */
.section-title {
  font-family: var(--font-en);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
  font-style: italic;
}
.section-subtitle {
  font-size: 12px;
  letter-spacing: 0.12em;
  color: #999;
  margin-top: 10px;
}
.section-head { margin-bottom: 60px; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  border: 1px solid var(--text);
  border-radius: 100px;
  font-size: 13px;
  font-family: var(--font);
  transition: background 0.3s, color 0.3s;
}
.btn-outline:hover { background: var(--text); color: #fff; }

.btn-circle {
  width: 48px; height: 48px;
  border: 1px solid var(--text);
  border-radius: 50%;
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s, color 0.3s;
  font-family: var(--font);
}
.btn-circle:hover { background: var(--text); color: #fff; }

.btn-white {
  display: inline-flex;
  align-items: center;
  padding: 13px 28px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 100px;
  color: #fff;
  font-size: 13px;
  font-family: var(--font);
  transition: background 0.3s, color 0.3s;
}
.btn-white:hover { background: #fff; color: var(--dark); }

.btn-circle-white {
  width: 48px; height: 48px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s, color 0.3s;
  text-decoration: none;
}
.btn-circle-white:hover { background: #fff; color: var(--dark); }


/* ===== LOADING ===== */
.loading {
  position: fixed; inset: 0;
  background: var(--cream);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.loading.is-hidden { animation: loadingOut 0.7s ease forwards; }
@keyframes loadingOut {
  0%   { opacity: 1; }
  100% { opacity: 0; visibility: hidden; }
}
.loading__inner { text-align: center; padding: 0 56px; }
.loading__text {
  font-family: var(--font-serif);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(20px, 3vw, 48px);
  letter-spacing: 0.5em;
  padding: 0 0.5em;
  white-space: nowrap;
  color: var(--text);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  line-height: 1.2;
}
.loading__text.is-show { opacity: 1; transform: translateY(0); }
.loading__sub {
  font-family: var(--font-en);
  font-size: clamp(14px, 2vw, 20px);
  letter-spacing: 0.3em;
  color: var(--accent);
  margin-top: 16px;
  opacity: 0;
  transition: opacity 0.6s ease 0.5s;
}
.loading__sub.is-show { opacity: 1; }


/* ===== HEADER ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 48px;
  transition: padding 0.4s, background 0.4s, box-shadow 0.4s;
}
.header.is-scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  padding: 16px 48px;
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}
.header__logo {
  display: flex; flex-direction: column;
  line-height: 1.1;
}
.header__logo-en {
  font-size: 9px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.7);
  transition: color 0.4s;
}
.header__logo-name {
  font-family: var(--font-en);
  font-size: 24px;
  font-style: italic;
  color: #fff;
  transition: color 0.4s;
  letter-spacing: 0.05em;
}
.header.is-scrolled .header__logo-en { color: var(--accent); }
.header.is-scrolled .header__logo-name { color: var(--text); }

.header__nav {
  display: flex; align-items: center; gap: 36px;
}
.header__nav a {
  font-size: 13px;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.04em;
  transition: opacity 0.3s, color 0.4s;
}
.header__nav a:hover { opacity: 0.6; }
.header.is-scrolled .header__nav a { color: var(--text); }

.header__contact-link {
  padding: 9px 22px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 100px;
  transition: background 0.3s, border-color 0.4s !important;
}
.header__contact-link:hover { background: rgba(255,255,255,0.15) !important; opacity: 1 !important; }
.header.is-scrolled .header__contact-link { border-color: var(--accent); color: var(--accent) !important; }
.header.is-scrolled .header__contact-link:hover { background: var(--accent) !important; color: #fff !important; }

.header__menu {
  display: none; flex-direction: column; gap: 5px;
  width: 28px; padding: 4px 0;
}
.header__menu span {
  display: block; height: 2px;
  background: #fff; border-radius: 2px;
  transition: background 0.4s, transform 0.3s, opacity 0.3s;
}
.header.is-scrolled .header__menu span { background: var(--text); }
.header__menu.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__menu.is-open span:nth-child(2) { opacity: 0; }
.header__menu.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.sp-menu {
  position: fixed; inset: 0;
  background: var(--dark);
  z-index: 190;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}
.sp-menu.is-open { opacity: 1; visibility: visible; }
.sp-menu__nav { display: flex; flex-direction: column; gap: 32px; text-align: center; }
.sp-menu__link {
  font-size: 20px; font-weight: 500;
  color: #fff; letter-spacing: 0.05em;
  transition: opacity 0.3s;
}
.sp-menu__link:hover { opacity: 0.5; }


/* ===== FV ===== */
.fv {
  position: relative;
  height: 100svh; min-height: 600px;
  overflow: hidden;
  background: #000;
}
/* ===== FV ENDROLL ===== */
.fv__er {
  position: absolute; inset: 0;
  overflow: hidden;
}
.fv__er-track {
  display: flex;
  align-items: center;
  height: 100%;
  width: max-content;
  gap: 0;
  animation: erScroll 40s linear infinite;
  will-change: transform;
}
.fv__er-track:hover { animation-play-state: paused; }
.fv__er-item {
  flex-shrink: 0;
  height: 100%;
  display: flex;
  align-items: center;
}
.fv__er-item picture {
  display: block;
  height: 100%;
}
.fv__er-item img {
  height: 100%;
  width: auto;
  max-width: none;
  display: block;
  transition: transform 0.6s ease;
}
.fv__er-item:hover img { transform: scale(1.03); }
@keyframes erScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.fv__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.28) 0%,
    rgba(10,10,10,0.12) 35%,
    rgba(10,10,10,0.55) 78%,
    rgba(10,10,10,0.78) 100%
  );
}
.fv__content {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 0 48px;
}
.fv__tagline {
  font-family: var(--font-serif);
  font-size: clamp(11px, 1vw, 13px);
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.36em;
  margin-bottom: 28px;
  opacity: 0; transform: translateY(16px);
}
.fv__catch {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(17px, 2.2vw, 28px);
  color: #fff;
  letter-spacing: 0.14em;
  line-height: 2.2;
  margin-bottom: 36px;
  opacity: 0; transform: translateY(20px);
  text-shadow: 0 1px 16px rgba(0,0,0,0.45);
}
.fv__title {
  font-family: var(--font-en);
  font-size: clamp(10px, 1vw, 13px);
  font-weight: 300;
  font-style: normal;
  color: rgba(255,255,255,0.55);
  line-height: 1;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  opacity: 0; transform: translateY(28px);
}
.fv__title em { color: rgba(255,255,255,0.75); font-style: italic; font-size: 1.4em; letter-spacing: 0.1em; }
.fv__reserve {
  position: absolute;
  right: 48px; bottom: 88px;
  display: flex; align-items: center; gap: 14px;
  color: #fff;
  font-size: 12px; letter-spacing: 0.12em;
  z-index: 2; opacity: 0;
  text-decoration: none;
}
.fv__reserve-circle {
  width: 48px; height: 48px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s, border-color 0.3s;
}
.fv__reserve:hover .fv__reserve-circle { background: rgba(255,255,255,0.2); }

.fv__scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.5);
  font-size: 10px; letter-spacing: 0.15em;
  z-index: 2;
  opacity: 0; animation: scrollFade 1s ease 3.2s forwards;
}
@keyframes scrollFade { to { opacity: 1; } }
.fv__scroll-line {
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.35);
  animation: scrollLine 1.5s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}


/* ===== MENU SECTION ===== */
.menu-sec { padding: 64px 0 72px; background: #fff; }
.menu-sec__head { text-align: center; margin-bottom: 36px; }
.menu-sec__desc { font-size: 14px; color: #888; margin-top: 12px; line-height: 1.8; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.menu-card {
  position: relative; display: block;
  overflow: hidden; aspect-ratio: 1/1;
  background: #111;
}
.menu-card__img { width: 100%; height: 100%; }
.menu-card__img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  filter: brightness(0.62);
  transition: transform 0.7s cubic-bezier(.16,1,.3,1), filter 0.7s ease;
}
.menu-card:hover .menu-card__img img { transform: scale(1.06); filter: brightness(0.45); }
.menu-card__body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 14px 12px;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 100%);
}
.menu-card__en {
  font-family: var(--font-en); font-size: 9px;
  letter-spacing: 0.22em; color: rgba(255,255,255,0.65);
  margin-bottom: 3px;
  transition: color 0.3s;
  text-transform: uppercase;
}
.menu-card__ja { font-size: 12px; font-weight: 500; color: #fff; line-height: 1.35; letter-spacing: 0.04em; }
.menu-sec__more { text-align: center; margin-top: 32px; }

@media (max-width: 1200px) { .menu-grid { grid-template-columns: repeat(5, 1fr); } }
@media (max-width: 900px)  { .menu-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 768px)  { .menu-grid { grid-template-columns: repeat(3, 1fr); } .menu-sec { padding: 56px 0; } }
@media (max-width: 480px)  { .menu-grid { grid-template-columns: repeat(2, 1fr); } }

/* ===== NEWS ===== */
.news { padding: 100px 0; background: var(--cream); }
.news__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; }
.news__featured-img {
  display: block; overflow: hidden; border-radius: 4px;
  aspect-ratio: 4/3; margin-bottom: 20px;
}
.news__featured-img img { height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.news__featured-img:hover img { transform: scale(1.06); }
.news__meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.news__date { font-size: 13px; color: #999; }
.news__tag {
  font-size: 11px; padding: 3px 14px;
  border: 1px solid var(--accent);
  color: var(--accent); border-radius: 100px;
}
.news__ttl { font-size: 16px; font-weight: 500; line-height: 1.7; }
.news__list { display: flex; flex-direction: column; }
.news__item {
  display: block; padding: 20px 0;
  border-bottom: 1px solid #e8e4df;
  transition: opacity 0.3s;
}
.news__item:first-child { border-top: 1px solid #e8e4df; }
.news__item:hover { opacity: 0.6; }
.news__item-ttl { font-size: 14px; line-height: 1.7; }
.news__footer { display: flex; align-items: center; justify-content: flex-end; gap: 12px; margin-top: 32px; }


/* ===== BUSINESS / MENU ===== */
.business { background: var(--dark); color: #fff; overflow: hidden; }
.business__top { padding: 100px 0 0; }
.business__head { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.business__desc { font-size: 15px; line-height: 2; color: rgba(255,255,255,0.65); padding-top: 48px; }

.ticker { padding: 28px 0; border-top: 1px solid rgba(255,255,255,0.1); border-bottom: 1px solid rgba(255,255,255,0.1); margin: 64px 0 0; overflow: hidden; }
.ticker__inner { display: flex; gap: 48px; white-space: nowrap; animation: ticker 28s linear infinite; width: max-content; }
.ticker__text { font-family: var(--font-en); font-size: 12px; letter-spacing: 0.3em; color: rgba(255,255,255,0.35); flex-shrink: 0; }
.ticker__sep { font-size: 8px; color: rgba(255,255,255,0.2); flex-shrink: 0; align-self: center; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.business__grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.business__item {
  position: relative; aspect-ratio: 3/4;
  overflow: hidden; display: block;
  border: 1px solid rgba(255,255,255,0.05);
}
.business__item img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
  filter: brightness(0.55);
  transition: transform 0.8s cubic-bezier(.16,1,.3,1), filter 0.8s ease;
}
.business__item:hover img { transform: scale(1.07); filter: brightness(0.4); }
.business__item-content {
  position: absolute; inset: 0; padding: 32px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.business__item-en { font-family: var(--font-en); font-size: 11px; letter-spacing: 0.18em; color: rgba(255,255,255,0.5); margin-bottom: 8px; transition: color 0.3s; }
.business__item:hover .business__item-en { color: var(--accent); }
.business__item-ja { font-size: clamp(16px, 2vw, 22px); font-weight: 500; color: #fff; }


/* ===== GALLERY / MAGAZINE ===== */
.magazine { background: var(--gray); padding: 56px 0 56px 48px; overflow: hidden; }
.magazine__head { display: flex; justify-content: space-between; align-items: flex-end; padding-right: 48px; margin-bottom: 28px; }
.magazine__arrows { display: flex; gap: 12px; }

.slide-card { display: block; }
.slide-card__img { overflow: hidden; border-radius: 4px; aspect-ratio: 4/3; }
.slide-card__img img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.7s ease; }
.slide-card:hover .slide-card__img img { transform: scale(1.07); }
.slide-card__body { padding: 12px 0 0; }
.slide-card__date { font-size: 11px; color: var(--accent); letter-spacing: 0.1em; margin-bottom: 4px; }
.slide-card__title { font-size: 13px; line-height: 1.7; font-weight: 500; }

.magazine__footer { display: flex; align-items: center; gap: 12px; justify-content: flex-end; padding-right: 48px; margin-top: 28px; }


/* ===== ABOUT ===== */
.about { background: #fff; padding: 64px 0 0; }
.about__bg-text {
  font-family: var(--font-en);
  font-size: clamp(56px, 8vw, 112px);
  font-weight: 400; font-style: italic;
  color: #f3f0eb; line-height: 1;
  letter-spacing: 0.02em; margin-bottom: -10px;
  user-select: none;
}
.about__lead-wrap { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; margin-top: 24px; }
.about__lead { font-size: 14px; line-height: 1.9; color: #555; }
.about__photo { position: relative; margin-top: 36px; overflow: hidden; }
.about__photo img { width: 100%; height: auto; display: block; }
.about__photo-overlay {
  position: absolute; bottom: -6px; left: 0; right: 0;
  font-family: var(--font-en); font-size: clamp(48px, 9vw, 120px);
  font-style: italic; font-weight: 400;
  color: rgba(255,255,255,0.15);
  text-align: center; letter-spacing: 0.15em; line-height: 1;
  pointer-events: none; user-select: none;
}

/* TOP MESSAGE */
.top-message { padding: 56px 0 64px; background: var(--cream); }
.top-message__inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: center; }
.top-message__img { overflow: hidden; border-radius: 4px; }
.top-message__img img { aspect-ratio: 4/5; object-fit: cover; object-position: top; transition: transform 0.8s ease; }
.top-message__img:hover img { transform: scale(1.04); }
.top-message__label { font-family: var(--font-en); font-size: 11px; letter-spacing: 0.25em; color: var(--accent); margin-bottom: 12px; }
.top-message__title { font-size: clamp(22px, 3vw, 36px); font-weight: 700; line-height: 1.4; margin-bottom: 14px; }
.top-message__link { display: inline-block; font-size: 13px; color: var(--accent); margin-bottom: 18px; transition: opacity 0.3s; }
.top-message__link:hover { opacity: 0.6; }
.top-message__text { font-size: 14px; line-height: 1.9; color: #555; }


/* ===== FEATURE ===== */
.feature { padding: 56px 0 64px; background: #fff; }
.feature__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 36px; }
.feature__item { padding: 28px 24px; border: 1px solid #e8e4df; border-radius: 4px; }
.feature__num {
  font-family: var(--font-en); font-size: 40px; font-style: italic;
  color: #ede9e3; line-height: 1; margin-bottom: 14px;
}
.feature__ttl { font-size: 15px; font-weight: 700; margin-bottom: 10px; }
.feature__text { font-size: 13px; line-height: 1.8; color: #666; }


/* ===== ACCESS ===== */
.access { padding: 100px 0; background: var(--gray); }
.access__inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.access__dl { margin-top: 40px; }
.access__dl dt {
  font-size: 11px; letter-spacing: 0.12em; color: var(--accent);
  margin-top: 20px; margin-bottom: 4px;
}
.access__dl dt:first-child { margin-top: 0; }
.access__dl dd { font-size: 14px; line-height: 1.7; }
.access__dl a { color: var(--accent); transition: opacity 0.3s; }
.access__dl a:hover { opacity: 0.7; }
.access__map { overflow: hidden; border-radius: 4px; }
.access__map iframe { width: 100%; aspect-ratio: 4/3; border: none; display: block; }


/* ===== CTA ===== */
.cta { display: grid; grid-template-columns: 1fr 1fr; }
.cta__col { background: var(--beige-bg); padding: 80px 48px; color: var(--dark); }
.cta__col--right { background: var(--beige-soft); border-left: 1px solid var(--line); }
.cta__en {
  font-family: var(--font-en); font-size: clamp(28px, 4vw, 52px);
  font-style: italic; font-weight: 400;
  line-height: 1; margin-bottom: 10px; letter-spacing: 0.04em;
  color: var(--accent);
}
.cta__ja { font-size: 13px; color: var(--text-mute); margin-bottom: 32px; letter-spacing: 0.08em; }
.cta__desc { font-size: 14px; line-height: 1.9; color: var(--text-mute); margin-bottom: 32px; }
.cta__btn-wrap { display: flex; align-items: center; gap: 16px; }


/* ===== FOOTER ===== */
.footer { background: var(--footer-bg); color: rgba(255,255,255,0.55); }
.footer .container { padding-top: 72px; }
.footer__top { display: grid; grid-template-columns: 220px 1fr auto; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); align-items: start; }
.footer__logo { font-family: var(--font-en); font-size: 36px; font-style: italic; color: #fff; line-height: 1.1; margin-bottom: 20px; }
.footer__logo-small { font-size: 11px; letter-spacing: 0.22em; font-style: normal; color: rgba(255,255,255,0.55); }
.footer__sns { display: flex; gap: 12px; margin-bottom: 24px; }
.footer__sns a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: border-color 0.3s, color 0.3s;
}
.footer__sns a:hover { border-color: #fff; color: #fff; }
.footer__address { font-size: 12px; line-height: 1.9; color: rgba(255,255,255,0.4); }
.footer__address a { color: rgba(255,255,255,0.4); transition: color 0.3s; }
.footer__address a:hover { color: #fff; }

.footer__nav { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.footer__nav-group h4 { font-size: 12px; color: #fff; font-weight: 500; margin-bottom: 16px; letter-spacing: 0.08em; }
.footer__nav-group ul { display: flex; flex-direction: column; gap: 10px; }
.footer__nav-group a { font-size: 12px; color: rgba(255,255,255,0.45); transition: color 0.3s; }
.footer__nav-group a:hover { color: #fff; }

.footer__contact-col { display: flex; align-items: flex-start; }
.footer__policies { display: flex; flex-wrap: wrap; gap: 16px 24px; padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer__policies a { font-size: 11px; color: rgba(255,255,255,0.25); transition: color 0.3s; }
.footer__policies a:hover { color: rgba(255,255,255,0.6); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; padding: 24px 0 32px; }
.footer__tagline { display: flex; flex-direction: column; gap: 8px; }
.footer__tagline-en { font-family: var(--font-en); font-size: 14px; font-style: italic; color: rgba(255,255,255,0.55); letter-spacing: 0.12em; }
.footer__tagline-desc { font-size: 10px; color: rgba(255,255,255,0.2); letter-spacing: 0.06em; max-width: 400px; line-height: 1.7; }
.footer__copy { font-size: 11px; color: rgba(255,255,255,0.2); }

.footer__marquee { border-top: 1px solid rgba(255,255,255,0.05); overflow: hidden; }
.footer__marquee-inner { display: flex; gap: 64px; padding: 16px 0; white-space: nowrap; animation: ticker 36s linear infinite; width: max-content; }
.footer__marquee-text { font-family: var(--font-en); font-size: clamp(48px, 7vw, 100px); font-style: italic; font-weight: 300; color: rgba(255,255,255,0.03); flex-shrink: 0; letter-spacing: 0.06em; }
.footer__marquee-sep { font-size: 12px; color: rgba(255,255,255,0.03); flex-shrink: 0; align-self: center; }


/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .header { padding: 20px 32px; }
  .header.is-scrolled { padding: 14px 32px; }
  .business__grid { grid-template-columns: repeat(2, 1fr); }
  .feature__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .footer__nav { grid-template-columns: repeat(2, 1fr); }
  .footer__bottom { flex-direction: column; gap: 16px; align-items: flex-start; }
  .access__inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .header { padding: 16px 20px; }
  .header.is-scrolled { padding: 12px 20px; }
  .header__nav { display: none; }
  .header__menu { display: flex; }

  .fv__content { left: 20px; right: 20px; bottom: 96px; }
  .fv__reserve { right: 20px; bottom: 24px; }
  .fv__reserve-label { display: none; }
  .fv__scroll { display: none; }

  .news { padding: 72px 0; }
  .news__inner { grid-template-columns: 1fr; gap: 40px; }

  .business__top { padding: 72px 0 0; }
  .business__head { grid-template-columns: 1fr; }
  .business__desc { padding-top: 0; }
  .business__grid { grid-template-columns: 1fr 1fr; }
  .business__item { aspect-ratio: 1/1; }

  .magazine { padding: 72px 0 72px 20px; }
  .magazine__head { padding-right: 20px; }
  .magazine__footer { padding-right: 20px; }

  .about { padding: 72px 0 0; }
  .about__lead-wrap { grid-template-columns: 1fr; }
  .about__photo img { aspect-ratio: 4/3; }

  .top-message { padding: 60px 0 80px; }
  .top-message__inner { grid-template-columns: 1fr; gap: 40px; }

  .feature__grid { grid-template-columns: 1fr; }

  .cta { grid-template-columns: 1fr; }
  .cta__col { padding: 56px 20px; }

  .footer .container { padding-top: 48px; }
  .footer__nav { grid-template-columns: 1fr 1fr; }
  .footer__contact-col { display: none; }
}
