@charset "utf-8";

/* =====================================================
   BUDDY-order suit- / Global Stylesheet
   Design: Luxury Black × Gold × Neon Green
   ===================================================== */

/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Noto+Serif+JP:wght@200;300;400;600&family=Bebas+Neue&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css');
@import url('https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.css');

/* ===== CSS VARIABLES ===== */
:root {
  /* Gold — そのまま維持 */
  --gold:             #C9A84C;
  --gold-light:       #E8C97A;
  --gold-dark:        #8B6914;
  --gold-faint:       rgba(201,168,76,0.08);
  --gold-border:      rgba(201,168,76,0.2);
  --gold-border-mid:  rgba(201,168,76,0.4);

  /* Neon Green — サイバーパンク蛍光グリーン */
  --neon:             #39FF6A;
  --neon-dim:         #2ADB57;
  --neon-dark:        #1AAA3E;
  --neon-faint:       rgba(57,255,106,0.07);
  --neon-faint-mid:   rgba(57,255,106,0.12);
  --neon-border:      rgba(57,255,106,0.25);
  --neon-border-mid:  rgba(57,255,106,0.45);
  --neon-glow:        0 0 12px rgba(57,255,106,0.4), 0 0 30px rgba(57,255,106,0.15);
  --neon-glow-sm:     0 0 6px rgba(57,255,106,0.35);

  /* Deep Green — 深いグリーン（背景用） */
  --green:            #0A1F10;
  --green-mid:        #112918;
  --green-light:      #1A3D24;

  /* Black — 少し明るく */
  --black:            #141414;
  --black-soft:       #1A1A1A;
  --black-mid:        #222222;

  /* White / Text */
  --white:            #F5F5F0;
  --white-dim:        #E5E3DC;
  --gray:             #9A9890;
  --gray-light:       rgba(154,152,144,0.4);

  /* Typography */
  --font-en:          'Cormorant Garamond', 'Times New Roman', serif;
  --font-ja:          'Noto Serif JP', 'Yu Mincho', serif;
  --font-display:     'Bebas Neue', sans-serif;
  --ease:             cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --global-space:     5vw;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

@media (max-width: 900px) { html { font-size: 14px; } }
@media (max-width: 600px) { html { font-size: 13px; } }

body {
  background: var(--black);
  color: var(--white-dim);
  font-family: var(--font-ja);
  font-weight: 300;
  line-height: 1.9;
  overflow-x: hidden;
  -webkit-text-size-adjust: none;
}

figure { margin: 0; }
dd { margin: 0; }
nav, ul, li, ol { margin: 0; padding: 0; }
nav ul { list-style: none; }
table { border-collapse: collapse; }
img { border: none; max-width: 100%; height: auto; vertical-align: middle; }
video { max-width: 100%; }
iframe { width: 100%; }
input { font-size: 1rem; }
section { padding: 100px 0; position: relative; z-index: 1; }

/* ===== NOISE OVERLAY ===== */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.25;
}

/* ===== LINKS ===== */
a {
  color: var(--gold-light);
  text-decoration: none;
  transition: color 0.3s var(--ease);
}
a:hover { color: var(--neon); }

/* ===== FONT UTILITY CLASSES ===== */
.font-bebas    { font-family: var(--font-display); font-weight: 400; }
.font-gruppo   { font-family: var(--font-en); font-style: italic; font-weight: 300; }
.font-monoton  { font-family: var(--font-display); }

/* ===== CUSTOM CURSOR ===== */
.cursor {
  position: fixed;
  width: 10px; height: 10px;
  background: var(--neon);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s;
  mix-blend-mode: difference;
}
.cursor-ring {
  position: fixed;
  width: 40px; height: 40px;
  border: 1px solid rgba(57,255,106,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.15s var(--ease), height 0.15s var(--ease);
}
@media (max-width: 900px) { .cursor, .cursor-ring { display: none; } }

/* =====================================================
   NAVIGATION
   ===================================================== */
#nav-wrapper {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 var(--global-space);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s;
}
#nav-wrapper.scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gold-border);
  border-top: 2px solid var(--green-mid);
}

/* Logo */
#logo-nav img, #logo img { height: 40px; width: auto; }
#logo { line-height: 1; }

/* Desktop Nav */
nav.main-nav ul {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
nav.main-nav a {
  display: block;
  color: var(--white-dim);
  font-family: var(--font-en);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}
nav.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--neon);
  transition: width 0.3s var(--ease);
}
nav.main-nav a:hover { color: var(--neon); }
nav.main-nav a:hover::after { width: 100%; }

