/* ============================================
   FUWALY v8.1.0 PREMIUM
   TOKYO LABEL FUWALY - デザイン刷新版
   Cast-DB API連携 / Drip Feed対応
   認証ページ: ダークエレガンス
   ヘッダー/フッター: フェミニンピンク
   ============================================ */

/* ---------- Variables ---------- */
:root {
  /* Colors */
  --gold: #C8A859;
  --gold-light: #E2C98C;
  --gold-dark: #B8984A;
  --pink: #F8D6DA;
  --pink-light: #FEF5F3;
  --pink-dark: #E91E63;
  --pink-feminine: #FDF2F4;
  --azuki: #4A2D3A;
  --azuki-mid: #6B3D52;
  --azuki-light: #7D4A5E;
  --navy: #4A2D3A;
  --navy-light: #6B3D52;
  --text-dark: #1a1a1a;
  --text-medium: #3a3a3a;
  --text-light: #6a6a6a;
  --white: #FFFFFF;
  --bg-cream: #FFFBF5;
  --bg-blush: #FDF8F6;
  
  /* Typography */
  --font-serif: "Noto Serif JP", "Hiragino Mincho ProN", serif;
  --font-display: "Cormorant Garamond", serif;
  --text-body: 1rem;
  --text-sm: 0.875rem;
  --text-xs: 0.8rem;
  --line-height-body: 2;
  --line-height-tight: 1.6;
  
  /* Spacing - 統一スケール */
  --section-padding: 6rem;
  --section-padding-sm: 4rem;
  --spacing-xl: 3rem;
  --spacing-lg: 2rem;
  --spacing-md: 1.5rem;
  --spacing-sm: 1rem;
  --spacing-xs: 0.5rem;
  
  /* Border Radius - 統一スケール */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-full: 50px;
  
  /* Grid */
  --grid-gap: 2rem;
  --grid-gap-sm: 1rem;
  
  /* Transitions */
  --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Shadows */
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 10px 40px rgba(0, 0, 0, 0.12);
  --shadow-gold: 0 8px 35px rgba(200, 168, 89, 0.4);
  
  /* Hero Heights */
  --hero-height-top: 100vh;
  --hero-height-sub: 50vh;
  --hero-min-top: 700px;
  --hero-min-sub: 400px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-serif);
  color: var(--text-dark);
  line-height: 1.9;
  background: var(--white);
  overflow-x: hidden;
  font-weight: 400;
}

body.loading {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---------- Utility ---------- */
.gold { color: var(--gold); }
.sp-only { display: none; }

@media (max-width: 768px) {
  .sp-only { display: inline; }
  .pc-only { display: none; }
}

/* ============================================
   LOADER - ローディング画面
   ============================================ */

.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: linear-gradient(135deg, var(--pink-light) 0%, var(--white) 50%, var(--bg-cream) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__inner {
  text-align: center;
}

.loader__logo {
  margin-bottom: 2rem;
}

.loader__logo-sub {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-bottom: 0.3rem;
  animation: fadeInDown 0.8s ease forwards;
}

.loader__logo-main {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: var(--text-dark);
  animation: fadeInUp 0.8s ease 0.2s forwards;
  opacity: 0;
}

.loader__bar {
  width: 200px;
  height: 2px;
  background: rgba(200, 168, 89, 0.2);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
}

.loader__bar span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  animation: loaderBar 2s ease forwards;
}

.loader__text {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  color: var(--text-light);
  animation: pulse 1.5s ease infinite;
}

@keyframes loaderBar {
  0% { width: 0; }
  100% { width: 100%; }
}

/* ============================================
   SAKURA PARTICLES - 桜パーティクル
   ============================================ */

.sakura-container {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.sakura {
  position: absolute;
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, var(--pink) 0%, rgba(248, 214, 218, 0.6) 100%);
  border-radius: 50% 0 50% 50%;
  opacity: 0;
  animation: sakuraFall linear infinite;
  filter: blur(0.5px);
}

.sakura::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  transform: rotate(45deg);
}

@keyframes sakuraFall {
  0% {
    opacity: 0;
    transform: translateY(-10vh) rotate(0deg) translateX(0);
  }
  10% {
    opacity: 0.8;
  }
  90% {
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    transform: translateY(110vh) rotate(720deg) translateX(100px);
  }
}

/* ============================================
   HEADER
   ============================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: var(--transition);
}

.header.scrolled {
  background: var(--pink-feminine);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-soft);
}

.header__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.header__logo-sub {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  color: var(--gold);
}

.header__logo-main {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  color: var(--text-dark);
}

.header.scrolled .header__logo-main {
  color: var(--text-dark);
}

.header:not(.scrolled) .header__logo-main {
  color: var(--white);
  text-shadow: 0 2px 8px rgba(0,0,0,0.6), 0 4px 20px rgba(0,0,0,0.4);
}

.header:not(.scrolled) .header__logo-sub {
  color: var(--gold);
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.header__nav ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.header__nav a {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--text-medium);
  padding: 0.5rem 0;
  position: relative;
}

.header:not(.scrolled) .header__nav a {
  color: var(--white);
  text-shadow: 0 1px 5px rgba(0,0,0,0.3);
}

.header__nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}

.header__nav a:hover::after {
  width: 100%;
}

.header__nav-cta {
  padding: 0.6rem 1.5rem !important;
  background: var(--gold);
  color: var(--white) !important;
  border-radius: 4px;
  text-shadow: none !important;
}

.header__nav-cta:hover {
  background: var(--gold-dark);
}

.header__nav-cta::after {
  display: none;
}

.header__tel {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.3;
}

.header__tel a {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  color: var(--gold);
}

.header__tel span {
  font-size: 0.85rem;
  color: var(--text-light);
}

.header:not(.scrolled) .header__tel span {
  color: rgba(255,255,255,0.8);
}

.header__menu {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.header__menu span {
  width: 25px;
  height: 2px;
  background: var(--text-dark);
  transition: var(--transition);
}

.header:not(.scrolled) .header__menu span {
  background: var(--white);
}

.header__menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.header__menu.active span:nth-child(2) {
  opacity: 0;
}

.header__menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background: var(--white);
  z-index: 999;
  transition: var(--transition);
  box-shadow: -10px 0 40px rgba(0,0,0,0.1);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu__nav {
  padding: 6rem 2rem 2rem;
}

.mobile-menu__nav ul {
  list-style: none;
}

.mobile-menu__nav li {
  border-bottom: 1px solid #eee;
}

.mobile-menu__nav a {
  display: block;
  padding: 1.2rem 0;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.15em;
  color: var(--text-dark);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2.5rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  position: relative;
  overflow: hidden;
}

.btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: var(--transition);
}

.btn:hover svg {
  transform: translateX(4px);
}

/* Primary Button (Gold + Glow) */
.btn--primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 45px rgba(200, 168, 89, 0.5);
}

/* ヒーロー内のプライマリボタンにパルス追加 */
.hero .btn--primary,
.auth-cta .btn--primary {
  animation: btnPulse 4s ease-in-out 2s infinite;
}

.btn--glow::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: shimmer 3s infinite;
}

/* White Button */
.btn--white {
  background: var(--white);
  color: var(--gold);
}

.btn--white:hover {
  background: var(--navy);
  color: var(--white);
}

/* White Outline */
.btn--white-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}

.btn--white-outline:hover {
  background: var(--white);
  color: var(--gold);
}

/* Outline Button */
.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.btn--outline:hover {
  background: var(--gold);
  color: var(--white);
}

/* LINE Button */
.btn--line {
  background: #06C755;
  color: var(--white);
}

.btn--line:hover {
  background: #05a648;
}

@keyframes shimmer {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

/* ============================================
   SECTION BASE
   ============================================ */

.section-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.section-label--light {
  color: var(--gold-light);
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.section-title--center {
  text-align: center;
}

.section-title--light {
  color: var(--white);
}

.section-lead {
  font-size: var(--text-body);
  color: var(--text-medium);
  line-height: var(--line-height-body);
  margin-bottom: var(--spacing-lg);
  text-align: center;
}

.section-lead--light {
  color: rgba(255,255,255,0.85);
}

.section-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ============================================
   AUTH PAGE - 認証ページ
   ============================================ */

.auth-body {
  background: var(--pink-light);
}

.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.auth-page.fade-out {
  animation: authFadeOut 0.5s ease forwards;
}

@keyframes authFadeOut {
  to { opacity: 0; visibility: hidden; }
}

.auth-bg {
  position: absolute;
  inset: 0;
}

.auth-bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 2s ease;
}

.auth-bg-slide.active {
  opacity: 1;
  animation: heroZoom 25s ease-in-out infinite alternate;
}

.auth-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.15) 0%,
    rgba(255,255,255,0.35) 40%,
    rgba(255,255,255,0.9) 100%
  );
}

/* Floating particles effect */
.auth-page::before,
.auth-page::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,168,89,0.1) 0%, transparent 70%);
  animation: floatParticle 20s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}

.auth-page::before {
  top: 10%;
  left: -5%;
  animation-delay: 0s;
}

.auth-page::after {
  bottom: 15%;
  right: -5%;
  animation-delay: -10s;
  width: 250px;
  height: 250px;
}

@keyframes floatParticle {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
  25% { transform: translate(30px, -20px) scale(1.1); opacity: 0.7; }
  50% { transform: translate(10px, 20px) scale(0.95); opacity: 0.6; }
  75% { transform: translate(-20px, 10px) scale(1.05); opacity: 0.8; }
}

.auth-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 3rem 2rem;
  max-width: 750px;
}

.auth-logo {
  margin-bottom: 2.5rem;
  animation: logoFloat 6s ease-in-out infinite;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.auth-logo-sub {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  letter-spacing: 0.5em;
  color: var(--gold);
  margin-bottom: 0.3rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2), 0 0 20px rgba(200,168,89,0.4);
  font-weight: 500;
}

