/* =============================================
   VIOLA Pure - Luxury Redesign Stylesheet
   CLAIRホールディングス株式会社
   カラー：白 / ゴールド / シルバー / 紺
   ============================================= */

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

/* --- CSS Variables --- */
:root {
  /* === Brand Colors === */
  --navy:            #0a1628;        /* 深紺（メイン背景） */
  --navy-mid:        #0d1d38;        /* 紺（中間） */
  --navy-light:      #132040;        /* 紺（セクション） */
  --navy-card:       #0f1c34;        /* カード背景 */

  --gold:            #c9a85c;        /* ゴールド */
  --gold-light:      #e2c97e;        /* ゴールドライト */
  --gold-bright:     #f0db96;        /* ゴールドブライト */
  --gold-dark:       #a07830;        /* ゴールドダーク */
  --gold-border:     rgba(201,168,92,0.30);
  --gold-glow:       rgba(201,168,92,0.15);

  --silver:          #c8cdd8;        /* シルバー */
  --silver-light:    #e0e4ec;        /* シルバーライト */
  --silver-dark:     #8c95a8;        /* シルバーダーク */
  --silver-border:   rgba(200,205,216,0.25);

  --white:           #f8f6f2;        /* オフホワイト */
  --white-pure:      #ffffff;
  --white-dim:       rgba(248,246,242,0.80);
  --white-faint:     rgba(248,246,242,0.45);
  --white-ghost:     rgba(248,246,242,0.12);

  /* Legacy aliases */
  --color-bg:          var(--navy);
  --color-bg-mid:      var(--navy-mid);
  --color-bg-section:  var(--navy-light);
  --color-gold:        var(--gold);
  --color-gold-light:  var(--gold-light);
  --color-gold-dark:   var(--gold-dark);
  --color-gold-border: var(--gold-border);
  --color-white:       var(--white);
  --color-white-dim:   var(--white-dim);
  --color-white-faint: var(--white-faint);
  --color-white-ghost: var(--white-ghost);
  --color-text:        var(--white);
  --color-text-sub:    rgba(200,205,216,0.85);
  --color-text-faint:  rgba(200,205,216,0.50);

  /* Typography */
  --font-serif-en: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-serif-jp: 'Noto Serif JP', 'Yu Mincho', '游明朝', serif;
  --font-sans-jp:  'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
  --font-sans-en:  'Josefin Sans', sans-serif;

  /* Spacing */
  --section-pad: 110px;
  --section-pad-sm: 72px;

  /* Transitions */
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.22s ease;
}

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

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

body {
  background-color: var(--navy);
  color: var(--white);
  font-family: var(--font-serif-jp);
  font-weight: 300;
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  background-image:
    radial-gradient(ellipse 120% 60% at 50% 0%, rgba(20,40,90,0.6) 0%, transparent 60%);
}

a { text-decoration: none; color: inherit; transition: var(--transition-fast); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold), var(--silver-dark));
  border-radius: 2px;
}

/* =============================================
   HEADER / NAVIGATION
   ============================================= */
#header {
  position: fixed; top: 0; left: 0; width: 100%;
  z-index: 1000;
  padding: 22px 56px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background var(--transition), padding var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
  /* Always show over hero image */
  background: linear-gradient(to bottom, rgba(10,22,40,0.75) 0%, transparent 100%);
}

#header.scrolled {
  background: rgba(10, 22, 40, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px 56px;
  border-bottom: 1px solid var(--gold-border);
}
/* hero-top class removed — base gradient handles hero visibility */

/* Logo */
.logo-wrapper {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 0.1em; text-decoration: none;
}
.logo {
  font-family: var(--font-serif-en);
  font-weight: 300;
  font-size: 1.45rem;
  letter-spacing: 0.35em;
  color: var(--white);
  white-space: nowrap;
}
.logo span {
  color: var(--gold-light);
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.15em;
}
.logo-tagline {
  font-family: var(--font-sans-jp);
  font-size: 0.55rem;
  font-weight: 200;
  color: var(--silver-dark);
  letter-spacing: 0.20em;
  white-space: nowrap;
  line-height: 1;
}

/* Nav */
#nav { display: flex; align-items: center; gap: 36px; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-family: var(--font-sans-jp);
  font-size: 0.82rem; font-weight: 300;
  letter-spacing: 0.10em;
  color: var(--silver-light);
  position: relative; padding-bottom: 5px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.btn-contact {
  font-family: var(--font-sans-jp);
  font-size: 0.80rem; font-weight: 400;
  letter-spacing: 0.14em;
  color: var(--gold-light);
  border: 1px solid var(--gold-border);
  padding: 10px 28px;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.btn-contact::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  opacity: 0; transition: opacity var(--transition);
}
.btn-contact:hover::before { opacity: 1; }
.btn-contact:hover { color: var(--navy); border-color: var(--gold); }
.btn-contact span, .btn-contact { position: relative; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 6px;
  cursor: pointer; padding: 4px; background: none; border: none; z-index: 1100;
}
.hamburger span {
  display: block; width: 26px; height: 1px;
  background: var(--silver-light);
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none; position: fixed; inset: 0;
  background: rgba(8, 18, 35, 0.98);
  z-index: 999;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 40px;
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition);
}
.mobile-menu::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 50%, rgba(20,50,100,0.3) 0%, transparent 70%);
  pointer-events: none;
}
.mobile-menu.open { opacity: 1; pointer-events: all; display: flex; }
.mobile-menu a {
  font-family: var(--font-serif-jp);
  font-size: 1.2rem; font-weight: 300;
  letter-spacing: 0.25em;
  color: var(--silver-light);
  transition: color var(--transition-fast);
  position: relative;
}
.mobile-menu a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.35s ease;
}
.mobile-menu a:hover { color: var(--gold-light); }
.mobile-menu a:hover::after { width: 100%; }

/* =============================================
   HERO SECTION
   ============================================= */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: stretch; justify-content: stretch;
  padding: 0;
  overflow: hidden;
  background: var(--navy);  /* 左カラムのベース色 */
}

/* ─── Split layout wrapper ─── */
.hero-split {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: minmax(400px, 46%) 1fr;   /* 左:テキスト(最小400px) / 右:画像 */
  min-height: 100vh;
  width: 100%;
  align-items: stretch;
}

/* 左カラム背景：ネイビーグラデーション */
.hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 50%;           /* 左半分のみ */
  height: 100%;
  background:
    radial-gradient(ellipse 120% 80% at 20% 40%, rgba(20,50,110,0.9) 0%, rgba(10,22,40,0) 70%),
    linear-gradient(135deg, #0d1d38 0%, var(--navy) 60%, #061020 100%);
  z-index: 0;
}

/* Subtle texture on left col */
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent, transparent 3px,
      rgba(200,205,216,0.018) 3px, rgba(200,205,216,0.018) 4px
    );
  z-index: 1;
}

/* Star particles — left col only */
.stars {
  position: absolute;
  top: 0; left: 0; width: 50%; height: 100%;
  z-index: 1; overflow: hidden;
}
.star {
  position: absolute; border-radius: 50%;
  background: var(--white);
  animation: twinkle var(--duration, 3s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}
@keyframes twinkle {
  0%, 100% { opacity: var(--min-op, 0.05); transform: scale(1); }
  50% { opacity: var(--max-op, 0.5); transform: scale(1.4); }
}

.hero-content {
  position: relative; z-index: 4;
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
  padding: 65px 48px 110px 80px;
  width: 100%;
  text-align: left;
}

/* Eyebrow brand line */
.hero-brand {
  font-family: var(--font-sans-jp);
  font-size: 0.60rem; font-weight: 300;
  letter-spacing: 0.35em;
  color: var(--silver-dark);
  margin-bottom: 20px;
  text-align: left;
  opacity: 0;
  animation: fadeInUp 1s ease forwards 0.3s;
}

/* VIOLA Pure label bar */
.hero-label {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 28px;
  justify-content: flex-start;
  opacity: 0;
  animation: fadeInUp 0.9s ease forwards 0.45s;
}
.hero-label-line {
  display: inline-block; height: 1px; flex: 0 0 40px;
  background: linear-gradient(to right, var(--gold-dark), var(--gold));
}
.hero-label-line:last-child {
  background: linear-gradient(to left, var(--gold-dark), var(--gold));
}
.hero-label-text {
  font-family: var(--font-serif-en);
  font-size: 0.70rem; font-weight: 400;
  letter-spacing: 0.55em;
  color: var(--gold);
  text-transform: none;   /* Preserve 'Pure' casing */
  white-space: nowrap;
}

/* Main headline */
.hero-headline {
  font-family: var(--font-serif-jp);
  font-size: clamp(1.35rem, 2.4vw, 2.05rem);
  font-weight: 200;
  letter-spacing: 0.24em;
  color: var(--white-pure);
  line-height: 1.65;
  margin-bottom: 36px;
  white-space: nowrap;
  text-align: left;
  opacity: 0;
  animation: fadeInUp 1s ease forwards 0.55s;
  text-shadow: 0 2px 20px rgba(6,16,32,0.7);
}

/* Gold divider gem */
.hero-divider {
  display: flex; align-items: center; justify-content: flex-start;
  gap: 14px; margin-bottom: 32px;
  opacity: 0; animation: fadeInUp 0.8s ease forwards 0.75s;
}
.hero-divider::before {
  content: ''; display: inline-block; height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--gold-border), transparent);
  width: 80px;
}
.hero-divider::after { display: none; }
.hero-divider-gem {
  width: 7px; height: 7px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: rotate(45deg);
  box-shadow: 0 0 12px rgba(201,168,92,0.6);
}