/* Dropdown */
nav.main-nav li { position: relative; }
nav.main-nav li ul {
  display: none;
  position: absolute;
  top: calc(100% + 15px);
  left: 0;
  min-width: 180px;
  background: rgba(10,10,10,0.95);
  border: 1px solid var(--gold-border);
  backdrop-filter: blur(10px);
  padding: 0.5rem 0;
  animation: fadeDown 0.2s var(--ease) both;
}
nav.main-nav li:hover ul { display: block; }
nav.main-nav li ul a {
  padding: 0.6rem 1.2rem;
  font-size: 0.72rem;
  color: var(--gray);
  border-radius: 0;
}
nav.main-nav li ul a::after { display: none; }
nav.main-nav li ul a:hover { color: var(--neon); background: var(--neon-faint); }

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

/* Nav Icons */
.nav-social {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}
.nav-social a { color: var(--gray); font-size: 0.95rem; }
.nav-social a:hover { color: var(--neon); }

/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 5px;
}
.hamburger span {
  display: block;
  width: 28px; height: 1px;
  background: var(--white);
  transition: all 0.3s var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed; inset: 0;
  background: rgba(10,10,10,0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-nav.open { display: flex; animation: fadeIn 0.3s ease; }
.mobile-nav a {
  font-family: var(--font-en);
  font-size: 1.6rem;
  letter-spacing: 0.15em;
  color: var(--white-dim);
  text-transform: uppercase;
  padding: 0.3rem 0;
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
}
.mobile-nav a:hover { color: var(--neon); border-color: var(--neon-border); }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

@media (max-width: 900px) {
  nav.main-nav, .nav-social { display: none; }
  .hamburger { display: flex; }
}

/* ===== OLD MENUBAR (後方互換) ===== */
#menubar, #menubar_hdr { display: none !important; }
#header-top { display: none !important; }

/* =====================================================
   HERO
   ===================================================== */
#hero, #mainimg {
  position: relative;
  height: 100vh;
  min-height: 580px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--black);
}

.hero-slides {
  position: absolute; inset: 0;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s var(--ease);
}
.hero-slide.active {
  opacity: 1;
  animation: heroZoom 8s var(--ease) forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.0); }
}

/* 旧slide.css互換 */
.slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1s; display: flex; align-items: center; padding: 0 8vw; }
.slide.active { opacity: 1; pointer-events: auto; }
.slide1 { background-image: url('../images/名称未設定-4.png'); justify-content: flex-end; }
.slide2 { background-image: url('../images/shoes1.jpg'); }
.slide3 { background-image: url('../images/tailoring-2575930_1280\ \(1\).jpg'); justify-content: flex-end; }

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.15) 0%,
    rgba(10,10,10,0.05) 40%,
    rgba(10,10,10,0.75) 80%,
    rgba(10,10,10,0.96) 100%
  );
}

.hero-content {
  position: relative; z-index: 2;
  padding: 0 var(--global-space) 10vh;
  max-width: 900px;
}

.hero-eyebrow {
  font-family: var(--font-en);
  font-size: 0.72rem;
  letter-spacing: 0.45em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: slideUpFade 1s 0.5s var(--ease) forwards;
}
.hero-title {
  font-family: var(--font-en);
  font-size: clamp(3rem, 9vw, 8rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 0.5rem;
  opacity: 0;
  animation: slideUpFade 1s 0.8s var(--ease) forwards;
}
.hero-title em { font-style: italic; color: var(--gold-light); }

.hero-subtitle-ja {
  font-family: var(--font-ja);
  font-size: clamp(0.85rem, 2vw, 1.2rem);
  font-weight: 200;
  letter-spacing: 0.3em;
  color: var(--white-dim);
  margin-bottom: 3rem;
  opacity: 0;
  animation: slideUpFade 1s 1.1s var(--ease) forwards;
}

.hero-cta-group {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
  opacity: 0;
  animation: slideUpFade 1s 1.4s var(--ease) forwards;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 3rem; right: var(--global-space);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: slideUpFade 1s 2s var(--ease) forwards;
}
.scroll-indicator span {
  font-family: var(--font-en);
  font-size: 0.58rem;
  letter-spacing: 0.35em;
  color: var(--gray);
  writing-mode: vertical-rl;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--neon), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0); transform-origin: top; }
  50%       { transform: scaleY(1); transform-origin: top; }
}

/* Hero dots */
.hero-counter {
  position: absolute;
  bottom: 3rem; left: var(--global-space);
  z-index: 2;
  display: flex;
  gap: 0.8rem;
}
.hero-dot {
  width: 20px; height: 1px;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: all 0.3s;
}
.hero-dot.active { width: 40px; background: var(--neon); box-shadow: var(--neon-glow-sm); }

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

/* =====================================================
   PAGE HEADER (サブページ用)
   ===================================================== */
