@charset "utf-8";
/* =====================================================
   RESET & TOKENS
   ===================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {font-size: 17px; scroll-behavior: smooth!important;}

/* 固定ヘッダー分の余白を確保してページ内リンク先を表示 */
[id] {
  scroll-margin-top: 130px;
}

:root {
  --orange:       #f7941d;
  --orange-dark:  #e07d08;
  --orange-light: #fff3e0;
  --orange-pale:  #fff8f0;
  --white:        #ffffff;
  --off-white:    #fafafa;
  --gray-light:   #f4f4f4;
  --gray-mid:     #e0e0e0;
  --gray:         #555;
  --ink:          #1a1a1a;
  --ink-mid:      #4a4a4a;
  --line-green:   #06C755;
  --cafe-dark:    #2e1f12;
  --cafe-mid:     #c5a882;

  --font-body: 'Noto Sans JP', 'Hiragino Sans', sans-serif;
  --font-en:   'DM Sans', sans-serif;

  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   20px;
  --r-pill: 100px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.07);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-orange: 0 4px 20px rgba(247,148,29,0.35);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* =====================================================
   NEWS TICKER
   ===================================================== */
.news-ticker {
  background: var(--orange);
  color: var(--white);
  display: flex;
  align-items: center;
  overflow: hidden;
  height: 38px;
}
.news-ticker__label {
  background: var(--orange-dark);
  white-space: nowrap;
  padding: 0 18px;
  height: 100%;
  display: flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.news-ticker__text {
  padding: 0 24px;
  font-size: 13px;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* =====================================================
   HEADER / NAV
   ===================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 2px solid var(--orange);
  box-shadow: var(--shadow-sm);
}
.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav__logo img { max-height: 40px; width: auto; }
.nav__logo-text {
  font-family: var(--font-en);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--orange);
  text-transform: uppercase;
}
.nav__links { display: flex; justify-content: flex-end; align-items: center; gap: 20px; width: 90%;}
.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-mid);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  transition: background 0.15s, color 0.15s;
}
.nav__links a:hover,
.nav__links a[aria-current="page"] {
  background: var(--orange-pale);
  color: var(--orange);
}
.nav__cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.btn-reserve {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: var(--r-pill);
  white-space: nowrap;
  transition: background 0.15s, box-shadow 0.15s;
  box-shadow: var(--shadow-orange);
}
.btn-reserve:hover { background: var(--orange-dark); box-shadow: 0 6px 24px rgba(247,148,29,0.45); }
.btn-tel-nav {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink-mid);
  white-space: nowrap;
  transition: color 0.15s;
}
.btn-tel-nav:hover { color: var(--orange); }
.btn-tel-nav svg { width: 15px; height: 15px; flex-shrink: 0; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav__hamburger span {
  display: block; height: 2px;
  background: var(--ink); border-radius: 2px; transition: all 0.2s;
}

/* Mobile menu */
.mobile-menu { display: none; position: fixed; inset: 0; z-index: 300; }
.mobile-menu.is-open { display: block; }
.mobile-menu__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.4); }
.mobile-menu__panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(320px, 88vw);
  background: var(--white); padding: 24px 28px 40px;
  overflow-y: auto; display: flex; flex-direction: column; gap: 8px;
}
.mobile-menu__close {
  align-self: flex-end; background: none; border: none;
  font-size: 24px; cursor: pointer; color: var(--ink-mid); padding: 4px; margin-bottom: 8px;
}
.mobile-menu__link {
  display: block; font-size: 16px; font-weight: 500; color: var(--ink);
  padding: 14px 0; border-bottom: 1px solid var(--gray-mid);
}
.mobile-menu__link:last-of-type { border-bottom: none; }
.mobile-menu__cta { margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }
.mobile-btn-line {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--line-green); color: var(--white);
  font-size: 16px; font-weight: 700; padding: 14px; border-radius: var(--r-md);
}
.mobile-btn-tel {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--orange); color: var(--white);
  font-size: 16px; font-weight: 700; padding: 14px; border-radius: var(--r-md);
}

/* =====================================================
   SIDE FLOAT
   ===================================================== */