/* Subtext */
.hero-desc {
  font-family: var(--font-serif-jp);
  font-size: 0.85rem; font-weight: 300;
  color: var(--silver-light);
  letter-spacing: 0.12em; line-height: 2.3;
  max-width: none; white-space: normal;
  margin: 0 0 14px;
  text-align: left;
  opacity: 0; animation: fadeInUp 0.8s ease forwards 0.9s;
}
.sp-br { display: none; }
.sp-hidden { display: inline; } /* SP版で非表示にする要素（デフォルトは表示） */
.sp-right { display: inline; } /* SP版で右寄せにする要素（デフォルトはinline） */
.pc-br { display: block; } /* PC版のみ改行 */
.hero-desc-sub {
  font-size: 0.80rem;
  color: var(--silver-dark);
  margin-bottom: 48px;
  opacity: 0; animation: fadeInUp 0.8s ease forwards 1.0s;
}

/* CTA Buttons */
.hero-buttons {
  display: flex; gap: 20px; justify-content: flex-start; flex-wrap: wrap;
  margin-bottom: 64px;
  opacity: 0; animation: fadeInUp 0.8s ease forwards 1.1s;
}

/* Primary button — gold gradient */
.btn-primary {
  font-family: var(--font-sans-jp);
  font-size: 0.80rem; font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  padding: 18px 52px;
  border: none; cursor: pointer;
  transition: var(--transition);
  position: relative; overflow: hidden;
  box-shadow: 0 4px 24px rgba(201,168,92,0.30);
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-bright) 50%, var(--gold) 100%);
  opacity: 0; transition: opacity var(--transition);
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,168,92,0.45);
  color: var(--navy);
}
.btn-primary span { position: relative; z-index: 1; }

/* Secondary button — silver/navy */
.btn-secondary {
  font-family: var(--font-sans-jp);
  font-size: 0.80rem; font-weight: 300;
  letter-spacing: 0.14em;
  color: var(--silver-light);
  background: transparent;
  border: 1px solid var(--silver-border);
  padding: 18px 44px;
  cursor: pointer;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.btn-secondary::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(200,205,216,0.07);
  opacity: 0; transition: opacity var(--transition);
}
.btn-secondary:hover::before { opacity: 1; }
.btn-secondary:hover {
  border-color: var(--gold-border);
  color: var(--gold-light);
}

/* Hero Stats */
.hero-stats {
  display: flex; gap: 44px; justify-content: flex-start; flex-wrap: wrap;
  opacity: 0; animation: fadeInUp 0.8s ease forwards 1.3s;
}
.stat-item { text-align: left; position: relative; }
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute; right: -22px; top: 50%; transform: translateY(-50%);
  width: 1px; height: 36px;
  background: rgba(200,205,216,0.25);
}
.stat-number {
  font-family: var(--font-serif-en);
  font-size: 2.4rem; font-weight: 400;
  color: var(--white-pure);
  letter-spacing: 0.04em; line-height: 1;
}
.stat-unit {
  font-family: var(--font-sans-jp);
  font-size: 0.75rem;
  color: var(--gold);
  margin-left: 3px;
}
.stat-label {
  font-family: var(--font-sans-jp);
  font-size: 0.63rem; font-weight: 300;
  color: var(--silver-dark);
  letter-spacing: 0.12em; margin-top: 8px;
}

/* ─── Hero RIGHT: image column ─── */
.hero-image-col {
  position: relative;
  overflow: hidden;
  background: #f5f3ef;   /* 画像が読み込む前のフォールバック色 */
}

.hero-image-frame {
  position: relative;
  width: 100%; height: 100%;
  overflow: hidden;
}

.hero-woman-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  animation: heroImgReveal 1.4s cubic-bezier(0.22, 1, 0.36, 1) forwards 0.3s;
  opacity: 0;
  transform: scale(1.04);
}
@keyframes heroImgReveal {
  to { opacity: 1; transform: scale(1); }
}

/* 左端のみネイビーへフェード（左カラムとの境界変換）、下端は最小限 */
.hero-image-frame::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, var(--navy) 0%, rgba(10,22,40,0.30) 12%, transparent 30%),
    linear-gradient(to top,   rgba(10,22,40,0.25) 0%, transparent 18%);
  z-index: 1;
  pointer-events: none;
}

/* Gold accent lines on image */
.hero-img-accent {
  position: absolute; z-index: 2; background: var(--gold);
  opacity: 0; animation: fadeIn 1s ease forwards 1.2s;
}
.hero-img-accent--top {
  top: 48px; right: 48px;
  width: 80px; height: 1px;
}
.hero-img-accent--right {
  top: 48px; right: 48px;
  width: 1px; height: 80px;
}

/* Floating badge on image — sits above scroll indicator */
.hero-img-badge {
  position: absolute;
  bottom: 160px; left: 36px;
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  background: rgba(10,22,40,0.72);
  border: 1px solid var(--gold-border);
  padding: 14px 20px;
  backdrop-filter: blur(8px);
  opacity: 0; animation: fadeInUp 0.8s ease forwards 1.4s;
}
.hero-img-badge-en {
  font-family: var(--font-sans-en);
  font-size: 0.50rem; letter-spacing: 0.55em;
  color: var(--gold); text-transform: uppercase;
}
.hero-img-badge-jp {
  font-family: var(--font-serif-jp);
  font-size: 0.90rem; font-weight: 300; letter-spacing: 0.28em;
  color: var(--white-pure);
  margin: 4px 0;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  opacity: 0; animation: fadeIn 1s ease forwards 1.6s; z-index: 3;
}
.scroll-indicator span {
  font-family: var(--font-sans-en);
  font-size: 0.55rem; letter-spacing: 0.40em;
  color: var(--silver-dark);
}
.scroll-line {
  width: 1px; height: 52px;
  background: linear-gradient(to bottom, var(--gold-border), transparent);
  animation: scrollDown 2.2s ease-in-out infinite;
}
@keyframes scrollDown {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* =============================================
   MARQUEE
   ============================================= */
.marquee-wrap {
  overflow: hidden;
  background: linear-gradient(180deg, rgba(20,40,90,0.45) 0%, rgba(13,29,56,0.6) 100%);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  padding: 14px 0;
  white-space: nowrap; position: relative; z-index: 1;
}
.marquee-track {
  display: inline-flex; align-items: center; gap: 40px;
  animation: marqueeScroll 30s linear infinite;
  will-change: transform;
}
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--font-serif-en);
  font-style: italic;
  font-size: 0.80rem; font-weight: 400;
  letter-spacing: 0.26em;
  color: var(--silver);
}
.marquee-track .dot { color: var(--gold); font-size: 0.6rem; font-style: normal; letter-spacing: 0; }
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =============================================
   SECTION COMMON STYLES
   ============================================= */
section { position: relative; overflow: hidden; }

.section-inner {
  max-width: 1140px; margin: 0 auto;
  padding: var(--section-pad) 56px;
}

/* Section label */
.section-tag {
  font-family: var(--font-sans-en);
  font-size: 0.58rem; font-weight: 400;
  letter-spacing: 0.52em;
  color: var(--silver-dark);
  text-transform: uppercase; margin-bottom: 18px;
  display: flex; align-items: center; justify-content: flex-start; gap: 14px;
}
.section-tag::before {
  content: ''; display: inline-block;
  width: 32px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

/* Section title */
.section-title {
  font-family: var(--font-serif-jp);
  font-size: clamp(1.55rem, 3.5vw, 2.4rem);
  font-weight: 300;
  letter-spacing: 0.24em;
  color: var(--white-pure);
  line-height: 1.5; margin-bottom: 22px;
}

/* Section lead paragraph */
.section-lead {
  font-family: var(--font-serif-jp);
  font-size: 0.88rem; font-weight: 300;
  color: var(--silver-light);
  letter-spacing: 0.08em; line-height: 2.4;
  max-width: 560px;
}

/* Gold + Silver divider */
.section-divider {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin: 22px 0 44px;
}
.section-divider-line {
  width: 56px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border), var(--silver-border));
}
.section-divider-gem {
  width: 5px; height: 5px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: rotate(45deg);
  box-shadow: 0 0 8px rgba(201,168,92,0.5);
}

/* Fade-in animation */
.fade-in {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.10s; }
.fade-in-delay-2 { transition-delay: 0.20s; }
.fade-in-delay-3 { transition-delay: 0.30s; }
.fade-in-delay-4 { transition-delay: 0.40s; }
.fade-in-delay-5 { transition-delay: 0.50s; }

/* Gold divider line */
.gold-line {
  width: 100%; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-border), var(--silver-border), transparent);
}

/* =============================================
   SECTION: 理念 (#philosophy)
   ============================================= */
#philosophy {
  background:
    linear-gradient(180deg, var(--navy-light) 0%, var(--navy-mid) 100%);
}
#philosophy .section-inner { max-width: 1140px; text-align: center; }
#philosophy .section-tag,
#philosophy .section-title,
#philosophy .section-divider {
  justify-content: center; margin-left: auto; margin-right: auto; text-align: center;
}

.philosophy-block {
  border: 1px solid var(--gold-border);
  padding: 64px 80px;
  position: relative;
  background:
    radial-gradient(ellipse at top left, rgba(201,168,92,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(200,205,216,0.04) 0%, transparent 50%);
  display: inline-flex;
  flex-direction: column; align-items: center;
  gap: 36px; text-align: center; box-sizing: border-box;
}
.philosophy-block::before {
  content: '';
  position: absolute; inset: 6px;
  border: 1px solid rgba(200,205,216,0.08);
  pointer-events: none;
}

.philosophy-quote-col { text-align: center; }
.philosophy-quote-text {
  font-family: var(--font-serif-jp);
  font-size: clamp(1.4rem, 3.2vw, 2.2rem);
  font-weight: 200;
  color: var(--white-pure);
  letter-spacing: 0.24em; line-height: 1.7;
  margin-bottom: 0; white-space: nowrap;
  text-shadow: 0 2px 20px rgba(10,22,40,0.4);
}

.philosophy-body-col { text-align: center; }
.philosophy-body-text {
  font-family: var(--font-sans-jp);
  font-size: 0.85rem; color: var(--silver-light);
  line-height: 2.3; margin-bottom: 14px;
  text-align: center; white-space: nowrap;
}
.philosophy-body-col .btn-primary { margin-top: 56px; }

@media (max-width: 768px) {
  #philosophy .section-inner {
    padding-left: 20px; padding-right: 20px;
    overflow-x: hidden; width: 100%; box-sizing: border-box;
  }
  .philosophy-block {
    display: flex !important;
    width: 100% !important; max-width: 100% !important;
    box-sizing: border-box; gap: 24px; padding: 40px 24px;
  }
  .philosophy-quote-text {
    font-size: clamp(0.82rem, 4.5vw, 1.1rem);
    white-space: nowrap; letter-spacing: 0.12em;
  }
  .philosophy-body-text {
    font-size: 0.82rem; white-space: normal;
    letter-spacing: 0.05em;
  }
  .philosophy-body-col .btn-primary { margin-top: 32px; }
}