.auth-logo-main {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 5rem);
  font-weight: 400;
  letter-spacing: 0.25em;
  color: var(--text-dark);
  text-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.auth-catch {
  margin-bottom: 2.5rem;
}

.auth-catch-main {
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
  line-height: 1.8;
}

.auth-catch-line1 {
  display: block;
}

.auth-catch-line2 {
  display: block;
  padding-left: 0.5em;
}

.auth-catch-sub {
  font-size: clamp(0.7rem, 2.5vw, 1rem);
  letter-spacing: 0.1em;
  color: var(--text-medium);
  white-space: nowrap;
}

.auth-cta {
  margin-bottom: 2.5rem;
}

/* ENTERボタンに高級感のある輝きを追加 */
.auth-cta .btn--primary {
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(200,168,89,0.4), 0 0 60px rgba(200,168,89,0.15);
}

.auth-cta .btn--primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255,255,255,0.3) 50%,
    transparent 70%
  );
  animation: buttonShine 4s ease-in-out infinite;
}

@keyframes buttonShine {
  0% { transform: translateX(-100%) rotate(45deg); }
  50%, 100% { transform: translateX(100%) rotate(45deg); }
}

.auth-age-notice {
  margin-bottom: 2rem;
}

.auth-age-en {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  color: var(--text-light);
  margin-bottom: 0.3rem;
}

.auth-age-ja {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--text-light);
}

.auth-seo-text {
  margin-bottom: 2rem;
}

.auth-seo-text p {
  font-size: 0.95rem;
  line-height: 2.2;
  color: var(--text-medium);
}

.auth-footer p {
  font-size: 0.9rem;
  color: var(--text-medium);
  margin-bottom: 0.3rem;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.scroll-indicator span {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.scroll-indicator__line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 0 auto;
  animation: scrollLine 2s ease infinite;
}

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

/* ============================================
   HERO - 名門風デザイン（Split Layout）
   ============================================ */

.hero {
  position: relative;
  height: var(--hero-height-sub);
  min-height: var(--hero-min-sub);
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* TOPページのヒーロー */
body.page-template-page-top .hero,
body.home .hero {
  height: var(--hero-height-top);
  min-height: var(--hero-min-top);
}

/* Split Layout */
.hero--split {
  justify-content: flex-start;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #2d2d4a 100%);
}

.hero__bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.hero__bg-slide.active {
  opacity: 0.15;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(26,26,46,0.95) 0%,
    rgba(26,26,46,0.8) 40%,
    rgba(26,26,46,0.4) 70%,
    transparent 100%
  );
}

/* 女性画像（右側） */
.hero__woman {
  position: absolute;
  right: 0;
  top: 0;
  width: 55%;
  height: 100%;
  z-index: 5;
}

.hero__woman-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero__woman-slide.active {
  opacity: 1;
  animation: heroZoom 25s ease-in-out infinite alternate;
}

/* コンテンツ（左側） */
.hero--split .hero__content {
  position: relative;
  z-index: 10;
  text-align: left;
  padding: 2rem 4rem;
  max-width: 600px;
  margin-left: 5%;
}

.hero__brand {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.hero__title-jp {
  display: block;
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero__subtitle {
  margin-bottom: 1rem;
}

.hero__subtitle-line {
  display: block;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  line-height: 1.8;
}

.hero__tagline {
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 2rem;
}

.hero__catch {
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.hero--split .hero__text {
  font-size: 0.95rem;
  line-height: 2.2;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2.5rem;
}

/* CTAボタン（2つ横並び） */
.hero--split .hero__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero--split .hero__cta .btn {
  min-width: 180px;
  justify-content: center;
}

.hero--split .hero__cta .btn--outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

.hero--split .hero__cta .btn--outline:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

/* ステータスバー（4カラム） */
.hero__stats--4col {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: rgba(26,26,46,0.9);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(200,168,89,0.3);
}

.hero__stats--4col .hero__stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  background: none;
  border-radius: 0;
  border: none;
  position: relative;
}

.hero__stats--4col .hero__stats-pattern {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  width: 100%;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hero__stats--4col .hero__stats-pattern.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.hero__stats--4col .hero__stat {
  text-align: center;
  padding: 1.5rem 1rem;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.hero__stats--4col .hero__stat:last-child {
  border-right: none;
}

.hero__stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.hero__stat-num small {
  font-size: 0.9rem;
  margin-left: 0.1rem;
}

.hero__stat-text {
  display: block;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: 0.1em;
}

.hero__stat-icon {
  display: block;
  font-size: 1.8rem;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.hero__stat-label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
}

/* SCROLL */
.hero__scroll {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 15;
}

.hero__scroll span {
  display: block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.5rem;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 0 auto;
  animation: scrollLine 2s ease infinite;
}

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

.hero__title {
  margin-bottom: 1.5rem;
}

.hero__title-line {
  display: block;
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0,0,0,1), 0 4px 15px rgba(0,0,0,0.9), 0 8px 30px rgba(0,0,0,0.6);
  line-height: 1.4;
}

.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  letter-spacing: 0.2em;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0,0,0,1), 0 4px 15px rgba(0,0,0,0.8);
}

.hero__text {
  font-size: 1.05rem;
  line-height: 2.2;
  color: var(--white);
  margin-bottom: 2.5rem;
  text-shadow: 0 2px 4px rgba(0,0,0,1), 0 4px 15px rgba(0,0,0,0.8);
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.hero__scroll span {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.5rem;
}

.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 0 auto;
  animation: scrollLine 2s ease infinite;
}

@keyframes bgZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

/* ============================================
   ABOUT - カウントアップ付き
   ============================================ */

.about {
  padding: var(--section-padding) 0;
  background: var(--bg-blush);
  position: relative;
}

.about__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about__text {
  margin-bottom: 3rem;
}

.about__text p {
  font-size: var(--text-body);
  line-height: var(--line-height-body);
  color: var(--text-medium);
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
}

.stat {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.stat:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.stat__number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}

.stat__unit {
  font-size: 1.2rem;
  color: var(--gold);
  margin-left: 0.2rem;
}

.stat__label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 0.5rem;
  letter-spacing: 0.1em;
}

/* ============================================
   MEMBERS SECTION
   ============================================ */

.members-section {
  padding: var(--section-padding) 0;
  background: linear-gradient(135deg, var(--bg-cream) 0%, var(--pink-light) 100%);
}

.members__content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.members__benefits {
  font-size: var(--text-body);
  line-height: var(--line-height-body);
  color: var(--text-medium);
  margin-bottom: var(--spacing-lg);
}

.members__form {
  display: flex;
  gap: 0.5rem;
  max-width: 420px;
  margin: 0 auto 1.5rem;
}

.members__input {
  flex: 1;
  padding: 1rem 1.2rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: var(--transition);
}

.members__input:focus {
  outline: none;
  border-color: var(--gold);
}

.members__submit {
  padding: 1rem 2rem;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: var(--transition);
}

.members__submit:hover {
  background: var(--navy-light);
}

.members__line {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.1);
}

.members__line p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

/* ============================================
   NEW FACE / PICKUP - Ladies Grid
   ============================================ */

.newface {
  padding: var(--section-padding) 0;
  background: var(--white);
}

.pickup {
  padding: var(--section-padding) 0;
  position: relative;
  overflow: hidden;
}

.pickup__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--azuki) 0%, var(--azuki-mid) 100%);
}

.pickup__overlay {
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.03)"/></svg>') repeat;
  background-size: 30px 30px;
}

.pickup .container {
  position: relative;
  z-index: 2;
}

.ladies-grid {
  display: grid;
  gap: var(--grid-gap);
  margin-top: var(--spacing-xl);
}

.ladies-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.ladies-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

/* Lady Card */
.lady-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.lady-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.lady-card--dark {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
}

.lady-card__image {
  position: relative;
  aspect-ratio: 2/3;
  overflow: hidden;
}

.lady-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.5s ease;
}

.lady-card:hover .lady-card__image img {
  transform: scale(1.08);
}

.lady-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 50%);
  opacity: 0;
  transition: var(--transition);
}

.lady-card:hover .lady-card__overlay {
  opacity: 1;
}

.lady-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 14px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  background: var(--gold);
  color: var(--white);
  border-radius: 2px;
  z-index: 5;
}

.lady-card__badge--pink {
  background: var(--pink-dark);
}

.lady-card__content {
  padding: 1.5rem;
}

.lady-card--dark .lady-card__content {
  color: var(--white);
}

.lady-card__name {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 0.3rem;
}

.lady-card__spec {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 0.3rem;
}

.lady-card--dark .lady-card__spec {
  color: rgba(255,255,255,0.7);
}

.lady-card__type {
  font-size: 0.85rem;
  color: var(--text-medium);
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.lady-card--dark .lady-card__type {
  color: rgba(255,255,255,0.8);
}

.lady-card__coming {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.lady-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  padding: 0.6rem 1.2rem;
  border: 1px solid var(--gold-light);
  border-radius: 4px;
  transition: var(--transition);
}

.lady-card__link:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.lady-card__link svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  transition: var(--transition);
}

.lady-card__link:hover svg {
  transform: translateX(3px);
}

/* Drip Feed Blur */
.blur-heavy {
  filter: blur(20px);
}

.blur-light {
  filter: blur(8px);
}

/* ============================================
   CONCEPT SECTION
   ============================================ */

.concept {
  padding: var(--section-padding) 0;
  position: relative;
  overflow: hidden;
}

/* シンプルコンセプトセクション（TOP用） */
.concept-simple {
  padding: var(--section-padding) 0;
  background: var(--bg-blush);
  text-align: center;
}

