/* ============================================
   REstart KICKBOXING GYM – Main Stylesheet
   カラーテーマ: #00C5FF（シアン）× ダークネイビー
   ============================================ */

/* ============================================
   1. CSS Variables
   ============================================ */
:root {
  /* Brand Colors */
  --clr-primary:      #00C5FF;
  --clr-primary-dk:   #00A3D4;
  --clr-primary-glow: rgba(0, 197, 255, 0.22);
  --clr-primary-faint:rgba(0, 197, 255, 0.08);

  /* Backgrounds (dark navy) */
  --clr-bg:   #05080F;
  --clr-bg-2: #07101C;
  --clr-bg-3: #0B1828;

  /* Text */
  --clr-white:     #ffffff;
  --clr-gray-100:  #eaf4ff;
  --clr-gray-400:  #7a9ab0;
  --clr-gray-600:  #3a5060;

  /* LINE brand */
  --clr-line: #06c755;

  /* Typography */
  --font-heading: 'Bebas Neue', 'Oswald', sans-serif;
  --font-body:    'Noto Sans JP', sans-serif;

  /* Spacing */
  --sp-xs: 0.5rem;
  --sp-sm: 1rem;
  --sp-md: 2rem;
  --sp-lg: 4rem;
  --sp-xl: 7rem;

  /* Layout */
  --max-w:  1160px;
  --radius: 4px;
  --ease:   0.3s ease;

  --header-h:     68px;
  --sticky-bar-h: 60px;
}

/* ============================================
   2. Reset
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  background: var(--clr-bg);
  color: var(--clr-white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; }
h1, h2, h3, h4 { line-height: 1.2; }

/* ============================================
   3. Utilities
   ============================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section { padding: var(--sp-xl) 0; }
.section-header { margin-bottom: var(--sp-lg); }

.section-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.35em;
  color: var(--clr-primary);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  letter-spacing: 0.03em;
  line-height: 1.15;
}
.section-subtitle {
  font-size: 0.9rem;
  color: var(--clr-gray-400);
  margin-top: 0.75rem;
  max-width: 560px;
  line-height: 1.9;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-size: 0.875rem;
  font-family: var(--font-body);
  letter-spacing: 0.08em;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--ease);
  font-weight: 700;
}
.btn-primary {
  background: var(--clr-primary);
  color: #05080F;
}
.btn-primary:hover {
  background: var(--clr-primary-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--clr-primary-glow);
}
.btn-outline {
  background: transparent;
  color: var(--clr-white);
  border: 1px solid rgba(0, 197, 255, 0.4);
}
.btn-outline:hover {
  border-color: var(--clr-primary);
  background: var(--clr-primary-faint);
}

/* ============================================
   4. Header
   ============================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background var(--ease), box-shadow var(--ease);
}
.site-header.scrolled {
  background: rgba(5, 8, 15, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.65);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Logo */
.site-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
  margin-right: auto;   /* ロゴ右の残りスペースを占有 → CTA・ハンバーガーを右端へ */
}
.site-logo__img {
  height: 42px;
  width: auto;
  object-fit: contain;
}
.logo-text {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  letter-spacing: 0.04em;
}
.logo-accent { color: var(--clr-primary); }
.logo-sub {
  font-size: 0.5rem;
  letter-spacing: 0.22em;
  color: var(--clr-gray-400);
  text-transform: uppercase;
  margin-top: 2px;
}

/* Nav: 常に非表示、.is-open 時のみ表示 */
.site-nav         { display: none; }
.site-nav__footer { display: none; }
.site-nav__top    { display: none; }

/* ── ナビオーバーレイ（PC / SP 共通） ── */
.site-nav.is-open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--clr-bg);
  z-index: 1000;
  padding: 72px 4rem 2rem;
  overflow-y: auto;
  animation: navOverlayIn 0.2s ease both;
}
@keyframes navOverlayIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* nav内上部バー（トップへ戻る + ×） */
.site-nav.is-open .site-nav__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.site-nav__home {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--clr-gray-400);
  letter-spacing: 0.08em;
  transition: color var(--ease);
}
.site-nav__home:hover { color: var(--clr-primary); }
.site-nav__home::after { display: none !important; }