/* =============================================
   SECTION: コンセプト (#concept)
   ============================================= */
#concept { background: var(--navy); }
#concept .section-inner { max-width: 800px; }
#concept .section-tag, #concept .section-title { text-align: left; }
#concept .section-divider { justify-content: flex-start; margin-left: 0; margin-right: 0; }

.concept-desc {
  font-family: var(--font-sans-jp);
  font-size: 0.88rem; color: var(--silver-light);
  line-height: 2.2; text-align: left; max-width: 580px; margin: 0 0 56px;
}

.concept-values { display: flex; flex-direction: column; gap: 0; }

.concept-value-item {
  display: flex; align-items: flex-start; gap: 32px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(200,205,216,0.10);
  transition: background var(--transition);
}
.concept-value-item:first-child { border-top: 1px solid rgba(200,205,216,0.10); }
.concept-value-item:hover { background: rgba(200,205,216,0.03); }

.concept-value-num {
  font-family: var(--font-serif-en);
  font-size: 1.7rem; font-weight: 300;
  color: var(--gold); opacity: 0.55;
  line-height: 1; min-width: 38px; padding-top: 4px;
  font-style: italic;
}
.concept-value-title {
  font-family: var(--font-serif-jp);
  font-size: 1.08rem; font-weight: 300;
  color: var(--white-pure);
  letter-spacing: 0.16em; margin-bottom: 9px; line-height: 1.5;
}
.concept-value-desc {
  font-family: var(--font-sans-jp);
  font-size: 0.84rem; font-weight: 300;
  color: var(--silver-light); line-height: 2;
}
.concept-value-desc-02 {
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
@media (max-width: 768px) {
  .concept-value-desc-02 { white-space: normal; overflow: visible; text-overflow: clip; }
  .concept-desc { white-space: normal; max-width: 100%; }
  .concept-desc .sp-br, .concept-value-desc .sp-br { display: inline; }
  .sp-hidden { display: none; } /* SP版で読点を非表示 */
  .sp-right { display: block; text-align: right; } /* SP版で右寄せ */
  .concept-value-desc { white-space: normal; }
}

/* =============================================
   SECTION: 肌の五大能力 (#abilities)
   ============================================= */
#abilities {
  background:
    linear-gradient(180deg, var(--navy-light) 0%, var(--navy-mid) 100%);
}
#abilities .section-inner { text-align: left; }
#abilities .section-tag, #abilities .section-title { text-align: left; }
#abilities .section-lead { text-align: left; margin-left: 0; margin-right: 0; }
#abilities .section-divider { justify-content: flex-start; margin-left: 0; margin-right: 0; }

.abilities-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px; margin-top: 8px; text-align: left;
}

.ability-card {
  border: 1px solid rgba(200,205,216,0.12);
  padding: 30px 20px;
  background: rgba(255,255,255,0.025);
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.ability-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--silver));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.ability-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,92,0.05) 0%, transparent 70%);
  opacity: 0; transition: opacity var(--transition);
}
.ability-card:hover::before { transform: scaleX(1); }
.ability-card:hover::after  { opacity: 1; }
.ability-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-5px);
  box-shadow: 0 10px 32px rgba(10,22,40,0.4);
}
.ability-card-num {
  font-family: var(--font-serif-en);
  font-size: 2rem; font-weight: 300; font-style: italic;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  letter-spacing: 0.08em; line-height: 1; margin-bottom: 16px; opacity: 0.9;
}
.ability-card-icon {
  font-size: 1.5rem; color: var(--silver);
  opacity: 0.7; margin-bottom: 12px; display: block; line-height: 1;
}
.ability-card-title {
  font-family: var(--font-serif-jp);
  font-size: 1.08rem; font-weight: 400;
  color: var(--white-pure);
  letter-spacing: 0.15em; margin-bottom: 12px;
}
.ability-card-desc {
  font-family: var(--font-sans-jp);
  font-size: 0.72rem; color: var(--silver-light); line-height: 1.95;
}

@media (max-width: 1024px) { .abilities-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) {
  .abilities-grid { grid-template-columns: 1fr 1fr; }
  .abilities-grid .ability-card:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
    width: 100%;
  }
}
@media (max-width: 400px)  { .abilities-grid { grid-template-columns: 1fr; } }

/* =============================================
   SECTION: フラッグシップ (#flagship)
   ============================================= */
#flagship {
  background: var(--navy);
  position: relative;
}
#flagship::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(15,35,80,0.5) 0%, transparent 70%);
  pointer-events: none;
}
#flagship .section-inner { text-align: center; }
#flagship .section-tag,
#flagship .section-title,
#flagship .section-lead,
#flagship .section-divider {
  justify-content: center; margin-left: auto; margin-right: auto;
}

.flagship-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px; align-items: center;
  text-align: left; margin-top: 20px;
}
.flagship-visual {
  position: relative; display: flex; align-items: center; justify-content: center;
}
.flagship-frame {
  width: 100%; max-width: 360px;
  aspect-ratio: 3/4;
  border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  background: radial-gradient(ellipse at center, rgba(15,40,90,0.6) 0%, transparent 70%);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(8,18,40,0.6), 0 0 0 1px var(--silver-border);
}
.flagship-frame::before {
  content: ''; position: absolute; inset: 8px;
  border: 1px solid rgba(200,205,216,0.10);
  pointer-events: none; z-index: 2;
}
.flagship-frame-tmac {
  background: radial-gradient(ellipse at center, rgba(240,235,220,0.06) 0%, rgba(8,18,40,0.7) 100%) !important;
}
.flagship-frame-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center; display: block;
}
.flagship-frame-tmac .flagship-frame-img {
  object-fit: cover; top: 5%; bottom: 5%; left: 8%; right: 2%;
  width: 90%; height: 90%; object-position: center center;
}
.flagship-frame:has(.flagship-frame-img) .flagship-frame-inner { display: none; }
.flagship-frame:has(.flagship-frame-img)::before { z-index: 1; }

.flagship-badge {
  position: absolute; top: 18px; right: 18px;
  font-family: var(--font-sans-en);
  font-size: 0.52rem; letter-spacing: 0.24em;
  color: var(--navy); z-index: 3;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  padding: 5px 12px;
  box-shadow: 0 2px 12px rgba(201,168,92,0.4);
}

.flagship-series {
  font-family: var(--font-sans-en);
  font-size: 0.60rem; letter-spacing: 0.36em;
  color: var(--silver-dark); margin-bottom: 12px;
}
.flagship-name {
  font-family: var(--font-serif-jp);
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  font-weight: 200; color: var(--white-pure);
  letter-spacing: 0.22em; margin-bottom: 6px;
}
.flagship-name span {
  font-family: var(--font-serif-en);
  font-style: italic; color: var(--gold-light);
}
.flagship-sub {
  font-family: var(--font-sans-jp);
  font-size: 0.74rem; color: var(--silver-dark);
  letter-spacing: 0.12em; margin-bottom: 22px;
}
.flagship-stars {
  display: flex; align-items: center; gap: 5px; margin-bottom: 22px;
}
.flagship-stars i { color: var(--gold); font-size: 0.72rem; }
.flagship-stars span { font-family: var(--font-sans-jp); font-size: 0.68rem; color: var(--silver-dark); margin-left: 8px; }

.flagship-desc {
  font-family: var(--font-sans-jp);
  font-size: 0.83rem; color: var(--silver-light); line-height: 2.1; margin-bottom: 26px;
}
.flagship-benefits {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 28px;
}
.flagship-benefit-item {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-sans-jp);
  font-size: 0.76rem; color: var(--silver-light);
  padding: 10px 14px;
  border: 1px solid var(--silver-border);
  background: rgba(200,205,216,0.04);
  transition: var(--transition-fast);
}
.flagship-benefit-item:hover {
  border-color: var(--gold-border);
  background: rgba(201,168,92,0.05);
}
.flagship-benefit-item .benefit-icon {
  font-size: 1.1rem; color: var(--gold); opacity: 0.85;
  line-height: 1; min-width: 1.4rem; text-align: center;
}
.flagship-specs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  margin-bottom: 30px;
  border: 1px solid var(--gold-border);
  background: rgba(201,168,92,0.03);
  padding: 18px;
}
.flagship-spec-item { display: flex; flex-direction: column; gap: 3px; padding: 8px 10px; }
.flagship-spec-maker { grid-column: 1 / -1; }
.flagship-spec-maker .spec-value {
  white-space: nowrap;
  font-size: clamp(0.70rem, 2vw, 0.88rem);
}
.spec-label {
  font-family: var(--font-sans-jp);
  font-size: 0.62rem; letter-spacing: 0.14em;
  color: var(--gold); text-transform: uppercase;
}
.spec-value {
  font-family: var(--font-serif-jp);
  font-size: 0.90rem; color: var(--white);
}
.spec-value small { font-size: 0.72rem; color: var(--silver-dark); margin-left: 3px; }
.flagship-actions { display: flex; gap: 16px; flex-wrap: wrap; }

