/* ===================================
   LUXE Hair — style.css
   Design: Minimal editorial, photo-first
   =================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Noto+Sans+JP:wght@300;400;500&family=Jost:wght@200;300;400&display=swap');

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
  color: #1c1c1c;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  line-height: 1.8;
  cursor: default;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- Type scale --- */
:root {
  --serif: 'Cormorant Garamond', serif;
  --sans:  'Jost', sans-serif;
  --ja:    'Noto Sans JP', sans-serif;
  --black: #1c1c1c;
  --mid:   #666;
  --light: #aaa;
  --line:  #e0e0e0;
  --bg:    #fafaf8;
  --gold:  #b8965a;
  --green: #2d5a3d;
  --w:     1200px;
  --ease:  cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* ===================================
   LAYOUT
   =================================== */
.wrap { max-width: var(--w); margin: 0 auto; padding: 0 40px; }
@media (max-width: 768px) { .wrap { padding: 0 20px; } }

/* ===================================
   HEADER
   =================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 48px;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(12px);
  transition: background 0.4s var(--ease);
}
.site-header.scrolled { background: rgba(255,255,255,0.98); }

.logo {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  line-height: 1;
}
.logo-sub {
  display: block;
  font-family: var(--sans);
  font-size: 0.5rem;
  font-weight: 200;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--light);
  margin-top: 5px;
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-main a {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-main a:hover { color: var(--black); }
.nav-reserve-link {
  font-family: var(--sans) !important;
  font-size: 0.65rem !important;
  letter-spacing: 0.18em !important;
  color: var(--black) !important;
  border: 1px solid var(--black) !important;
  padding: 9px 22px !important;
  transition: background 0.25s, color 0.25s !important;
}
.nav-reserve-link:hover { background: var(--black) !important; color: #fff !important; }
.nav-recruit-link {
  font-size: 0.6rem !important;
  color: var(--light) !important;
  letter-spacing: 0.15em !important;
}
.nav-recruit-link:hover { color: var(--mid) !important; }

/* オンラインショップ リンク（ヘッダー） */
.nav-shop-link {
  font-family: var(--sans) !important;
  font-size: 0.6rem !important;
  font-weight: 300 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: var(--black) !important;
  background: #fff !important;
  border: 1px solid var(--black) !important;
  padding: 8px 18px !important;
  transition: background 0.25s, color 0.25s !important;
  white-space: nowrap !important;
}
.nav-shop-link:hover {
  background: var(--black) !important;
  color: #fff !important;
}

/* モバイルメニュー内ショップリンク */
.mobile-shop-link {
  color: var(--gold) !important;
  font-weight: 400 !important;
}
.mobile-shop-link::after { color: var(--gold) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--black);
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: 72px;
  background: #fff;
  z-index: 99;
  padding: 48px 32px;
  flex-direction: column;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--mid);
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-menu a::after { content: '—'; font-size: 0.65rem; color: var(--light); }
.mobile-reserve-btn {
  margin-top: 40px;
  display: block;
  text-align: center;
  padding: 16px;
  border: 1px solid var(--black);
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.header-spacer { height: 72px; }

@media (max-width: 900px) {
  .site-header { padding: 0 24px; }
  .nav-main { display: none; }
  .hamburger { display: flex; }
}

/* ===================================
   HERO
   =================================== */
.hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.hero-photo {
  position: relative;
  overflow: hidden;
  grid-column: 1 / -1;
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 8s var(--ease);
}
.hero-photo.loaded img { transform: scale(1.04); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.30) 0%,
    rgba(0,0,0,0.08) 60%,
    rgba(0,0,0,0) 100%
  );
}
.hero-content {
  position: absolute;
  bottom: 80px;
  left: 80px;
  color: #fff;
  max-width: 520px;
}
.hero-eyebrow {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 200;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}
.hero-title em {
  font-style: italic;
  display: block;
  font-weight: 300;
}
.hero-desc {
  font-family: var(--ja);
  font-size: 0.8rem;
  font-weight: 300;
  opacity: 0.8;
  letter-spacing: 0.06em;
  margin-bottom: 40px;
  line-height: 1.9;
}
.hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.btn-hero-reserve {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.7);
  padding: 14px 36px;
  transition: background 0.25s, border-color 0.25s;
}
.btn-hero-reserve:hover { background: rgba(255,255,255,0.15); border-color: #fff; }
.btn-hero-gallery {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 200;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn-hero-gallery::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: rgba(255,255,255,0.65);
}
.btn-hero-gallery:hover { color: rgba(255,255,255,0.9); }

.hero-scroll {
  position: absolute;
  bottom: 40px;
  right: 48px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 200;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  writing-mode: vertical-rl;
  gap: 14px;
}
.hero-scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.35);
  display: block;
}