.side-float {
  position: fixed; right: 0; top: 50%; transform: translateY(-50%);
  z-index: 150; display: flex; flex-direction: column;
  border-radius: var(--r-md) 0 0 var(--r-md);
  overflow: hidden; box-shadow: var(--shadow-lg);
}
.side-float__btn {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 6px; width: 58px; padding: 16px 8px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.04em; color: var(--white);
  transition: opacity 0.15s, transform 0.15s;
}
.side-float__btn:hover { opacity: 0.88; transform: translateX(-3px); }
.side-float__btn--line   { background: var(--line-green); }
.side-float__btn--reserve{ background: var(--orange); }
.side-float__btn--tel    { background: var(--ink); }
.side-float__btn svg { width: 22px; height: 22px; flex-shrink: 0; }
.side-float__divider { height: 1px; background: rgba(255,255,255,0.25); }

/* =====================================================
   HERO — SLIDER (shared by top page & subpages)
   Theme override: set --hero-accent / --hero-accent-dark
   on .hero to recolor (default: orange brand)
   ===================================================== */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--gray-light);
  --hero-accent: var(--orange);
  --hero-accent-dark: var(--orange-dark);
max-height: 800px;
}
.hero__slides {
  position: relative;
  width: 100%;
  /* aspect-ratio は最初の .hero__slide から継承 */
}
.hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.75s var(--ease);
  pointer-events: none;
  /* z-index は JS で管理 */
}
.hero__slide.is-active {
  opacity: 1;
  pointer-events: auto;
  position: relative; /* 高さを確保する先頭スライド */
}
.hero__slide-img {
  width: 100%;
  aspect-ratio: 16/7;
  object-fit: cover;
  object-position: center;
  display: block;
  /* ズームアニメーション */
  transform: scale(1.06);
  transition: transform 6.5s linear;
}
.hero__slide.is-active .hero__slide-img {
  transform: scale(1);
}
.hero__slide-img-placeholder {
  width: 100%;
  aspect-ratio: 16/7;
  background: linear-gradient(135deg, #f0ede8 0%, #e8e0d4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-family: var(--font-en);
  font-size: 14px;
  letter-spacing: 0.08em;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.52) 0%, rgba(0,0,0,0.10) 60%, transparent 100%);
  display: flex;
  align-items: center;
}
.hero__content {
  padding: 0 0 0 7vw;
  max-width: 650px;
}
.hero__eyebrow {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--hero-accent);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--hero-accent);
  border-radius: 2px;
}
.hero__h1 {
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--white);
  margin-bottom: 16px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.2);
}
.hero__body {
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 300;
  line-height: 1.9;
  color: #fff;
  margin-bottom: 28px;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--hero-accent);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--r-pill);
  box-shadow: 0 4px 20px rgba(0,0,0,0.22);
  transition: background 0.15s, transform 0.15s;
  border: none;
  cursor: pointer;
}
.btn-hero-primary:hover { background: var(--hero-accent-dark); transform: translateY(-1px); }
.btn-hero-primary svg { width: 18px; height: 18px; }
.btn-hero-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--line-green);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--r-pill);
  box-shadow: 0 4px 18px rgba(6,199,85,0.35);
  transition: opacity 0.15s, transform 0.15s;
}
.btn-hero-line:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-hero-line svg { width: 18px; height: 18px; }
.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.55);
  font-size: 16px;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: var(--r-pill);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: background 0.15s, border-color 0.15s, transform 0.15s;
}
.btn-hero-outline:hover { background: rgba(255,255,255,0.2); border-color: var(--white); transform: translateY(-1px); }
.btn-hero-outline svg { width: 16px; height: 16px; }

/* Slider dots */
.hero__dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.hero__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, width 0.2s;
}
.hero__dot.active {
  background: var(--hero-accent);
  width: 24px;
  border-radius: 4px;
}
.hero__arrow {
  position: absolute;
  top: 95%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 2;
}
.hero__arrow:hover { background: rgba(255,255,255,0.28); }
.hero__arrow--prev { left: 20px; }
.hero__arrow--next { right: 20px; }
.hero__arrow svg { width: 18px; height: 18px; }

/* =====================================================
   PAGE HERO (subpages)
   ===================================================== */