@media (max-width: 1024px) {
  .flagship-layout { grid-template-columns: 1fr; gap: 52px; }
  .flagship-visual { order: -1; }
}

/* =============================================
   SECTION: サプリメント (#supplement)
   ============================================= */
#supplement {
  background: linear-gradient(180deg, var(--navy-mid) 0%, var(--navy-light) 100%);
}
#supplement .section-inner {
  display: flex; flex-direction: column; align-items: center; max-width: 960px;
}
#supplement .section-tag,
#supplement .section-title,
#supplement .section-divider {
  justify-content: center; margin-left: auto; margin-right: auto; text-align: center;
}

.tmac-badge {
  display: inline-block;
  font-family: var(--font-sans-jp); font-size: 0.68rem; font-weight: 400;
  letter-spacing: 0.18em; color: var(--navy);
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  padding: 5px 18px; margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(201,168,92,0.3);
}
.tmac-name {
  font-family: var(--font-serif-en);
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  font-weight: 300; color: var(--white-pure);
  letter-spacing: 0.3em; line-height: 1.1; margin-bottom: 10px;
}
.tmac-name em { font-style: italic; color: var(--gold); }
.tmac-sub {
  font-family: var(--font-sans-jp); font-size: 0.78rem;
  color: var(--silver-dark); letter-spacing: 0.12em; margin-bottom: 14px;
}
.tmac-stars { display: inline-flex; align-items: center; gap: 4px; margin-bottom: 20px; }
.tmac-stars i { color: var(--gold); font-size: 0.72rem; }
.tmac-stars span { font-family: var(--font-sans-jp); font-size: 0.68rem; color: var(--silver-dark); margin-left: 6px; }
.tmac-desc {
  font-family: var(--font-sans-jp); font-size: 0.84rem;
  color: var(--silver-light); line-height: 2.1;
  max-width: 660px; margin: 0 auto 28px;
}
.tmac-prices {
  display: inline-flex; gap: 32px;
  border: 1px solid var(--gold-border);
  padding: 22px 44px;
  background: rgba(201,168,92,0.04);
}
.tmac-price-item { display: flex; flex-direction: column; gap: 5px; text-align: center; }
.tmac-price-label {
  font-family: var(--font-sans-jp); font-size: 0.62rem;
  letter-spacing: 0.15em; color: var(--silver-dark);
}
.tmac-price-value {
  font-family: var(--font-serif-en);
  font-size: 1.7rem; font-weight: 300;
  color: var(--white-pure); letter-spacing: 0.04em; line-height: 1.1;
}
.tmac-price-value small {
  font-family: var(--font-sans-jp); font-size: 0.68rem;
  color: var(--silver-dark); margin-left: 4px;
}
.tmac-price-regular { color: var(--silver-dark); }

.tmac-impact {
  width: 100%; text-align: center; padding: 52px 44px; margin-bottom: 68px;
  background:
    radial-gradient(ellipse at center, rgba(201,168,92,0.07) 0%, transparent 70%),
    rgba(200,205,216,0.02);
  border: 1px solid var(--gold-border);
  position: relative; overflow: hidden;
  box-shadow: 0 8px 40px rgba(8,18,40,0.4);
}
.tmac-impact::before {
  content: ''; position: absolute; inset: 8px;
  border: 1px solid rgba(200,205,216,0.07); pointer-events: none;
}
.tmac-impact-num {
  font-family: var(--font-serif-en);
  font-size: clamp(5rem, 18vw, 10rem); font-weight: 300; font-style: italic;
  line-height: 0.9;
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 16px;
}
.tmac-impact-num span { font-size: clamp(2.4rem, 8vw, 4.5rem); margin-left: 4px; }
.tmac-impact-label {
  font-family: var(--font-serif-jp);
  font-size: clamp(0.88rem, 2.2vw, 1.1rem);
  font-weight: 300; color: var(--white-pure);
  letter-spacing: 0.14em; line-height: 1.7; margin-bottom: 12px;
}
.tmac-impact-note {
  font-family: var(--font-sans-jp); font-size: 0.66rem;
  color: var(--silver-dark); line-height: 1.9;
  max-width: 520px; margin: 0 auto;
}

.tmac-section-heading {
  font-family: var(--font-serif-jp);
  font-size: clamp(1rem, 2.4vw, 1.3rem); font-weight: 300;
  color: var(--white-pure); letter-spacing: 0.22em;
  text-align: center; margin-bottom: 32px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--gold-border);
  width: 100%; position: relative;
}
.tmac-section-heading::after {
  content: ''; position: absolute; bottom: -1px; left: 50%; transform: translateX(-50%);
  width: 64px; height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--silver));
}

.tmac-mech-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; width: 100%; margin-bottom: 68px;
}
.tmac-mech-card {
  border: 1px solid rgba(200,205,216,0.12);
  padding: 30px 24px 24px;
  background: rgba(255,255,255,0.02);
  transition: var(--transition); position: relative; overflow: hidden;
}
.tmac-mech-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--silver), transparent);
  transform: scaleX(0); transition: transform var(--transition);
}
.tmac-mech-card:hover { border-color: var(--gold-border); background: rgba(201,168,92,0.04); transform: translateY(-3px); }
.tmac-mech-card:hover::after { transform: scaleX(1); }
.tmac-mech-num {
  font-family: var(--font-serif-en); font-size: 2rem; font-weight: 300; font-style: italic;
  color: var(--gold); opacity: 0.5; line-height: 1; margin-bottom: 12px;
}
.tmac-mech-title {
  font-family: var(--font-serif-jp); font-size: 0.95rem; font-weight: 400;
  color: var(--white-pure); letter-spacing: 0.12em; margin-bottom: 10px; line-height: 1.5;
}
.tmac-mech-desc { font-family: var(--font-sans-jp); font-size: 0.74rem; color: var(--silver-light); line-height: 1.95; margin-bottom: 14px; }
.tmac-mech-tag {
  display: inline-block; font-family: var(--font-sans-jp); font-size: 0.60rem;
  letter-spacing: 0.12em; color: var(--silver-dark);
  border: 1px solid var(--silver-border); padding: 3px 10px;
}

.tmac-timeline {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; width: 100%; margin-bottom: 68px; position: relative;
}
.tmac-timeline::before {
  content: ''; position: absolute; top: 10px;
  left: calc(100%/8); right: calc(100%/8); height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-border), var(--silver-border), var(--gold-border), transparent);
  z-index: 0;
}
.tmac-timeline-item {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 0 12px; position: relative; z-index: 1;
}
.tmac-timeline-dot {
  width: 20px; height: 20px; border-radius: 50%;
  border: 1px solid var(--gold);
  background: var(--navy-light);
  box-shadow: 0 0 12px rgba(201,168,92,0.35);
  margin-bottom: 18px; flex-shrink: 0;
}
.tmac-timeline-period {
  font-family: var(--font-serif-en); font-size: 0.72rem; font-style: italic;
  color: var(--gold); letter-spacing: 0.08em; margin-bottom: 8px;
}
.tmac-timeline-title {
  font-family: var(--font-serif-jp); font-size: 0.88rem; font-weight: 400;
  color: var(--white-pure); letter-spacing: 0.12em; margin-bottom: 8px; line-height: 1.5;
}
.tmac-timeline-desc { font-family: var(--font-sans-jp); font-size: 0.70rem; color: var(--silver-light); line-height: 1.85; }

.tmac-spec {
  width: 100%; border: 1px solid var(--gold-border);
  background: rgba(201,168,92,0.025); margin-bottom: 52px; overflow: hidden;
}
.tmac-spec-row { display: grid; grid-template-columns: 160px 1fr; border-bottom: 1px solid rgba(200,205,216,0.08); }
.tmac-spec-row:last-child { border-bottom: none; }
.tmac-spec-label {
  font-family: var(--font-sans-jp); font-size: 0.72rem; letter-spacing: 0.12em;
  color: var(--gold); padding: 15px 22px;
  background: rgba(201,168,92,0.04);
  border-right: 1px solid var(--gold-border); display: flex; align-items: center;
}
.tmac-spec-value {
  font-family: var(--font-serif-jp); font-size: 0.85rem; color: var(--white);
  padding: 15px 22px; line-height: 1.75; display: flex; align-items: center;
}

.tmac-spec-feature {
  font-size: clamp(0.40rem, 0.80vw, 0.62rem); white-space: nowrap;
}
@media (max-width: 768px) {
  .tmac-spec-feature { font-size: 0.78rem; white-space: normal; }
  .tmac-prices { flex-direction: column; gap: 16px; padding: 20px 28px; width: 100%; }
  .tmac-mech-grid { grid-template-columns: 1fr 1fr; }
  .tmac-timeline { grid-template-columns: 1fr 1fr; gap: 28px; }
  .tmac-timeline::before { display: none; }
  .tmac-spec-row { grid-template-columns: 110px 1fr; }
  .tmac-impact { padding: 32px 20px; }
  .tmac-name { letter-spacing: 0.18em; }
}
@media (max-width: 480px) {
  .tmac-mech-grid { grid-template-columns: 1fr; }
  .tmac-timeline { grid-template-columns: 1fr; gap: 24px; }
  .tmac-timeline-item { align-items: flex-start; text-align: left; flex-direction: row; gap: 16px; }
  .tmac-timeline-dot { margin-bottom: 0; margin-top: 2px; flex-shrink: 0; }
  .tmac-spec-row { grid-template-columns: 1fr; }
  .tmac-spec-label { border-right: none; border-bottom: 1px solid var(--gold-border); padding: 10px 16px; }
  .tmac-spec-value { padding: 10px 16px; }
}
.tmac-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 8px; }

/* =============================================
   SECTION: 初めての方へ (#about)
   ============================================= */