.concept-simple__content {
  max-width: 800px;
  margin: 0 auto;
}

.concept-simple__text {
  margin-top: 2rem;
}

.concept-simple__text p {
  font-size: var(--text-body);
  line-height: 2.2;
  color: var(--text-medium);
  margin-bottom: 1.5rem;
}

.concept-simple__text p:last-child {
  margin-bottom: 0;
}

.concept__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  animation: heroZoom 25s ease-in-out infinite alternate;
}

.concept__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.5) 0%,
    rgba(0,0,0,0.3) 50%,
    rgba(0,0,0,0.1) 100%
  );
}

.concept__content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.concept .section-label {
  color: var(--gold);
}

.concept .section-title {
  color: var(--white);
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.concept__text {
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.concept__text {
  margin-bottom: 2rem;
}

.concept__text p {
  font-size: var(--text-body);
  line-height: var(--line-height-body);
  color: var(--text-medium);
}

/* ============================================
   QUALITY SECTION
   ============================================ */

.quality {
  padding: var(--section-padding) 0;
  background: var(--bg-blush);
}

.quality__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--grid-gap);
  margin-top: var(--spacing-xl);
}

.quality-item {
  background: var(--white);
  padding: 2rem 1.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.quality-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.quality-item__icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 50%;
}

.quality-item__icon span {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}

.quality-item__title {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.8rem;
  letter-spacing: 0.05em;
}

.quality-item__text {
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--text-light);
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq {
  padding: var(--section-padding) 0;
  background: var(--white);
  text-align: center;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
  padding: var(--section-padding) 0;
  position: relative;
  overflow: hidden;
}

.cta-section__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
}

.cta-section__overlay {
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
  background-size: 20px 20px;
}

.cta-section__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-section__title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.cta-section__title .gold {
  color: rgba(255,255,255,0.8);
}

.cta-section__tel {
  margin-bottom: 0.5rem;
}

.cta-section__tel a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3rem);
  color: var(--white);
  letter-spacing: 0.1em;
}

.cta-section__hours {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
}

.cta-section__buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  padding: 4rem 0 2rem;
  position: relative;
  background: var(--pink-feminine);
  color: var(--azuki);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__logo {
  margin-bottom: 1rem;
}

.footer__logo-sub {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  color: var(--gold-dark);
}

.footer__logo-main {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.2em;
  color: var(--azuki);
}

.footer__tagline {
  font-size: 0.85rem;
  color: var(--azuki-mid);
}

.footer__nav ul {
  list-style: none;
}

.footer__nav li {
  margin-bottom: 0.6rem;
}

.footer__nav a {
  font-size: 0.85rem;
  color: var(--azuki-mid);
  transition: var(--transition);
}

.footer__nav a:hover {
  color: var(--gold-dark);
}

.footer__contact p {
  font-size: 0.85rem;
  color: var(--azuki-mid);
  margin-bottom: 0.4rem;
}

.footer__tel a {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold-dark);
}

.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(74, 45, 58, 0.15);
  text-align: center;
}

.footer__copyright {
  font-size: 0.85rem;
  color: var(--azuki-mid);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.footer__note {
  font-size: 0.85rem;
  color: var(--azuki-light);
}

/* ============================================
   MOBILE CTA
   ============================================ */

.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  padding: 0.8rem 1rem;
}

.mobile-cta {
  display: flex;
  gap: 0.5rem;
}

.mobile-cta__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem;
  border-radius: 4px;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.mobile-cta__btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.mobile-cta__btn--tel {
  background: var(--gold);
  color: var(--white);
}

.mobile-cta__btn--reserve {
  background: var(--navy);
  color: var(--white);
}

/* ============================================
   ANIMATIONS
   ============================================ */

.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* Scroll Animation */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   LIGHT EFFECTS - 光エフェクト
   認証ページ・トップヒーロー用
   ============================================ */

/* シマーエフェクト（光の帯が流れる） */
.shimmer-effect::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.03) 50%, transparent 70%);
  animation: shimmer 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 5;
}

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

/* コーナーフレーム（L字ラインが描画される） */
.corner-frame {
  position: absolute;
  width: 80px;
  height: 80px;
  z-index: 10;
  pointer-events: none;
}

.corner-frame::before,
.corner-frame::after {
  content: '';
  position: absolute;
  background: rgba(255,255,255,0.15);
}

.corner-frame.top-left { top: 25px; left: 25px; }
.corner-frame.bottom-left { bottom: 25px; left: 25px; }
.corner-frame.top-right { top: 25px; right: 25px; }
.corner-frame.bottom-right { bottom: 25px; right: 25px; }

/* 水平線 */
.corner-frame.top-left::before,
.corner-frame.top-right::before { 
  top: 0; height: 1px; width: 0; 
  animation: drawLineH 1s ease 0.5s forwards; 
}
.corner-frame.bottom-left::before,
.corner-frame.bottom-right::before { 
  bottom: 0; height: 1px; width: 0; 
  animation: drawLineH 1s ease 0.5s forwards; 
}

/* 垂直線 */
.corner-frame.top-left::after,
.corner-frame.bottom-left::after { 
  left: 0; width: 1px; height: 0; 
  animation: drawLineV 1s ease 0.5s forwards; 
}
.corner-frame.top-right::after,
.corner-frame.bottom-right::after { 
  right: 0; width: 1px; height: 0; 
  animation: drawLineV 1s ease 0.5s forwards; 
}

/* 水平線の起点 */
.corner-frame.top-left::before,
.corner-frame.bottom-left::before { left: 0; }
.corner-frame.top-right::before,
.corner-frame.bottom-right::before { right: 0; }

@keyframes drawLineH { to { width: 80px; } }
@keyframes drawLineV { to { height: 80px; } }

/* ボタンパルス（ゴールドグロー） */
.btn-pulse {
  animation: btnPulse 4s ease-in-out 2s infinite;
}

@keyframes btnPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200, 168, 89, 0); }
  50% { box-shadow: 0 0 30px 5px rgba(200, 168, 89, 0.2); }
}

/* ヒーロー画像ズーム */
.hero-zoom {
  animation: heroZoom 25s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

/* フェードスライドアップ（順次表示） */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-up-1 { opacity: 0; animation: fadeSlideUp 1s ease 0.4s forwards; }
.fade-up-2 { opacity: 0; animation: fadeSlideUp 1s ease 0.6s forwards; }
.fade-up-3 { opacity: 0; animation: fadeSlideUp 1s ease 0.8s forwards; }
.fade-up-4 { opacity: 0; animation: fadeSlideUp 1s ease 1.0s forwards; }
.fade-up-5 { opacity: 0; animation: fadeSlideUp 1s ease 1.2s forwards; }

/* 認証ページ用光エフェクト */
.auth-page.shimmer-effect::before {
  background: linear-gradient(45deg, transparent 30%, rgba(200,168,89,0.05) 50%, transparent 70%);
}

/* ヒーロー用光エフェクト */
.hero.shimmer-effect::before {
  background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.02) 50%, transparent 70%);
}