.site-nav__close {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: background var(--ease), border-color var(--ease);
}
.site-nav__close span {
  display: block;
  width: 16px; height: 2px;
  background: var(--clr-white);
  border-radius: 2px;
  position: absolute;
}
.site-nav__close span:nth-child(1) { transform: rotate(45deg); }
.site-nav__close span:nth-child(2) { transform: rotate(-45deg); }
.site-nav__close:hover { background: rgba(0,197,255,0.12); border-color: var(--clr-primary); }

/* リンクグリッド（PC: 3列） */
.site-nav.is-open ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  flex-direction: unset;
  text-align: left;
  margin-bottom: 1.5rem;
}
.site-nav.is-open li {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.site-nav.is-open li:not(:nth-child(3n)) { border-right: 1px solid rgba(255,255,255,0.06); }
.site-nav.is-open a {
  display: block;
  font-size: 1rem;
  letter-spacing: 0.1em;
  padding: 0.9rem 0.5rem;
  color: var(--clr-white);
  transition: color var(--ease);
}
.site-nav.is-open a:hover { color: var(--clr-primary); }
.site-nav.is-open a::after { display: none; }

/* ナビフッター（CTA + ソーシャル） */
.site-nav.is-open .site-nav__footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.site-nav__cta {
  text-align: center;
  padding: 0.7rem 1.5rem !important;
  font-size: 0.85rem !important;
  white-space: nowrap;
}
.site-nav__social {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}
.site-nav__social a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem !important;
  padding: 0.5rem 1rem !important;
  color: var(--clr-gray-400) !important;
  letter-spacing: 0.06em !important;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  transition: color var(--ease), border-color var(--ease) !important;
  transform: none !important;
}
.site-nav__social a:hover {
  color: var(--clr-white) !important;
  border-color: rgba(255,255,255,0.25) !important;
}
.site-nav__social a::after { display: none !important; }

/* Header CTA */
.header-cta {
  flex-shrink: 0;
  font-size: 0.775rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  padding: 0.55rem 1.2rem;
  background: var(--clr-primary);
  color: #05080F;
  border-radius: var(--radius);
  transition: background var(--ease), box-shadow var(--ease);
}
.header-cta:hover {
  background: var(--clr-primary-dk);
  box-shadow: 0 4px 16px var(--clr-primary-glow);
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--clr-white);
  transition: all var(--ease);
  border-radius: 2px;
}
.hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; }
.hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   5. Hero（動画背景）
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* 動画背景 */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;   /* fallback より前面 */
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 動画がないとき／オーバーレイ */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;   /* video-wrap(1) より前面 */
  background:
    linear-gradient(
      105deg,
      rgba(5, 8, 15, 0.90) 0%,
      rgba(5, 8, 15, 0.70) 55%,
      rgba(0, 197, 255, 0.06) 100%
    );
}

/* 動画なし時のフォールバック背景 */
.hero-bg-fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 60% at 75% 50%, rgba(0, 197, 255, 0.14) 0%, transparent 65%),
    radial-gradient(ellipse 50% 80% at 15% 100%, rgba(0, 197, 255, 0.06) 0%, transparent 60%),
    var(--clr-bg);
}
.hero-bg-fallback::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -55deg,
    transparent 0px, transparent 60px,
    rgba(0, 197, 255, 0.025) 60px, rgba(0, 197, 255, 0.025) 61px
  );
}

/* コンテンツ */
.hero-content {
  position: relative;
  z-index: 3;   /* overlay(2) より前面 */
  padding-top: calc(var(--header-h) + 2rem);
  padding-bottom: calc(6rem + var(--sticky-bar-h));
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  color: var(--clr-primary);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 36px; height: 1px;
  background: var(--clr-primary);
  flex-shrink: 0;
}