.page-header {
  padding: 160px var(--global-space) 80px;
  background: var(--black-soft);
  border-bottom: 1px solid var(--gold-border);
  border-top: 2px solid var(--green-mid);
  text-align: center;
}
.page-header-label {
  font-family: var(--font-en);
  font-size: 0.65rem;
  letter-spacing: 0.5em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.page-header h1 {
  font-family: var(--font-en);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--white);
  line-height: 1.1;
}
.page-header h1 em { font-style: italic; color: var(--gold-light); }
.page-header-ja {
  font-family: var(--font-ja);
  font-size: 0.82rem;
  font-weight: 200;
  letter-spacing: 0.3em;
  color: var(--gray);
  margin-top: 0.8rem;
}

/* =====================================================
   SECTION COMMON
   ===================================================== */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--global-space);
}

.section-label {
  font-family: var(--font-en);
  font-size: 0.65rem;
  letter-spacing: 0.5em;
  color: var(--neon);
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 30px; height: 1px;
  background: linear-gradient(to right, var(--neon-dark), var(--neon));
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-en);
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.section-title em { font-style: italic; color: var(--gold-light); }

.section-title-ja {
  font-family: var(--font-ja);
  font-size: 0.82rem;
  font-weight: 200;
  letter-spacing: 0.3em;
  color: var(--gray);
  margin-bottom: 3.5rem;
}

/* ===== 旧見出し → 新デザインへ上書き ===== */
.heading-21 {
  font-family: var(--font-en);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.05em;
  padding: 0 0 0.8rem;
  border-bottom: 1px solid var(--gold-border-mid);
  margin-bottom: 2.5rem;
  position: relative;
}
.heading-21::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 60px; height: 1px;
  background: linear-gradient(to right, var(--neon), var(--gold));
  box-shadow: 0 0 8px rgba(57,255,106,0.4);
}

.heading-24 {
  font-family: var(--font-ja);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  position: relative;
  padding-top: 1.5rem;
}
.heading-24::before {
  position: absolute;
  top: 0; left: 0;
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: rgba(201,168,76,0.12);
  line-height: 1;
  content: attr(data-number);
  pointer-events: none;
}

/* =====================================================
   REVEAL ANIMATIONS
   ===================================================== */
.reveal, .blur, .up, .down, .transform1, .transform2, .transform3 {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.visible,
.blurstyle, .upstyle, .downstyle,
.transform1style, .transform2style, .transform3style {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* =====================================================
   BUTTONS
   ===================================================== */
.btn-primary, .btn1 a {
  display: inline-block;
  text-decoration: none;
  padding: 0.9rem 2.5rem;
  background: var(--gold);
  color: var(--black) !important;
  font-family: var(--font-en);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.3s var(--ease);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 0;
  border: none;
  text-align: center;
  width: auto;
}
.btn-primary:hover, .btn1 a:hover { background: var(--gold-light); color: var(--black) !important; }

.btn-outline, .btn2 a {
  display: inline-block;
  text-decoration: none;
  padding: 0.9rem 2.5rem;
  border: 1px solid var(--neon-border);
  color: var(--neon);
  font-family: var(--font-en);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease);
}
.btn-outline:hover, .btn2 a:hover {
  background: var(--neon-faint);
  border-color: var(--neon);
  color: var(--neon);
  box-shadow: var(--neon-glow-sm);
}

/* =====================================================
   LAYOUT UTILITIES
   ===================================================== */
/* 2カラム */
.list-half-parts .list-parts {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (min-width: 900px) {
  .list-half-parts .list-parts {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .list-half-parts .text-parts { flex: 1; }
  .list-half-parts .image-r-parts,
  .list-half-parts .image-l-parts { width: 48%; flex-shrink: 0; }
  .list-half-parts .image-l-parts { order: -1; }
}

.list-half-parts img {
  border: 1px solid var(--gold-border);
  filter: brightness(0.85) contrast(1.05);
  transition: filter 0.4s;
}
.list-half-parts img:hover { filter: brightness(0.95) contrast(1.05); }

/* グリッド */
.list-grid1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
@media (max-width: 600px) { .list-grid1 { grid-template-columns: 1fr 1fr; } }

.list { position: relative; overflow: hidden; }
.list figure { margin: 0; }
.list img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: brightness(0.7) contrast(1.05);
  transition: transform 0.7s var(--ease), filter 0.5s;
}
.list:hover img { transform: scale(1.06); filter: brightness(0.55) contrast(1.1); }

/* .text2 (collection label) */
.text2 {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  color: var(--white);
  pointer-events: none;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* =====================================================
   TABLE (会社概要)
   ===================================================== */
.ta1 {
  width: 100%;
  border-collapse: collapse;
}
.ta1 caption {
  font-family: var(--font-ja);
  font-size: 0.8rem;
  color: var(--gray);
  letter-spacing: 0.1em;
  text-align: left;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
}
.ta1 tr { border-bottom: 1px solid var(--gold-border);
  border-top: 2px solid var(--green-mid); }
.ta1 th {
  font-family: var(--font-en);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--neon);
  text-transform: uppercase;
  font-weight: 400;
  padding: 1.2rem 0;
  width: 130px;
  vertical-align: top;
}
.ta1 td {
  font-family: var(--font-ja);
  font-size: 0.88rem;
  font-weight: 200;
  color: var(--white-dim);
  letter-spacing: 0.06em;
  padding: 1.2rem 0;
  line-height: 1.9;
}
.ta1 a { color: var(--gold-light); }

/* =====================================================
   PRICE TABLE
   ===================================================== */
.menu {
  max-width: 100%;
  margin: 0 auto;
}
.menu dl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 2rem;
  background: rgba(255,255,255,0.01);
  border: 1px solid var(--gold-border);
  margin-bottom: 2px;
  transition: background 0.3s;
}
.menu dl:hover { background: var(--gold-faint); }
.menu dt {
  font-family: var(--font-ja);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--white-dim);
  letter-spacing: 0.08em;
}
.menu dd {
  font-family: var(--font-en);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.03em;
  white-space: nowrap;
  text-align: right;
}
.menu dd.from::after { content: '〜'; font-size: 0.8em; margin-left: 2px; }
.notes {
  font-family: var(--font-ja);
  font-size: 0.72rem;
  color: var(--gray);
  margin-top: 1rem;
  letter-spacing: 0.08em;
  line-height: 2;
}

