/* ============================================================
   Soin — style.css
   Design: femyou.jp inspired / Private Esthe Salon
   Author: web-agency / coder agent
   ============================================================ */

/* ----------------------------------------
   0. Design Tokens
---------------------------------------- */
:root {
  /* Color */
  --color-bg:         #FAFAF8;
  --color-surface:    #EDE8E0;
  --color-surface-2:  #F5EEE8;
  --color-pink:       #D4A5A0;
  --color-pink-light: #EDD5D2;
  --color-gold:       #C4A882;
  --color-text:       #3A3530;
  --color-text-sub:   #7A7068;
  --color-border:     #DDD5CC;

  /* Typography */
  --font-heading-en: 'Cormorant Garamond', serif;
  --font-heading-ja: 'Noto Serif JP', serif;
  --font-body:       'Noto Sans JP', sans-serif;

  /* Spacing */
  --space-xs:  4px;
  --space-sm:  8px;
  --space-md:  16px;
  --space-lg:  32px;
  --space-xl:  64px;
  --space-2xl: 128px;
  --space-3xl: 200px;

  /* Animation */
  --ease-out:    cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
  --dur-slow:    1.2s;
  --dur-base:    0.6s;
  --dur-fast:    0.3s;

  /* Layout */
  --max-width:      1200px;
  --padding-mobile: 20px;
  --padding-pc:     80px;
  --header-h:       72px;
}

/* ----------------------------------------
   1. Reset & Base
---------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 2.0;
  letter-spacing: 0.05em;
  overflow-x: hidden;
}

/* JS がカスタムカーソルを確認してからクラスを付与 → その時だけネイティブカーソルを非表示 */
body.has-custom-cursor,
body.has-custom-cursor * {
  cursor: none !important;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
}

/* ----------------------------------------
   2. Loading Screen
---------------------------------------- */
#loading {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--ease-out), visibility 0.8s;
}

#loading.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loading-logo {
  font-family: var(--font-heading-en);
  font-weight: 300;
  font-size: 36px;
  letter-spacing: 0.3em;
  color: var(--color-text);
  opacity: 0;
  animation: loadingFadeIn 0.8s var(--ease-out) 0.3s forwards;
}

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

/* ----------------------------------------
   3. Custom Cursor（デスクトップのみ）
---------------------------------------- */
#cursor,
#cursor-follower {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9000;
  transform: translate(-50%, -50%);
  opacity: 0; /* 初期は非表示・JS の mousemove 後に表示 */
  transition: opacity 0.3s var(--ease-out),
              width 0.3s var(--ease-out),
              height 0.3s var(--ease-out);
  top: -100px; /* 初期位置を画面外に */
  left: -100px;
}

#cursor {
  width: 8px;
  height: 8px;
  background-color: var(--color-pink);
}

#cursor-follower {
  width: 32px;
  height: 32px;
  border: 1px solid var(--color-pink);
  background: transparent;
}

#cursor.is-hover {
  width: 12px;
  height: 12px;
}

#cursor-follower.is-hover {
  width: 48px;
  height: 48px;
}

/* デスクトップのみ表示 */
@media (max-width: 767px) {
  #cursor, #cursor-follower { display: none; }
}

/* ----------------------------------------
   4. Floating Orbs
---------------------------------------- */
.float-orb {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.18;
  animation: orbFloat 8s var(--ease-in-out) infinite;
}

.float-orb--1 {
  width: 120px;
  height: 120px;
  background: var(--color-pink-light);
  top: 20%;
  right: 8%;
  animation-delay: 0s;
  animation-duration: 9s;
}

.float-orb--2 {
  width: 80px;
  height: 80px;
  background: var(--color-surface);
  top: 60%;
  left: 4%;
  animation-delay: 2s;
  animation-duration: 11s;
}

.float-orb--3 {
  width: 150px;
  height: 150px;
  background: var(--color-pink-light);
  bottom: 20%;
  right: 12%;
  animation-delay: 4s;
  animation-duration: 13s;
}

.float-orb--4 {
  width: 60px;
  height: 60px;
  background: var(--color-gold);
  top: 40%;
  left: 15%;
  animation-delay: 6s;
  animation-duration: 10s;
}