/* コンセプト大見出し */
.hero-concept {
  font-family: var(--font-body);
  font-size: clamp(1.4rem, 4vw, 2.4rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
  color: var(--clr-white);
}
.hero-concept-accent {
  color: var(--clr-primary);
  position: relative;
  display: inline-block;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 9vw, 7.5rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  margin-bottom: 1.75rem;
  color: rgba(255,255,255,0.08);
  user-select: none;
}

.hero-desc {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: var(--clr-gray-100);
  line-height: 2.1;
  max-width: 520px;
  margin-bottom: 2.75rem;
  background: rgba(5, 8, 15, 0.45);
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--clr-primary);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* スクロール誘導 */
.hero-scroll {
  position: absolute;
  bottom: calc(var(--sticky-bar-h) + 1.5rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  color: var(--clr-gray-400);
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, var(--clr-primary), transparent);
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%   { transform: scaleY(0); transform-origin: top;    }
  49%  { transform: scaleY(1); transform-origin: top;    }
  50%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================
   6. Features
   ============================================ */
.features { background: var(--clr-bg-2); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(0, 197, 255, 0.06);
  border: 1px solid rgba(0, 197, 255, 0.06);
  border-radius: var(--radius);
  overflow: hidden;
}

.feature-card {
  background: var(--clr-bg-2);
  padding: 3rem 2.25rem;
  position: relative;
  overflow: hidden;
  transition: background var(--ease);
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-primary), var(--clr-primary-dk));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover         { background: var(--clr-bg-3); }

.feature-number {
  font-family: var(--font-heading);
  font-size: 5rem;
  line-height: 1;
  color: var(--clr-primary-faint);
  margin-bottom: 1.25rem;
  transition: color var(--ease);
  user-select: none;
}
.feature-card:hover .feature-number { color: rgba(0, 197, 255, 0.14); }

.feature-title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 0.9rem;
}
.feature-desc {
  font-size: 0.875rem;
  color: var(--clr-gray-400);
  line-height: 1.9;
}

/* ============================================
   7. Concerns
   ============================================ */
.concerns { background: var(--clr-bg); }

.concerns-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.concern-item {
  background: var(--clr-bg-2);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 2rem 2.25rem;
  position: relative;
  overflow: hidden;
  transition: border-color var(--ease), transform var(--ease);
}
.concern-item:hover {
  border-color: rgba(0, 197, 255, 0.25);
  transform: translateY(-3px);
}
.concern-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 3px;
  background: var(--clr-primary);
  border-radius: 0 0 0 8px;
}

.concern-q {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.concern-q-mark {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--clr-primary);
  line-height: 1;
  flex-shrink: 0;
}
.concern-q-text {
  font-size: 0.975rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding-top: 0.2rem;
}
.concern-a {
  font-size: 0.875rem;
  color: var(--clr-gray-400);
  line-height: 1.9;
  padding-left: 2.5rem;
}

/* ============================================
   8. Message
   ============================================ */
.message {
  background: var(--clr-bg-2);
  position: relative;
  overflow: hidden;
}
.message::before {
  content: '"';
  position: absolute;
  top: -3rem; left: -1.5rem;
  font-size: 24rem;
  font-family: Georgia, serif;
  color: rgba(0, 197, 255, 0.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.message-inner {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.message-text {
  font-size: 1.075rem;
  line-height: 2.1;
  color: var(--clr-gray-100);
  margin-bottom: 2rem;
  quotes: none;
}
.message-author { display: flex; align-items: center; gap: 1rem; }
.message-author-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--clr-bg-3);
  border: 1px solid rgba(0, 197, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--clr-gray-400);
  overflow: hidden;
}
/* 代表者写真がある場合 */
.message-author-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.message-author-name  { font-weight: 700; font-size: 0.95rem; }
.message-author-title { font-size: 0.8rem; color: var(--clr-gray-400); margin-top: 0.15rem; }

/* ============================================
   9. Flow
   ============================================ */
.flow { background: var(--clr-bg); }

.flow-steps {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}
.flow-steps::before {
  content: '';
  position: absolute;
  left: 29px; top: 30px; bottom: 30px;
  width: 1px;
  background: linear-gradient(
    to bottom,
    var(--clr-primary) 0%,
    rgba(0, 197, 255, 0.25) 60%,
    transparent 100%
  );
}

.flow-step {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 1.75rem 0;
  position: relative;
}
.flow-step + .flow-step { border-top: 1px solid rgba(255,255,255,0.04); }

.flow-step-number {
  flex-shrink: 0;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--clr-bg-2);
  border: 1px solid rgba(0, 197, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--clr-primary);
  position: relative;
  z-index: 1;
  transition: all var(--ease);
}
.flow-step:hover .flow-step-number {
  background: var(--clr-primary);
  color: #05080F;
  border-color: var(--clr-primary);
  box-shadow: 0 0 22px var(--clr-primary-glow);
}