/* =====================================================
   FAQ (Q&A)
   ===================================================== */
.cp_qa h2 { margin-bottom: 2rem; }

.cp_qa .cp_actab {
  border-bottom: 1px solid var(--gold-border);
  border-top: 2px solid var(--green-mid);
  overflow: hidden;
}

.cp_qa .cp_actab input { position: absolute; opacity: 0; pointer-events: none; }

.cp_qa .cp_actab label {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 0;
  cursor: pointer;
  font-family: var(--font-ja);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--white-dim);
  letter-spacing: 0.07em;
  line-height: 1.6;
  transition: color 0.3s;
  position: relative;
}
.cp_qa .cp_actab label::before {
  content: 'Q';
  font-family: var(--font-en);
  font-size: 1.1rem;
  color: var(--neon);
  flex-shrink: 0;
  width: 1.5rem;
}
.cp_qa .cp_actab label::after {
  content: '+';
  margin-left: auto;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--neon);
  transition: transform 0.3s var(--ease);
  width: 28px; height: 28px;
  border: 1px solid var(--gold-border-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
}
.cp_qa .cp_actab label:hover { color: var(--gold-light); }

.cp_qa .cp_actab .cp_actab-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
  padding: 0 0 0 2.5rem;
}
.cp_qa .cp_actab .cp_actab-content::before {
  content: 'A';
  font-family: var(--font-en);
  font-size: 1.1rem;
  color: var(--gray);
  float: left;
  margin-right: 1rem;
  margin-top: 0.3rem;
}
.cp_qa .cp_actab .cp_actab-content p {
  font-family: var(--font-ja);
  font-size: 0.85rem;
  font-weight: 200;
  color: var(--gray);
  letter-spacing: 0.06em;
  line-height: 2;
  margin: 1rem 0 1.5rem 2rem;
}

.cp_qa .cp_actab input:checked ~ .cp_actab-content { max-height: 300px; }
.cp_qa .cp_actab input:checked ~ label { color: var(--gold-light); }
.cp_qa .cp_actab input:checked ~ label::after { transform: rotate(45deg); }

/* =====================================================
   ORDER FLOW ARROWS
   ===================================================== */
.cp_arrows {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  position: relative;
}
.cp_arrow {
  position: absolute;
  top: 70%; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 10px;
  opacity: 0;
}
.cp_arrow:first-child { animation: arrowMove 2s ease-in-out infinite; }
.cp_arrow:nth-child(2) { animation: arrowMove 2s 1s ease-in-out infinite; }
.cp_arrow::before, .cp_arrow::after {
  position: absolute; content: '';
  top: 0;
  width: 42px; height: 1px;
  background: var(--gold-dark);
}
.cp_arrow::before { left: 3px; transform: rotate(25deg); }
.cp_arrow::after  { right: 3px; transform: rotate(-25deg); }
@keyframes arrowMove {
  0%   { opacity: 0; top: 15%; }
  70%  { opacity: 1; }
  100% { opacity: 0; }
}

/* =====================================================
   THUMBNAIL SLIDER (slick)
   ===================================================== */
.thumbnail-slide img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  padding: 2px;
  filter: brightness(0.75) contrast(1.05);
  transition: filter 0.4s;
}
.thumbnail-slide img:hover { filter: brightness(0.9); }

/* =====================================================
   NEWS LIST
   ===================================================== */