@media (max-width: 768px) {
  .hero-content { left: 24px; bottom: 60px; max-width: calc(100% - 48px); }
  .hero-scroll { display: none; }
}

/* ===================================
   SECTION COMMONS
   =================================== */
.s { padding: 120px 0; }
.s-sm { padding: 80px 0; }
.s-bg { background: var(--bg); }

.s-head { margin-bottom: 64px; }
.s-head-center { text-align: center; }
.s-en {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 200;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--light);
  display: block;
  margin-bottom: 16px;
}
.s-title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  letter-spacing: 0.06em;
  line-height: 1.3;
}
.s-title-ja {
  font-family: var(--ja);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 300;
  letter-spacing: 0.12em;
  line-height: 1.4;
}
.s-rule {
  width: 32px;
  height: 1px;
  background: var(--line);
  margin-top: 24px;
}
.s-rule-center { margin: 24px auto 0; }
.s-lead {
  font-family: var(--ja);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--mid);
  line-height: 2;
  margin-top: 20px;
  max-width: 480px;
}
.s-lead-center { margin-left: auto; margin-right: auto; text-align: center; }

/* ===================================
   INTRO / CONCEPT
   =================================== */
.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 560px;
}
.intro-photo { overflow: hidden; position: relative; }
.intro-photo img { width: 100%; height: 100%; object-fit: cover; }
.intro-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px;
  background: var(--bg);
}
.intro-body .s-en { margin-bottom: 20px; }
.intro-body .s-title { margin-bottom: 28px; }
.intro-text {
  font-family: var(--ja);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--mid);
  line-height: 2.2;
  margin-bottom: 40px;
}
@media (max-width: 900px) {
  .intro { grid-template-columns: 1fr; }
  .intro-photo { aspect-ratio: 4/3; }
  .intro-body { padding: 60px 32px; }
}

/* ===================================
   GALLERY STRIP (featured styles)
   =================================== */
.gallery-strip {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 3px;
}
.gallery-strip .g-item { overflow: hidden; position: relative; }
.gallery-strip .g-item:first-child {
  grid-row: 1 / 3;
  aspect-ratio: unset;
  min-height: 560px;
}
.gallery-strip .g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery-strip .g-item:not(:first-child) { aspect-ratio: 1; }
.gallery-strip .g-item:hover img { transform: scale(1.04); }
.gallery-strip .g-label {
  position: absolute;
  bottom: 16px; left: 16px;
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-strip .g-item:hover .g-label { opacity: 1; }
.gallery-more {
  text-align: center;
  margin-top: 48px;
}

@media (max-width: 768px) {
  .gallery-strip {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-strip .g-item:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 0;
    aspect-ratio: 3/2;
  }
  .gallery-strip .g-item:not(:first-child) { aspect-ratio: 1; }
}

/* ===================================
   MENU STRIP
   =================================== */
.menu-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.menu-cell {
  background: #fff;
  padding: 40px 32px;
  position: relative;
  transition: background 0.25s;
}
.menu-cell:hover { background: var(--bg); }
.menu-cell-en {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 200;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--light);
  display: block;
  margin-bottom: 10px;
}
.menu-cell-name {
  font-family: var(--ja);
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}
.menu-cell-price {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1;
}
.menu-cell-price small {
  font-family: var(--ja);
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--light);
  letter-spacing: 0;
}
.menu-cell-items {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.menu-cell-item {
  display: flex;
  justify-content: space-between;
  font-family: var(--ja);
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--mid);
  padding: 7px 0;
  border-bottom: 1px solid #f0f0f0;
}
.menu-cell-item:last-child { border-bottom: none; }
.menu-cell-more {
  display: block;
  margin-top: 20px;
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 200;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--light);
  display: flex;
  align-items: center;
  gap: 8px;
}
.menu-cell-more::after { content: ''; display: block; width: 20px; height: 1px; background: var(--line); }
.menu-cell:hover .menu-cell-more { color: var(--mid); }