.flow-step-content { padding-top: 0.8rem; }
.flow-step-title   { font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; }
.flow-step-desc    { font-size: 0.875rem; color: var(--clr-gray-400); line-height: 1.8; }

/* ============================================
   10. Area
   ============================================ */
.area { background: var(--clr-bg-2); }

.area-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.area-card {
  background: var(--clr-bg-3);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}
.area-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 197, 255, 0.25);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}

.area-card-img {
  height: 210px;
  position: relative;
  overflow: hidden;
  /* inline style で background-image が付いたときに機能するよう指定 */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* 写真がない時のグラデーション fallback */
.area-card-img--bag    { background-color: #071c30; background-image: linear-gradient(135deg, #041220 0%, #071c30 100%); }
.area-card-img--ring   { background-color: #061428; background-image: linear-gradient(135deg, #040d1f 0%, #061428 100%); }
.area-card-img--cardio { background-color: #061e26; background-image: linear-gradient(135deg, #04151a 0%, #061e26 100%); }
.area-card-img--weight { background-color: #081828; background-image: linear-gradient(135deg, #04101c 0%, #081828 100%); }

.area-card-img-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 197, 255, 0.18);
}
/* 実写真がある場合のオーバーレイ */
.area-card-img.has-photo .area-card-img-overlay {
  background: linear-gradient(to top, rgba(5,8,15,0.7) 0%, transparent 50%);
  color: transparent;
}

.area-card-body { padding: 1.75rem; }
.area-card-title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.area-card-title::before {
  content: '';
  display: block;
  width: 18px; height: 2px;
  background: var(--clr-primary);
  flex-shrink: 0;
}
.area-card-desc { font-size: 0.85rem; color: var(--clr-gray-400); line-height: 1.9; }
.area-card-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.area-tag {
  font-size: 0.7rem;
  padding: 0.2rem 0.7rem;
  border-radius: 2rem;
  background: var(--clr-primary-faint);
  border: 1px solid rgba(0, 197, 255, 0.2);
  color: var(--clr-primary);
  letter-spacing: 0.04em;
}

/* ============================================
   11. Fee
   ============================================ */
.fee { background: var(--clr-bg); }

.campaign-banner {
  background: linear-gradient(130deg, rgba(0,197,255,0.15), rgba(0,163,212,0.1));
  border: 1px solid rgba(0, 197, 255, 0.25);
  border-radius: 8px;
  padding: 1.5rem 2rem;
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.campaign-banner-icon { font-size: 2rem; flex-shrink: 0; }
.campaign-banner-text { font-weight: 700; font-size: 1rem; line-height: 1.5; color: var(--clr-primary); }
.campaign-banner-text span {
  display: block;
  font-size: 0.825rem;
  font-weight: 400;
  color: var(--clr-gray-100);
  margin-top: 0.2rem;
}

.fee-table-wrapper { overflow-x: auto; }
.fee-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}
.fee-table th,
.fee-table td {
  padding: 1.1rem 1.4rem;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.05);
}
.fee-table thead th {
  background: var(--clr-bg-2);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--clr-gray-400);
  font-weight: 400;
}
.fee-table thead th:first-child { text-align: left; }
.fee-table tbody th {
  background: var(--clr-bg-2);
  font-size: 0.875rem;
  font-weight: 700;
  text-align: left;
  white-space: nowrap;
}
.fee-table tbody td { background: var(--clr-bg-3); }

.fee-price {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--clr-primary);
  line-height: 1;
}
.fee-price-unit { font-size: 0.7rem; color: var(--clr-gray-400); font-family: var(--font-body); font-weight: 400; }
.fee-note { font-size: 0.8rem; color: var(--clr-gray-400); margin-top: 1.25rem; }

/* ============================================
   12. Access
   ============================================ */
.access { background: var(--clr-bg-2); }

.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.access-map {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(0, 197, 255, 0.1);
  box-shadow: 0 0 0 1px rgba(0, 197, 255, 0.05);
}
.access-map iframe {
  width: 100%; height: 100%;
  border: none;
  filter: grayscale(0.6) invert(0.85) hue-rotate(185deg);
}

.access-info { display: flex; flex-direction: column; gap: 2rem; }