/* スクロールインジケーター強化 */
.hero__scroll-line {
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* グラデーションオーバーレイ強化 */
.hero--split .hero__overlay {
  background: linear-gradient(
    to right,
    rgba(26,26,46,0.85) 0%,
    rgba(26,26,46,0.6) 35%,
    rgba(26,26,46,0.3) 60%,
    rgba(26,26,46,0.1) 100%
  );
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .ladies-grid--4 {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .quality__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header__nav,
  .header__tel {
    display: none;
  }
  
  .header__menu {
    display: flex;
  }
  
  .hero {
    min-height: 600px;
  }
  
  .hero__content {
    padding-top: 100px;
  }
  
  .auth-content {
    padding-top: 80px;
  }
  
  /* 認証ページ - スマホで女性画像をもっと見せる */
  .auth-bg-slide {
    background-position: center 15%;
  }
  
  .auth-bg-slide.active {
    opacity: 0.75;
  }
  
  .auth-overlay {
    background: linear-gradient(
      to bottom,
      rgba(74, 45, 58, 0.2) 0%,
      rgba(74, 45, 58, 0.35) 40%,
      rgba(74, 45, 58, 0.8) 100%
    );
  }
  
  .auth-logo {
    margin-bottom: 1.5rem;
  }
  
  .auth-logo-main {
    font-size: 2.5rem;
  }
  
  .auth-catch {
    margin-bottom: 1.5rem;
  }
  
  .ladies-grid--4,
  .ladies-grid--3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .quality__grid {
    grid-template-columns: 1fr;
  }
  
  .about__stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  
  .stat {
    padding: 1.5rem 0.5rem;
  }
  
  .stat__number {
    font-size: 2rem;
  }
  
  .members__form {
    flex-direction: column;
  }
  
  .cta-section__buttons {
    flex-direction: column;
  }
  
  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer {
    padding-bottom: 5rem;
  }
  
  .mobile-cta {
    display: flex;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  
  .auth-logo-main {
    letter-spacing: 0.1em;
  }
  
  .auth-catch-line2 {
    padding-left: 0.5em;
  }
  
  .auth-catch-sub {
    font-size: 0.65rem;
    letter-spacing: 0.05em;
  }
  
  .hero__title-line {
    font-size: 1.8rem;
  }
  
  .about__stats {
    grid-template-columns: 1fr;
  }
}

/* PC only - hide mobile CTA */
@media (min-width: 769px) {
  .mobile-cta {
    display: none;
  }
}

/* ==========================================================================
   Ladies Single Page Styles
   ========================================================================== */
.profile-section { padding: 5rem 0; background: var(--white); }
.profile-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; max-width: 1100px; margin: 0 auto; }
.profile-images { display: flex; flex-direction: column; gap: 1rem; }
.profile-images__main { width: 100%; aspect-ratio: 3/4; border-radius: 8px; overflow: hidden; background: var(--bg-cream); }
.profile-images__main img { width: 100%; height: 100%; object-fit: cover; }
.profile-images__subs { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.profile-images__sub { aspect-ratio: 3/4; border-radius: 8px; overflow: hidden; background: var(--bg-cream); }
.profile-images__sub img { width: 100%; height: 100%; object-fit: cover; }
.coming-soon { aspect-ratio: 3/4; background: linear-gradient(135deg, rgba(248, 214, 218, 0.3) 0%, rgba(255, 255, 255, 0.8) 100%); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; border-radius: 8px; border: 1px solid rgba(201, 160, 80, 0.1); }
.coming-soon__text { font-size: 0.85rem; color: var(--text-light); letter-spacing: 0.15em; }
.coming-soon__label { display: block; font-family: var(--font-display); font-size: 1rem; color: var(--gold); margin-top: 8px; letter-spacing: 0.1em; }
.profile-info { display: flex; flex-direction: column; }
.profile-info__header { margin-bottom: 1.5rem; }
.type-badge { display: inline-block; padding: 0.4rem 1.2rem; background: linear-gradient(135deg, #1a1a2e, #2a2a4e); color: white; font-family: var(--font-display); font-size: 0.85rem; letter-spacing: 0.15em; border-radius: 4px; margin-bottom: 1rem; }
.profile-info__name { font-family: var(--font-body); font-size: 2.2rem; font-weight: 500; color: var(--text-dark); margin-bottom: 0.5rem; letter-spacing: 0.1em; }
.profile-info__job { font-size: 0.9rem; color: var(--text-light); margin-bottom: 1rem; }
.profile-info__tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.5rem; }
.profile-tag { display: inline-block; padding: 0.4rem 1rem; background: var(--bg-cream); color: var(--text-medium); font-size: 0.8rem; border-radius: 20px; letter-spacing: 0.05em; }
.profile-specs { border-top: 1px solid rgba(201, 160, 80, 0.15); border-bottom: 1px solid rgba(201, 160, 80, 0.15); padding: 1.5rem 0; margin: 1.5rem 0; }
.profile-specs__row { display: flex; padding: 0.6rem 0; }
.profile-specs__label { width: 100px; font-size: 0.85rem; color: var(--text-light); letter-spacing: 0.1em; }
.profile-specs__value { font-size: 0.95rem; color: var(--text-dark); }
.profile-cta { display: flex; gap: 1rem; margin-top: 2rem; }
.profile-cta .btn { flex: 1; text-align: center; padding: 1rem 1.5rem; }
.btn--gold { background: linear-gradient(135deg, var(--gold), #B8934A); color: white; border: none; border-radius: 8px; text-decoration: none; font-size: 0.95rem; letter-spacing: 0.1em; transition: var(--transition); }
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(201, 160, 80, 0.3); }
.btn--gold-outline { background: transparent; color: var(--gold); border: 1px solid var(--gold); border-radius: 8px; text-decoration: none; font-size: 0.95rem; letter-spacing: 0.1em; transition: var(--transition); }
.btn--gold-outline:hover { background: var(--gold); color: white; }

/* Comment Section */
.comment-section { padding: 5rem 0; background: var(--bg-blush); }
.comment-block { max-width: 800px; margin: 0 auto 3rem; background: var(--white); border-radius: 8px; padding: 2.5rem; box-shadow: var(--shadow-soft); }
.comment-block:last-child { margin-bottom: 0; }
.comment-block__title { font-family: var(--font-body); font-size: 1.1rem; font-weight: 500; color: var(--gold); margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(201, 160, 80, 0.2); }
.comment-block__text { font-size: 0.95rem; color: var(--text-medium); line-height: 2.2; }
.comment-block--highlight { background: linear-gradient(135deg, rgba(201, 160, 80, 0.05), rgba(255, 255, 255, 1)); border: 1px solid rgba(201, 160, 80, 0.15); }
.comment-block__label { font-family: var(--font-display); font-size: 0.8rem; letter-spacing: 0.2em; color: var(--gold); margin-bottom: 1rem; }

/* Recommend Section */
.recommend-section { padding: 5rem 0; background: var(--white); }
.recommend-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 900px; margin: 0 auto; }
.recommend-card { text-align: center; text-decoration: none; }
.recommend-card__image { aspect-ratio: 3/4; border-radius: 8px; overflow: hidden; margin-bottom: 1rem; background: var(--bg-cream); }
.recommend-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.recommend-card:hover .recommend-card__image img { transform: scale(1.05); }
.recommend-card__name { font-family: var(--font-body); font-size: 1rem; color: var(--text-dark); letter-spacing: 0.1em; }

/* Back Link */
.back-link-section { padding: 3rem 0; background: var(--white); text-align: center; }
.back-link { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--gold); text-decoration: none; font-size: 0.95rem; letter-spacing: 0.1em; transition: var(--transition); }
.back-link:hover { opacity: 0.7; }
.back-link svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }

/* Column Section (Cast Detail) */
.column-section { padding: 5rem 0; background: var(--bg-cream); }
.column-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 2rem; }
.context-card { background: var(--white); border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-soft); transition: var(--transition); }
.context-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-medium); }
.context-card--loading { min-height: 180px; }
.loading-placeholder { 
  height: 100%; 
  min-height: 180px;
  background: linear-gradient(90deg, var(--bg-cream) 25%, var(--white) 50%, var(--bg-cream) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.column-note { text-align: center; font-size: 0.8rem; color: var(--text-light); }

/* Responsive */
@media (max-width: 968px) { 
  .profile-grid { grid-template-columns: 1fr; gap: 2rem; } 
  .profile-images__main, .profile-images__subs { max-width: 400px; margin: 0 auto; } 
  .column-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) { 
  .recommend-grid { grid-template-columns: repeat(2, 1fr); } 
  .profile-cta { flex-direction: column; } 
  .comment-block { padding: 2rem 1.5rem; }
  .column-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) { 
  .profile-info__name { font-size: 1.8rem; } 
  .profile-specs__label { width: 80px; } 
}


/* ============================================
   FIXED PAGES CSS
   Extracted from static HTML designs
   ============================================ */

/* ---------- Concept Page ---------- */
.concept-section { padding: 6rem 0; }
.concept-section--white { background: var(--white); }
.concept-section--blush { background: var(--bg-blush); }
.concept-block { max-width: 800px; margin: 0 auto; text-align: center; }
.concept-block__title { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 400; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 2.5rem; line-height: 1.6; }
.concept-block__text { font-family: var(--font-serif); font-size: 1.05rem; line-height: 2.4; color: var(--text-medium); letter-spacing: 0.06em; }
.concept-block__text p + p { margin-top: 2rem; }
.cta-simple { text-align: center; padding: 5rem 0; background: var(--white); }
.cta-simple__text { font-family: var(--font-serif); font-size: 1.1rem; letter-spacing: 0.08em; color: var(--text-medium); margin-bottom: 2rem; }
.cta-simple__buttons { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }

/* ---------- FAQ Page ---------- */
.faq-section { padding: 5rem 0; }
.faq-section--white { background: var(--white); }
.faq-section--blush { background: var(--bg-blush); }
.faq-category { margin-bottom: 4rem; }
.faq-category:last-child { margin-bottom: 0; }
.faq-category__title { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 500; color: var(--gold); letter-spacing: 0.1em; margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(201, 160, 80, 0.3); }
.faq-item { background: var(--white); border-radius: 8px; margin-bottom: 1rem; box-shadow: var(--shadow-soft); overflow: hidden; }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 2rem; cursor: pointer; transition: background 0.3s; }
.faq-question:hover { background: rgba(201, 160, 80, 0.05); }
.faq-question__text { font-family: var(--font-serif); font-size: 1rem; font-weight: 500; color: var(--text-dark); letter-spacing: 0.05em; padding-right: 1rem; }
.faq-question__icon { width: 24px; height: 24px; position: relative; flex-shrink: 0; }
.faq-question__icon::before, .faq-question__icon::after { content: ''; position: absolute; background: var(--gold); transition: transform 0.3s; }
.faq-question__icon::before { width: 14px; height: 2px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq-question__icon::after { width: 2px; height: 14px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq-item.active .faq-question__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.active .faq-answer { max-height: 500px; }
.faq-answer__inner { padding: 0 2rem 1.5rem; font-family: var(--font-serif); font-size: 0.95rem; line-height: 2; color: var(--text-medium); }
.faq-answer__inner p + p { margin-top: 1rem; }
.faq-answer__list { margin-top: 1rem; padding-left: 1rem; list-style: none; }
.faq-answer__list li { margin-bottom: 0.5rem; }

/* ---------- System Page ---------- */
.system-section { padding: 5rem 0; background: var(--bg-blush); }
.system-card { background: var(--white); border-radius: 8px; box-shadow: var(--shadow-soft); padding: 2.5rem; margin-bottom: 2rem; }
.system-card__title { font-family: var(--font-display); font-size: 1.4rem; letter-spacing: 0.15em; color: var(--gold); margin-bottom: 1.5rem; padding-bottom: 0.8rem; border-bottom: 1px solid #eee; }
.price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.price-item { text-align: center; padding: 1.5rem 1rem; background: var(--bg-cream); border-radius: 8px; transition: var(--transition); }
.price-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.price-item__time { font-size: 1.1rem; color: var(--text-medium); margin-bottom: 0.5rem; }
.price-item__amount { font-family: var(--font-display); font-size: 2rem; font-weight: 500; color: var(--gold); }
.info-table { width: 100%; border-collapse: collapse; }
.info-table th, .info-table td { padding: 1.2rem 1.8rem; text-align: left; border-bottom: 1px solid #eee; }
.info-table th { width: 40%; font-weight: 400; background: var(--bg-cream); }
.info-table .amount { font-family: var(--font-display); font-size: 1.3rem; color: var(--gold); }
.area-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.area-item { display: flex; justify-content: space-between; align-items: center; padding: 1rem 1.5rem; background: var(--bg-cream); border-radius: 4px; }
.area-item__name { color: var(--text-dark); font-size: 0.95rem; }
.area-item__fee { font-family: var(--font-display); font-size: 1rem; color: var(--gold); }
.info-list { list-style: none; }
.info-list li { padding: 0.8rem 0; border-bottom: 1px solid #eee; font-size: 1rem; color: var(--text-medium); }
.info-list li:last-child { border-bottom: none; }
.notice-box { background: var(--pink-light); padding: 1.5rem 2rem; border-radius: 8px; border-left: 4px solid var(--gold); margin-top: 2rem; }
.notice-box__title { font-size: 1rem; color: var(--gold); margin-bottom: 0.8rem; letter-spacing: 0.1em; }
.notice-box p { font-size: 0.95rem; color: var(--text-medium); line-height: 2; }
.notice-box ul { list-style: none; margin-top: 0.8rem; }
.notice-box ul li { font-size: 0.95rem; color: var(--text-medium); padding: 0.3rem 0; }
.notice-box ul li::before { content: "・"; }

/* ---------- Reserve Page ---------- */
.reserve-section { padding: 5rem 0; background: var(--bg-blush); }
.reserve-intro { max-width: 700px; margin: 0 auto 4rem; text-align: center; }
.reserve-intro__text { font-size: 1rem; line-height: 2; color: var(--text-medium); }
.reserve-methods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 4rem; }
.reserve-card { background: var(--white); border-radius: 8px; box-shadow: var(--shadow-soft); padding: 2.5rem 2rem; text-align: center; transition: var(--transition); }
.reserve-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.reserve-card--primary { background: linear-gradient(135deg, var(--gold) 0%, #B8934A 100%); color: white; }
.reserve-card__icon { width: 70px; height: 70px; border-radius: 50%; background: var(--bg-cream); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.reserve-card--primary .reserve-card__icon { background: rgba(255,255,255,0.2); }
.reserve-card__icon svg { width: 32px; height: 32px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.reserve-card--primary .reserve-card__icon svg { stroke: white; }
.reserve-card__title { font-family: var(--font-display); font-size: 1.2rem; letter-spacing: 0.15em; color: var(--gold); margin-bottom: 0.8rem; }
.reserve-card--primary .reserve-card__title { color: white; }
.reserve-card__desc { font-size: 0.9rem; color: var(--text-light); margin-bottom: 1.5rem; line-height: 1.8; }
.reserve-card--primary .reserve-card__desc { color: rgba(255,255,255,0.85); }
.reserve-card__contact { font-family: var(--font-display); font-size: 1.6rem; letter-spacing: 0.05em; margin-bottom: 0.5rem; }
.reserve-card__contact a { color: var(--gold); text-decoration: none; }
.reserve-card--primary .reserve-card__contact a { color: white; }
.reserve-card__hours { font-size: 0.85rem; color: var(--text-light); }
.reserve-card--primary .reserve-card__hours { color: rgba(255,255,255,0.75); }
.reserve-card__btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.8rem 2rem; background: var(--gold); color: white; border-radius: 50px; text-decoration: none; font-size: 0.95rem; letter-spacing: 0.05em; transition: var(--transition); }
.reserve-card__btn:hover { background: #B8934A; transform: scale(1.02); }
.reserve-card--primary .reserve-card__btn { background: white; color: var(--gold); }
.reserve-card--primary .reserve-card__btn:hover { background: #f5f5f5; }
.reserve-card__btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }

/* Reserve Flow */
.reserve-flow { background: var(--white); border-radius: 8px; box-shadow: var(--shadow-soft); padding: 3rem; margin-bottom: 3rem; }
.reserve-flow__title { font-family: var(--font-display); font-size: 1.4rem; letter-spacing: 0.15em; color: var(--gold); text-align: center; margin-bottom: 2.5rem; }
.flow-type { margin-bottom: 3rem; }
.flow-type:last-child { margin-bottom: 0; }
.flow-type__title { font-size: 1.1rem; color: var(--text-dark); text-align: center; margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(201, 160, 80, 0.2); }
.flow-steps { display: flex; justify-content: space-between; position: relative; }
.flow-steps--5 .flow-step { flex: 0 0 18%; }
.flow-steps--4 .flow-step { flex: 0 0 22%; }
.flow-steps::before { content: ''; position: absolute; top: 30px; left: 40px; right: 40px; height: 2px; background: var(--gold); opacity: 0.3; }
.flow-step { text-align: center; position: relative; z-index: 1; }
.flow-step__number { width: 60px; height: 60px; background: var(--gold); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; font-family: var(--font-display); font-size: 1.2rem; }
.flow-step__title { font-size: 0.95rem; font-weight: 500; color: var(--text-dark); margin-bottom: 0.5rem; }
.flow-step__desc { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }

/* Offer Style */
.offer-style { background: var(--bg-cream); border-radius: 8px; padding: 3rem; margin-bottom: 3rem; text-align: center; }
.offer-style__title { font-family: var(--font-display); font-size: 1.3rem; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 1.5rem; }
.offer-style__text { font-size: 1rem; line-height: 2.2; color: var(--text-medium); }

/* Reserve Notes */
.reserve-notes { background: var(--white); border-radius: 8px; box-shadow: var(--shadow-soft); padding: 2rem; }
.reserve-notes__title { font-size: 1rem; font-weight: 500; color: var(--gold); margin-bottom: 1rem; }
.notes-list__item { font-size: 0.9rem; color: var(--text-medium); line-height: 1.8; margin-bottom: 0.5rem; }
.notes-list__link { margin-top: 1rem; font-size: 0.9rem; }
.notes-list__link a { color: var(--gold); text-decoration: none; }

/* ---------- Members Page ---------- */
.members-section { padding: 5rem 0; background: var(--bg-blush); }
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-bottom: 4rem; }
.benefit-box { background: var(--white); border: 1px solid rgba(201, 160, 80, 0.2); border-radius: 8px; padding: 2rem 1.5rem; text-align: center; transition: var(--transition); }
.benefit-box:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.benefit-box__number { font-family: var(--font-display); font-size: 2rem; color: var(--gold); opacity: 0.5; margin-bottom: 0.5rem; }
.benefit-box__title { font-family: var(--font-display); font-size: 1rem; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 1rem; }
.benefit-box__text { font-size: 0.9rem; line-height: 1.8; color: var(--text-medium); }

/* Form Section */
.form-section { background: var(--white); border-radius: 8px; box-shadow: var(--shadow-soft); padding: 3rem; margin-bottom: 3rem; max-width: 700px; margin-left: auto; margin-right: auto; }
.form-section__title { font-family: var(--font-display); font-size: 1.4rem; letter-spacing: 0.15em; color: var(--gold); text-align: center; margin-bottom: 0.25rem; }
.form-section__subtitle { font-size: 0.9rem; color: var(--text-light); text-align: center; margin-bottom: 2rem; }
.form-notice { background: var(--bg-cream); border-radius: 8px; padding: 1.5rem 2rem; margin-bottom: 2rem; font-size: 0.85rem; color: var(--text-medium); line-height: 2; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-size: 0.9rem; color: var(--text-dark); margin-bottom: 0.5rem; font-weight: 500; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 1rem 1.25rem; border: 1px solid rgba(201, 160, 80, 0.3); border-radius: 8px; font-size: 1rem; transition: var(--transition); background: var(--white); }
.form-group input::placeholder { color: var(--text-light); font-size: 0.9rem; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201, 160, 80, 0.1); }
.form-submit { text-align: center; margin-top: 2rem; }
.form-submit button { background: linear-gradient(135deg, #1a1a2e, #2a2a4e); color: white; border: none; padding: 1rem 4rem; font-size: 1rem; letter-spacing: 0.15em; border-radius: 8px; cursor: pointer; transition: var(--transition); position: relative; overflow: hidden; }
.form-submit button::before { content: ''; position: absolute; top: 0; right: 0; width: 10px; height: 10px; background: rgba(255,255,255,0.3); border-radius: 50%; }
.form-submit button:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(26, 26, 46, 0.3); }
.form-note { font-size: 0.85rem; color: var(--text-light); text-align: center; margin-top: 1.5rem; }
.form-note a { color: var(--gold); }

/* LINE Section */
.line-section { background: var(--white); border-radius: 8px; box-shadow: var(--shadow-soft); padding: 3rem; text-align: center; margin-bottom: 3rem; }
.line-section__title { font-family: var(--font-display); font-size: 1.3rem; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 1rem; }
.line-section__text { font-size: 0.95rem; color: var(--text-medium); margin-bottom: 1.5rem; }
.line-section__info { font-size: 0.9rem; color: var(--text-light); margin-bottom: 1.5rem; }
.line-btn { display: inline-flex; align-items: center; gap: 0.5rem; background: linear-gradient(135deg, var(--gold), #B8934A); color: white; padding: 1rem 2.5rem; border-radius: 50px; text-decoration: none; font-size: 1rem; transition: var(--transition); }
.line-btn:hover { transform: scale(1.02); box-shadow: 0 10px 30px rgba(201, 160, 80, 0.3); }
.line-btn svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; }

/* Privacy Note */
.privacy-note { background: var(--bg-cream); border-radius: 8px; padding: 2rem; text-align: center; margin-bottom: 3rem; }
.privacy-note__text { font-size: 0.95rem; color: var(--text-medium); line-height: 2; }
.privacy-note__link a { color: var(--gold); }

/* ---------- Recruit Page ---------- */
.recruit-section { padding: 5rem 0; background: var(--white); }
.recruit-section--alt { background: var(--bg-blush); }
.recruit-intro { max-width: 700px; margin: 0 auto; text-align: center; }
.recruit-intro__text { font-size: 1rem; line-height: 2.2; color: var(--text-medium); }
.member-info { max-width: 700px; margin: 0 auto; background: var(--white); border-radius: 8px; padding: 2.5rem; box-shadow: var(--shadow-soft); text-align: center; }
.member-info__text { font-size: 0.95rem; line-height: 2.2; color: var(--text-medium); }
.style-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 1000px; margin: 0 auto; }
.style-card { background: var(--white); border: 1px solid rgba(201, 160, 80, 0.2); border-radius: 8px; padding: 2rem; text-align: center; }
.style-card__title { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 500; color: var(--gold); margin-bottom: 1rem; }
.style-card__text { font-size: 0.9rem; line-height: 1.9; color: var(--text-medium); }
.reward-box { max-width: 600px; margin: 0 auto; background: var(--white); border: 1px solid var(--gold); border-radius: 8px; padding: 2.5rem; text-align: center; }
.reward-box__amount { font-family: var(--font-display); font-size: 2rem; color: var(--gold); margin-bottom: 1rem; letter-spacing: 0.1em; }
.reward-box__text { font-size: 0.95rem; line-height: 2; color: var(--text-medium); }
.env-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; max-width: 1000px; margin: 0 auto; }
.env-item { background: var(--white); border-radius: 8px; padding: 1.5rem; text-align: center; box-shadow: var(--shadow-soft); }
.env-item__title { font-size: 0.95rem; font-weight: 500; color: var(--gold); margin-bottom: 0.5rem; }
.env-item__text { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }
.ideal-list { max-width: 600px; margin: 0 auto; }
.ideal-list__item { display: flex; align-items: center; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid rgba(201, 160, 80, 0.1); }
.ideal-list__item:last-child { border-bottom: none; }
.ideal-list__dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
.ideal-list__text { font-size: 0.95rem; color: var(--text-medium); }

/* Apply Section */
.apply-section { padding: 5rem 0; background: var(--bg-cream); }
.apply-methods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 900px; margin: 0 auto 3rem; }
.apply-card { background: var(--white); border-radius: 8px; padding: 2rem; text-align: center; box-shadow: var(--shadow-soft); }
.apply-card--primary { background: linear-gradient(135deg, var(--gold), #B8934A); color: white; }
.apply-card__title { font-family: var(--font-display); font-size: 1.1rem; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 0.5rem; }
.apply-card--primary .apply-card__title { color: white; }
.apply-card__btn { display: inline-block; margin-top: 1rem; padding: 0.8rem 2rem; background: var(--gold); color: white; border-radius: 8px; text-decoration: none; font-size: 0.9rem; transition: var(--transition); }
.apply-card--primary .apply-card__btn { background: white; color: var(--gold); }
.apply-card__btn:hover { transform: translateY(-2px); }
.apply-form { max-width: 700px; margin: 0 auto; background: var(--white); border-radius: 8px; padding: 3rem; box-shadow: var(--shadow-soft); }
.apply-form__title { font-family: var(--font-display); font-size: 1.3rem; letter-spacing: 0.1em; color: var(--gold); text-align: center; margin-bottom: 2rem; }
.form-row { margin-bottom: 1.5rem; }
.form-row label { display: block; font-size: 0.9rem; color: var(--text-dark); margin-bottom: 0.5rem; }
.form-row label .required { color: var(--gold); font-size: 0.8rem; margin-left: 0.5rem; }
.form-row input, .form-row select, .form-row textarea { width: 100%; padding: 0.8rem 1rem; border: 1px solid rgba(201, 160, 80, 0.2); border-radius: 8px; font-size: 0.95rem; transition: var(--transition); }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { outline: none; border-color: var(--gold); }
.form-row textarea { min-height: 100px; resize: vertical; }

/* ---------- Breadcrumb ---------- */
.breadcrumb { padding: 1rem 0; background: var(--bg-cream); }
.breadcrumb__list { display: flex; align-items: center; gap: 0.5rem; list-style: none; padding: 0; margin: 0; font-size: 0.85rem; }
.breadcrumb__item { display: flex; align-items: center; gap: 0.5rem; }
.breadcrumb__item:not(:last-child)::after { content: '>'; color: var(--text-light); }
.breadcrumb__link { color: var(--gold); text-decoration: none; transition: var(--transition); }
.breadcrumb__link:hover { opacity: 0.7; }
.breadcrumb__current { color: var(--text-medium); }

/* ---------- Company Page ---------- */
.company-section { padding: 5rem 0; background: var(--white); }
.company-section--alt { background: var(--bg-blush); }
.company-section__intro { max-width: 700px; margin: 0 auto 3rem; text-align: center; line-height: 1.9; color: var(--text-medium); }

/* Company Info Table */
.info-table-company { max-width: 700px; margin: 0 auto; background: var(--white); border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-soft); }
.info-table__row { display: flex; border-bottom: 1px solid rgba(201, 160, 80, 0.15); }
.info-table__row:last-child { border-bottom: none; }
.info-table__label { width: 160px; min-width: 160px; padding: 1.25rem 1.5rem; background: var(--bg-cream); font-size: 0.9rem; color: var(--text-dark); display: flex; align-items: center; }
.info-table__value { flex: 1; padding: 1.25rem 1.5rem; font-size: 0.95rem; color: var(--text-medium); line-height: 1.9; }
.info-table__value a { color: var(--gold); text-decoration: none; transition: var(--transition); }
.info-table__value a:hover { opacity: 0.7; }

/* Brand List */
.brand-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 900px; margin: 0 auto; }
a.brand-card { display: block; text-decoration: none; }
.brand-card { background: var(--white); border: 1px solid rgba(201, 160, 80, 0.2); border-radius: 8px; padding: 2rem 1.5rem; text-align: center; transition: var(--transition); }
.brand-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.brand-card__name { font-family: var(--font-serif); font-size: 1rem; font-weight: 500; color: var(--text-dark); margin-bottom: 0.5rem; }
.brand-card__note { font-size: 0.8rem; color: var(--text-light); margin-bottom: 1rem; }
.brand-card__link { display: inline-block; font-size: 0.85rem; color: var(--gold); text-decoration: none; transition: var(--transition); }
.brand-card__link:hover { opacity: 0.7; }

/* FC Section */
.fc-section { max-width: 700px; margin: 0 auto; text-align: center; }
.fc-section__text { font-size: 0.95rem; color: var(--text-medium); line-height: 1.9; margin-bottom: 1.5rem; }
.fc-section__link { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--gold); text-decoration: none; font-size: 1rem; transition: var(--transition); }
.fc-section__link:hover { opacity: 0.7; }
.fc-section__link svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }

/* Philosophy Section */
.philosophy-section { max-width: 700px; margin: 0 auto; text-align: center; padding: 3rem; background: var(--white); border-radius: 8px; box-shadow: var(--shadow-soft); border: 1px solid rgba(201, 160, 80, 0.1); }
.philosophy-section__quote { font-family: var(--font-serif); font-size: 1.2rem; color: var(--gold); margin-bottom: 2rem; letter-spacing: 0.1em; }
.philosophy-section__text { font-size: 0.95rem; color: var(--text-medium); line-height: 2.2; }

/* ---------- Policy Page ---------- */
.policy-section { padding: 6rem 0; background: var(--white); }
.policy-section--alt { background: var(--bg-blush); }
.policy-content { max-width: 800px; margin: 0 auto; }
.policy-intro { font-size: 0.95rem; line-height: 1.9; color: var(--text-medium); margin-bottom: 3rem; padding: 2rem; background: var(--bg-cream); border-radius: 8px; }
.policy-block { margin-bottom: 3rem; }
.policy-block__title { font-size: 1.1rem; font-weight: 500; color: var(--text-dark); margin-bottom: 1rem; padding-bottom: 0.75rem; border-bottom: 1px solid rgba(201, 160, 80, 0.2); }
.policy-block__text { font-size: 0.95rem; line-height: 1.9; color: var(--text-medium); }
.policy-block__list { list-style: none; padding: 0; margin: 1rem 0; }
.policy-block__list li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; font-size: 0.95rem; line-height: 1.9; color: var(--text-medium); }
.policy-block__list li::before { content: '・'; position: absolute; left: 0; color: var(--gold); }
.policy-block__note { font-size: 0.9rem; color: var(--text-light); margin-top: 1rem; }
.policy-link { margin-top: 2rem; padding: 1.5rem; background: var(--bg-cream); border-radius: 8px; text-align: center; }
.policy-link__text { font-size: 0.95rem; color: var(--text-medium); margin-bottom: 0.5rem; }
.policy-link a { color: var(--gold); text-decoration: none; }
.policy-link a:hover { text-decoration: underline; }

/* ---------- Auth Overlay - Hide Content Until Verified ---------- */
body.auth-required main > *:not(.auth-page) { display: none !important; }
body.auth-required .pickup, body.auth-required .new-face, body.auth-required footer { display: none !important; }
body.authenticated .auth-page { display: none !important; }

/* ---------- Lady Card - Full Click Area ---------- */
.lady-card { position: relative; cursor: pointer; transition: var(--transition); }
.lady-card:hover { transform: translateY(-5px); }
.lady-card__fulllink { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 10; text-decoration: none; }
.lady-card__link { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--gold); font-size: 0.85rem; letter-spacing: 0.1em; margin-top: 1rem; pointer-events: none; }
.lady-card__link svg { width: 16px; height: 16px; transition: var(--transition); }
.lady-card:hover .lady-card__link svg { transform: translateX(4px); }

/* ---------- Fixed Pages Responsive ---------- */
@media (max-width: 768px) {
  .concept-section { padding: 4rem 1.5rem; }
  .concept-block__title { font-size: 1.3rem; }
  .concept-block__text { font-size: 0.95rem; line-height: 2.2; }
  .faq-section { padding: 3rem 1rem; }
  .faq-question { padding: 1.2rem 1.5rem; }
  .faq-question__text { font-size: 0.95rem; }
  .faq-answer__inner { padding: 0 1.5rem 1.2rem; font-size: 0.9rem; }
  .cta-simple__buttons { flex-direction: column; align-items: center; }
  .price-grid { grid-template-columns: repeat(2, 1fr); }
  .area-grid { grid-template-columns: 1fr; }
  .info-table th, .info-table td { display: block; width: 100%; }
  .info-table th { border-bottom: none; padding-bottom: 0.5rem; }
  .info-table td { padding-top: 0.5rem; padding-bottom: 1.5rem; }
  .reserve-methods { grid-template-columns: 1fr; }
  .flow-steps { flex-direction: column; gap: 2rem; }
  .flow-steps::before { display: none; }
  .flow-steps--5 .flow-step, .flow-steps--4 .flow-step { flex: none; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .form-section { padding: 2rem 1.5rem; }
  .style-grid, .env-grid, .apply-methods { grid-template-columns: 1fr; }
  .apply-form { padding: 2rem 1.5rem; }
  .info-table__row { flex-direction: column; }
  .info-table__label { width: 100%; padding: 1rem 1.25rem; }
  .info-table__value { padding: 1rem 1.25rem; }
  .brand-list { grid-template-columns: 1fr; }
  .philosophy-section { padding: 2rem 1.5rem; }
  .philosophy-section__quote { font-size: 1.1rem; }
}

@media (max-width: 480px) {
  .benefits-grid { grid-template-columns: 1fr; }
}

/* ============================================
   HEARTBEAT - ハートビート機能
   ============================================ */

/* ステータスバー */
.hero__stats {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 900px;
  z-index: 20;
}

.hero__stats-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 2rem;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  width: 100%;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hero__stats-pattern.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.hero__stat {
  text-align: center;
  padding: 0 1rem;
  border-right: 1px solid rgba(255,255,255,0.15);
}

.hero__stat:last-child {
  border-right: none;
}

.hero__stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.hero__stat-num small {
  font-size: 1rem;
  margin-left: 0.2rem;
}

.hero__stat-text {
  display: block;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.3rem;
  letter-spacing: 0.1em;
}

.hero__stat-icon {
  display: block;
  font-size: 2rem;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.hero__stat-label {
  display: block;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
}

/* お知らせティッカー */
.ticker {
  background: var(--navy);
  padding: 0.8rem 0;
  overflow: hidden;
  position: relative;
}

.ticker__track {
  overflow: hidden;
}

.ticker__content {
  display: flex;
  gap: 3rem;
  animation: tickerScroll 30s linear infinite;
  white-space: nowrap;
}

.ticker__item {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

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

/* 季節パーティクル */
.particle-container {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

/* 桜（春） */
.particle-container--sakura .particle {
  position: absolute;
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, var(--pink) 0%, rgba(248, 214, 218, 0.6) 100%);
  border-radius: 50% 0 50% 50%;
  opacity: 0;
  animation: sakuraFall linear infinite;
  filter: blur(0.5px);
}

/* 雪（冬） */
.particle-container--snow .particle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: radial-gradient(circle, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.3) 100%);
  border-radius: 50%;
  opacity: 0;
  animation: snowFall linear infinite;
  filter: blur(0.5px);
}

@keyframes snowFall {
  0% {
    opacity: 0;
    transform: translateY(-10vh) translateX(0) rotate(0deg);
  }
  10% { opacity: 0.9; }
  90% { opacity: 0.9; }
  100% {
    opacity: 0;
    transform: translateY(110vh) translateX(50px) rotate(360deg);
  }
}

/* 夏（涼しげ） */
.particle-container--summer .particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: radial-gradient(circle, rgba(135,206,235,0.8) 0%, rgba(135,206,235,0.2) 100%);
  border-radius: 50%;
  opacity: 0;
  animation: summerFloat 15s ease-in-out infinite;
}

@keyframes summerFloat {
  0%, 100% {
    opacity: 0;
    transform: translateY(0) translateX(0);
  }
  25% {
    opacity: 0.6;
    transform: translateY(-30px) translateX(20px);
  }
  50% {
    opacity: 0.8;
    transform: translateY(-50px) translateX(-10px);
  }
  75% {
    opacity: 0.6;
    transform: translateY(-30px) translateX(15px);
  }
}

/* ゴールド（通常） */
.particle-container--gold .particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: radial-gradient(circle, var(--gold-light) 0%, rgba(200,168,89,0.2) 100%);
  border-radius: 50%;
  opacity: 0;
  animation: goldSparkle 8s ease-in-out infinite;
}

@keyframes goldSparkle {
  0%, 100% {
    opacity: 0;
    transform: scale(0.5);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.2);
  }
}