@keyframes orbFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33%       { transform: translateY(-20px) rotate(2deg); }
  66%       { transform: translateY(10px) rotate(-1deg); }
}

/* ----------------------------------------
   4-b. Section Orbs (per-section, position: absolute)
---------------------------------------- */
.section-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  animation: orbFloat 9s ease-in-out infinite;
}

/* .section-inner must sit above orbs */
.section-inner {
  position: relative;
  z-index: 1;
}

/* ── Concept 5個 — pink & gold ── */
.section-orb--concept-1 { width:150px; height:150px; background:#D4A5A0; opacity:0.14; animation-duration:10s; animation-delay:0s; }
.section-orb--concept-2 { width: 90px; height: 90px; background:#C4A882; opacity:0.12; animation-duration:12s; animation-delay:3s; }
.section-orb--concept-3 { width: 55px; height: 55px; background:#D4A5A0; opacity:0.10; animation-duration: 8s; animation-delay:5s; }
.section-orb--concept-4 { width:110px; height:110px; background:#C4A882; opacity:0.09; animation-duration:11s; animation-delay:2s; }
.section-orb--concept-5 { width: 44px; height: 44px; background:#D4A5A0; opacity:0.11; animation-duration: 9s; animation-delay:7s; }

/* ── Menu 7個 — pink-light & soft pink ── */
.section-orb--menu-1 { width:170px; height:170px; background:#EDD5D2; opacity:0.22; animation-duration:11s; animation-delay:1s; }
.section-orb--menu-2 { width: 85px; height: 85px; background:#D4A5A0; opacity:0.13; animation-duration: 9s; animation-delay:4s; }
.section-orb--menu-3 { width: 52px; height: 52px; background:#EDD5D2; opacity:0.18; animation-duration:13s; animation-delay:7s; }
.section-orb--menu-4 { width:105px; height:105px; background:#D4A5A0; opacity:0.10; animation-duration:10s; animation-delay:2s; }
.section-orb--menu-5 { width: 68px; height: 68px; background:#EDD5D2; opacity:0.16; animation-duration:12s; animation-delay:5s; }
.section-orb--menu-6 { width: 40px; height: 40px; background:#D4A5A0; opacity:0.12; animation-duration: 8s; animation-delay:0s; }
.section-orb--menu-7 { width:125px; height:125px; background:#EDD5D2; opacity:0.13; animation-duration:14s; animation-delay:6s; }

/* ── About 9個 — pink & gold ── */
.section-orb--about-1 { width:130px; height:130px; background:#C4A882; opacity:0.13; animation-duration:10s; animation-delay:2s; }
.section-orb--about-2 { width:105px; height:105px; background:#D4A5A0; opacity:0.12; animation-duration:14s; animation-delay:5s; }
.section-orb--about-3 { width: 58px; height: 58px; background:#C4A882; opacity:0.10; animation-duration: 9s; animation-delay:0s; }
.section-orb--about-4 { width: 82px; height: 82px; background:#D4A5A0; opacity:0.11; animation-duration:11s; animation-delay:3s; }
.section-orb--about-5 { width:145px; height:145px; background:#C4A882; opacity:0.08; animation-duration:13s; animation-delay:6s; }
.section-orb--about-6 { width: 62px; height: 62px; background:#D4A5A0; opacity:0.12; animation-duration: 8s; animation-delay:4s; }
.section-orb--about-7 { width: 88px; height: 88px; background:#C4A882; opacity:0.10; animation-duration:12s; animation-delay:7s; }
.section-orb--about-8 { width: 46px; height: 46px; background:#D4A5A0; opacity:0.11; animation-duration:10s; animation-delay:1s; }
.section-orb--about-9 { width:115px; height:115px; background:#C4A882; opacity:0.09; animation-duration:11s; animation-delay:8s; }

/* ── Owner 5個 — gold & white ── */
.section-orb--owner-1 { width:135px; height:135px; background:#C4A882; opacity:0.18; animation-duration:11s; animation-delay:0s; }
.section-orb--owner-2 { width: 88px; height: 88px; background:#FAFAF8; opacity:0.25; animation-duration: 9s; animation-delay:3s; }
.section-orb--owner-3 { width: 60px; height: 60px; background:#C4A882; opacity:0.14; animation-duration:12s; animation-delay:6s; }
.section-orb--owner-4 { width: 75px; height: 75px; background:#FAFAF8; opacity:0.20; animation-duration: 8s; animation-delay:2s; }
.section-orb--owner-5 { width: 42px; height: 42px; background:#C4A882; opacity:0.15; animation-duration:10s; animation-delay:5s; }

/* ── Voice 6個 — pink & gold ── */
.section-orb--voice-1 { width:115px; height:115px; background:#D4A5A0; opacity:0.13; animation-duration:10s; animation-delay:1s; }
.section-orb--voice-2 { width: 78px; height: 78px; background:#C4A882; opacity:0.12; animation-duration:12s; animation-delay:4s; }
.section-orb--voice-3 { width: 52px; height: 52px; background:#D4A5A0; opacity:0.10; animation-duration: 8s; animation-delay:2s; }
.section-orb--voice-4 { width: 95px; height: 95px; background:#C4A882; opacity:0.10; animation-duration:11s; animation-delay:5s; }
.section-orb--voice-5 { width: 58px; height: 58px; background:#D4A5A0; opacity:0.09; animation-duration: 9s; animation-delay:7s; }
.section-orb--voice-6 { width: 40px; height: 40px; background:#C4A882; opacity:0.11; animation-duration:13s; animation-delay:0s; }

/* ── FAQ 6個 — pink-light & soft pink ── */
.section-orb--faq-1 { width:155px; height:155px; background:#EDD5D2; opacity:0.20; animation-duration:12s; animation-delay:0s; }
.section-orb--faq-2 { width: 72px; height: 72px; background:#D4A5A0; opacity:0.12; animation-duration:10s; animation-delay:3s; }
.section-orb--faq-3 { width: 46px; height: 46px; background:#EDD5D2; opacity:0.18; animation-duration: 9s; animation-delay:6s; }
.section-orb--faq-4 { width:105px; height:105px; background:#D4A5A0; opacity:0.10; animation-duration:11s; animation-delay:2s; }
.section-orb--faq-5 { width: 62px; height: 62px; background:#EDD5D2; opacity:0.16; animation-duration:13s; animation-delay:5s; }
.section-orb--faq-6 { width: 82px; height: 82px; background:#D4A5A0; opacity:0.10; animation-duration: 8s; animation-delay:1s; }

/* ── Access 5個 — pink & gold ── */
.section-orb--access-1 { width:130px; height:130px; background:#D4A5A0; opacity:0.13; animation-duration:11s; animation-delay:2s; }
.section-orb--access-2 { width: 82px; height: 82px; background:#C4A882; opacity:0.12; animation-duration:13s; animation-delay:5s; }
.section-orb--access-3 { width: 56px; height: 56px; background:#D4A5A0; opacity:0.10; animation-duration: 9s; animation-delay:1s; }
.section-orb--access-4 { width: 98px; height: 98px; background:#C4A882; opacity:0.10; animation-duration:10s; animation-delay:4s; }
.section-orb--access-5 { width: 44px; height: 44px; background:#D4A5A0; opacity:0.11; animation-duration:12s; animation-delay:7s; }

/* ----------------------------------------
   5. Header / Navigation
---------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background-color: rgba(250, 250, 248, 0.2);
  transition: backdrop-filter var(--dur-base) var(--ease-out);
}

.header.is-scrolled {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--padding-mobile);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  font-family: var(--font-heading-en);
  font-weight: 300;
  font-size: 24px;
  letter-spacing: 0.3em;
  color: #B8807A;
  z-index: 1001;
}

.nav {
  display: none;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-link {
  font-family: var(--font-heading-en);
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.15em;
  color: #B8807A;
  transition: color var(--dur-fast) var(--ease-out);
}

.nav-link:hover {
  color: #8C5550;
}

.nav-link--cta {
  padding: 10px 28px;
  border: 1px solid var(--color-pink);
  border-radius: 100px;
  color: var(--color-pink);
  transition: background-color var(--dur-fast), color var(--dur-fast);
}

.nav-link--cta:hover {
  background-color: var(--color-pink);
  color: var(--color-bg);
}

@media (min-width: 1024px) {
  .header-inner {
    padding: 0 var(--padding-pc);
  }
  .nav {
    display: flex;
  }
  .hamburger {
    display: none;
  }
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  z-index: 1001;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 1px;
  background-color: var(--color-text);
  transition: transform var(--dur-base) var(--ease-out),
              opacity var(--dur-base) var(--ease-out);
  transform-origin: center;
}

.hamburger.is-active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.is-active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ----------------------------------------
   6. Mobile Menu
---------------------------------------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background-color: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-base) var(--ease-out),
              visibility var(--dur-base);
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-list {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.mobile-menu-item a {
  font-family: var(--font-heading-en);
  font-weight: 300;
  font-size: 28px;
  letter-spacing: 0.2em;
  color: var(--color-text-sub);
  transition: color var(--dur-fast);
}

.mobile-menu-item a:hover {
  color: var(--color-pink);
}

.mobile-menu-cta {
  color: var(--color-pink) !important;
}

/* ----------------------------------------
   7. Section — Base
---------------------------------------- */
.section {
  padding: var(--space-2xl) 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--padding-mobile);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-label {
  display: block;
  font-family: var(--font-heading-en);
  font-weight: 300;
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.25em;
  color: var(--color-pink);
  margin-bottom: var(--space-md);
}

.section-title {
  font-family: var(--font-heading-ja);
  font-weight: 300;
  font-size: 20px;
  letter-spacing: 0.1em;
  color: var(--color-text);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .section {
    padding: var(--space-3xl) 0;
  }
  .section-inner {
    padding: 0 var(--padding-pc);
  }
  .section-title {
    font-size: 28px;
  }
}

/* ----------------------------------------
   8. Hero Section
---------------------------------------- */
.hero {
  position: relative;
  height: 100dvh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: -15%;  /* パララックス用に広めに */
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* 暗いオーバーレイ */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(58, 53, 48, 0.05) 0%,
    rgba(58, 53, 48, 0.18) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 var(--padding-mobile);
}

.hero-catch {
  font-family: var(--font-heading-ja);
  font-weight: 300;
  font-size: 28px;
  line-height: 1.8;
  letter-spacing: 0.15em;
  color: var(--color-text);
  margin-bottom: var(--space-lg);
}

.hero-catch .stagger-item {
  display: block;
}

.hero-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--color-text-sub);
  margin-bottom: var(--space-xl);
}

.hero-sub .stagger-item {
  background-color: rgba(212, 165, 160, 0.55);
  color: #fff;
  padding: 4px 12px;
  border-radius: 2px;
}

.hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}

.hero-scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--color-pink));
  animation: scrollLine 2s var(--ease-in-out) infinite;
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

.hero-scroll-text {
  font-family: var(--font-heading-en);
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--color-text-sub);
}

@media (min-width: 768px) {
  .hero-catch {
    font-size: 48px;
  }
  .hero-sub {
    font-size: 15px;
  }
}

/* ----------------------------------------
   9. Marquee Section
---------------------------------------- */
.marquee-section {
  overflow: hidden;
  padding: var(--space-lg) 0;
  background-color: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee-text {
  font-family: var(--font-heading-en);
  font-weight: 300;
  font-style: italic;
  font-size: 24px;
  letter-spacing: 0.08em;
  color: var(--color-text-sub);
  padding-right: 80px;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (min-width: 768px) {
  .marquee-text {
    font-size: 36px;
  }
}

/* ----------------------------------------
   10. Concept Section
---------------------------------------- */
.section--surface {
  background-color: var(--color-surface);
}

.section--bg {
  background-color: var(--color-bg);
}

.section--pink {
  background-color: var(--color-pink-light);
}

.concept-layout {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.concept-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 2px;
}

.concept-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  justify-content: center;
}

.concept-text p {
  font-family: var(--font-heading-ja);
  font-weight: 300;
  font-size: 15px;
  line-height: 2.2;
  letter-spacing: 0.08em;
  color: var(--color-text);
}

.concept-text .stagger-item {
  display: block;
}

@media (min-width: 768px) {
  .concept-layout {
    flex-direction: row;
    align-items: center;
    gap: var(--space-2xl);
  }
  .concept-image {
    flex: 1;
  }
  .concept-text {
    flex: 1;
  }
  .concept-text p {
    font-size: 17px;
  }
}

/* ----------------------------------------
   11. Menu Section
---------------------------------------- */
/* Trial Course */
.menu-trial {
  margin-bottom: var(--space-2xl);
  text-align: center;
}

.menu-trial-inner {
  display: inline-block;
  padding: var(--space-xl) var(--space-2xl);
  border: 1px solid var(--color-border);
  position: relative;
}

.menu-trial-badge {
  display: inline-block;
  background-color: var(--color-pink);
  color: var(--color-bg);
  font-size: 12px;
  letter-spacing: 0.12em;
  padding: 4px 20px;
  margin-bottom: var(--space-md);
}

.menu-trial-title {
  font-family: var(--font-heading-ja);
  font-weight: 300;
  font-size: 22px;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
}

.menu-trial-desc {
  font-size: 14px;
  color: var(--color-text-sub);
  margin-bottom: var(--space-lg);
}

.menu-trial-info {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: var(--space-xl);
  margin-bottom: var(--space-lg);
}

.menu-trial-duration {
  font-family: var(--font-heading-en);
  font-size: 40px;
  font-weight: 300;
  color: var(--color-text);
}

.menu-trial-duration small {
  font-size: 16px;
  margin-left: 2px;
  color: var(--color-text-sub);
}

.menu-trial-price {
  font-family: var(--font-heading-en);
  font-size: 40px;
  font-weight: 300;
  color: var(--color-pink);
}

.menu-trial-price small {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-sub);
}

/* Menu Groups */
.menu-group {
  margin-bottom: var(--space-xl);
}

.menu-group-title {
  font-family: var(--font-heading-en);
  font-weight: 300;
  font-style: italic;
  font-size: 20px;
  letter-spacing: 0.2em;
  color: var(--color-text-sub);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--color-border);
}

.menu-list {
  display: flex;
  flex-direction: column;
}

.menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-border);
}

.menu-item-info {
  display: flex;
  align-items: center;
  flex: 1;
  gap: var(--space-sm);
  min-width: 0;
}

.menu-item-name {
  font-family: var(--font-heading-ja);
  font-weight: 300;
  font-size: 15px;
  white-space: nowrap;
}

.menu-item-dots {
  flex: 1;
  height: 1px;
  border-bottom: 1px dotted var(--color-border);
  margin: 0 var(--space-sm);
}

.menu-item-detail {
  font-family: var(--font-heading-en);
  font-size: 13px;
  color: var(--color-text-sub);
  white-space: nowrap;
}

.menu-item-price {
  font-family: var(--font-heading-en);
  font-size: 18px;
  font-weight: 300;
  color: var(--color-text);
  margin-left: var(--space-md);
  white-space: nowrap;
}

.menu-note {
  text-align: center;
  margin-top: var(--space-xl);
}

.menu-note p {
  font-size: 13px;
  color: var(--color-text-sub);
  line-height: 1.8;
}

/* ----------------------------------------
   12. Commitment Section
---------------------------------------- */
.commitment-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.commitment-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.commitment-image img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 2px;
}

.commitment-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  justify-content: center;
}

.commitment-number {
  font-family: var(--font-heading-en);
  font-weight: 300;
  font-size: 48px;
  color: var(--color-border);
  line-height: 1;
}

.commitment-title {
  font-family: var(--font-heading-ja);
  font-weight: 300;
  font-size: 18px;
  letter-spacing: 0.08em;
  line-height: 1.6;
}

.commitment-text {
  font-size: 14px;
  color: var(--color-text-sub);
  line-height: 2.0;
}

@media (min-width: 768px) {
  .commitment-item {
    flex-direction: row;
    align-items: center;
    gap: var(--space-2xl);
  }
  .commitment-item--reverse {
    flex-direction: row-reverse;
  }
  .commitment-image {
    flex: 1;
    max-width: 40%;
  }
  .commitment-content {
    flex: 1;
    padding: var(--space-xl) 0;
  }
  .commitment-number {
    font-size: 72px;
  }
  .commitment-title {
    font-size: 22px;
  }
  .commitment-text {
    font-size: 15px;
  }
}

/* ----------------------------------------
   13. Owner Section
---------------------------------------- */
.owner-layout {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.owner-image img {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 2px;
}

.owner-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  justify-content: center;
}

.owner-name {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.owner-name-ja {
  font-family: var(--font-heading-ja);
  font-weight: 300;
  font-size: 24px;
  letter-spacing: 0.12em;
}

.owner-name-en {
  font-family: var(--font-heading-en);
  font-weight: 300;
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.18em;
  color: var(--color-text-sub);
}

.owner-qualifications {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.owner-qualifications li {
  font-size: 12px;
  letter-spacing: 0.08em;
  padding: 4px 14px;
  border: 1px solid var(--color-pink);
  color: var(--color-pink);
  border-radius: 100px;
}

.owner-bio {
  font-size: 14px;
  color: var(--color-text-sub);
  line-height: 2.0;
}

.owner-quote {
  padding: var(--space-lg);
  border-left: 2px solid var(--color-pink);
  background-color: rgba(212, 165, 160, 0.08);
}

.owner-quote p {
  font-family: var(--font-heading-ja);
  font-weight: 300;
  font-size: 15px;
  line-height: 2.0;
  letter-spacing: 0.08em;
}

.owner-achievements {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.owner-achievement {
  font-size: 12px;
  color: var(--color-text-sub);
  padding: 4px 14px;
  background-color: var(--color-surface);
  border-radius: 100px;
}

@media (min-width: 768px) {
  .owner-layout {
    flex-direction: row;
    align-items: center;
    gap: var(--space-2xl);
  }
  .owner-image {
    flex-shrink: 0;
    width: 380px;
  }
  .owner-image img {
    max-width: 100%;
  }
}

/* ----------------------------------------
   14. Voice Section
---------------------------------------- */
.voice-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.voice-item {
  padding: var(--space-xl);
  background-color: var(--color-bg);
  border-radius: 2px;
  position: relative;
}

.voice-item::before {
  content: '"';
  font-family: var(--font-heading-en);
  font-size: 80px;
  font-weight: 300;
  color: var(--color-pink-light);
  line-height: 1;
  position: absolute;
  top: 12px;
  left: 20px;
}

.voice-text {
  font-family: var(--font-heading-ja);
  font-weight: 300;
  font-size: 15px;
  line-height: 2.0;
  color: var(--color-text);
  position: relative;
  z-index: 1;
  padding-top: var(--space-lg);
}

.voice-author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-md);
  font-size: 13px;
  color: var(--color-text-sub);
  font-style: normal;
}

.voice-dash {
  color: var(--color-pink);
}

@media (min-width: 768px) {
  .voice-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }
}

/* ----------------------------------------
   15. FAQ Section
---------------------------------------- */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-lg) 0;
  font-family: var(--font-heading-ja);
  font-weight: 300;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-align: left;
  color: var(--color-text);
  gap: var(--space-md);
  transition: color var(--dur-fast);
}

.faq-question:hover {
  color: var(--color-pink);
}

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
  transition: transform var(--dur-base) var(--ease-out);
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background-color: var(--color-pink);
  border-radius: 1px;
  transition: transform var(--dur-base) var(--ease-out),
              opacity var(--dur-base) var(--ease-out);
}

.faq-icon::before {
  width: 1px;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.faq-icon::after {
  width: 100%;
  height: 1px;
  top: 50%;
  transform: translateY(-50%);
}

.faq-question[aria-expanded="true"] .faq-icon::before {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  overflow: hidden;
  transition: max-height var(--dur-base) var(--ease-out);
  max-height: 0;
}

.faq-answer:not([hidden]) {
  max-height: 400px;
}

.faq-answer[hidden] {
  display: block !important;
  max-height: 0;
}

.faq-answer p {
  padding: 0 0 var(--space-lg);
  font-size: 14px;
  color: var(--color-text-sub);
  line-height: 2.0;
}

/* ----------------------------------------
   16. Access Section
---------------------------------------- */
.access-layout {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.access-map iframe {
  width: 100%;
  height: 320px;
  border-radius: 2px;
  filter: grayscale(20%);
}

.access-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.access-detail {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-border);
}

.access-detail dt {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--color-text-sub);
  padding-top: 2px;
}

.access-detail dd {
  font-family: var(--font-heading-ja);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .access-layout {
    flex-direction: row;
    gap: var(--space-2xl);
    align-items: flex-start;
  }
  .access-map {
    flex: 1.2;
  }
  .access-map iframe {
    height: 400px;
  }
  .access-info {
    flex: 1;
  }
}

/* ----------------------------------------
   17. Footer
---------------------------------------- */
.footer {
  background-color: var(--color-text);
  color: var(--color-bg);
  padding: var(--space-2xl) 0 var(--space-xl);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--padding-mobile);
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  align-items: center;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-heading-en);
  font-weight: 300;
  font-size: 32px;
  letter-spacing: 0.35em;
  display: block;
  margin-bottom: var(--space-sm);
}

.footer-tagline {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(250, 250, 248, 0.5);
}

.footer-info p {
  font-size: 13px;
  color: rgba(250, 250, 248, 0.6);
  line-height: 2.0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
}

.footer-social {
  display: flex;
  gap: var(--space-xl);
}

.footer-social-link {
  font-family: var(--font-heading-en);
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.15em;
  color: rgba(250, 250, 248, 0.6);
  transition: color var(--dur-fast);
}

.footer-social-link:hover {
  color: var(--color-bg);
}

.footer-copy {
  font-size: 11px;
  color: rgba(250, 250, 248, 0.3);
  letter-spacing: 0.08em;
  border-top: 1px solid rgba(250, 250, 248, 0.1);
  padding-top: var(--space-xl);
  width: 100%;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-inner {
    padding: 0 var(--padding-pc);
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
  }
  .footer-brand,
  .footer-info,
  .footer-links {
    flex: 1;
    min-width: 200px;
  }
  .footer-links {
    align-items: flex-end;
  }
}

/* ----------------------------------------
   18. Buttons
---------------------------------------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0.1em;
  padding: var(--space-md) 48px;
  border-radius: 100px;
  transition: background-color var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-out);
}

.btn--primary {
  background-color: var(--color-pink);
  color: var(--color-bg);
  border: 1px solid var(--color-pink);
}

.btn--primary:hover {
  background-color: #c09490;
  transform: translateY(-1px);
}

.btn--secondary {
  background-color: transparent;
  color: var(--color-pink);
  border: 1px solid var(--color-pink);
}

.btn--secondary:hover {
  background-color: var(--color-pink-light);
}

/* ----------------------------------------
   19. Fixed CTA Bar（モバイル）
---------------------------------------- */
.fixed-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  padding: var(--space-sm) var(--space-md);
  padding-bottom: calc(var(--space-sm) + env(safe-area-inset-bottom));
  background-color: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid var(--color-border);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out);
}

.fixed-cta.is-visible {
  transform: translateY(0);
}

.fixed-cta-btn {
  display: block;
  background-color: var(--color-pink);
  color: var(--color-bg);
  text-align: center;
  padding: 14px;
  border-radius: 100px;
  font-size: 14px;
  letter-spacing: 0.1em;
  transition: background-color var(--dur-fast);
}

.fixed-cta-btn:hover {
  background-color: #c09490;
}

/* デスクトップでは非表示 */
@media (min-width: 768px) {
  .fixed-cta {
    display: none;
  }
}

/* ----------------------------------------
   20. GSAP Animation — Initial State
   CSSでは opacity を固定しない。
   初期状態は JS 側の gsap.set() で設定し、
   GSAP が使えない場合は常に表示状態を維持する。
---------------------------------------- */
.stagger-item {
  display: inline-block;
}

/* ----------------------------------------
   21. prefers-reduced-motion
---------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .marquee-track {
    animation: none;
  }

  .float-orb {
    animation: none;
  }

  .loading-logo {
    animation: none;
    opacity: 1;
  }

  .hero-scroll-line {
    animation: none;
  }
}