.page-hero {
  background: var(--orange-pale);
  border-bottom: 2px solid var(--orange-light);
  padding: 52px 32px 48px;
}
.page-hero__inner { max-width: 1200px; margin: 0 auto; }
.page-hero__breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--gray); margin-bottom: 20px;
}
.page-hero__breadcrumb a { color: var(--orange); transition: opacity 0.15s; }
.page-hero__breadcrumb a:hover { opacity: 0.75; }
.page-hero__breadcrumb span { color: var(--ink-mid;)}
.page-hero__eyebrow {
  font-family: var(--font-en); font-size: 12px; font-weight: 400;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--orange);
  margin-bottom: 12px; display: flex; align-items: center; gap: 10px;
}
.page-hero__eyebrow::before {
  content: ''; display: block; width: 28px; height: 1.5px;
  background: var(--orange); border-radius: 2px;
}
.page-hero__h1 {
  font-size: clamp(28px, 4vw, 42px); font-weight: 700;
  line-height: 1.25; color: var(--ink); margin-bottom: 12px;
}
.page-hero__desc {
  font-size: 16px; font-weight: 300; color: var(--ink-mid); line-height: 1.8;
  max-width: 640px;
}

/* =====================================================
   ANCHOR NAV (subpages)
   ===================================================== */
.anchor-nav {
  position: sticky; top: 70px; z-index: 100;
  background: var(--white); border-bottom: 1px solid var(--gray-mid);
  box-shadow: 0 1px 6px rgba(0,0,0,0.05);
}
.anchor-nav__inner {
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
  display: flex; gap: 0; overflow-x: auto;
  scrollbar-width: none;
}
.anchor-nav__inner::-webkit-scrollbar { display: none; }
.anchor-nav__item {
  display: flex; align-items: center;
  padding: 0 20px; height: 52px;
  font-family: var(--font-body);
  font-size: 14px; font-weight: 500; color: var(--ink-mid);
  white-space: nowrap; border: none; border-bottom: 2.5px solid transparent;
  background: transparent; box-shadow: none; appearance: none;
  -webkit-appearance: none; border-radius: 0;
  transition: color 0.15s, border-color 0.15s; cursor: pointer;
}
.anchor-nav__item:hover,
.anchor-nav__item.active {
  color: var(--orange); border-bottom-color: var(--orange);
}
.anchor-nav__item:focus-visible {
  outline: 2px solid var(--orange); outline-offset: -2px;
}

/* =====================================================
   SECTION COMMON
   ===================================================== */
.section { padding: 80px 32px; max-width: 1200px; margin: 0 auto; }
.section-wrap--bg  { background: var(--orange-pale); }
.section-wrap--gray{ background: var(--gray-light); }

.section-head { margin-bottom: 44px; display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.section-head__titles {}
.section-head__link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 500; color: var(--orange);
  border: 1.5px solid var(--orange); padding: 8px 18px; border-radius: var(--r-pill);
  transition: background 0.15s, color 0.15s;
}
.section-head__link:hover { background: var(--orange); color: var(--white); }
.section-head__link svg { width: 14px; height: 14px; transition: transform 0.15s; }
.section-head__link:hover svg { transform: translateX(3px); }
.section-en {
  font-family: var(--font-en); font-size: clamp(22px, 3vw, 32px);
  font-weight: 400; letter-spacing: 0.1em; color: var(--orange);
  display: block; line-height: 1; margin-bottom: 8px;
}
.section-ja { font-size: 16px; font-weight: 500; color: var(--ink); display: block; }

/* Section background variant (alias of section-wrap--bg, kept for compatibility) */
.section--bg { background: var(--orange-pale); }