.access-item { display: flex; gap: 1.1rem; }
.access-item-icon {
  width: 42px; height: 42px;
  background: var(--clr-bg-3);
  border: 1px solid rgba(0, 197, 255, 0.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--clr-primary);
}
.access-item-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--clr-primary);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.access-item-value { font-size: 0.9rem; line-height: 1.8; }

.access-hours-table { width: 100%; font-size: 0.875rem; }
.access-hours-table td { padding: 0.25rem 0; }
.access-hours-table td:first-child { color: var(--clr-gray-400); padding-right: 1.5rem; white-space: nowrap; }

.access-cta { margin-top: 0.5rem; }

/* ============================================
   13. Footer
   ============================================ */
.site-footer {
  background: var(--clr-bg);
  border-top: 1px solid rgba(0, 197, 255, 0.07);
  padding: 3rem 0;
  padding-bottom: calc(3rem + var(--sticky-bar-h));
  text-align: center;
}
.footer-logo { font-family: var(--font-heading); font-size: 1.4rem; letter-spacing: 0.1em; margin-bottom: 0.75rem; }
.footer-logo span { color: var(--clr-primary); }
.footer-logo__img { height: 52px; width: auto; margin: 0 auto 0.25rem; display: block; object-fit: contain; }
.footer-address { font-size: 0.825rem; color: var(--clr-gray-400); margin-bottom: 0.4rem; }
.footer-copy    { font-size: 0.72rem; color: var(--clr-gray-600); }

/* ============================================
   14. Sticky Bar（電話 ＋ LINE の2分割）
   ============================================ */
.sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 950;
  height: var(--sticky-bar-h);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;   /* 電話 / Instagram / LINE / 営業日 */
  background: rgba(5, 8, 15, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(0, 197, 255, 0.1);
  box-shadow: 0 -4px 28px rgba(0,0,0,0.6);
}

/* 電話 */
.sticky-bar__tel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--clr-primary);
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: background var(--ease);
}
.sticky-bar__tel:hover { background: rgba(0, 197, 255, 0.06); }
.sticky-bar__tel svg   { flex-shrink: 0; stroke: var(--clr-primary); }

/* Instagram */
.sticky-bar__instagram {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-left: 1px solid rgba(255,255,255,0.1);
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: filter var(--ease);
}
.sticky-bar__instagram:hover { filter: brightness(1.12); }

/* LINE */
.sticky-bar__line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: var(--clr-line);
  transition: filter var(--ease);
  font-weight: 700;
  font-size: 0.875rem;
  color: #fff;
  letter-spacing: 0.05em;
}
.sticky-bar__line:hover { filter: brightness(1.1); }
.sticky-bar__line img   { height: 32px; width: auto; }

/* 今月の営業日 */
.sticky-bar__calendar {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--clr-primary);
  border-left: 1px solid rgba(255,255,255,0.06);
  transition: background var(--ease);
  text-align: center;
  line-height: 1.3;
}
.sticky-bar__calendar:hover { background: rgba(0, 197, 255, 0.06); }
.sticky-bar__calendar svg   { flex-shrink: 0; }

/* ============================================
   15. Animations
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.is-visible   { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* ============================================
   16. Media Queries
   ============================================ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --sp-xl: 4.5rem; --sp-lg: 2.5rem; }

  /* Mobile nav: SP用差分（2列・小サイズ） */
  .header-cta { display: none; }
  .site-nav.is-open {
    padding: 64px 1.5rem 1rem;
  }
  .site-nav.is-open ul {
    grid-template-columns: 1fr 1fr;
    margin-bottom: 0;
  }
  .site-nav.is-open li:not(:nth-child(3n)) { border-right: none; }
  .site-nav.is-open li:nth-child(odd)      { border-right: 1px solid rgba(255,255,255,0.06); }
  .site-nav.is-open a {
    font-size: 0.875rem;
    padding: 0.65rem 0.25rem;
  }
  .site-nav.is-open .site-nav__footer {
    gap: 0.6rem;
    margin-top: 0.9rem;
    padding-top: 0.9rem;
  }
  .site-nav__cta {
    flex: 1;
    padding: 0.65rem 0.5rem !important;
    font-size: 0.75rem !important;
  }
  .site-nav__social { gap: 0.5rem; }
  .site-nav__social a {
    font-size: 0.7rem !important;
    padding: 0.4rem 0.7rem !important;
  }

  /* Grid */
  .features-grid { grid-template-columns: 1fr; }
  .concerns-grid { grid-template-columns: 1fr; }
  .area-grid     { grid-template-columns: 1fr; }
  .access-grid   { grid-template-columns: 1fr; }

  /* Hero */
  .hero-concept { font-size: clamp(1.2rem, 5vw, 1.8rem); }

  /* Sticky bar（モバイル: 4列縮小） */
  .sticky-bar__tel             { font-size: 0.55rem; }
  .sticky-bar__instagram span  { display: none; }
  .sticky-bar__instagram       { gap: 0; }
  .sticky-bar__line img        { height: 26px; }
  .sticky-bar__calendar        { font-size: 0.55rem; }

  /* Gallery SP: 4枚目も表示 */
  .gallery-item:nth-child(4).gallery-item--hidden { display: block; }
}