@media (max-width: 900px) {
  .menu-strip { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .menu-strip { grid-template-columns: 1fr; }
  .menu-cell { padding: 32px 24px; }
}

/* ===================================
   VOICE / REVIEW
   =================================== */
.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.voice-item {}
.voice-quote {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--line);
  line-height: 1;
  margin-bottom: -12px;
}
.voice-text {
  font-family: var(--ja);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--mid);
  line-height: 2.1;
  margin-bottom: 24px;
}
.voice-stars {
  font-size: 0.7rem;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 12px;
}
.voice-author { display: flex; align-items: center; gap: 14px; }
.voice-av {
  width: 44px; height: 44px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--line);
  flex-shrink: 0;
}
.voice-av img { width: 100%; height: 100%; object-fit: cover; }
.voice-name {
  font-family: var(--ja);
  font-size: 0.8rem;
  font-weight: 400;
  margin-bottom: 2px;
}
.voice-role { font-size: 0.72rem; color: var(--light); font-weight: 300; }

@media (max-width: 900px) { .voice-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ===================================
   ACCESS
   =================================== */
.access-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 80px;
  align-items: start;
}
.access-map { aspect-ratio: 4/3; background: var(--bg); overflow: hidden; }
.access-map img, .access-map iframe { width: 100%; height: 100%; object-fit: cover; border: 0; }
.access-info { padding-top: 8px; }
.access-table { width: 100%; }
.access-table tr { border-bottom: 1px solid var(--line); }
.access-table tr:first-child { border-top: 1px solid var(--line); }
.access-table td {
  padding: 16px 0;
  font-family: var(--ja);
  font-size: 0.85rem;
  font-weight: 300;
  vertical-align: top;
}
.access-table td:first-child {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 200;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--light);
  width: 80px;
  padding-top: 18px;
}
.access-table td:last-child { color: var(--mid); line-height: 1.8; }
.hours-block { margin-top: 0; }
.hours-row { display: flex; gap: 16px; line-height: 2; }
.hours-day { min-width: 72px; }
.access-btn { margin-top: 32px; }

@media (max-width: 900px) {
  .access-layout { grid-template-columns: 1fr; gap: 40px; }
}

/* ===================================
   CTA BAND
   =================================== */
.cta-band {
  padding: 100px 0;
  text-align: center;
  background: var(--black);
  color: #fff;
}
.cta-band .s-en { color: rgba(255,255,255,0.3); }
.cta-band .s-title { color: #fff; }
.cta-band .s-rule { background: rgba(255,255,255,0.15); }
.cta-desc {
  font-family: var(--ja);
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 2;
  margin-top: 20px;
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 48px;
}
.btn-outline-white {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
  padding: 16px 44px;
  transition: border-color 0.25s, background 0.25s;
}
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.06); }
.btn-outline-white.solid {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.5);
}
.btn-tel {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.55);
  display: block;
  margin-top: 24px;
}

/* ===================================
   FOOTER
   =================================== */
.site-footer {
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-logo {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-tagline {
  font-family: var(--ja);
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--light);
  line-height: 2;
  margin-bottom: 24px;
}
.footer-recruit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 200;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--light);
  border: 1px solid var(--line);
  padding: 10px 20px;
  transition: border-color 0.2s, color 0.2s;
}
.footer-recruit:hover { border-color: var(--mid); color: var(--mid); }
.footer-nav-label {
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 200;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--light);
  margin-bottom: 20px;
  display: block;
}
.footer-nav a {
  display: block;
  font-family: var(--ja);
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--mid);
  padding: 8px 0;
  border-bottom: 1px solid #f5f5f5;
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--black); }
.footer-nav a:last-child { border-bottom: none; }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 200;
  letter-spacing: 0.12em;
  color: var(--light);
}
.footer-addr {
  font-family: var(--ja);
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--light);
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ===================================
   FIXED RESERVE (mobile)
   =================================== */