/* ステータスバー レスポンシブ */
@media (max-width: 768px) {
  .hero__stats {
    bottom: 100px;
    width: 95%;
  }
  
  .hero__stats-inner {
    padding: 1rem;
  }
  
  .hero__stat-num {
    font-size: 1.8rem;
  }
  
  .hero__stat-num small {
    font-size: 0.8rem;
  }
  
  .hero__stat-text {
    font-size: 1.1rem;
  }
  
  .hero__stat-label {
    font-size: 0.7rem;
  }
  
  .hero__status {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  
  .hero__status-sub {
    width: 100%;
    text-align: center;
    font-size: 0.75rem;
  }
  
  .ticker__item {
    font-size: 0.8rem;
  }
  
  /* 名門風ヒーロー モバイル */
  .hero--split {
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 60px;
    min-height: 100vh;
    height: auto;
    padding-bottom: 0;
  }
  
  .hero__woman {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    opacity: 0.5;
  }
  
  .hero--split .hero__content {
    position: relative;
    z-index: 10;
    text-align: center;
    margin-left: 0;
    padding: 2rem 1.5rem;
    max-width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .hero__title-jp {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
  }
  
  .hero__subtitle-line {
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
  }
  
  .hero__tagline {
    font-size: 0.75rem;
    margin-bottom: 1rem;
  }
  
  .hero__catch {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  
  .hero--split .hero__text {
    font-size: 0.75rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }
  
  .hero--split .hero__cta {
    justify-content: center;
    margin-top: 0.5rem;
    margin-bottom: 0;
    gap: 0.5rem;
  }
  
  .hero--split .hero__cta .btn {
    min-width: 130px;
    padding: 0.7rem 1.2rem;
    font-size: 0.75rem;
  }
  
  /* スマホ：ステータスバーを非表示（ティッカー下に別途表示） */
  .hero__stats--4col {
    display: none;
  }
}

/* スマホ用ステータスバー（PCでは非表示） */
.mobile-stats {
  display: none;
}

@media (max-width: 768px) {
  .mobile-stats {
    display: block;
    background: var(--white);
    padding: 1.5rem 1rem;
  }
  
  .mobile-stats__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .mobile-stats__item {
    text-align: center;
    padding: 1rem 0.5rem;
    border-right: 1px solid rgba(200, 168, 89, 0.2);
    border-bottom: 1px solid rgba(200, 168, 89, 0.2);
  }
  
  .mobile-stats__item:nth-child(2),
  .mobile-stats__item:nth-child(4) {
    border-right: none;
  }
  
  .mobile-stats__item:nth-child(3),
  .mobile-stats__item:nth-child(4) {
    border-bottom: none;
  }
  
  .mobile-stats__num {
    display: block;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.3rem;
  }
  
  .mobile-stats__num small {
    font-size: 0.8rem;
    margin-left: 0.1rem;
  }
  
  .mobile-stats__text {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: var(--gold);
    line-height: 1.2;
    margin-bottom: 0.3rem;
    letter-spacing: 0.05em;
  }
  
  .mobile-stats__label {
    display: block;
    font-size: 0.7rem;
    color: var(--text-medium);
    letter-spacing: 0.05em;
  }
  
  .hero__scroll {
    display: none;
  }
  
  .corner-frame {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero__stats {
    bottom: 90px;
  }
  
  .hero__stat-num {
    font-size: 1.5rem;
  }
  
  .hero__stat-text {
    font-size: 1rem;
  }
  
  .hero__title-jp {
    font-size: 2rem;
  }
  
  .hero__subtitle-line {
    font-size: 1rem;
  }
  
  .hero--split .hero__cta .btn {
    min-width: 140px;
    padding: 0.8rem 1.5rem;
    font-size: 0.8rem;
  }
}

/* ============================================
   CONTACT CARD - Best Hover Style v8.2.0
   メールカードの最高のホバー体験
   ============================================ */

/* メールカード全体のインタラクティブデザイン */
.contact-card {
  position: relative;
  padding: 3rem 2rem;
  background: var(--white);
  border: 1px solid rgba(200, 168, 89, 0.2);
  border-radius: 12px;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

/* 背景のシマーエフェクト */
.contact-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 40%, rgba(200,168,89,0.1) 50%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* カード全体のホバー - 上品に浮き上がる */
.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(200, 168, 89, 0.2);
  border-color: var(--gold);
}

.contact-card:hover::before {
  opacity: 1;
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* アイコンエリア */
.contact-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gold);
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* アイコンホバー時 - スケールアップ＆カラー変化 */
.contact-card:hover .contact-icon {
  transform: scale(1.15) rotate(5deg);
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  border-color: var(--gold-light);
  box-shadow: 0 8px 24px rgba(200, 168, 89, 0.3);
}

.contact-card:hover .contact-icon svg {
  stroke: var(--white);
  transform: scale(1.1);
}

/* タイトル */
.contact-title {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
  letter-spacing: 0.1em;
  transition: color 0.3s ease;
}

.contact-card:hover .contact-title {
  color: var(--gold-dark);
}

/* 説明文 */
.contact-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1.8rem;
  transition: color 0.3s ease;
}

.contact-card:hover .contact-desc {
  color: var(--text-medium);
}

/* ボタンの追加フィードバック */
.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  position: relative;
  z-index: 2;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(200, 168, 89, 0.25);
}

.contact-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ボタンホバー時 - さらに強調 */
.contact-card:hover .contact-btn {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  box-shadow: 0 8px 28px rgba(200, 168, 89, 0.4);
  transform: translateY(-2px);
}

/* 矢印アイコンが右にスライド */
.contact-card:hover .contact-btn svg {
  transform: translateX(6px);
}

/* ボタン単体のホバー（カード内でボタンだけホバーした時） */
.contact-btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 10px 32px rgba(200, 168, 89, 0.5);
}

/* タッチデバイス用 */
@media (hover: none) {
  .contact-card:active {
    transform: scale(0.98);
  }
  
  .contact-btn:active {
    transform: scale(0.95);
  }
}

/* モバイル対応 */
@media (max-width: 768px) {
  .contact-card {
    padding: 2.5rem 1.5rem;
  }
  
  .contact-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1.2rem;
  }
  
  .contact-icon svg {
    width: 24px;
    height: 24px;
  }
  
  .contact-title {
    font-size: 1.1rem;
  }
  
  .contact-desc {
    font-size: 0.85rem;
  }
  
  .contact-btn {
    padding: 0.9rem 2rem;
    font-size: 0.85rem;
  }
}