.about-section-new {
  position: relative;
  background: linear-gradient(180deg, var(--navy) 0%, rgba(13,29,56,0.96) 100%);
}
.about-accent-bar {
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 30%, var(--gold-bright) 50%, var(--silver) 70%, transparent 100%);
}
#about .section-inner {
  display: grid; grid-template-columns: 1.3fr 0.7fr;
  gap: 72px; align-items: center;
}
#about .section-tag, #about .section-title { text-align: left; }
#about .section-divider { justify-content: flex-start; margin-left: 0; margin-right: 0; }

.about-visual-col {
  position: relative; display: flex; justify-content: center; align-items: center;
}
.about-frame {
  width: 100%; max-width: 400px; aspect-ratio: 3/4;
  border: 1px solid var(--gold-border);
  position: relative; display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(ellipse at center, rgba(15,40,90,0.7) 0%, transparent 70%);
  box-shadow: 0 20px 60px rgba(8,18,40,0.5), 0 0 0 1px var(--silver-border);
}
.about-frame::before {
  content: ''; position: absolute; inset: 8px;
  border: 1px solid rgba(200,205,216,0.08); pointer-events: none;
}
.about-frame-inner { text-align: center; padding: 40px; }
.about-frame-icon { width: 64px; height: 64px; margin: 0 auto 24px; position: relative; }
.about-frame-icon::before, .about-frame-icon::after {
  content: ''; position: absolute;
  border: 1px solid var(--gold-border);
}
.about-frame-icon::before { inset: 0; animation: rotateSlow 12s linear infinite; }
.about-frame-icon::after  { inset: 8px; transform: rotate(45deg); animation: rotateSlow 12s linear infinite reverse; }
@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.about-frame-label {
  font-family: var(--font-serif-en); font-size: 1.1rem; font-weight: 300;
  color: var(--gold); letter-spacing: 0.28em; margin-bottom: 8px;
}
.about-frame-sub {
  font-family: var(--font-sans-jp); font-size: 0.70rem;
  color: var(--silver-dark); letter-spacing: 0.12em;
}

/* Five abilities list */
.five-abilities {
  margin-top: 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.ability-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(200,205,216,0.10);
  transition: var(--transition);
}
.ability-item:hover { border-color: var(--gold-border); }
.ability-num {
  font-family: var(--font-serif-en); font-size: 0.72rem;
  color: var(--gold); letter-spacing: 0.1em; white-space: nowrap; padding-top: 2px;
}
.ability-text {
  font-family: var(--font-sans-jp); font-size: 0.76rem;
  color: var(--silver-light); letter-spacing: 0.06em; line-height: 1.6;
}
.about-ability-item {
  border: 1px solid var(--gold-border);
  background: rgba(201,168,92,0.04);
  padding: 16px 18px;
  transition: background var(--transition), border-color var(--transition);
}
.about-ability-item:hover { background: rgba(201,168,92,0.09); border-color: var(--gold); }
.about-ability-num {
  font-size: 1.05rem; font-weight: 400; color: var(--gold-light); opacity: 1; padding-top: 0;
}

/* About CTA block */
.about-cta-block { margin-top: 44px; padding-top: 32px; border-top: 1px solid var(--gold-border); }
.about-cta-lead {
  font-family: var(--font-sans-jp); font-size: 0.80rem; font-weight: 300;
  color: var(--silver-dark); letter-spacing: 0.14em; margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.about-cta-lead::before {
  content: ''; display: inline-block; width: 22px; height: 1px;
  background: var(--gold); flex-shrink: 0;
}

/* Beginners button */
.btn-beginners {
  display: flex; align-items: center; gap: 22px; width: 100%;
  padding: 26px 32px;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  border: none; text-decoration: none; color: var(--navy);
  transition: filter 0.35s, transform 0.35s, box-shadow 0.35s;
  position: relative; overflow: hidden;
  box-shadow: 0 6px 28px rgba(201,168,92,0.35);
}
.btn-beginners::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-bright) 100%);
  opacity: 0; transition: opacity 0.35s;
}
.btn-beginners:hover::before { opacity: 1; }
.btn-beginners:hover { transform: translateY(-3px); box-shadow: 0 14px 42px rgba(201,168,92,0.45); color: var(--navy); }

.btn-beginners-icon {
  flex-shrink: 0; width: 52px; height: 52px;
  border: 2px solid rgba(10,22,40,0.30);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); font-size: 1.15rem;
  position: relative; z-index: 1;
  transition: background 0.35s, border-color 0.35s;
}
.btn-beginners:hover .btn-beginners-icon { background: rgba(10,22,40,0.12); border-color: rgba(10,22,40,0.45); }

.btn-beginners-text {
  display: flex; flex-direction: column; gap: 5px; position: relative; z-index: 1;
}
.btn-beginners-label {
  font-family: var(--font-sans-jp); font-size: 0.65rem; font-weight: 400;
  color: rgba(10,22,40,0.60); letter-spacing: 0.22em; text-transform: uppercase; line-height: 1;
}
.btn-beginners-main {
  font-family: var(--font-serif-jp); font-size: 1.25rem; font-weight: 500;
  color: var(--navy); letter-spacing: 0.18em; line-height: 1.3;
}
.btn-beginners-sub {
  font-family: var(--font-sans-jp); font-size: 0.76rem; font-weight: 400;
  color: rgba(10,22,40,0.55); letter-spacing: 0.06em;
}
.btn-beginners-arrow {
  margin-left: auto; position: relative; z-index: 1;
  font-size: 1.1rem; color: rgba(10,22,40,0.50); transition: transform 0.3s;
}
.btn-beginners:hover .btn-beginners-arrow { transform: translateX(5px); }

@media (max-width: 768px) {
  .btn-beginners { padding: 22px 22px; gap: 16px; }
  .btn-beginners-icon { width: 46px; height: 46px; font-size: 1rem; }
  .btn-beginners-main { font-size: 1.1rem; }
  .btn-beginners-sub { font-size: 0.72rem; }
  .btn-beginners-arrow { display: none; }
}

/* =============================================
   SECTION: 全国の代理店 (#stores)
   ============================================= */
#stores { background: linear-gradient(180deg, var(--navy-light) 0%, var(--navy-mid) 100%); }
#stores .section-inner { text-align: left; }
#stores .section-tag, #stores .section-title { text-align: left; }
#stores .section-lead { text-align: left; margin-left: 0; margin-right: 0; }
#stores .section-divider { justify-content: flex-start; margin-left: 0; margin-right: 0; }

.stores-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: left; }
.store-card {
  border: 1px solid rgba(200,205,216,0.10); overflow: hidden;
  transition: var(--transition);
  background: rgba(255,255,255,0.02);
  box-shadow: 0 4px 20px rgba(8,18,40,0.3);
}
.store-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(8,18,40,0.5);
}
.store-card-img { width: 100%; aspect-ratio: 4/3; overflow: hidden; background: var(--navy-card); }
.store-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.65s ease;
  filter: brightness(0.72) saturate(0.55);
}
.store-card:hover .store-card-img img { transform: scale(1.06); filter: brightness(0.82) saturate(0.65); }
.store-card-body { padding: 24px 24px 26px; }
.store-card-tag {
  font-family: var(--font-sans-en); font-size: 0.58rem;
  letter-spacing: 0.34em; color: var(--silver-dark); margin-bottom: 7px;
}
.store-card-name {
  font-family: var(--font-serif-jp); font-size: 1.02rem;
  color: var(--white-pure); letter-spacing: 0.12em; margin-bottom: 13px;
}
.store-card-info { display: flex; flex-direction: column; gap: 6px; }
.store-card-info p {
  font-family: var(--font-sans-jp); font-size: 0.72rem;
  color: var(--silver-dark); display: flex; align-items: center; gap: 8px;
}
.store-card-info i { color: var(--gold); font-size: 0.65rem; width: 13px; }
.stores-more { margin-top: 44px; text-align: center; }

@media (max-width: 900px) { .stores-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .stores-grid { grid-template-columns: 1fr; } }

/* =============================================
   SECTION: お客様の声 (#reviews)
   ============================================= */
#reviews { background: var(--navy); }
#reviews .section-inner { text-align: left; }
#reviews .section-tag, #reviews .section-title { text-align: left; }
#reviews .section-lead { text-align: left; margin-left: 0; margin-right: 0; }
#reviews .section-divider { justify-content: flex-start; margin-left: 0; margin-right: 0; }

.reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; text-align: left; }
.review-card {
  border: 1px solid rgba(200,205,216,0.10);
  padding: 30px 28px;
  background: rgba(255,255,255,0.02);
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.review-card::before {
  content: '\201C';
  position: absolute; top: 12px; right: 20px;
  font-family: var(--font-serif-en); font-size: 4rem;
  color: var(--gold); opacity: 0.10;
  line-height: 1;
}
.review-card:hover { border-color: var(--gold-border); background: rgba(201,168,92,0.03); }

.review-header { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.reviewer-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif-en); font-size: 1rem; color: var(--navy); flex-shrink: 0;
}
.reviewer-info { flex: 1; }
.reviewer-name { font-family: var(--font-sans-jp); font-size: 0.80rem; color: var(--white); letter-spacing: 0.06em; margin-bottom: 3px; }
.reviewer-skin { font-family: var(--font-sans-jp); font-size: 0.66rem; color: var(--silver-dark); letter-spacing: 0.05em; }
.review-stars { display: flex; gap: 2px; }
.review-stars i { color: var(--gold); font-size: 0.66rem; }
.review-text { font-family: var(--font-sans-jp); font-size: 0.80rem; color: var(--silver-light); line-height: 2; margin-bottom: 14px; }
.review-product { font-family: var(--font-sans-en); font-size: 0.60rem; letter-spacing: 0.22em; color: var(--silver-dark); opacity: 0.75; }

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

/* =============================================
   SECTION: 代理店募集 (#agent)
   ============================================= */