.fixed-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--black);
  color: #fff;
  text-align: center;
  padding: 16px;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .fixed-bar { display: block; }
  body { padding-bottom: 52px; }
}

/* ===================================
   BUTTONS (shared)
   =================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  cursor: pointer;
}
.btn-outline {
  border: 1px solid var(--black);
  color: var(--black);
  padding: 13px 36px;
}
.btn-outline:hover { background: var(--black); color: #fff; }
.btn-outline-mid {
  border: 1px solid var(--line);
  color: var(--mid);
  padding: 13px 36px;
}
.btn-outline-mid:hover { border-color: var(--mid); color: var(--black); }
.btn-solid-green {
  background: var(--green);
  color: #fff;
  border: 1px solid var(--green);
  padding: 16px 40px;
}
.btn-solid-green:hover { background: #224833; border-color: #224833; }
.btn-lg { padding: 18px 52px; font-size: 0.68rem; }
.btn-full { width: 100%; }

/* ===================================
   PAGE HERO (sub pages)
   =================================== */
.page-hero {
  padding: 100px 0 80px;
  border-bottom: 1px solid var(--line);
}
.page-hero-inner {
  max-width: 600px;
}
.page-hero .s-en { margin-bottom: 16px; }
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: 0.06em;
  line-height: 1.2;
  margin-bottom: 20px;
}
.page-hero-desc {
  font-family: var(--ja);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--mid);
  line-height: 2;
}

/* ===================================
   MENU PAGE
   =================================== */
.menu-section { border-bottom: 1px solid var(--line); padding: 64px 0; }
.menu-section:last-of-type { border-bottom: none; }
.menu-sec-head {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 40px;
}
.menu-sec-title {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.06em;
}
.menu-sec-sub {
  font-family: var(--ja);
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--light);
}
.menu-rows {}
.menu-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid #f5f5f5;
}
.menu-row:last-child { border-bottom: none; }
.menu-row-left {}
.menu-row-name {
  font-family: var(--ja);
  font-size: 0.9rem;
  font-weight: 300;
  margin-bottom: 2px;
}
.menu-row-note { font-size: 0.75rem; color: var(--light); font-weight: 300; }
.menu-row-price {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 300;
  white-space: nowrap;
  margin-left: 20px;
}
.menu-row-price small { font-family: var(--ja); font-size: 0.7rem; color: var(--light); }

/* ===================================
   STYLE GALLERY PAGE
   =================================== */
.style-filter-bar {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: 48px;
  overflow-x: auto;
}
.style-filter-btn {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 200;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--light);
  padding: 16px 28px;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
  cursor: pointer;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  font-family: var(--sans);
}
.style-filter-btn.active, .style-filter-btn:hover {
  color: var(--black);
  border-bottom-color: var(--black);
}
.style-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
}
.style-grid .s-item { aspect-ratio: 3/4; overflow: hidden; position: relative; cursor: pointer; }
.style-grid .s-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.style-grid .s-item:hover img { transform: scale(1.05); }
.style-grid .s-item-cap {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 32px 16px 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.45));
  opacity: 0;
  transition: opacity 0.3s;
}
.style-grid .s-item:hover .s-item-cap { opacity: 1; }
.style-grid .s-item-cap span {
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}
@media (max-width: 900px) { .style-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .style-grid { grid-template-columns: repeat(2, 1fr); } }

/* ===================================
   RECRUIT PAGE
   =================================== */