dl.new {
  display: grid;
  gap: 0;
}
dl.new dt {
  padding: 1rem 0 0.3rem;
  font-family: var(--font-en);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--gray);
  display: flex;
  gap: 1rem;
  align-items: center;
  border-top: 1px solid var(--gold-border);
}
dl.new dt span {
  font-family: var(--font-ja);
  font-size: 0.65rem;
  padding: 0.1rem 0.5rem;
  background: var(--gold-faint);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  letter-spacing: 0.1em;
}
dl.new dt .icon-bg2 { background: rgba(200,50,50,0.1); border-color: rgba(200,50,50,0.3); color: #e88; }
dl.new dd {
  padding: 0.3rem 0 1rem;
  font-family: var(--font-ja);
  font-size: 0.85rem;
  font-weight: 200;
  color: var(--white-dim);
  letter-spacing: 0.06em;
}

/* =====================================================
   CONCEPT / TEXT SECTION
   ===================================================== */
.concept-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5vw;
  align-items: center;
}
@media (max-width: 900px) {
  .concept-grid { grid-template-columns: 1fr; }
}

.concept-text p {
  font-family: var(--font-ja);
  font-weight: 200;
  font-size: 0.92rem;
  letter-spacing: 0.07em;
  color: var(--white-dim);
  line-height: 2.2;
  margin-bottom: 1.2rem;
}
.concept-visual { position: relative; }
.concept-img {
  width: 100%; aspect-ratio: 3/4;
  object-fit: cover;
  filter: brightness(0.85) contrast(1.1);
}
.concept-frame {
  position: absolute;
  top: -12px; right: -12px;
  bottom: 12px; left: 12px;
  border: 1px solid var(--gold-border-mid);
  z-index: -1;
  pointer-events: none;
}
.concept-stat {
  display: flex;
  gap: 3rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--gold-border);
  flex-wrap: wrap;
}
.stat-number {
  font-family: var(--font-en);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--neon);
  text-shadow: var(--neon-glow-sm);
  line-height: 1;
}
.stat-number span { font-size: 0.9rem; vertical-align: super; margin-left: 2px; }
.stat-label {
  font-family: var(--font-ja);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--gray);
  margin-top: 0.3rem;
}

/* =====================================================
   REASON CARDS
   ===================================================== */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 3.5rem;
}
@media (max-width: 900px) { .reasons-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .reasons-grid { grid-template-columns: 1fr; } }

.reason-card {
  padding: 2.8rem 2.2rem;
  background: rgba(255,255,255,0.01);
  border: 1px solid var(--gold-border);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.reason-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 2px; height: 0;
  background: linear-gradient(to bottom, var(--neon), var(--gold));
  transition: height 0.4s var(--ease);
}
.reason-card:hover::before { height: 100%; }
.reason-card:hover { background: var(--gold-faint); }

.reason-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: rgba(201,168,76,0.1);
  line-height: 1;
  margin-bottom: 0.8rem;
  transition: color 0.3s;
}
.reason-card:hover .reason-num { color: rgba(201,168,76,0.18); }
.reason-icon { font-size: 1.4rem; color: var(--neon); margin-bottom: 1rem; text-shadow: var(--neon-glow-sm); }
.reason-title {
  font-family: var(--font-ja);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 0.8rem;
}
.reason-desc {
  font-family: var(--font-ja);
  font-size: 0.78rem;
  font-weight: 200;
  color: var(--gray);
  line-height: 2;
  letter-spacing: 0.05em;
}

/* =====================================================
   REVIEW CARDS
   ===================================================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .reviews-grid { grid-template-columns: 1fr; } }

.review-card {
  padding: 2.5rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--gold-border);
  transition: all 0.4s var(--ease);
  position: relative;
}
.review-card:hover { border-color: var(--gold-border-mid); background: var(--gold-faint); }
.review-stars { color: var(--neon); font-size: 0.8rem; letter-spacing: 0.2em; margin-bottom: 1.5rem; text-shadow: var(--neon-glow-sm); }
.review-text {
  font-family: var(--font-ja);
  font-size: 0.82rem;
  font-weight: 200;
  color: var(--white-dim);
  line-height: 2.1;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
  position: relative;
}
.review-text::before {
  content: '\201C';
  font-family: var(--font-en);
  font-size: 3.5rem;
  color: rgba(201,168,76,0.12);
  position: absolute; top: -1.2rem; left: -0.3rem;
  line-height: 1;
}
.review-author { display: flex; align-items: center; gap: 0.8rem; }
.review-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--neon-faint);
  border: 1px solid var(--neon-border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-en); font-size: 0.85rem; color: var(--neon);
}
.review-name { font-family: var(--font-ja); font-size: 0.78rem; color: var(--gray); letter-spacing: 0.1em; }
.review-scene { font-size: 0.68rem; color: var(--gray-light); }

/* =====================================================
   COLLECTION CARDS
   ===================================================== */