@media (max-width: 480px) {
  .hero-actions      { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .campaign-banner   { flex-direction: column; text-align: center; gap: 0.75rem; }
}

/* ============================================
   17. Campaign Visual（キャンペーン画像バナー）
   ============================================ */
.campaign-visual {
  background: var(--clr-bg);
  padding: 2.5rem 0;
}
.campaign-visual__link {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  transition: opacity var(--ease), box-shadow var(--ease);
}
.campaign-visual__link:hover {
  opacity: 0.92;
  box-shadow: 0 12px 40px rgba(0, 197, 255, 0.15);
}
.campaign-visual__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
/* 画像未配置時のプレースホルダー */
.campaign-visual__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 2px dashed rgba(0, 197, 255, 0.2);
  min-height: 200px;
  color: var(--clr-gray-400);
  transition: border-color var(--ease);
}
.campaign-visual__placeholder:hover { border-color: rgba(0, 197, 255, 0.4); }
.campaign-visual__placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.7;
}
.campaign-visual__placeholder-inner small { font-size: 0.75rem; color: var(--clr-gray-600); }

/* ============================================
   18. News（お知らせ）
   ============================================ */
.news { background: var(--clr-bg-2); }

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.news-grid--archive { margin-bottom: 3rem; }

.news-card {
  background: var(--clr-bg-3);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  display: flex;
  flex-direction: column;
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}
.news-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 197, 255, 0.2);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}

.news-card__img-wrap {
  display: block;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--clr-bg-2);
  flex-shrink: 0;
}
.news-card__img-wrap--noimg {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 197, 255, 0.2);
}
.news-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.news-card:hover .news-card__img { transform: scale(1.04); }

.news-card__body {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.news-card__date {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--clr-primary);
  margin-bottom: 0.5rem;
  display: block;
}
.news-card__title {
  font-size: 0.925rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 0.75rem;
  flex: 1;
}
.news-card__title a { transition: color var(--ease); }
.news-card__title a:hover { color: var(--clr-primary); }
.news-card__excerpt {
  font-size: 0.8rem;
  color: var(--clr-gray-400);
  line-height: 1.8;
}

.news-more {
  text-align: center;
}
.news-empty {
  text-align: center;
  color: var(--clr-gray-400);
  padding: 3rem 0;
  font-size: 0.9rem;
}

/* アーカイブ・単体投稿 共通ラッパー */
.archive-wrap,
.single-post-wrap {
  padding-top: calc(var(--header-h) + 3rem);
  padding-bottom: calc(4rem + var(--sticky-bar-h));
  min-height: 70vh;
}

.archive-header {
  margin-bottom: var(--sp-lg);
}

/* ============================================
   Archive List（記事一覧）
   ============================================ */
.archive-list {
  list-style: none;
  margin: 0 0 3rem;
  padding: 0;
  max-width: 800px;
}

.archive-list__item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.archive-list__item:first-child {
  border-top: 1px solid rgba(255,255,255,0.06);
}

.archive-list__link {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 0.5rem;
  transition: background var(--ease), padding-left var(--ease);
}
.archive-list__link:hover {
  background: rgba(0, 197, 255, 0.03);
  padding-left: 1rem;
}

.archive-list__date {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--clr-primary);
  white-space: nowrap;
  flex-shrink: 0;
  font-feature-settings: 'tnum';
}

.archive-list__title {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--clr-white);
}

.archive-list__arrow {
  flex-shrink: 0;
  color: rgba(255,255,255,0.2);
  transition: color var(--ease), transform var(--ease);
}
.archive-list__link:hover .archive-list__arrow {
  color: var(--clr-primary);
  transform: translateX(4px);
}