.recruit-hero {
  background: var(--green);
  padding: 120px 0 100px;
  color: #fff;
}
.recruit-hero .s-en { color: rgba(255,255,255,0.4); }
.recruit-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.25;
  margin-bottom: 24px;
  color: #fff;
}
.recruit-hero-sub {
  font-family: var(--ja);
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  line-height: 2;
  margin-bottom: 48px;
  max-width: 480px;
}
.recruit-hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-white-outline {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.5);
  padding: 16px 40px;
  transition: background 0.25s;
}
.btn-white-outline:hover { background: rgba(255,255,255,0.12); }
.btn-white-solid {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--green);
  background: #fff;
  border: 1px solid #fff;
  padding: 16px 40px;
  transition: background 0.25s;
}
.btn-white-solid:hover { background: rgba(255,255,255,0.9); }

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-bottom: 1px;
}
.stat-cell {
  background: #fff;
  padding: 48px 40px;
  text-align: center;
}
.stat-cell.alt { background: var(--bg); }
.stat-figure {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--green);
  line-height: 1;
  letter-spacing: -0.01em;
}
.stat-unit { font-size: 1rem; }
.stat-label {
  font-family: var(--ja);
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--light);
  margin-top: 12px;
  letter-spacing: 0.04em;
}

.cond-table { width: 100%; border-collapse: collapse; }
.cond-table tr { border-bottom: 1px solid var(--line); }
.cond-table tr:first-child { border-top: 1px solid var(--line); }
.cond-table td {
  padding: 20px 0;
  font-family: var(--ja);
  font-size: 0.88rem;
  font-weight: 300;
  vertical-align: top;
}
.cond-table td:first-child {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 200;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--light);
  width: 100px;
  padding-top: 22px;
}
.cond-table td:last-child { color: var(--mid); line-height: 1.85; }
.cond-table strong { color: var(--green); font-weight: 500; }
.badge {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  border: 1px solid var(--green);
  padding: 2px 8px;
  margin-left: 8px;
  vertical-align: middle;
}

.voice-grid-r {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}
.voice-card-r {
  background: var(--bg);
  padding: 40px 36px;
}
.voice-photo {
  width: 56px; height: 56px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--line);
  margin-bottom: 20px;
}
.voice-photo img { width: 100%; height: 100%; object-fit: cover; }
.voice-card-name { font-size: 0.88rem; font-weight: 400; margin-bottom: 2px; }
.voice-card-role { font-size: 0.72rem; color: var(--light); font-weight: 300; margin-bottom: 20px; }
.voice-card-text { font-family: var(--ja); font-size: 0.83rem; font-weight: 300; color: var(--mid); line-height: 2; }
.voice-card-q { font-family: var(--serif); font-size: 3rem; color: rgba(45,90,61,0.15); line-height: 1; margin-bottom: -12px; }

.timeline { position: relative; padding-left: 80px; }
.timeline::before { content: ''; position: absolute; left: 56px; top: 0; bottom: 0; width: 1px; background: var(--line); }
.tl-item { position: relative; margin-bottom: 40px; }
.tl-time {
  position: absolute;
  left: -80px;
  top: 2px;
  width: 56px;
  text-align: right;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--green);
  letter-spacing: 0.05em;
}
.tl-dot {
  position: absolute;
  left: -28px;
  top: 7px;
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 1px solid var(--green);
  background: #fff;
}
.tl-title { font-size: 0.9rem; font-weight: 400; margin-bottom: 4px; }
.tl-desc { font-size: 0.82rem; color: var(--mid); font-weight: 300; line-height: 1.8; }