/* ============================================
   HERO IMAGE DISPLAY v8.2.0
   全ヒーローで女性画像をTOPと同じ仕様で表示
   ============================================ */

/* コンセプトページのヒーロー - 背景を完全表示 */
.concept .hero__bg-slide.active,
.concept-section .hero__bg-slide.active {
  opacity: 1;
  background-size: cover;
  background-position: center;
}

.concept .hero__overlay,
.concept-section .hero__overlay {
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.5) 0%,
    rgba(0,0,0,0.3) 50%,
    rgba(0,0,0,0.1) 100%
  );
}

/* その他のページヒーロー - 全て同様の仕様 */
.page-hero .hero__bg-slide.active,
.hero--page .hero__bg-slide.active {
  opacity: 1;
  background-size: cover;
  background-position: center;
}

.page-hero .hero__overlay,
.hero--page .hero__overlay {
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.5) 0%,
    rgba(0,0,0,0.3) 50%,
    rgba(0,0,0,0.1) 100%
  );
}

/* ヒーローテキストの視認性確保 */
.hero__content h1,
.hero__content .hero__title,
.hero__content .hero__catch {
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}


/* ============================================
   RESERVATION FORM v8.2.0
   予約フォームスタイル
   ============================================ */

.form-section {
  padding: var(--section-padding) 0;
  background: var(--bg-cream);
}