@media (max-width: 560px) {
  .archive-list__link {
    flex-wrap: wrap;
    gap: 0.3rem;
    padding: 1rem 0.25rem;
  }
  .archive-list__title { width: 100%; }
  .archive-list__arrow { display: none; }
}

/* ============================================
   19. Single Post（個別投稿）
   ============================================ */
.post-article {
  max-width: 780px;
  margin: 0 auto;
}

.post-header { margin-bottom: 2rem; }
.post-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.post-date {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--clr-primary);
}
.post-cat {
  font-size: 0.7rem;
  padding: 0.2rem 0.7rem;
  border-radius: 2rem;
  background: var(--clr-primary-faint);
  border: 1px solid rgba(0, 197, 255, 0.2);
  color: var(--clr-primary);
}
.post-title {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 700;
  line-height: 1.4;
}

.post-thumbnail {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 2.5rem;
}
.post-thumbnail img { width: 100%; height: auto; display: block; }

.post-content {
  font-size: 0.975rem;
  line-height: 2;
  color: var(--clr-gray-100);
  margin-bottom: 3rem;
}
.post-content p  { margin-bottom: 1.5em; }
.post-content h2 { font-size: 1.4rem; font-weight: 700; margin: 2.5em 0 1em; padding-bottom: 0.5em; border-bottom: 1px solid rgba(0,197,255,0.15); }
.post-content h3 { font-size: 1.1rem; font-weight: 700; margin: 2em 0 0.75em; }
.post-content img { max-width: 100%; border-radius: var(--radius); margin: 1.5em auto; }
.post-content a { color: var(--clr-primary); text-decoration: underline; }
.post-content ul, .post-content ol { padding-left: 1.5em; margin-bottom: 1.5em; }
.post-content li { margin-bottom: 0.5em; }

.post-nav {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 2rem;
}
.post-nav__prev,
.post-nav__next {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--clr-gray-400);
  max-width: 45%;
  transition: color var(--ease);
}
.post-nav__prev:hover,
.post-nav__next:hover { color: var(--clr-primary); }
.post-nav__next { margin-left: auto; }

.post-back { margin-top: 1.5rem; }

/* ============================================
   20. Archive Pagination
   ============================================ */
.archive-pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.archive-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 0.75rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  background: var(--clr-bg-3);
  border: 1px solid rgba(255,255,255,0.06);
  color: var(--clr-gray-400);
  transition: all var(--ease);
}
.archive-pagination .page-numbers:hover,
.archive-pagination .page-numbers.current {
  background: var(--clr-primary);
  color: #05080F;
  border-color: var(--clr-primary);
}

/* News grid: レスポンシブ */
@media (max-width: 900px) {
  .news-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .news-grid { grid-template-columns: 1fr; }
  .post-nav  { flex-direction: column; }
  .post-nav__prev,
  .post-nav__next { max-width: 100%; }
}

/* ============================================
   Calendar（今月の営業日）
   ============================================ */
.calendar { background: var(--clr-bg-2); }

.calendar-wrap {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.calendar-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.06);
}

.calendar-placeholder {
  padding: 3rem;
  color: var(--clr-gray-400);
  font-size: 0.9rem;
  background: var(--clr-bg-3);
  border-radius: 8px;
  border: 1px dashed rgba(255,255,255,0.1);
}

.calendar-notes {
  margin-top: 1.25rem;
  font-size: 0.825rem;
  color: var(--clr-gray-400);
  line-height: 1.8;
}

/* ============================================
   News List（テキストのみ）
   ============================================ */
.news-list {
  list-style: none;
  margin: 0 0 2.5rem;
  padding: 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.news-list--archive { margin-bottom: 3rem; }

.news-list__item {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  padding: 1rem 0.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background var(--ease);
}
.news-list__item:hover { background: rgba(0, 197, 255, 0.03); }

.news-list__date {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--clr-primary);
  white-space: nowrap;
  flex-shrink: 0;
}
.news-list__title {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--clr-white);
  transition: color var(--ease);
}
.news-list__title:hover { color: var(--clr-primary); }

@media (max-width: 560px) {
  .news-list__item { flex-direction: column; gap: 0.3rem; }
}