.collection-card {
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
  aspect-ratio: 3/4;
}
.collection-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease), filter 0.5s;
  filter: brightness(0.65) contrast(1.05);
}
.collection-card:hover img { transform: scale(1.07); filter: brightness(0.5) contrast(1.1); }
.collection-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
  background: linear-gradient(to top, rgba(10,10,10,0.85) 0%, transparent 60%);
}
.collection-label {
  font-family: var(--font-en);
  font-size: 0.6rem; letter-spacing: 0.4em;
  color: var(--gold); text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.collection-title {
  font-family: var(--font-en);
  font-size: 1.7rem; font-weight: 300;
  color: var(--white); letter-spacing: 0.05em;
}
.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 3.5rem;
}
@media (max-width: 900px) {
  .collections-grid { grid-template-columns: 1fr 1fr; }
  .collections-grid .collection-card:last-child { grid-column: 1/-1; aspect-ratio: 16/9; }
}
@media (max-width: 600px) {
  .collections-grid { grid-template-columns: 1fr; }
  .collections-grid .collection-card:last-child { grid-column: auto; aspect-ratio: 3/4; }
}

/* =====================================================
   PROCESS STEPS
   ===================================================== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 4rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 3.5rem; left: 12.5%; right: 12.5%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dark), var(--gold), var(--gold-dark), transparent);
}
@media (max-width: 900px) {
  .process-steps { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .process-steps::before { display: none; }
}
@media (max-width: 600px) { .process-steps { grid-template-columns: 1fr; } }

.process-step { text-align: center; padding: 0 1.5rem; }
.step-number {
  font-family: var(--font-en);
  font-size: 0.6rem; letter-spacing: 0.3em;
  color: var(--neon); text-transform: uppercase;
  margin-bottom: 1rem;
}
.step-icon-wrap {
  width: 70px; height: 70px;
  border: 1px solid var(--neon-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 2rem;
  position: relative; z-index: 1;
  background: var(--black);
  transition: all 0.3s var(--ease);
}
.process-step:hover .step-icon-wrap { border-color: var(--neon); background: var(--neon-faint); box-shadow: var(--neon-glow-sm); }
.step-icon-wrap i { font-size: 1.3rem; color: var(--neon); }
.step-title { font-family: var(--font-ja); font-size: 0.9rem; font-weight: 400; letter-spacing: 0.1em; color: var(--white); margin-bottom: 0.8rem; }
.step-desc { font-family: var(--font-ja); font-size: 0.75rem; font-weight: 200; color: var(--gray); line-height: 1.9; letter-spacing: 0.05em; }

/* =====================================================
   PRICE GRID
   ===================================================== */
.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 3.5rem;
}
@media (max-width: 700px) { .price-grid { grid-template-columns: 1fr; } }

.price-item {
  padding: 1.6rem 2.2rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--gold-border);
  display: flex; justify-content: space-between; align-items: center;
  transition: all 0.3s var(--ease);
}
.price-item:hover { background: var(--gold-faint); border-color: var(--gold-border-mid); }
.price-item.featured {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(201,168,76,0.07), rgba(201,168,76,0.02));
  border-color: var(--gold-border-mid);
}
.price-name { font-family: var(--font-ja); font-size: 0.88rem; font-weight: 300; color: var(--white-dim); letter-spacing: 0.08em; }
.price-name small { display: block; font-size: 0.7rem; color: var(--gray); margin-top: 0.2rem; }
.price-amount { font-family: var(--font-en); font-size: 1.2rem; font-weight: 300; color: var(--neon); letter-spacing: 0.03em; white-space: nowrap; }
.price-amount.featured-price { font-size: 1.8rem; }
.price-note { text-align: center; font-family: var(--font-ja); font-size: 0.72rem; color: var(--gray); margin-top: 1.5rem; letter-spacing: 0.1em; }

/* =====================================================
   SEO TEXT BLOCKS
   ===================================================== */
.seo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3.5rem;
}
@media (max-width: 900px) { .seo-grid { grid-template-columns: 1fr; gap: 2.5rem; } }

.seo-block h3 {
  font-family: var(--font-ja);
  font-size: 1rem; font-weight: 400;
  letter-spacing: 0.1em; color: var(--white);
  margin-bottom: 1rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--gold-border);
  border-top: 2px solid var(--green-mid);
}
.seo-block p {
  font-family: var(--font-ja);
  font-size: 0.82rem; font-weight: 200;
  color: var(--gray); line-height: 2.2;
  letter-spacing: 0.06em;
}

/* 旧 .s-txt の上書き */
.s-txt { margin: 4rem 0; }
.s-txt h2 { font-family: var(--font-ja); font-size: 1.05rem; font-weight: 400; color: var(--white); margin-bottom: 1rem; padding-bottom: 0.7rem; border-bottom: 1px solid var(--gold-border);
  border-top: 2px solid var(--green-mid); letter-spacing: 0.1em; }