.edu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--line); }
.edu-cell { background: #fff; padding: 36px 32px; }
.edu-cell h4 { font-size: 0.9rem; font-weight: 400; margin-bottom: 12px; border-left: 2px solid var(--green); padding-left: 14px; }
.edu-cell p { font-size: 0.82rem; font-weight: 300; color: var(--mid); line-height: 1.9; }

.apply-section { background: var(--green); padding: 100px 0; color: #fff; }
.apply-section .s-en { color: rgba(255,255,255,0.4); }
.apply-section .s-title { color: #fff; }
.apply-section .s-rule { background: rgba(255,255,255,0.15); }
.apply-desc { font-family: var(--ja); font-size: 0.85rem; font-weight: 300; color: rgba(255,255,255,0.65); line-height: 2; margin-top: 20px; }
.apply-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 48px; }
.apply-tel { font-family: var(--serif); font-size: 1.6rem; font-weight: 300; letter-spacing: 0.06em; color: rgba(255,255,255,0.6); display: block; margin-top: 24px; }
.apply-tel-note { font-size: 0.7rem; color: rgba(255,255,255,0.35); display: block; margin-top: 4px; font-family: var(--ja); }
.apply-form { max-width: 540px; margin-top: 56px; }
.form-sep { text-align: center; margin-bottom: 32px; font-family: var(--sans); font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.3); }
.f-label { display: block; font-family: var(--sans); font-size: 0.6rem; font-weight: 200; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 8px; }
.f-req { font-size: 0.55rem; border: 1px solid rgba(255,255,255,0.25); padding: 1px 7px; margin-left: 6px; vertical-align: middle; }
.f-input, .f-textarea {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  padding: 14px 16px;
  font-size: 0.9rem;
  font-family: var(--ja);
  font-weight: 300;
  margin-bottom: 20px;
  transition: border-color 0.2s;
}
.f-input::placeholder, .f-textarea::placeholder { color: rgba(255,255,255,0.25); }
.f-input:focus, .f-textarea:focus { outline: none; border-color: rgba(255,255,255,0.5); }
.f-textarea { resize: vertical; min-height: 120px; }
.f-submit {
  width: 100%;
  background: rgba(255,255,255,0.95);
  color: var(--green);
  border: none;
  padding: 17px;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}
.f-submit:hover { background: #fff; }

@media (max-width: 768px) {
  .stats-row { grid-template-columns: 1fr 1fr; }
  .voice-grid-r { grid-template-columns: 1fr; }
  .edu-grid { grid-template-columns: 1fr; }
  .recruit-hero-btns { flex-direction: column; }
}
@media (max-width: 560px) {
  .stats-row { grid-template-columns: 1fr; }
  .cond-table td:first-child { font-size: 0.55rem; width: 80px; }
}

/* ===================================
   BLOG PAGE
   =================================== */
.blog-filter-row { display: flex; gap: 0; margin-bottom: 56px; border-bottom: 1px solid var(--line); overflow-x: auto; -webkit-overflow-scrolling: touch; }
.blog-filter-btn {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 200;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--light);
  padding: 14px 24px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.blog-filter-btn.active, .blog-filter-btn:hover {
  color: var(--black);
  border-bottom-color: var(--black);
}
.blog-grid-main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
}
.b-card a { display: block; }
.b-thumb { aspect-ratio: 16/9; overflow: hidden; margin-bottom: 20px; background: var(--bg); }
.b-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.b-card:hover .b-thumb img { transform: scale(1.04); }
.b-tags { display: flex; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }
.b-tag {
  font-family: var(--sans);
  font-size: 0.55rem;
  font-weight: 200;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 3px 10px;
  border: 1px solid var(--line);
  color: var(--light);
}
.b-tag-c { border-color: rgba(184,150,90,0.3); color: var(--gold); }
.b-tag-r { border-color: rgba(45,90,61,0.3); color: var(--green); }
.b-title {
  font-family: var(--ja);
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.65;
  margin-bottom: 10px;
  color: var(--black);
}
.b-date {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 200;
  letter-spacing: 0.1em;
  color: var(--light);
}

@media (max-width: 900px) { .blog-grid-main { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .blog-grid-main { grid-template-columns: 1fr; } }

/* ===================================
   FAQ
   =================================== */
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-family: var(--ja);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--black);
  text-align: left;
  gap: 24px;
  cursor: pointer;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--green); }
.faq-icon {
  font-family: var(--sans);
  font-size: 1.2rem;
  font-weight: 200;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
  line-height: 1;
}
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
  padding: 0 0 0 0;
}
.faq-a.open {
  max-height: 300px;
  padding: 0 24px 28px 0;
}
.faq-a p {
  font-family: var(--ja);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--mid);
}

/* ===================================
   RESPONSIVE — GLOBAL SPACING
   =================================== */