.reservation-form {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--grid-gap);
}

.form-row {
  display: flex;
  flex-direction: column;
}

.form-row--full {
  grid-column: 1 / -1;
}

.form-row--required .form-label::after {
  content: ' *';
  color: var(--pink-dark);
  font-weight: 600;
}

.form-label {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  font-size: 0.95rem;
  font-family: inherit;
  border: 1px solid rgba(200, 168, 89, 0.3);
  border-radius: 6px;
  background: var(--white);
  color: var(--text-dark);
  transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 168, 89, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-light);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.8;
}

.form-note {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 0.4rem;
  line-height: 1.6;
}

.form-privacy {
  margin: 2.5rem 0 2rem;
  padding: 1.5rem;
  background: var(--bg-cream);
  border-radius: 8px;
}

.form-submit {
  text-align: center;
}

.btn--large {
  padding: 1.2rem 3rem;
  font-size: 1rem;
}

/* フォームメッセージ */
.form-message {
  max-width: 700px;
  margin: 0 auto 3rem;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
}

.form-message h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.form-message p {
  font-size: 0.95rem;
  line-height: 2;
}

.form-message--success {
  background: linear-gradient(135deg, rgba(200, 168, 89, 0.1), rgba(200, 168, 89, 0.05));
  border: 1px solid var(--gold);
  color: var(--text-dark);
}