/* =====================================================
   SERVICES GRID (top page)
   ===================================================== */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.service-card {
  background: var(--white); border: 1.5px solid var(--gray-mid);
  border-radius: var(--r-lg); overflow: hidden;
  transition: transform 0.22s var(--ease), box-shadow 0.22s, border-color 0.2s;
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--orange); }
.service-card__img { aspect-ratio: 16/9; background: var(--gray-light); overflow: hidden; flex-shrink: 0; }
.service-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--ease); }
.service-card:hover .service-card__img img { transform: scale(1.04); }
.service-card__img-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  color: var(--gray); font-size: 13px; font-family: var(--font-en); letter-spacing: 0.06em;
}
.service-card__body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.service-card__tag {
  display: inline-block; background: var(--orange-light); color: var(--orange-dark);
  font-family: var(--font-en); font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 4px 12px; border-radius: var(--r-pill);
  margin-bottom: 12px; width: fit-content;
}
.service-card__name { font-size: 18px; font-weight: 700; color: var(--ink); margin-bottom: 10px; line-height: 1.3; }
.service-card__desc { font-size: 14px; font-weight: 300; color: var(--ink-mid); line-height: 1.8; flex: 1; margin-bottom: 16px; }
.service-card__link { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 700; color: var(--orange); margin-top: auto; }
.service-card__link svg { width: 14px; height: 14px; transition: transform 0.15s; }
.service-card:hover .service-card__link svg { transform: translateX(4px); }