.s-txt h3 { font-family: var(--font-ja); font-size: 0.9rem; font-weight: 300; color: var(--gold-light); margin: 1.5rem 0 0.7rem; letter-spacing: 0.08em; }
.s-txt p { font-family: var(--font-ja); font-size: 0.85rem; font-weight: 200; color: var(--gray); line-height: 2.2; letter-spacing: 0.06em; margin-bottom: 0.8rem; }
.s-txt ul { padding-left: 1.2rem; margin-bottom: 1rem; }
.s-txt ul li { font-family: var(--font-ja); font-size: 0.82rem; font-weight: 200; color: var(--gray); line-height: 2.2; letter-spacing: 0.06em; }
.s-txt ul li span { color: var(--white-dim); font-weight: 400; }
.s-txt h3 span { border-bottom: none; color: var(--gold-light); }

/* =====================================================
   CTA SECTION
   ===================================================== */
#cta-section {
  padding: 140px 0;
  background: var(--black-mid);
  text-align: center;
}
.cta-line { width: 1px; height: 70px; background: linear-gradient(to bottom, transparent, var(--gold), transparent); margin: 0 auto 3rem; }
.cta-title { font-family: var(--font-en); font-size: clamp(2.2rem, 5vw, 4.5rem); font-weight: 300; color: var(--white); letter-spacing: 0.03em; }
.cta-title em { font-style: italic; color: var(--gold-light); }
.cta-subtitle { font-family: var(--font-ja); font-size: 0.85rem; font-weight: 200; letter-spacing: 0.3em; color: var(--gray); margin: 0.8rem 0 3rem; }
.cta-buttons { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }
.cta-contact { font-family: var(--font-en); font-size: 0.7rem; letter-spacing: 0.15em; color: var(--gray); margin-top: 2rem; }
.cta-contact strong { color: var(--neon); text-shadow: var(--neon-glow-sm); }

/* =====================================================
   INSTAGRAM CTA
   ===================================================== */
#instagram-cta {
  padding: 100px 0;
  background: var(--black-mid);
  text-align: center;
  position: relative; overflow: hidden;
}
#instagram-cta::before {
  content: 'BUDDY';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 22vw;
  color: rgba(255,255,255,0.02);
  white-space: nowrap;
  pointer-events: none;
}
.instagram-label { font-family: var(--font-en); font-size: 0.65rem; letter-spacing: 0.5em; color: var(--neon); text-transform: uppercase; margin-bottom: 1.5rem; }
.instagram-text { font-family: var(--font-en); font-size: clamp(1.8rem, 4vw, 3.5rem); font-weight: 300; color: var(--white); margin-bottom: 0.5rem; }
.instagram-sub { font-family: var(--font-ja); font-size: 0.78rem; font-weight: 200; letter-spacing: 0.2em; color: var(--gray); margin-bottom: 2.5rem; }

/* =====================================================
   COMPANY MAP
   ===================================================== */
.company-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5vw;
  align-items: start;
  margin-top: 3.5rem;
}
@media (max-width: 900px) { .company-grid { grid-template-columns: 1fr; } }

.company-map {
  aspect-ratio: 4/3;
  border: 1px solid var(--gold-border);
  overflow: hidden;
}
.company-map iframe {
  width: 100%; height: 100%; border: none;
  filter: grayscale(0.8) invert(0.85) contrast(0.85);
  mix-blend-mode: luminosity;
  opacity: 0.6;
}

/* =====================================================
   FOOTER
   ===================================================== */
footer {
  background: var(--black);
  border-top: 1px solid var(--gold-border);
  box-shadow: inset 0 2px 0 var(--green-faint);
  padding: 5rem 0 2rem;
  position: relative; z-index: 1;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--global-space);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-top { grid-template-columns: 1fr; } }

.footer-logo img { height: 32px; width: auto; opacity: 0.8; }
.footer-tagline { font-family: var(--font-ja); font-size: 0.75rem; font-weight: 200; color: var(--gray); letter-spacing: 0.12em; margin-top: 1rem; line-height: 2; }
.footer-social { display: flex; gap: 1rem; margin-top: 1.5rem; }
.footer-social a {
  width: 34px; height: 34px;
  border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray); font-size: 0.85rem;
  transition: all 0.3s;
}
.footer-social a:hover { border-color: var(--neon); color: var(--neon); background: var(--neon-faint); box-shadow: var(--neon-glow-sm); }