#agent { background: linear-gradient(180deg, var(--navy-mid) 0%, var(--navy) 100%); position: relative; }
#agent .section-inner { text-align: left; }
#agent .section-tag, #agent .section-title { text-align: left; }
#agent .section-divider { justify-content: flex-start; margin-left: 0; margin-right: 0; }

.agent-lead {
  font-family: var(--font-serif-jp);
  font-size: 0.94rem; font-weight: 300;
  color: var(--silver-light); line-height: 2.4;
  letter-spacing: 0.06em; text-align: left;
  max-width: 700px; margin: 0 0 60px;
}

/* Stats */
.agent-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-bottom: 68px;
}
.agent-stat-item {
  text-align: center; padding: 2.5rem 1.5rem;
  background: linear-gradient(135deg, rgba(13,29,56,0.95), rgba(20,40,80,0.85));
  border: 1px solid var(--gold-border);
  position: relative; overflow: hidden;
  box-shadow: 0 4px 20px rgba(8,18,40,0.3);
}
.agent-stat-item::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 40px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--silver));
}
.agent-stat-num {
  font-family: var(--font-serif-en);
  font-size: clamp(1.8rem, 4vw, 2.9rem);
  font-weight: 600; font-style: italic;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1.1; margin-bottom: 0.5rem;
}
.agent-stat-unit { font-size: 52%; font-style: normal; }
.agent-stat-label {
  font-family: var(--font-sans-jp); font-size: 0.74rem;
  color: var(--silver-light); line-height: 1.9; letter-spacing: 0.06em;
}