@media (max-width: 768px) {
  .s { padding: 72px 0; }
  .s-sm { padding: 56px 0; }
  .page-hero { padding: 60px 0 48px; }
  .cta-band { padding: 72px 0; }
  .recruit-hero { padding: 80px 0 64px; }
  .apply-section { padding: 72px 0; }
  .site-footer { padding: 60px 0 32px; }
  .s-head { margin-bottom: 48px; }

  /* Timeline — compact on mobile */
  .timeline { padding-left: 60px; }
  .timeline::before { left: 40px; }
  .tl-time { left: -60px; width: 36px; font-size: 0.65rem; }
  .tl-dot { left: -22px; }

  /* Conditions table — wrap label above value */
  .cond-table tr { display: flex; flex-direction: column; padding: 16px 0; }
  .cond-table td { padding: 2px 0; }
  .cond-table td:first-child { width: auto; padding-top: 0; }

  /* Page hero inner full width */
  .page-hero-inner { max-width: 100%; }
}

/* ===================================
   ONLINE SHOP BAND
   =================================== */
.shop-band {
  background: #fff;
  color: var(--black);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.shop-band::before {
  content: 'SHOP';
  position: absolute;
  font-family: var(--serif);
  font-size: 18vw;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: rgba(184,150,90,0.06);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
}
.shop-band .s-en  { color: var(--gold); }
.shop-band .s-title { color: var(--black); }
.shop-band-desc {
  font-family: var(--ja);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--mid);
  line-height: 2;
  margin-top: 16px;
  margin-bottom: 40px;
}
.shop-band-products {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.shop-band-item {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 200;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--light);
  display: flex;
  align-items: center;
  gap: 8px;
}
.shop-band-item::before {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}
.btn-shop {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #fff;
  background: var(--gold);
  padding: 18px 52px;
  transition: background 0.25s;
}
.btn-shop:hover { background: #a07d47; }
.btn-shop-sub {
  display: inline-block;
  margin-top: 20px;
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 200;
  letter-spacing: 0.2em;
  color: var(--light);
  text-decoration: underline;
}
.btn-shop-sub:hover { color: var(--gold); }

/* フッターのショップリンク強調 */
.footer-shop-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold) !important;
  font-weight: 400 !important;
}
.footer-shop-link::before {
  content: '▸';
  font-size: 0.7rem;
}

/* ===================================
   SCROLL REVEAL
   =================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal].revealed {
  opacity: 1;
  transform: none;
}
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }

/* ===== Blog pagination ===== */
.blog-pagination { text-align: center; padding: 2rem 0 1rem; }
.pagination-inner { display: inline-flex; gap: .5rem; flex-wrap: wrap; justify-content: center; }
.pg-btn {
  padding: .5rem 1rem; border: 1px solid #ccc; background: #fff;
  cursor: pointer; font-size: .85rem; transition: all .2s;
}
.pg-btn:hover { border-color: #111; background: #111; color: #fff; }
.pg-btn.active { background: #111; color: #fff; border-color: #111; }

/* ===== Blog post page ===== */
.post-container { padding: 4rem 1rem 6rem; max-width: 800px; }
.post-header { border-bottom: 1px solid #eee; padding-bottom: 2rem; margin-bottom: 2rem; }
.post-title { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 700; line-height: 1.4; margin: .5rem 0 1rem; }
.post-eyecatch { margin: 1.5rem 0; }
.post-eyecatch img { width: 100%; height: auto; max-height: 480px; object-fit: cover; }
.post-body { line-height: 1.9; color: #333; }
.post-body h2 { font-size: 1.3rem; margin: 2rem 0 1rem; padding-bottom: .5rem; border-bottom: 2px solid #111; }
.post-body h3 { font-size: 1.1rem; margin: 1.5rem 0 .75rem; }
.post-body p { margin-bottom: 1.2rem; }
.post-body img { max-width: 100%; height: auto; margin: 1rem 0; }
.post-footer { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid #eee; }
.b-thumb-placeholder { width: 100%; height: 100%; background: #f0ede8; }