.footer-nav-title, .footer-contact-title {
  font-family: var(--font-en);
  font-size: 0.6rem; letter-spacing: 0.4em;
  color: var(--gold); text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.footer-nav ul { list-style: none; }
.footer-nav li { margin-bottom: 0.7rem; }
.footer-nav a { font-family: var(--font-ja); font-size: 0.8rem; font-weight: 200; color: var(--gray); letter-spacing: 0.1em; transition: color 0.3s; }
.footer-nav a:hover { color: var(--neon); }

.footer-tel { font-family: var(--font-en); font-size: 1.4rem; font-weight: 300; color: var(--white); display: block; margin-bottom: 0.5rem; letter-spacing: 0.05em; }
.footer-address { font-family: var(--font-ja); font-size: 0.75rem; font-weight: 200; color: var(--gray); letter-spacing: 0.08em; line-height: 2; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.04);
  padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-copy { font-family: var(--font-en); font-size: 0.65rem; letter-spacing: 0.2em; color: rgba(136,136,128,0.45); text-transform: uppercase; }
.footer-copy a { color: inherit; }

/* 旧フッターメニュー */
#footermenu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  margin-bottom: 2rem;
}
#footermenu a { font-family: var(--font-en); font-size: 0.72rem; letter-spacing: 0.15em; color: var(--gray); text-transform: uppercase; }
#footermenu a:hover { color: var(--neon); }
footer small { font-family: var(--font-en); font-size: 0.62rem; color: rgba(136,136,128,0.4); letter-spacing: 0.15em; }

/* 旧アイコンフッター */
#header-bottom { display: none; }

/* =====================================================
   PAGE TOP BUTTON
   ===================================================== */
.pagetop {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 48px; height: 48px;
  border: 1px solid var(--neon-border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 500;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s var(--ease);
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(10px);
}
.pagetop a { color: var(--neon); font-size: 0.82rem; display: flex; align-items: center; justify-content: center; }
.pagetop.pagetop-show, .pagetop.show { opacity: 1; transform: translateY(0); }
.pagetop:hover { border-color: var(--neon); background: var(--neon-faint); box-shadow: var(--neon-glow-sm); }

/* =====================================================
   FLOATING RESERVATION BUTTON
   ===================================================== */
#message-parts, .float-reserve {
  position: fixed;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%) translateY(80px);
  z-index: 500;
  opacity: 0;
  transition: all 0.5s var(--ease);
}
#message-parts a, .float-reserve a {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.85rem 2.5rem;
  background: var(--gold);
  color: var(--black) !important;
  font-family: var(--font-en);
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  box-shadow: 0 8px 30px rgba(201,168,76,0.3);
  transition: background 0.3s;
}
#message-parts a:hover, .float-reserve a:hover { background: var(--gold-light); }

/* =====================================================
   CONTAINER (旧テンプレート互換)
   ===================================================== */
/* index.html は #container を使わないため、サブページ用に余白を維持 */
#container {
  padding: 0 var(--global-space);
}

/* TOPページはヒーローが全幅なので余白なし */
body.home #container {
  padding: 0;
}

/* =====================================================
   BACKGROUND SECTIONS
   ===================================================== */
.bg1 {
  background: var(--black-soft);
  padding: 3rem var(--global-space);
  margin: 0 calc(-1 * var(--global-space));
}

/* ===== dn (display:none用) ===== */
.dn { display: none; }

/* =====================================================
   PAGE-SPECIFIC: GALLERY
   ===================================================== */
body.gallery-page section.blur { padding: 60px 0; }

/* =====================================================
   MEDIA — MOBILE
   ===================================================== */
@media (max-width: 600px) {
  section { padding: 70px 0; }
  .hero-cta-group { flex-direction: column; align-items: flex-start; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .concept-stat { gap: 2rem; }
}

/* =====================================================
   NEON GREEN ACCENT SECTIONS
   ===================================================== */
.bg-green-accent {
  background: linear-gradient(135deg, var(--black-soft) 0%, rgba(30,77,43,0.08) 100%);
}

.green-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--green-light), var(--gold));
  margin: 0 auto;
}

/* セクションラベルのグリーンバリアント */
.section-label.green {
  color: var(--green-light);
}
.section-label.green::before {
  background: var(--green-light);
}

/* ボーダーグリーン */
.border-green {
  border-color: var(--green-border) !important;
}

/* グリーンバッジ */
.badge-green {
  display: inline-block;
  padding: 0.2rem 0.8rem;
  background: var(--green-faint);
  border: 1px solid var(--green-border);
  color: var(--green-light);
  font-family: var(--font-en);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

/* グリーンホバーカード */
.card-green:hover {
  background: var(--green-faint) !important;
  border-color: var(--green-border) !important;
}

/* nav wrapper top accent */
#nav-wrapper {
  border-top: 2px solid var(--neon-dark);
}

/* ===== SCROLL PROGRESS BAR (neon override) ===== */
#scroll-progress {
  background: var(--neon) !important;
  box-shadow: var(--neon-glow-sm);
}