/* Rank cards */
.agent-rank-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; margin-bottom: 68px;
}
.agent-rank-card {
  border: 1px solid var(--gold-border); overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.agent-rank-card:hover { transform: translateY(-6px); box-shadow: 0 14px 40px rgba(8,18,40,0.5); }
.agent-rank-head { padding: 1.6rem 1rem; text-align: center; }
.agent-rank-abbr-row {
  display: flex; align-items: center; justify-content: center;
  gap: 0.55rem; margin-bottom: 0.35rem;
}
.agent-rank-type {
  font-family: var(--font-sans-jp); font-size: 0.88rem;
  color: rgba(200,205,216,0.80); letter-spacing: 0.14em;
}
.agent-rank-abbr {
  font-family: var(--font-serif-en); font-size: 2rem;
  font-weight: 600; color: var(--white-pure);
  letter-spacing: 0.06em; line-height: 1;
}
.agent-rank-name {
  font-family: var(--font-sans-jp); font-size: 0.62rem;
  color: var(--silver-dark); margin-top: 0.35rem; letter-spacing: 0.08em;
}
.agent-rank-body {
  padding: 1.25rem;
  background: rgba(8,18,40,0.50);
  border-top: 1px solid var(--gold-border);
}
.agent-rank-stage {
  font-family: var(--font-serif-en); font-size: 1.4rem; font-style: italic;
  color: var(--gold-light); text-align: center; margin-bottom: 0.2rem;
}
.agent-rank-stage-label {
  font-family: var(--font-sans-jp); font-size: 0.65rem;
  color: var(--silver-dark); text-align: center; margin-bottom: 1rem; letter-spacing: 0.08em;
}
.agent-rank-body ul { list-style: none; padding: 0; margin: 0; }
.agent-rank-body ul li {
  font-family: var(--font-sans-jp); font-size: 0.76rem;
  color: var(--silver-light); padding: 0.42rem 0;
  border-bottom: 1px solid rgba(200,205,216,0.07);
  display: flex; align-items: flex-start; gap: 0.55rem;
  line-height: 1.65; letter-spacing: 0.03em;
}
.agent-rank-body ul li:last-child { border-bottom: none; }
.agent-rank-body ul li i { color: var(--gold); font-size: 0.7rem; margin-top: 0.24rem; flex-shrink: 0; }

/* ランク別ヘッドカラー：navy × gold グラデーション */
.rank-ag .agent-rank-head { background: linear-gradient(160deg, #0f1e38, #1a2d50); }
.rank-as .agent-rank-head { background: linear-gradient(160deg, #141c30, #2a3a5a); }
.rank-re .agent-rank-head { background: linear-gradient(160deg, #18222a, #2a3c38 60%, #1e3028); }
.rank-ad .agent-rank-head { background: linear-gradient(160deg, #1a1408, #332808); }

/* Success factors */
.agent-factors { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 68px; }
.agent-factor-card {
  border: 1px solid var(--gold-border);
  background: rgba(201,168,92,0.02); overflow: hidden;
}
.agent-factor-eyebrow {
  padding: 0.75rem 1.5rem;
  font-family: var(--font-serif-jp); font-size: 0.86rem; font-weight: 300;
  color: var(--gold-light);
  background: rgba(201,168,92,0.06);
  border-bottom: 1px solid var(--gold-border); letter-spacing: 0.10em;
}
.factor-eyebrow-blue {
  color: var(--silver);
  background: rgba(200,205,216,0.05);
  border-bottom-color: var(--silver-border);
}
.agent-factor-roman { font-family: var(--font-serif-en); font-size: 1rem; margin-left: 0.35rem; }
.agent-factor-heading {
  padding: 0.9rem 1.5rem;
  font-family: var(--font-serif-jp);
  font-size: clamp(0.85rem, 1.8vw, 1.02rem);
  font-weight: 300; color: var(--white-pure);
  letter-spacing: 0.05em; line-height: 1.5;
}
.factor-red {
  background: linear-gradient(118deg, #120e08 0%, #1e1a0c 35%, #2c2412 65%, #1e1a0c 100%);
  border-left: 3px solid var(--gold);
}
.factor-blue {
  background: linear-gradient(118deg, #0d1018 0%, #141828 35%, #1e2438 65%, #141828 100%);
  border-left: 3px solid var(--silver-dark);
}
.agent-factor-body { padding: 1.25rem 1.5rem; }
.agent-factor-list {
  list-style: none; padding: 0; margin: 0 0 1rem;
  display: flex; flex-direction: column; gap: 0.70rem;
}
.agent-factor-list li {
  display: flex; align-items: flex-start; gap: 0.65rem;
  font-family: var(--font-serif-jp); font-size: 0.84rem; font-weight: 300;
  color: var(--white); line-height: 1.8;
}
.agent-factor-list li i { color: var(--gold); font-size: 0.85rem; flex-shrink: 0; margin-top: 0.20rem; }
.agent-factor-note {
  font-family: var(--font-sans-jp); font-size: 0.76rem;
  color: var(--gold-light); padding-top: 0.75rem;
  border-top: 1px solid var(--gold-border);
  line-height: 1.85; letter-spacing: 0.04em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* Steps */
.agent-steps-new {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 0; margin-bottom: 60px; position: relative;
}
.agent-steps-new::before {
  content: ''; position: absolute; top: 7px;
  left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border), var(--silver-border), var(--gold-border), transparent);
}
.agent-step-item { text-align: center; padding: 0 0.5rem; }
.agent-step-dot {
  width: 14px; height: 14px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  margin: 0 auto 1.1rem;
  border: 2px solid var(--navy);
  box-shadow: 0 0 0 2px var(--gold), 0 0 12px rgba(201,168,92,0.4);
  position: relative; z-index: 1;
}
.agent-step-num {
  font-family: var(--font-sans-en); font-size: 0.72rem; font-weight: 300;
  color: var(--silver-dark); letter-spacing: 0.16em; margin-bottom: 0.45rem;
}
.agent-step-title {
  font-family: var(--font-serif-jp); font-size: 1.05rem; font-weight: 300;
  color: var(--white-pure); margin-bottom: 0.35rem; letter-spacing: 0.10em;
}
.agent-step-desc {
  font-family: var(--font-sans-jp); font-size: 0.72rem;
  color: var(--silver-dark); line-height: 1.78; letter-spacing: 0.03em;
}

.agent-cta-row {
  display: flex; gap: 20px; justify-content: center;
  align-items: center; flex-wrap: wrap; margin-top: 8px;
}

@media (max-width: 768px) {
  .philosophy-body-col .btn-primary { margin-top: 40px; }
}
@media (max-width: 1024px) { .agent-rank-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
  .agent-stats     { grid-template-columns: 1fr; }
  .agent-rank-grid { grid-template-columns: 1fr 1fr; }
  .agent-factors   { grid-template-columns: 1fr; }
  .agent-steps-new { grid-template-columns: 1fr 1fr; }
  .agent-steps-new::before { display: none; }
  .agent-cta-row   { flex-direction: column; }
  .agent-step-item { padding: 0.25rem 0.5rem; }
  .agent-step-dot  { margin-bottom: 1.4rem; }
  .agent-factor-note { white-space: normal; overflow: visible; text-overflow: clip; }
}
@media (max-width: 480px) {
  .agent-rank-grid { grid-template-columns: 1fr; }
  .agent-steps-new { grid-template-columns: 1fr; }
  .agent-factor-heading { white-space: normal; }
}

/* Legacy agent classes (backward compat) */
.agent-merits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 60px; text-align: left; }
.merit-card { padding: 36px 28px; border: 1px solid rgba(200,205,216,0.10); background: rgba(255,255,255,0.02); transition: var(--transition); }
.merit-card:hover { border-color: var(--gold-border); background: rgba(201,168,92,0.03); }
.merit-num { font-family: var(--font-serif-en); font-size: 2rem; font-weight: 300; color: var(--gold); opacity: 0.4; line-height: 1; margin-bottom: 12px; font-style: italic; }
.merit-title { font-family: var(--font-serif-jp); font-size: 0.95rem; color: var(--white-pure); letter-spacing: 0.12em; margin-bottom: 10px; }
.merit-desc { font-family: var(--font-sans-jp); font-size: 0.75rem; color: var(--silver-light); line-height: 1.95; }
.agent-steps { display: flex; align-items: flex-start; justify-content: center; gap: 0; margin-bottom: 60px; flex-wrap: wrap; }
.step-item { flex: 1; min-width: 160px; max-width: 220px; text-align: center; padding: 0 16px; position: relative; }
.step-item:not(:last-child)::after { content: '→'; position: absolute; right: -10px; top: 20px; color: var(--gold-border); font-size: 1rem; }
.step-num-badge { width: 44px; height: 44px; border: 1px solid var(--gold-border); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; font-family: var(--font-serif-en); font-size: 0.8rem; color: var(--gold); letter-spacing: 0.05em; }
.step-title { font-family: var(--font-sans-jp); font-size: 0.78rem; color: var(--white); letter-spacing: 0.08em; margin-bottom: 6px; }
.step-desc { font-family: var(--font-sans-jp); font-size: 0.68rem; color: var(--silver-dark); line-height: 1.7; }

/* =============================================
   SECTION: 商品紹介 (#products)
   ============================================= */
#products { background: var(--navy-mid); }
#products .section-inner { text-align: center; }
.products-header { margin-bottom: 64px; }
.products-header .section-tag,
.products-header .section-title,
.products-header .section-lead,
.products-header .section-divider {
  margin-left: auto; margin-right: auto; justify-content: center;
}
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: left; }
.product-card {
  border: 1px solid rgba(200,205,216,0.10);
  padding: 38px 30px;
  transition: var(--transition); position: relative; overflow: hidden;
  background: rgba(255,255,255,0.025);
}
.product-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--silver), transparent);
  transform: scaleX(0); transition: transform var(--transition);
}
.product-card:hover::before { transform: scaleX(1); }
.product-card:hover {
  border-color: var(--gold-border); background: rgba(201,168,92,0.04);
  transform: translateY(-5px);
  box-shadow: 0 10px 36px rgba(8,18,40,0.4);
}
.product-no { font-family: var(--font-serif-en); font-size: 0.65rem; color: var(--silver-dark); letter-spacing: 0.30em; margin-bottom: 20px; font-style: italic; }
.product-visual {
  width: 80px; height: 80px; margin: 0 0 24px;
  border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(ellipse at center, rgba(201,168,92,0.08) 0%, transparent 70%);
}
.product-visual-icon { font-size: 1.8rem; filter: grayscale(0.2); }
.product-name { font-family: var(--font-serif-jp); font-size: 1.1rem; font-weight: 300; color: var(--white-pure); letter-spacing: 0.14em; margin-bottom: 8px; line-height: 1.5; }
.product-name-en { font-family: var(--font-serif-en); font-size: 0.68rem; color: var(--gold); letter-spacing: 0.22em; margin-bottom: 16px; font-style: italic; }
.product-desc { font-family: var(--font-sans-jp); font-size: 0.76rem; color: var(--silver-light); line-height: 1.95; letter-spacing: 0.04em; margin-bottom: 22px; }
.product-link { font-family: var(--font-sans-en); font-size: 0.65rem; letter-spacing: 0.22em; color: var(--gold); display: flex; align-items: center; gap: 8px; transition: gap var(--transition-fast); }
.product-link:hover { gap: 14px; color: var(--gold-light); }
.product-link::after { content: '→'; font-size: 0.7rem; }

/* =============================================
   SECTION: 代理店取扱い商品 (#dealer)
   ============================================= */
#dealer { background: var(--navy-light); }
#dealer .section-inner { text-align: center; }
#dealer .section-tag,
#dealer .section-title,
#dealer .section-lead,
#dealer .section-divider { justify-content: center; margin-left: auto; margin-right: auto; }
.dealer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 16px; }
.dealer-card { border: 1px solid rgba(200,205,216,0.10); padding: 30px 18px; background: rgba(255,255,255,0.02); transition: var(--transition); text-align: center; }
.dealer-card:hover { border-color: var(--gold-border); background: rgba(201,168,92,0.04); transform: translateY(-3px); }
.dealer-card-icon { font-size: 1.6rem; margin-bottom: 14px; }
.dealer-card-name { font-family: var(--font-serif-jp); font-size: 0.84rem; color: var(--white-pure); letter-spacing: 0.12em; margin-bottom: 6px; }
.dealer-card-sub { font-family: var(--font-sans-en); font-size: 0.60rem; color: var(--silver-dark); letter-spacing: 0.22em; }

/* =============================================
   SECTION: 会社概要 (#company)
   ============================================= */
#company { background: var(--navy); }
#company .section-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.company-table { width: 100%; border-collapse: collapse; margin-top: 20px; }
.company-table tr { border-bottom: 1px solid rgba(200,205,216,0.08); }
.company-table th, .company-table td { padding: 14px 0; font-family: var(--font-sans-jp); font-size: 0.80rem; text-align: left; vertical-align: top; }
.company-table th { color: var(--gold); font-weight: 300; letter-spacing: 0.12em; width: 36%; white-space: nowrap; }
.company-table td { color: var(--silver-light); letter-spacing: 0.05em; line-height: 1.85; padding-left: 24px; }
.company-philosophy {
  padding: 44px;
  border: 1px solid var(--gold-border);
  background:
    radial-gradient(ellipse at top left, rgba(201,168,92,0.06) 0%, transparent 55%),
    radial-gradient(ellipse at bottom right, rgba(200,205,216,0.03) 0%, transparent 55%);
  position: relative;
}
.company-philosophy::before {
  content: '"'; position: absolute; top: -20px; left: 30px;
  font-family: var(--font-serif-en); font-size: 5rem; color: var(--gold); opacity: 0.15; line-height: 1;
}
.philosophy-title { font-family: var(--font-serif-jp); font-size: 1.18rem; font-weight: 300; color: var(--white-pure); letter-spacing: 0.16em; margin-bottom: 22px; line-height: 1.6; }
.philosophy-text { font-family: var(--font-sans-jp); font-size: 0.80rem; color: var(--silver-light); line-height: 2.2; margin-bottom: 16px; }

/* =============================================
   SECTION: お問い合わせ (#contact)
   ============================================= */
#contact { background: linear-gradient(180deg, var(--navy-light) 0%, var(--navy) 100%); }
#contact .section-inner { max-width: 720px; text-align: center; }
#contact .section-tag,
#contact .section-title,
#contact .section-lead,
#contact .section-divider { justify-content: center; margin-left: auto; margin-right: auto; }

.contact-form { margin-top: 52px; text-align: left; display: flex; flex-direction: column; gap: 22px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-family: var(--font-sans-jp); font-size: 0.74rem; color: var(--gold); letter-spacing: 0.14em; }
.form-group label .required { color: rgba(201,168,92,0.6); font-size: 0.65rem; margin-left: 4px; }
.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,205,216,0.14);
  color: var(--white); font-family: var(--font-sans-jp); font-size: 0.82rem;
  padding: 14px 18px; outline: none;
  transition: border-color var(--transition-fast);
  width: 100%; -webkit-appearance: none; appearance: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--gold-border); background: rgba(201,168,92,0.03);
}
.form-group input::placeholder, .form-group textarea::placeholder {
  color: var(--silver-dark); font-size: 0.76rem;
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-group select option { background: var(--navy-light); color: var(--white); }
.form-submit { margin-top: 12px; text-align: center; }
.btn-form-submit {
  font-family: var(--font-sans-en); font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.32em; text-transform: uppercase; color: var(--navy);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border: none; padding: 18px 72px; cursor: pointer; transition: var(--transition);
  box-shadow: 0 4px 20px rgba(201,168,92,0.30);
}
.btn-form-submit:hover { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,92,0.45); }
.form-note { font-family: var(--font-sans-jp); font-size: 0.70rem; color: var(--silver-dark); text-align: center; margin-top: 14px; line-height: 1.95; }
.form-success { display: none; text-align: center; padding: 44px; border: 1px solid var(--gold-border); }
.form-success-icon { font-size: 2rem; margin-bottom: 16px; }
.form-success-title { font-family: var(--font-serif-jp); font-size: 1.1rem; color: var(--white-pure); letter-spacing: 0.15em; margin-bottom: 10px; }
.form-success-text { font-family: var(--font-sans-jp); font-size: 0.80rem; color: var(--silver-light); line-height: 1.95; }

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
  background: linear-gradient(135deg, rgba(13,22,45,1) 0%, rgba(20,35,75,0.96) 100%);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  padding: var(--section-pad) 56px;
  text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,168,92,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner-inner { position: relative; z-index: 1; max-width: 660px; margin: 0 auto; }
.cta-banner h2 { font-family: var(--font-serif-jp); font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 200; color: var(--white-pure); letter-spacing: 0.22em; line-height: 1.6; margin-bottom: 16px; }
.cta-banner h2 em { font-style: normal; color: var(--gold-light); }
.cta-banner p { font-family: var(--font-sans-jp); font-size: 0.85rem; color: var(--silver-light); line-height: 2.1; margin-bottom: 38px; }
.cta-btn-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* =============================================
   FLOATING CTA
   ============================================= */
.floating-cta {
  position: fixed; bottom: 30px; right: 30px; z-index: 900;
  opacity: 0; transform: translateY(12px);
  transition: opacity var(--transition), transform var(--transition);
  pointer-events: none;
}
.floating-cta.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.floating-btn {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy);
  padding: 15px 20px; font-family: var(--font-sans-jp); font-size: 0.64rem;
  font-weight: 400; letter-spacing: 0.12em; cursor: pointer; transition: var(--transition);
  box-shadow: 0 4px 24px rgba(201,168,92,0.30), 0 0 0 1px rgba(201,168,92,0.2);
}
.floating-btn:hover {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-light));
  transform: translateY(-2px); box-shadow: 0 6px 32px rgba(201,168,92,0.45);
}
.floating-btn i { font-size: 1.2rem; }
@media (max-width: 480px) { .floating-cta { bottom: 20px; right: 16px; } }

/* =============================================
   FOOTER
   ============================================= */