/* ============================================
   Gallery（フォトギャラリー）
   ============================================ */
.gallery { background: var(--clr-bg); }

/* 3列グリッド */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

/* 各写真 */
.gallery-item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--clr-bg-3);
  border: none;
  padding: 0;
  cursor: pointer;
  display: block;
  width: 100%;
}
.gallery-item--hidden { display: none; }

.gallery-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover .gallery-item__img { transform: scale(1.08); }

/* ホバーオーバーレイ */
.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 197, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--ease);
  color: var(--clr-white);
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }

/* もっと見るボタン */
.gallery-more {
  text-align: center;
  margin-top: 2rem;
}

/* 写真なしプレースホルダー */
.gallery-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 4rem 0;
  color: var(--clr-gray-400);
  font-size: 0.875rem;
  text-align: center;
}

/* ============================================
   Lightbox（ライトボックス）
   ============================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(5, 8, 15, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

/* 画像コンテナ */
.lightbox__inner {
  position: relative;
  max-width: 92vw;
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox__img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  display: block;
  border-radius: var(--radius);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.85);
  transition: opacity 0.2s ease;
}
.lightbox__img.is-loading { opacity: 0; }

/* ローディングスピナー */
.lightbox__loader {
  position: absolute;
  width: 36px; height: 36px;
  border: 3px solid rgba(255,255,255,0.15);
  border-top-color: var(--clr-primary);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: none;
}
.lightbox__loader.is-active { display: block; }
@keyframes spin { to { transform: rotate(360deg); } }

/* 閉じるボタン */
.lightbox__close {
  position: fixed;
  top: 1.25rem; right: 1.25rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--clr-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--ease);
  z-index: 1;
}
.lightbox__close:hover { background: rgba(255,255,255,0.18); }

/* 前へ / 次へ */
.lightbox__prev,
.lightbox__next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--clr-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--ease), opacity var(--ease);
  z-index: 1;
}
.lightbox__prev { left: 1.25rem; }
.lightbox__next { right: 1.25rem; }
.lightbox__prev:hover,
.lightbox__next:hover { background: rgba(0, 197, 255, 0.25); }
.lightbox__prev:disabled,
.lightbox__next:disabled { opacity: 0.25; pointer-events: none; }

/* カウンター */
.lightbox__counter {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.15em;
  user-select: none;
}

/* Gallery レスポンシブ */
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 4px; }
  .lightbox__prev { left: 0.5rem; }
  .lightbox__next { right: 0.5rem; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 3px; }
}

/* ============================================
   Page Loader
   ============================================ */
.page-loader {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: #05080F;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.8s cubic-bezier(0.76, 0, 0.24, 1),
              opacity   0.8s ease;
}
.page-loader.is-done {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.page-loader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  position: relative;
}

/* グロー装飾 */
.page-loader__inner::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,197,255,0.1) 0%, transparent 68%);
  pointer-events: none;
  animation: loaderGlow 2s ease-in-out infinite alternate;
}
@keyframes loaderGlow {
  from { transform: scale(0.9); opacity: 0.6; }
  to   { transform: scale(1.1); opacity: 1; }
}

/* ロゴ画像 */
.page-loader__logo-img {
  height: 64px;
  width: auto;
  position: relative;
  animation: loaderLogoIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* テキストロゴ（画像なし時） */
.page-loader__logo-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  position: relative;
  animation: loaderLogoIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.page-loader__logotype {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 10vw, 5rem);
  letter-spacing: 0.06em;
  color: #fff;
}
.page-loader__logotype span {
  color: #00C5FF;
}
.page-loader__sub {
  font-size: clamp(0.55rem, 2vw, 0.7rem);
  letter-spacing: 0.45em;
  color: rgba(255,255,255,0.4);
  margin-top: 0.4rem;
}

@keyframes loaderLogoIn {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0)    scale(1); }
}

/* プログレスバー */
.page-loader__bar-wrap {
  width: 100px;
  height: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.page-loader__bar {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #00C5FF, rgba(0,197,255,0.5));
  border-radius: 2px;
  animation: loaderBar 1.6s 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  box-shadow: 0 0 8px rgba(0,197,255,0.7);
}
@keyframes loaderBar {
  0%   { width: 0%; }
  60%  { width: 75%; }
  100% { width: 100%; }
}