/* Cafe card variant */
.service-card--cafe { background: var(--cafe-dark); border-color: var(--cafe-dark); }
.service-card--cafe .service-card__tag { background: rgba(197,168,130,0.2); color: var(--cafe-mid); }
.service-card--cafe .service-card__name { color: #f0e8d8; }
.service-card--cafe .service-card__desc { color: #e3e3e3; }
.service-card--cafe .service-card__link { color: var(--cafe-mid); }
.service-card--cafe:hover { border-color: var(--cafe-mid); }
.service-card--cafe .service-card__img { background: #3d2b1e; }
.service-card--cafe .service-card__img-placeholder { color: #5a4030; }

/* =====================================================
   CONCEPT STRIP (top page)
   ===================================================== */
.concept-strip { background: var(--orange); padding: 64px 32px; position: relative; overflow: hidden; }
.concept-strip::before {
  content: 'BODYUP'; position: absolute; right: -20px; top: 50%; transform: translateY(-50%);
  font-family: var(--font-en); font-size: 160px; font-weight: 700; color: rgba(255,255,255,0.08);
  letter-spacing: 0.05em; white-space: nowrap; pointer-events: none; user-select: none;
}
.concept-strip__inner {
  max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.6fr;
  gap: 64px; align-items: center; position: relative;
}
.concept-strip__label {
  font-family: var(--font-en); font-size: 12px; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.65); margin-bottom: 16px;
}
.concept-strip__h2 { font-size: clamp(26px, 3.5vw, 38px); font-weight: 700; color: var(--white); line-height: 1.4; }
.concept-strip__body { color: #fff; font-size: 16px; font-weight: 300; line-height: 1.95; }
.concept-strip__body p + p { margin-top: 1em; }
.concept-features { margin-top: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.concept-feature { background: rgba(255,255,255,0.12); border-radius: var(--r-md); padding: 14px 16px; }
.concept-feature__en {
  font-family: var(--font-en); font-size: 10px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 4px;
}
.concept-feature__ja { font-size: 14px; font-weight: 500; color: var(--white); }

/* =====================================================
   RESERVE / CTA BLOCK
   ===================================================== */
.reserve-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.reserve-heading {
  font-size: clamp(22px, 3vw, 32px); font-weight: 700;
  line-height: 1.45; color: var(--ink); margin-bottom: 14px;
}
.reserve-heading span { color: var(--orange); }
.reserve-sub { font-size: 16px; font-weight: 300; color: var(--ink-mid); line-height: 1.8; }
.reserve-actions { display: flex; flex-direction: column; gap: 14px; }
.reserve-cta-btn {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px; border-radius: var(--r-lg);
  border: 2px solid var(--gray-mid); background: var(--white);
  transition: box-shadow 0.18s, transform 0.18s, border-color 0.18s; cursor: pointer;
}
.reserve-cta-btn:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.reserve-cta-btn--line:hover    { border-color: var(--line-green); }
.reserve-cta-btn--reserve:hover { border-color: var(--orange); }
.reserve-cta-btn--tel:hover     { border-color: var(--ink); }
.reserve-cta-icon {
  width: 48px; height: 48px; border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.reserve-cta-btn--line    .reserve-cta-icon { background: var(--line-green); }
.reserve-cta-btn--reserve .reserve-cta-icon { background: var(--orange); }
.reserve-cta-btn--tel     .reserve-cta-icon { background: var(--ink); }
.reserve-cta-icon svg { width: 24px; height: 24px; }
.reserve-cta-label { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 3px; }
.reserve-cta-note  { font-family: var(--font-en); font-size: 12px; font-weight: 300; letter-spacing: 0.04em; color: var(--gray); }

/* =====================================================
   ACCESS
   ===================================================== */
.access-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; align-items: start; }
.access-map { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 16/9; box-shadow: var(--shadow-md); }
.access-map iframe { width: 100%; height: 100%; border: none; display: block; }
.access-table { width: 100%; border-collapse: collapse; }
.access-table tr { border-bottom: 1px solid var(--gray-mid); }
.access-table tr:first-child td { padding-top: 0; }
.access-table td { padding: 14px 0; font-size: 14px; line-height: 1.65; font-weight: 400; vertical-align: top; color: var(--ink-mid); }
.access-table td:first-child {
  font-family: var(--font-en); font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange);
  white-space: nowrap; padding-right: 20px; padding-top: 17px;
}
.access-map-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 500; color: var(--orange);
  border-bottom: 1px solid var(--orange); padding-bottom: 1px;
  margin-top: 18px; transition: opacity 0.15s;
}
.access-map-link:hover { opacity: 0.75; }
.access-map-link svg { width: 12px; height: 12px; }

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer { background: var(--ink); padding: 52px 32px 36px; }
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: start;
  padding-bottom: 32px; border-bottom: 1px solid #333;
}
.footer-logo {
  font-family: var(--font-en); font-size: 18px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange); margin-bottom: 10px;
}
.footer-address { font-size: 13px; font-weight: 300; color: #fff; line-height: 1.8; margin-bottom: 20px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 6px 20px; }
.footer-links a { font-size: 13px; font-weight: 300; color: #fff; transition: color 0.15s; }
.footer-links a:hover { color: var(--orange); }
.footer-sns-col { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.footer-sns-link {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-en); font-size: 13px; font-weight: 300;
  color: #fff; transition: color 0.15s;
}
.footer-sns-link:hover { color: var(--orange); }
.footer-sns-link svg { width: 16px; height: 16px; }
.footer-bottom {
  max-width: 1200px; margin: 24px auto 0;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.footer-copy { font-family: var(--font-en); font-size: 11px; font-weight: 300; letter-spacing: 0.06em; color: #999; }

/* =====================================================
   ANIMATIONS
   ===================================================== */
.fade-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

  @media (max-width: 767px) {
    #pageTop {
      right: 16px;
      bottom: 16px;
      width: 46px;
      height: 46px;
      font-size: 21px;
    }
  }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .access-grid     { grid-template-columns: 1fr; }
  .reserve-inner   { grid-template-columns: 1fr; }
  .side-float      { display: none; }
  .section         { padding: 64px 24px; }
  .page-hero       { padding: 40px 24px 36px; }
  .anchor-nav__inner { padding: 0 24px; }
}
@media (max-width: 768px) {
  html { font-size: 16px; }
  .nav__links, .btn-tel-nav { display: none; }
  .nav__hamburger  { display: flex; }
  .nav             { padding: 0 20px; }
  .footer-inner    { grid-template-columns: 1fr; }
  .footer-sns-col  { align-items: flex-start; }
  .footer          { padding: 36px 20px; }
  .section         { padding: 52px 20px; }
  .page-hero       { padding: 32px 20px; }
  .anchor-nav__inner { padding: 0 16px; }
  .hero__arrow     { display: none; }
  .hero__overlay   { background: linear-gradient(180deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.62) 100%); }
  .hero__content   { padding: 0 24px 56px; position: absolute; bottom: 0; left: 0; right: 0; max-width: 100%; }
  .hero__slide-img,
  .hero__slide-img-placeholder { aspect-ratio: 3/4; }
    .services-grid, .concept-strip__inner{display: block;}
    .service-card, .concept-strip__h2{margin-bottom: 14px;}
}
@media (max-width: 480px) {
  .btn-reserve span { display: none; }
}