#footer {
  background: linear-gradient(180deg, #060f1e 0%, var(--navy) 100%);
  border-top: 1px solid var(--gold-border);
  padding: 64px 56px 40px;
}
.footer-inner { max-width: 1140px; margin: 0 auto; }
.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 52px; margin-bottom: 52px; flex-wrap: wrap;
}
.footer-brand-col { display: flex; flex-direction: column; gap: 4px; min-width: 190px; }
.footer-logo {
  font-family: var(--font-serif-en); font-size: 1.28rem; font-weight: 300;
  letter-spacing: 0.36em; color: var(--white-pure); margin-bottom: 12px;
}
.footer-logo span { color: var(--gold-light); font-style: italic; font-weight: 300; }
.footer-tagline, .footer-brand-col .footer-tagline {
  font-family: var(--font-serif-jp); font-size: 0.76rem;
  color: var(--silver-dark); letter-spacing: 0.16em; margin-top: 8px;
}
.footer-company-name { display: none; }
.footer-nav { display: flex; gap: 52px; flex-wrap: wrap; }
.footer-nav-title {
  font-family: var(--font-serif-en); font-size: 0.68rem; font-weight: 300;
  letter-spacing: 0.30em;
  color: var(--silver-dark);
  text-transform: uppercase; margin-bottom: 18px;
}
.footer-nav-links { display: flex; flex-direction: column; gap: 11px; }
.footer-nav-links a {
  font-family: var(--font-sans-jp); font-size: 0.80rem; font-weight: 300;
  color: rgba(200,205,216,0.60); letter-spacing: 0.10em;
  transition: color var(--transition-fast);
}
.footer-nav-links a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(200,205,216,0.08); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy {
  font-family: var(--font-sans-en), var(--font-sans-jp); font-size: 0.68rem;
  font-weight: 300; color: rgba(200,205,216,0.45); letter-spacing: 0.10em;
}
.footer-copy-sep { display: inline; }
.footer-legal { display: flex; gap: 22px; }
.footer-legal a {
  font-family: var(--font-sans-jp); font-size: 0.72rem; font-weight: 300;
  color: rgba(200,205,216,0.45); letter-spacing: 0.08em; transition: color var(--transition-fast);
}
.footer-legal a:hover { color: var(--gold-light); }

/* SNS (hidden but kept) */
.footer-social { display: none !important; }
.footer-social-hidden { display: flex; gap: 16px; margin-top: 16px; }
.footer-social a {
  width: 36px; height: 36px; border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--silver-dark); font-size: 0.82rem; transition: var(--transition-fast);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,92,0.06); }

/* =============================================
   PAGE TRANSITION OVERLAY
   ============================================= */
/* ローダー：ページ読み込み・遷移中にロゴ表示 */
.page-overlay {
  position: fixed; inset: 0;
  background: var(--navy);
  z-index: 9999;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.6s ease;
}
.page-overlay.fade-out {
  opacity: 0;
}
/* ローダー内ロゴ */
.page-overlay-logo {
  font-family: var(--font-serif-en);
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  font-weight: 300;
  letter-spacing: 0.35em;
  color: var(--white-pure);
  opacity: 0;
  animation: loaderLogoIn 0.8s ease forwards 0.15s;
}
.page-overlay-logo span {
  color: var(--gold-light);
  font-style: italic;
}
/* ロゴ下のゴールドライン */
.page-overlay-line {
  width: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin-top: 14px;
  animation: loaderLineIn 0.7s ease forwards 0.5s;
}
@keyframes loaderLogoIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes loaderLineIn {
  from { width: 0; }
  to   { width: 120px; }
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* =============================================
   RESPONSIVE — GLOBAL
   ============================================= */
@media (max-width: 1024px) {
  #about .section-inner,
  #company .section-inner { grid-template-columns: 1fr; gap: 52px; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .agent-merits  { grid-template-columns: 1fr 1fr; }
  .dealer-grid   { grid-template-columns: repeat(2, 1fr); }
  .about-visual-col { order: -1; }

  /* Hero tablet: narrower padding, keep left alignment */
  .hero-content { padding: 65px 28px 100px 36px; }
  .hero-headline { font-size: clamp(1.15rem, 2.2vw, 1.7rem); white-space: nowrap; }
}

@media (max-width: 768px) {
  :root { --section-pad: 72px; }
  #header { padding: 18px 24px; }
  #header.scrolled { padding: 14px 24px; }
  .logo-tagline { font-size: 0.50rem; }
  .nav-links, .btn-contact { display: none; }
  .hamburger { display: flex; }
  .footer-copy-sep { display: none; }
  .footer-copy-company::before { content: '\a'; white-space: pre; }
  .footer-copy-rights::before  { content: '\a'; white-space: pre; }
  .section-inner { padding: var(--section-pad) 22px; }
  /* Hero SP: 上段＝画像、下段＝ネイビーテキストの完全2段レイアウト */
  #hero { min-height: 100svh; background: var(--navy); }
  .hero-split {
    grid-template-columns: 1fr;
    grid-template-rows: calc(62svh + 88px) 1fr;
    min-height: 100svh;
    position: relative;
  }
  /* 画像：上段に収める（ヘッダー高さ88px分だけ下にずらす） */
  .hero-image-col {
    position: relative;
    inset: auto;
    height: calc(62svh + 88px);
    padding-top: 88px;
    min-height: unset;
    z-index: 1;
    order: 1;
  }
  .hero-image-frame { height: 100%; }
  .hero-woman-img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
  }
  /* 画像下端のみネイビーへフェード */
  .hero-image-frame::before {
    background:
      linear-gradient(to bottom,
        transparent 0%,
        transparent 60%,
        rgba(10,22,40,0.6) 85%,
        var(--navy) 100%
      );
  }
  /* テキスト：下段、ネイビー背景 */
  .hero-content {
    position: relative; z-index: 4;
    order: 2;
    padding: 28px 28px 72px;
    text-align: center;
    align-items: center;
    justify-content: flex-start;
    align-self: auto;
    min-height: unset;
    background: var(--navy);
  }
  /* hero-bgをSPでは非表示（下段はhero-contentのbackgroundで対応） */
  .hero-bg { display: none; }
  .hero-img-badge { display: none; }
  .hero-img-accent--top,
  .hero-img-accent--right { display: none; }
  .hero-headline {
    font-size: clamp(1.0rem, 4.5vw, 1.5rem);
    letter-spacing: 0.10em;
    white-space: normal;
    word-break: break-all;
    text-align: center;
    width: 100%;
  }
  .hero-brand {
    font-size: 0.56rem;
    letter-spacing: 0.18em;
    text-align: center;
  }
  .hero-label { justify-content: center; }
  .hero-divider { justify-content: center; }
  .hero-divider::before, .hero-divider::after { width: 50px; }
  .hero-desc { white-space: normal; max-width: 100%; text-align: center; }
  .sp-br { display: none; }
  .pc-br { display: none; } /* SP版ではpc-brを非表示 */
  .hero-desc-line2 { white-space: normal; }
  .hero-stats {
    gap: 0;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-wrap: nowrap;
  }
  .hero-buttons { justify-content: center; }
  .stat-item {
    flex: 1;
    text-align: center;
    min-width: 0;
    padding: 0 6px;
  }
  .stat-item:not(:last-child)::after {
    display: block;
    right: 0; top: 50%; transform: translateY(-50%);
    height: 28px;
  }
  .stat-number { font-size: clamp(1.5rem, 7vw, 2.2rem); }
  .stat-label  { font-size: clamp(0.55rem, 2.5vw, 0.65rem); letter-spacing: 0.05em; margin-top: 4px; }
  /* scroll indicator — SP非表示 */
  .scroll-indicator { display: none; }
  .products-grid { grid-template-columns: 1fr; }
  .agent-merits  { grid-template-columns: 1fr; }
  .dealer-grid   { grid-template-columns: 1fr 1fr; }
  .agent-steps   { gap: 24px; }
  .step-item:not(:last-child)::after { display: none; }
  .footer-top    { flex-direction: column; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-copy-sep { display: none; }

  /* abilities sp-br */
  #abilities .section-lead .sp-br { display: inline; }
  #flagship .section-lead .sp-br  { display: inline; }
  #flagship .flagship-desc .sp-br { display: inline; }
  #flagship .flagship-desc .pc-br { display: none; }
  #about .section-lead .sp-br     { display: inline; }
  #about .section-lead .sp-hidden { display: none; }
  #about .section-lead .pc-br     { display: none; }
  #reviews .section-lead .sp-br   { display: inline; }
  #supplement .section-lead .sp-br { display: inline; }
  #contact .section-lead .sp-br   { display: inline; }
  #contact .section-lead .sp-hidden { display: none; }
  #contact .section-lead .pc-br   { display: none; }
  #contact .form-note .sp-br      { display: inline; }
  #contact .form-note .sp-hidden  { display: none; }
}

@media (max-width: 480px) {
  .dealer-grid { grid-template-columns: 1fr; }
  /* 480px: 画像高さ・テキストpaddingを微調整 */
  .hero-split { grid-template-rows: calc(58svh + 84px) 1fr; }
  .hero-image-col { height: calc(58svh + 84px); padding-top: 84px; }
  .hero-content { padding: 24px 18px 64px; }
  .hero-headline { font-size: clamp(0.95rem, 5.5vw, 1.3rem); white-space: nowrap; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-stats {
    flex-direction: row; flex-wrap: nowrap; justify-content: center;
    gap: 0; width: 100%;
  }
  .stat-item { flex: 1; min-width: 0; padding: 0 3px; }
  .stat-number { font-size: clamp(1.2rem, 5.5vw, 1.8rem); }
  .stat-unit   { font-size: 0.60rem; }
  .stat-label  { font-size: clamp(0.50rem, 2.2vw, 0.58rem); letter-spacing: 0.03em; }
  #footer { padding: 48px 20px 32px; }
}