.form-message--success h3 {
  color: var(--gold);
}

.form-message--error {
  background: linear-gradient(135deg, rgba(233, 30, 99, 0.1), rgba(233, 30, 99, 0.05));
  border: 1px solid var(--pink-dark);
  color: var(--text-dark);
}

.form-message--error h3 {
  color: var(--pink-dark);
}

/* レスポンシブ */
@media (max-width: 768px) {
  .reservation-form {
    padding: 2rem 1.5rem;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .form-row--full {
    grid-column: 1;
  }
  
  .btn--large {
    width: 100%;
    padding: 1.1rem 2rem;
  }
}


/* ============================================
   HERO SECTION FIX v8.2.1
   ヒーロー画像の完全表示とテキスト配置修正
   ============================================ */

/* 全ヒーローの画像を完全表示 */
.hero__bg-slide.active {
  opacity: 1;
  background-size: cover;
  background-position: center;
}

/* ヒーローオーバーレイ - より強いダークグラデーション */
.hero__overlay {
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.65) 0%,
    rgba(0,0,0,0.45) 35%,
    rgba(0,0,0,0.25) 65%,
    rgba(0,0,0,0.05) 100%
  );
}

/* ヒーローコンテンツ - テキストを左寄せで右にスペース確保 */
.hero__content {
  max-width: 550px;
  margin-left: 0;
  margin-right: auto;
  padding-right: var(--spacing-lg);
}

/* すべてのヒーローテキストを白色＆シャドウ */
.hero__content * {
  color: var(--white);
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.hero__catch,
.hero__subtitle {
  color: var(--gold);
}

/* Conceptセクション（TOPページ内）のオーバーレイ修正 */
.concept__overlay {
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.65) 0%,
    rgba(0,0,0,0.45) 35%,
    rgba(0,0,0,0.25) 65%,
    rgba(0,0,0,0.05) 100%
  );
}

.concept__content {
  max-width: 550px;
  margin-left: 0;
  margin-right: auto;
}

.concept .section-label {
  color: var(--gold);
}

.concept .section-title,
.concept__text,
.concept__text p {
  color: var(--white);
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

/* レスポンシブ */
@media (max-width: 768px) {
  :root {
    --hero-height-top: 65vh;
    --hero-height-sub: 45vh;
    --hero-min-top: 500px;
    --hero-min-sub: 350px;
  }
  
  .hero__content {
    max-width: 100%;
    padding-right: var(--spacing-sm);
  }
}


/* ============================================
   FORM REQUIRED MARK
   必須マークのスタイル
   ============================================ */

.required-mark {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 500;
  margin-left: 0.3rem;
}


/* ============================================
   SUBPAGE HERO v8.2.3
   下層ページ = TOPと同じ構造で縦幅
   ============================================ */

/* 下層ページのヒーロー高さ - 変数で管理 */
.hero--subpage {
  min-height: var(--hero-min-sub);
  height: var(--hero-height-sub);
}

/* TOPページのスプリットレイアウト */
.page-template-page-top .hero--split {
  min-height: var(--hero-min-top);
  height: var(--hero-height-top);
}


/* ============================================
   HERO TITLE SIZE FIX v8.2.4
   キャッチコピーのサイズを小さく
   ============================================ */

/* 下層ページのタイトルサイズを小さく */
.hero--subpage .hero__title-jp {
  font-size: 3.5rem;
  line-height: 1.3;
}

.hero--subpage .hero__brand {
  font-size: 0.9rem;
}

.hero--subpage .hero__subtitle-line {
  font-size: 1.1rem;
}

.hero--subpage .hero__text {
  font-size: var(--text-body);
}

/* ヘッダーメニュー視認性改善 - ダークヘッダーバリアント */
.header--dark {
  background: linear-gradient(
    to bottom,
    rgba(26, 26, 42, 0.95) 0%,
    rgba(26, 26, 42, 0.85) 70%,
    rgba(26, 26, 42, 0) 100%
  );
  backdrop-filter: blur(8px);
}

.header--dark.scrolled {
  background: rgba(26, 26, 42, 0.98);
}

@media (max-width: 768px) {
  .hero--subpage .hero__title-jp {
    font-size: 2.5rem;
  }
}


/* ============================================
   FAQ CONTENT FIX v8.2.4
   FAQページの本文にサイド余白追加
   ============================================ */

.faq-section .container {
  max-width: 900px;
  padding-left: 3rem;
  padding-right: 3rem;
}

.faq-category {
  padding: 0 1rem;
}

.faq-item__answer {
  font-size: 0.95rem;
  line-height: 1.9;
  padding-left: 1.5rem;
}

@media (max-width: 768px) {
  .faq-section .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  
  .faq-category {
    padding: 0;
  }
}


/* ============================================
   POLICY & COMPANY CONTENT FIX v8.2.4
   本文の文字サイズと配置調整
   ============================================ */

/* POLICY & COMPANYページの本文コンテナ */
.policy-section .container,
.company-section .container {
  max-width: 900px;
  padding-left: 3rem;
  padding-right: 3rem;
}

/* 本文のフォントサイズを小さく */
.policy-intro,
.policy-block__text,
.policy-block__note,
.company-info__text {
  font-size: 0.95rem;
  line-height: 1.9;
}

.policy-block__title,
.section-title {
  font-size: 1.4rem;
}

.company-info__label {
  font-size: 0.9rem;
}

.company-info__value {
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .policy-section .container,
  .company-section .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  
  .policy-intro,
  .policy-block__text,
  .company-info__text {
    font-size: 0.9rem;
  }
}

