/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red: #E63946;
  --red-dark: #c1121f;
  --gold: #FFD700;
  --blue-ks: #4fc3f7;
  --dark: #0d0d0d;
  --dark2: #1a1a1a;
  --dark3: #252525;
  --light: #f5f0eb;
  --light2: #ede8e2;
  --text-light: #e8e0d8;
  --text-muted: #9a8f84;
  --white: #ffffff;
  --font-en: 'Oswald', sans-serif;
  --font-jp: 'Noto Sans JP', sans-serif;
  --radius: 10px;
  --shadow: 0 4px 24px rgba(0,0,0,0.3);
  --transition: 0.28s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-jp); background: var(--dark); color: var(--text-light); line-height: 1.8; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; border-radius: var(--radius); }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
strong { font-weight: 700; }

/* ===== LOADER ===== */
#loader {
  position: fixed; inset: 0; background: var(--dark);
  z-index: 9999; display: flex; align-items: center; justify-content: center;
}
.loader-stage { position: relative; width: 220px; height: 260px; display: flex; align-items: center; justify-content: center; }
#target-svg-wrap { width: 200px; height: 200px; opacity: 0; transform: scale(0.85); animation: tgt-in 0.5s ease 0.2s forwards; }
#loader-target { width: 100%; height: 100%; filter: drop-shadow(0 0 20px rgba(230,57,70,0.4)); }
#loader-axe {
  width: 55px; position: absolute; top: -80px; left: 50%; transform: translateX(-50%) rotate(-50deg) scale(1.3);
  opacity: 0; animation: axe-slam 0.9s cubic-bezier(0.22,1,0.36,1) 0.6s forwards;
  filter: drop-shadow(2px 4px 8px rgba(0,0,0,0.8));
}
#loader-impact {
  position: absolute; bottom: -10px; font-family: var(--font-en); font-size: 1.8rem; font-weight: 700;
  color: var(--gold); letter-spacing: 3px; opacity: 0; transform: scale(0.4);
  animation: impact-pop 0.45s cubic-bezier(0.175,0.885,0.32,1.4) 1.35s forwards;
  text-shadow: 0 0 20px rgba(255,215,0,0.7);
  white-space: nowrap;
}
@keyframes tgt-in  { to { opacity:1; transform:scale(1); } }
@keyframes axe-slam {
  0%   { opacity:1; top:-90px; transform:translateX(-50%) rotate(-50deg) scale(1.3); }
  75%  { opacity:1; top:-8px;  transform:translateX(-50%) rotate(5deg) scale(1); }
  85%  { top:-4px;  transform:translateX(-50%) rotate(-3deg) scale(0.97); }
  100% { opacity:1; top:-6px;  transform:translateX(-50%) rotate(0deg) scale(1); }
}
@keyframes impact-pop { to { opacity:1; transform:scale(1); } }

/* ===== HEADER ===== */
#main-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 62px; padding: 0 1.5rem;
  background: rgba(13,13,13,0.93); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(230,57,70,0.18);
  transition: background var(--transition);
}
#main-header.scrolled { background: rgba(13,13,13,0.99); }

.header-inner { max-width: 1200px; width: 100%; margin: 0 auto; height: 100%; display: flex; align-items: center; justify-content: space-between; }

.logo { display: flex; align-items: center; gap: 0.45rem; font-family: var(--font-en); font-size: 1.25rem; font-weight: 700; letter-spacing: 2px; color: var(--white); }
.logo-icon { font-size: 1.4rem; }
.logo-jp { color: var(--red); }
.logo-stack { display: flex; flex-direction: column; line-height: 1.1; }
.logo-tagline { font-family: var(--font-jp); font-size: 0.58rem; font-weight: 700; color: var(--gold); letter-spacing: 2px; margin-top: 1px; }

#main-nav ul { display: flex; gap: 0; }
#main-nav ul li a {
  font-size: 0.82rem; padding: 0.4rem 0.65rem; border-radius: 5px;
  color: var(--text-muted); transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
#main-nav ul li a:hover,
#main-nav ul li a.nav-active { color: var(--white); }
#main-nav ul li a.nav-active { background: rgba(230,57,70,0.18); color: var(--red); }

#menu-btn { display: none; background: none; border: none; color: var(--white); font-size: 1.5rem; cursor: pointer; }

/* ===== HERO (index) ===== */
#hero {
  position: relative; height: 100vh; min-height: 580px;
  display: flex; align-items: center; overflow: hidden;
  padding: 0; background: var(--dark);
}
.hero-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 40%;
  border-radius: 0; z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(0,0,0,0.82) 0%, rgba(20,5,5,0.72) 60%, rgba(26,10,5,0.55) 100%);
}
.howto-step-body.text-only { grid-template-columns: 1fr; }
@keyframes axe-arrive {
  from { opacity:0; transform: translateY(-120px) rotate(-40deg) scale(1.1); }
  70%  { transform: translateY(8px) rotate(3deg); }
  to   { opacity:1; transform: translateY(0) rotate(0deg) scale(1); }
}
@keyframes spark-pop { to { opacity: 1; } }
@keyframes dash-travel { to { stroke-dashoffset: 0; } }

.hero-content {
  position: relative; z-index: 2; padding: 2rem 2rem 2rem 6vw;
  max-width: 600px;
}
.hero-badge {
  display: inline-block; background: var(--gold); color: #1a1a1a;
  font-size: 0.8rem; font-weight: 700; padding: 0.3rem 0.9rem;
  border-radius: 20px; margin-bottom: 1.2rem; letter-spacing: 1px;
  animation: fade-up 0.7s ease 0.3s both;
}
.hero-title {
  font-family: var(--font-en); font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700; line-height: 1.05; color: var(--white);
  text-shadow: 0 3px 20px rgba(0,0,0,0.9);
  animation: fade-up 0.8s ease 0.5s both;
}
.hero-accent { color: var(--red); }
.hero-subtitle {
  font-size: 1rem; color: rgba(255,255,255,0.85); margin: 1.2rem 0 1.8rem;
  line-height: 1.9; animation: fade-up 0.8s ease 0.7s both;
}
.hero-subtitle strong { color: var(--gold); }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; animation: fade-up 0.8s ease 0.9s both; }

@keyframes fade-up { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block; padding: 0.85rem 2rem; background: var(--red); color: var(--white);
  font-family: var(--font-en); font-size: 0.95rem; font-weight: 700; letter-spacing: 1px;
  border-radius: 5px; transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 18px rgba(230,57,70,0.4);
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(230,57,70,0.55); }

.btn-secondary {
  display: inline-block; padding: 0.85rem 2rem; background: transparent; color: var(--white);
  font-family: var(--font-en); font-size: 0.95rem; font-weight: 700; letter-spacing: 1px;
  border: 2px solid rgba(255,255,255,0.35); border-radius: 5px;
  transition: border-color var(--transition), background var(--transition);
}
.btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.btn-outline-red {
  display: inline-block; padding: 0.55rem 1.2rem; border: 1.5px solid var(--red);
  color: var(--red); border-radius: 5px; font-size: 0.85rem;
  transition: background var(--transition), color var(--transition);
}
.btn-outline-red:hover { background: var(--red); color: white; }

/* ===== AD ===== */
.ad-wrap { background: var(--dark2); padding: 1.25rem; text-align: center; border-top: 1px solid #222; border-bottom: 1px solid #222; }
.ad-placeholder { display: inline-block; padding: 0.9rem 3rem; border: 2px dashed #333; border-radius: 6px; color: var(--text-muted); font-size: 0.82rem; font-family: var(--font-en); letter-spacing: 1px; }

/* ===== SECTIONS ===== */
.section { padding: 5rem 1.5rem; }
.section-dark { background: var(--dark); }
.section-light { background: var(--light); color: #1a1a1a; }
.section-red { background: var(--red); color: var(--white); }

.container { max-width: 1100px; margin: 0 auto; }
.container-narrow { max-width: 820px; margin: 0 auto; }

.section-header { text-align: center; margin-bottom: 3rem; }
.section-label { font-family: var(--font-en); font-size: 0.72rem; letter-spacing: 6px; color: var(--red); display: block; margin-bottom: 0.4rem; }
.section-light .section-label { color: var(--red); }
.section-red .section-label { color: rgba(255,255,255,0.7); }
.section-title { font-family: var(--font-en); font-size: clamp(1.7rem, 4vw, 2.8rem); font-weight: 700; letter-spacing: 1px; line-height: 1.25; }
.section-light .section-title { color: #1a1a1a; }
.section-red .section-title { color: white; }
.title-bar { width: 50px; height: 3px; background: var(--red); margin: 0.9rem auto 0; border-radius: 2px; }
.title-bar-white { background: rgba(255,255,255,0.6); }
.section-desc { margin-top: 0.9rem; color: var(--text-muted); font-size: 0.93rem; max-width: 580px; margin-left: auto; margin-right: auto; }
.section-light .section-desc { color: #666; }

/* ===== BEGINNER BANNER ===== */
.beginner-banner {
  display: flex; align-items: flex-start; gap: 1rem;
  background: #fffbe6; border: 2px solid var(--gold); border-radius: var(--radius);
  padding: 1.25rem 1.5rem; margin-bottom: 2.5rem; color: #4a3a00;
}
.banner-icon { font-size: 1.8rem; flex-shrink: 0; line-height: 1; }
.beginner-banner strong { font-weight: 700; display: block; margin-bottom: 0.2rem; }

/* ===== INDEX: INTRO ===== */
.intro-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 3rem; align-items: start; }
.lead-text { font-size: 1.2rem; font-weight: 700; margin-bottom: 1rem; color: #1a1a1a; }
.intro-text p { font-size: 0.95rem; line-height: 1.9; margin-bottom: 0.9rem; color: #333; }
.intro-text strong { color: var(--red-dark); }

.point-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.5rem; }
.point-card { background: var(--white); border-radius: var(--radius); padding: 1.2rem; border-top: 3px solid var(--red); box-shadow: 0 2px 10px rgba(0,0,0,0.07); }
.point-icon { font-size: 1.8rem; display: block; margin-bottom: 0.5rem; }
.point-card h3 { font-size: 0.92rem; font-weight: 700; margin-bottom: 0.4rem; color: #1a1a1a; }
.point-card p { font-size: 0.83rem; color: #555; line-height: 1.65; }

.intro-target-wrap { display: flex; flex-direction: column; align-items: center; }
.target-explain-svg { width: 100%; max-width: 280px; filter: drop-shadow(0 8px 24px rgba(0,0,0,0.25)); }
.svg-note { font-size: 0.82rem; color: #777; text-align: center; margin-top: 0.75rem; }

/* ===== INDEX: NAV CARDS ===== */
.nav-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.nav-card {
  background: var(--dark2); border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius); padding: 1.5rem 1.25rem;
  position: relative; display: flex; flex-direction: column;
  transition: border-color var(--transition), transform var(--transition), background var(--transition);
}
.nav-card:hover { border-color: var(--red); transform: translateY(-5px); background: var(--dark3); }
.nav-card-featured { border-color: var(--gold); background: #1a1500; }
.nav-card-featured:hover { border-color: var(--gold); background: #211c00; }
.nav-card-badge { position: absolute; top: -10px; left: 50%; transform: translateX(-50%); background: var(--gold); color: #1a1a1a; font-size: 0.7rem; font-weight: 700; padding: 0.2rem 0.7rem; border-radius: 12px; white-space: nowrap; }
.nav-card-icon { font-size: 2.2rem; margin-bottom: 0.7rem; }
.nav-card h3 { font-size: 0.97rem; font-weight: 700; margin-bottom: 0.5rem; }
.nav-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.65; flex: 1; }
.nav-card-arrow { font-size: 1rem; color: var(--red); margin-top: 0.8rem; display: block; }

/* ===== INDEX: FACTS ===== */
.fact-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; margin-bottom: 2.5rem; }
.fact-box { background: var(--white); border-radius: var(--radius); padding: 1.5rem; text-align: center; box-shadow: 0 2px 10px rgba(0,0,0,0.07); }
.fact-num { font-family: var(--font-en); font-size: 2.2rem; font-weight: 700; color: var(--red); line-height: 1.1; display: block; }
.fact-num span { font-size: 1rem; font-weight: 400; }
.fact-highlight { font-size: 2.5rem; }
.fact-box p { font-size: 0.82rem; color: #555; line-height: 1.6; margin-top: 0.4rem; }
.cta-center { text-align: center; }
.cta-center p { font-size: 0.95rem; color: #555; margin-bottom: 1.25rem; }

/* ===== FAQ ===== */
.faq-list { }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
.section-light .faq-item { border-bottom-color: rgba(0,0,0,0.1); }
.faq-question {
  width: 100%; text-align: left; background: none; border: none;
  padding: 1.1rem 2.5rem 1.1rem 0; font-family: var(--font-jp); font-size: 0.95rem;
  font-weight: 700; color: var(--text-light); cursor: pointer; position: relative;
  transition: color var(--transition); line-height: 1.5;
}
.section-light .faq-question { color: #1a1a1a; }
.faq-question:hover { color: var(--red); }
.faq-question::after { content: '+'; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-size: 1.4rem; font-weight: 300; color: var(--red); transition: transform var(--transition); }
.faq-question.open::after { transform: translateY(-50%) rotate(45deg); }
.faq-answer { overflow: hidden; max-height: 0; transition: max-height 0.4s ease, padding 0.3s ease; }
.faq-answer.open { max-height: 250px; padding-bottom: 1.1rem; }
.faq-answer p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.85; }
.section-light .faq-answer p { color: #555; }

/* ===== PAGE HERO (subpages) ===== */
.page-hero {
  position: relative; min-height: 260px; display: flex; align-items: center;
  overflow: hidden; margin-top: 62px;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a0808 70%, #200a0a 100%);
  border-bottom: 1px solid rgba(230,57,70,0.2);
}
.page-hero-rules  { background: linear-gradient(135deg, #0d0d0d 0%, #1a0a08 60%, #220c08 100%); }
.page-hero-howto  { background: linear-gradient(135deg, #0d0d0d 0%, #0a101a 60%, #0c1520 100%); }
.page-hero-venues { background: linear-gradient(135deg, #0d0d0d 0%, #0a1a10 60%, #0c2014 100%); }
.page-hero-comp   { background: linear-gradient(135deg, #0d0d0d 0%, #1a1508 60%, #20190a 100%); }
.page-hero-gear   { background: linear-gradient(135deg, #0d0d0d 0%, #1a0a0a 60%, #1a0808 100%); }

.page-hero-content { position: relative; z-index: 2; padding: 2.5rem 2rem 2.5rem 8vw; max-width: 700px; }
.page-hero-label { font-family: var(--font-en); font-size: 0.72rem; letter-spacing: 6px; color: var(--red); display: block; margin-bottom: 0.5rem; }
.page-hero-title { font-family: var(--font-en); font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; color: var(--white); line-height: 1.15; }
.page-hero-sub { font-size: 0.95rem; color: rgba(255,255,255,0.75); margin-top: 0.8rem; line-height: 1.85; }
.page-hero-bg { position: absolute; right: 0; top: 0; height: 100%; width: auto; opacity: 1; pointer-events: none; }

/* ===== BREADCRUMB ===== */
.breadcrumb-wrap { background: var(--dark2); border-bottom: 1px solid #222; padding: 0.6rem 1.5rem; font-size: 0.82rem; color: var(--text-muted); }
.breadcrumb-wrap .container { display: flex; align-items: center; gap: 0.4rem; }
.breadcrumb-wrap a { color: var(--text-muted); transition: color var(--transition); }
.breadcrumb-wrap a:hover { color: var(--red); }
.bc-sep { color: #444; }

/* ===== RULES PAGE ===== */
.scoring-layout { display: grid; grid-template-columns: auto 1fr; gap: 3rem; align-items: start; }
.scoring-svg-wrap { }
.scoring-svg { width: 320px; filter: drop-shadow(0 8px 30px rgba(230,57,70,0.3)); }

.scoring-subtitle { font-family: var(--font-en); font-size: 1.1rem; font-weight: 700; margin-bottom: 1rem; color: #1a1a1a; }
.score-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.score-table thead tr { background: #1a1a1a; color: white; }
.score-table th { padding: 0.7rem 1rem; text-align: left; font-family: var(--font-en); font-size: 0.78rem; letter-spacing: 1px; }
.score-table td { padding: 0.65rem 1rem; border-bottom: 1px solid #e8e0d8; color: #333; }
.score-table tr:hover td { background: #f9f5f0; }
.row-highlight td { background: #fff8e0 !important; }
.row-killshot td { background: #e8f4ff !important; }
.score-val { font-family: var(--font-en); font-weight: 700; font-size: 1rem; color: #333; }
.score-big { font-size: 1.2rem; color: var(--red); }
.dot { display: inline-block; width: 12px; height: 12px; border-radius: 50%; vertical-align: middle; margin-right: 4px; }
.dot-dark { background: #1a1a1a; }
.dot-red  { background: #E63946; }
.dot-gold { background: #FFD700; }
.dot-blue { background: #4fc3f7; }

.score-note-box { background: #e8f4ff; border-left: 4px solid var(--blue-ks); border-radius: 0 var(--radius) var(--radius) 0; padding: 1.25rem 1.5rem; margin: 1.5rem 0; }
.score-note-box h4 { font-size: 0.95rem; font-weight: 700; color: #1a1a1a; margin-bottom: 0.6rem; }
.score-note-box p { font-size: 0.88rem; color: #333; margin-bottom: 0.6rem; }
.text-blue { color: #0288d1; font-weight: 700; }
.score-note-box ul { padding-left: 0.5rem; }
.score-note-box ul li { font-size: 0.86rem; color: #444; padding: 0.2rem 0; }

.max-score-box { background: #1a1a1a; border-radius: var(--radius); padding: 1.25rem 1.5rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }
.max-label { font-size: 0.82rem; color: var(--text-muted); font-family: var(--font-en); letter-spacing: 1px; }
.max-num { font-family: var(--font-en); font-size: 2.5rem; font-weight: 700; color: var(--gold); line-height: 1; }
.max-num small { font-size: 1rem; }
.max-desc { font-size: 0.82rem; color: var(--text-muted); }

/* Game format */
.format-flow { display: flex; flex-direction: column; gap: 0; margin-bottom: 2.5rem; }
.flow-step { display: grid; grid-template-columns: 54px 1fr; gap: 1.25rem; align-items: start; padding: 1.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.flow-num { width: 48px; height: 48px; background: var(--red); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-en); font-size: 1.3rem; font-weight: 700; color: white; flex-shrink: 0; }
.flow-content h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; }
.flow-content p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.75; }
.flow-content strong { color: var(--text-light); }
.flow-arrow { text-align: center; font-size: 1.2rem; color: var(--red); padding: 0.2rem 0; margin-left: 24px; }

.rule-tips-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.rule-tip { background: var(--dark2); border-radius: var(--radius); padding: 1.25rem; display: flex; gap: 1rem; align-items: flex-start; }
.rule-tip-icon { font-size: 1.5rem; flex-shrink: 0; }
.rule-tip strong { display: block; font-size: 0.92rem; margin-bottom: 0.3rem; }
.rule-tip p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }
.rule-tip strong { color: var(--text-light); }

/* Axe specs */
.axe-specs-layout { display: grid; grid-template-columns: 200px 1fr; gap: 3rem; align-items: start; }
.axe-diagram-svg { width: 200px; filter: drop-shadow(0 4px 16px rgba(0,0,0,0.2)); }
.spec-item { display: flex; justify-content: space-between; align-items: center; padding: 0.9rem 0; border-bottom: 1px solid #e0d8d0; }
.spec-label { font-size: 0.88rem; color: #666; }
.spec-val { font-size: 0.95rem; font-weight: 700; color: #1a1a1a; text-align: right; }
.spec-val small { font-size: 0.75rem; font-weight: 400; color: #888; }
.spec-item-note .spec-val { color: var(--red-dark); }
.rental-box { background: #fffbe6; border: 1.5px solid var(--gold); border-radius: var(--radius); padding: 1.25rem 1.5rem; margin-top: 1.5rem; }
.rental-box h4 { font-size: 0.95rem; font-weight: 700; color: #4a3a00; margin-bottom: 0.5rem; }
.rental-box p { font-size: 0.88rem; color: #5a4a10; line-height: 1.75; margin-bottom: 0.9rem; }

/* ===== HOW TO PAGE ===== */
.howto-overview { display: flex; flex-direction: column; gap: 1rem; }
.overview-item { display: flex; gap: 1rem; align-items: flex-start; background: var(--white); border-radius: var(--radius); padding: 1.25rem; }
.ov-icon { font-size: 1.8rem; flex-shrink: 0; }
.overview-item strong { display: block; font-size: 0.97rem; margin-bottom: 0.3rem; color: #1a1a1a; }
.overview-item p { font-size: 0.87rem; color: #555; line-height: 1.7; }

.howto-step { border-bottom: 1px solid rgba(255,255,255,0.07); padding: 2.5rem 0; }
.howto-step-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.8rem; }
.step-badge { background: var(--red); color: white; font-family: var(--font-en); font-size: 0.72rem; font-weight: 700; letter-spacing: 3px; padding: 0.3rem 0.8rem; border-radius: 20px; flex-shrink: 0; }
.howto-step-header h3 { font-size: 1.25rem; font-weight: 700; }
.howto-step-body { display: grid; grid-template-columns: 280px 1fr; gap: 2rem; align-items: start; }
.howto-svg-wrap { display: flex; justify-content: center; }
.howto-svg { width: 180px; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5)); }
.howto-step-text h4 { font-size: 0.97rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--gold); }
.howto-step-text p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.85; margin-bottom: 1rem; }
.howto-step-text strong { color: var(--text-light); }
.step-method { background: var(--dark2); border-radius: var(--radius); padding: 1rem 1.25rem; margin-bottom: 0.75rem; }

.tip-box { background: rgba(230,57,70,0.1); border-left: 3px solid var(--red); padding: 0.75rem 1rem; border-radius: 0 5px 5px 0; font-size: 0.87rem; color: var(--text-muted); margin-top: 0.75rem; }
.section-light .tip-box { background: #fff5f5; color: #555; }
.ng-box { background: rgba(0,0,0,0.2); border-left: 3px solid #666; padding: 0.75rem 1rem; border-radius: 0 5px 5px 0; font-size: 0.87rem; color: var(--text-muted); margin-top: 0.5rem; }
.section-light .ng-box { background: #f5f5f5; color: #666; }

.stance-options { display: flex; gap: 1rem; margin: 0.75rem 0; }
.stance-opt { background: var(--dark2); border-radius: 6px; padding: 0.75rem 1rem; flex: 1; }
.stance-label { font-size: 0.82rem; font-weight: 700; display: block; margin-bottom: 0.25rem; color: var(--gold); }
.stance-opt p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

.check-list { padding-left: 0; margin: 0.75rem 0; }
.check-list li { font-size: 0.88rem; color: var(--text-muted); padding: 0.25rem 0; }

.release-timing { display: flex; flex-direction: column; gap: 0.5rem; margin: 1rem 0; }
.timing-item { padding: 0.75rem 1rem; border-radius: 6px; font-size: 0.87rem; }
.timing-item span { font-weight: 700; display: block; margin-bottom: 0.2rem; }
.timing-early { background: rgba(255,80,80,0.12); border-left: 3px solid #ff5050; }
.timing-early span { color: #ff6060; }
.timing-good  { background: rgba(80,200,80,0.12); border-left: 3px solid #50c850; }
.timing-good  span { color: #50c850; }
.timing-late  { background: rgba(80,80,255,0.12); border-left: 3px solid #6080ff; }
.timing-late  span { color: #6080ff; }
.timing-item p { color: var(--text-muted); margin: 0; }

/* Trouble shooting */
.trouble-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 2rem; }
.trouble-card { background: var(--white); border-radius: var(--radius); padding: 1.5rem; border-top: 3px solid var(--red); }
.trouble-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.trouble-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.5rem; color: #1a1a1a; }
.trouble-cause { font-size: 0.83rem; color: #888; margin-bottom: 0.35rem; }
.trouble-fix { font-size: 0.88rem; color: #333; font-weight: 600; }
.practice-tip-box { background: #fffbe6; border: 2px solid var(--gold); border-radius: var(--radius); padding: 1.5rem 2rem; text-align: center; }
.practice-tip-box h3 { font-size: 1.05rem; font-weight: 700; color: #4a3a00; margin-bottom: 0.6rem; }
.practice-tip-box p { font-size: 0.9rem; color: #5a4a10; }

/* ===== VENUES PAGE ===== */
.venue-note { background: #fffbe6; border: 1.5px solid var(--gold); border-radius: var(--radius); padding: 1rem 1.5rem; margin-bottom: 2rem; font-size: 0.9rem; color: #4a3a00; }
.venue-tabs { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.vtab { background: var(--light2); border: 1.5px solid #ddd; border-radius: 20px; padding: 0.4rem 1.1rem; font-size: 0.85rem; cursor: pointer; transition: background var(--transition), color var(--transition), border-color var(--transition); font-family: var(--font-jp); }
.vtab.active, .vtab:hover { background: var(--red); border-color: var(--red); color: white; }
.venue-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.venue-card { background: var(--white); border-radius: var(--radius); padding: 1.5rem; border: 1.5px solid #e8e0d8; transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition); display: flex; flex-direction: column; gap: 0.6rem; }
.venue-card:hover { border-color: var(--red); transform: translateY(-3px); box-shadow: var(--shadow); }
.venue-card-add { border-style: dashed; border-color: var(--gold); }
.venue-card-add:hover { border-color: var(--gold); }
.venue-region-tag { display: inline-block; background: var(--red); color: white; font-size: 0.72rem; font-family: var(--font-en); letter-spacing: 1px; padding: 0.2rem 0.7rem; border-radius: 4px; width: fit-content; }
.venue-card h3 { font-size: 0.97rem; font-weight: 700; color: #1a1a1a; }
.venue-card p { font-size: 0.86rem; color: #555; line-height: 1.7; flex: 1; }
.venue-info-row { display: flex; gap: 1rem; font-size: 0.8rem; color: #888; }
.btn-venue { display: inline-block; padding: 0.5rem 1.1rem; background: #1a1a1a; color: white; border-radius: 5px; font-size: 0.82rem; text-align: center; transition: background var(--transition); margin-top: 0.5rem; }
.btn-venue:hover { background: var(--red); }
.btn-venue-gold { background: var(--gold); color: #1a1a1a; }
.btn-venue-gold:hover { background: #e6c200; }

/* Activity cards (throwing activities) */
.activity-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
.activity-card { background: rgba(255,255,255,0.06); border: 1.5px solid rgba(255,255,255,0.12); border-radius: var(--radius); padding: 1.75rem 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; transition: border-color var(--transition), transform var(--transition); }
.activity-card:hover { border-color: var(--red); transform: translateY(-3px); }
.activity-icon { font-size: 2.5rem; }
.activity-card h3 { font-size: 1.05rem; font-weight: 700; color: #fff; }
.activity-card p { font-size: 0.86rem; color: rgba(255,255,255,0.7); line-height: 1.75; flex: 1; }
.activity-tag { display: inline-block; padding: 0.25rem 0.75rem; border-radius: 20px; font-size: 0.75rem; font-weight: 700; background: var(--red); color: white; }
.activity-tag-blue { background: var(--blue-ks, #1565C0); }
@media (max-width: 768px) { .activity-cards { grid-template-columns: 1fr; } }

/* Gear Rakuten layout */
.gear-rakuten-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; margin-top: 1rem; }
.gear-rakuten-section { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 1.75rem; display: flex; flex-direction: column; gap: 1rem; }
.gear-rakuten-title { font-size: 1.1rem; font-weight: 700; color: #fff; font-family: 'Oswald', sans-serif; }
.gear-rakuten-desc { font-size: 0.87rem; color: rgba(255,255,255,0.7); line-height: 1.75; }
.rakuten-widget-stack { display: flex; flex-direction: column; gap: 1rem; }
.rakuten-widget-stack table { max-width: 100%; }
.rakuten-widget-stack > table > tbody > tr > td > div { width: 100% !important; max-width: 504px; }
@media (max-width: 1100px) { .gear-rakuten-grid { grid-template-columns: 1fr; } }
@media (max-width: 540px) { .rakuten-widget-stack > table { overflow-x: auto; display: block; } }

/* Safety grid */
.safety-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.safety-item { background: rgba(0,0,0,0.2); border: 1px solid rgba(255,255,255,0.18); border-radius: var(--radius); padding: 1.5rem 1.25rem; text-align: center; transition: background var(--transition); }
.safety-item:hover { background: rgba(0,0,0,0.35); }
.safety-icon { font-size: 2rem; margin-bottom: 0.65rem; }
.safety-item h3 { font-size: 0.92rem; font-weight: 700; margin-bottom: 0.4rem; }
.safety-item p { font-size: 0.83rem; line-height: 1.7; opacity: 0.88; }
.safety-item strong { font-weight: 700; }

/* Timeline */
.flow-timeline { display: flex; flex-direction: column; gap: 0; }
.timeline-item { display: grid; grid-template-columns: 48px 1fr; gap: 1.25rem; padding: 1.4rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); position: relative; }
.tl-num { width: 44px; height: 44px; background: var(--dark2); border: 2px solid var(--red); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-en); font-size: 1.1rem; font-weight: 700; color: var(--red); flex-shrink: 0; }
.tl-content h3 { font-size: 0.97rem; font-weight: 700; margin-bottom: 0.3rem; }
.tl-content p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.75; }

/* ===== COMPETITION PAGE ===== */
.comp-cards { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 1.5rem; }
.comp-card-big, .comp-card-sm { background: var(--white); border-radius: var(--radius); padding: 2rem 1.75rem; color: #1a1a1a; }
.comp-card-big { border-top: 4px solid var(--red); }
.comp-org-logo { font-family: var(--font-en); font-size: 2.8rem; font-weight: 700; color: var(--red); line-height: 1; margin-bottom: 0.4rem; }
.comp-org-sm { font-size: 2rem; }
.comp-card-big h3, .comp-card-sm h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.3rem; }
.comp-org-sub { font-size: 0.82rem; color: #888; margin-bottom: 0.75rem; }
.comp-card-big p, .comp-card-sm p { font-size: 0.87rem; color: #555; line-height: 1.8; margin-bottom: 1.25rem; }
.comp-stats-row { display: flex; gap: 0.75rem; margin-bottom: 1.25rem; }
.comp-stat { flex: 1; background: var(--light2); border-radius: 5px; padding: 0.5rem; text-align: center; font-size: 0.78rem; color: #555; }
.comp-stat span { display: block; font-family: var(--font-en); font-size: 1.3rem; font-weight: 700; color: var(--red); line-height: 1.2; }
.btn-comp-link { display: inline-block; padding: 0.5rem 1.1rem; border: 1.5px solid #ccc; border-radius: 5px; font-size: 0.82rem; color: #555; transition: border-color var(--transition), color var(--transition); }
.btn-comp-link:hover { border-color: var(--red); color: var(--red); }
.olympic-box { background: var(--dark2); border: 1px solid rgba(255,215,0,0.25); border-radius: var(--radius); padding: 2rem; margin-bottom: 2rem; }
.olympic-box p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.85; margin-bottom: 0.9rem; }
.olympic-quote { font-family: var(--font-en); font-size: 1.1rem; color: var(--gold); text-align: center; margin-top: 1rem; }
.comp-format-box { background: var(--dark2); border-radius: var(--radius); padding: 1.75rem; }
.comp-format-box h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.75rem; }
.comp-format-desc { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1rem; }
.comp-format-list { padding-left: 0; }
.comp-format-list li { font-size: 0.88rem; color: var(--text-muted); padding: 0.4rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); line-height: 1.7; }
.comp-format-list strong { color: var(--text-light); }

/* ===== GEAR PAGE ===== */
.gear-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.gear-card { background: var(--dark2); border: 1px solid rgba(255,255,255,0.07); border-radius: var(--radius); overflow: hidden; transition: border-color var(--transition), transform var(--transition); display: flex; }
.gear-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.gear-card-icon { font-size: 2.2rem; padding: 1.5rem 1.25rem; background: rgba(0,0,0,0.2); display: flex; align-items: flex-start; }
.gear-card-body { padding: 1.25rem 1.25rem 1.25rem 0.5rem; flex: 1; display: flex; flex-direction: column; }
.gear-card-body h3 { font-size: 0.97rem; font-weight: 700; margin-bottom: 0.3rem; }
.gear-level { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 0.6rem; }
.gear-card-body p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 0.5rem; }
.gear-brands { color: rgba(255,215,0,0.7) !important; font-size: 0.8rem !important; }
.gear-price-range { font-size: 0.82rem; color: var(--text-light); font-weight: 700; margin-bottom: 0.75rem; }
.btn-amazon { display: inline-block; padding: 0.55rem 1.1rem; background: linear-gradient(135deg, #ff9900, #ffb733); color: #1a1a1a; border-radius: 5px; font-size: 0.82rem; font-weight: 700; transition: opacity var(--transition); text-align: center; margin-top: auto; }
.btn-amazon:hover { opacity: 0.85; }

.advice-list { display: flex; flex-direction: column; gap: 0; }
.advice-item { display: grid; grid-template-columns: 54px 1fr; gap: 1.25rem; padding: 1.5rem 0; border-bottom: 1px solid #e0d8d0; align-items: start; }
.advice-num { font-family: var(--font-en); font-size: 1.8rem; font-weight: 700; color: rgba(230,57,70,0.25); line-height: 1; }
.advice-item h3 { font-size: 0.97rem; font-weight: 700; margin-bottom: 0.4rem; color: #1a1a1a; }
.advice-item p { font-size: 0.88rem; color: #555; line-height: 1.75; }
.affiliate-note { display: block; text-align: center; font-size: 0.82rem; color: var(--text-muted); margin-bottom: 0; padding: 0.5rem; }

/* ===== CTA SECTION ===== */
.section-cta { background: var(--dark2); padding: 3rem 1.5rem; text-align: center; border-top: 1px solid rgba(230,57,70,0.2); }
.section-cta p { font-size: 1.05rem; margin-bottom: 1.5rem; color: var(--text-light); }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
#main-footer { background: #080808; border-top: 1px solid rgba(230,57,70,0.18); padding: 3.5rem 1.5rem 2rem; }
.footer-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.footer-logo { font-family: var(--font-en); font-size: 1.2rem; font-weight: 700; margin-bottom: 1.5rem; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 0.4rem 1.25rem; justify-content: center; margin-bottom: 2rem; }
.footer-nav a { font-size: 0.83rem; color: var(--text-muted); transition: color var(--transition); }
.footer-nav a:hover { color: var(--red); }
.footer-disclaimer { background: var(--dark2); border-radius: var(--radius); padding: 1.25rem 1.5rem; text-align: left; margin-bottom: 1.5rem; }
.footer-disclaimer h4 { font-size: 0.83rem; color: var(--gold); margin-bottom: 0.4rem; }
.footer-disclaimer p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.75; }
.footer-ai-note { font-size: 0.75rem; color: #555; margin-bottom: 0.75rem; padding: 0.5rem 0.75rem; background: rgba(255,255,255,0.04); border-radius: 6px; border-left: 3px solid rgba(255,215,0,0.3); }
.footer-copy { font-size: 0.75rem; color: #444; font-family: var(--font-en); letter-spacing: 1px; }

/* ===== BACK TO TOP ===== */
#back-top { position: fixed; bottom: 1.75rem; right: 1.75rem; width: 42px; height: 42px; background: var(--red); color: white; border: none; border-radius: 50%; font-size: 0.9rem; cursor: pointer; opacity: 0; pointer-events: none; transform: translateY(8px); transition: opacity var(--transition), transform var(--transition); z-index: 50; box-shadow: 0 4px 14px rgba(230,57,70,0.4); }
#back-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
#back-top:hover { background: var(--red-dark); }

/* ===== SUBPAGE margin-top ===== */
body.subpage #main-header + * { /* already handled by page-hero margin-top */ }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .nav-cards { grid-template-columns: repeat(3, 1fr); }
  .comp-cards { grid-template-columns: 1fr; }
  .scoring-layout { grid-template-columns: 1fr; }
  .scoring-svg { width: 260px; }
}
@media (max-width: 900px) {
  #main-nav { display: none; position: absolute; top: 62px; left: 0; right: 0; background: rgba(13,13,13,0.99); padding: 0.75rem 1rem; border-bottom: 1px solid #222; }
  #main-nav.open { display: block; }
  #main-nav ul { flex-direction: column; gap: 0; }
  #main-nav ul li a { display: block; padding: 0.8rem 1rem; font-size: 0.95rem; border-radius: 5px; }
  #menu-btn { display: block; }
  .intro-grid { grid-template-columns: 1fr; }
  .point-cards { grid-template-columns: 1fr; }
  .nav-cards { grid-template-columns: repeat(2, 1fr); }
  .fact-row { grid-template-columns: repeat(2, 1fr); }
  .howto-step-body { grid-template-columns: 1fr; }
  .howto-svg-wrap { margin-bottom: 1rem; }
  .axe-specs-layout { grid-template-columns: 1fr; }
  .safety-grid { grid-template-columns: repeat(2, 1fr); }
  .venue-grid { grid-template-columns: repeat(2, 1fr); }
  .gear-grid { grid-template-columns: repeat(2, 1fr); }
  .rule-tips-grid { grid-template-columns: 1fr; }
  .trouble-grid { grid-template-columns: 1fr; }
  .hero-content { padding: 2rem; }
}
@media (max-width: 600px) {
  .section { padding: 3.5rem 1.25rem; }
  .nav-cards { grid-template-columns: 1fr 1fr; }
  .fact-row { grid-template-columns: 1fr 1fr; }
  .venue-grid { grid-template-columns: 1fr; }
  .gear-grid { grid-template-columns: 1fr; }
  .safety-grid { grid-template-columns: 1fr 1fr; }
  .scoring-svg { width: 220px; margin: 0 auto; display: block; }
  .comp-stats-row { flex-wrap: wrap; }
  .hero-title { font-size: 2.5rem; }
  .page-hero-content { padding: 2rem 1.25rem; }
  .cta-btns { flex-direction: column; align-items: center; }
  .stance-options { flex-direction: column; }
  .release-timing .timing-item { }
  .activity-cards { grid-template-columns: 1fr; }
  .gear-rakuten-grid { grid-template-columns: 1fr; }
  .about-intro-grid { grid-template-columns: 1fr; }
  .popular-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .safety-stat-cards { grid-template-columns: 1fr 1fr; }
  .safety-measures-grid { grid-template-columns: 1fr; }
  .japan-stat-row { flex-direction: column; gap: 1rem; }
  .compare-table { font-size: 0.78rem; }
  .faq-attire-grid { grid-template-columns: 1fr; }
  .faq-more-links { grid-template-columns: 1fr; }
}

/* ===== 体験の流れ ===== */
.flow-steps { display: flex; align-items: flex-start; gap: 0; margin-top: 2.5rem; flex-wrap: wrap; }
.flow-step { flex: 1; min-width: 160px; background: white; border-radius: var(--radius); padding: 1.5rem 1.25rem; text-align: center; box-shadow: 0 4px 16px rgba(0,0,0,0.07); position: relative; }
.flow-step-num { font-family: var(--font-en); font-size: 0.72rem; font-weight: 700; color: var(--red); letter-spacing: 2px; margin-bottom: 0.4rem; }
.flow-step-icon { font-size: 2rem; margin-bottom: 0.6rem; }
.flow-step h3 { font-size: 0.93rem; font-weight: 700; color: #1a1a1a; margin-bottom: 0.5rem; }
.flow-step p { font-size: 0.81rem; color: #555; line-height: 1.75; }
.flow-step-arrow { font-size: 2rem; color: rgba(230,57,70,0.3); padding: 0 0.5rem; align-self: center; flex-shrink: 0; font-weight: 700; }
.flow-tip { margin-top: 1.75rem; background: #fff8e1; border-left: 4px solid #f59e0b; border-radius: var(--radius); padding: 1rem 1.25rem; font-size: 0.87rem; color: #555; }

/* ===== こんな方におすすめ ===== */
.recommend-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 2rem; }
.recommend-card { background: rgba(255,255,255,0.05); border-radius: var(--radius); padding: 1.75rem 1.5rem; border: 1px solid rgba(255,255,255,0.08); transition: border-color var(--transition), background var(--transition); }
.recommend-card:hover { border-color: rgba(230,57,70,0.35); background: rgba(255,255,255,0.08); }
.recommend-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.recommend-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--text-light); margin-bottom: 0.5rem; }
.recommend-card p { font-size: 0.83rem; color: rgba(255,255,255,0.65); line-height: 1.8; margin-bottom: 0.75rem; }
.recommend-tag { display: inline-block; background: rgba(230,57,70,0.2); color: var(--red); font-size: 0.72rem; font-weight: 700; padding: 0.2rem 0.65rem; border-radius: 20px; }

/* ===== PHOTO GALLERY (index.html) ===== */
.photo-gallery-section { padding-bottom: 3rem; }
.photo-gallery-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: auto auto; gap: 0.75rem; margin-top: 2rem; }
.photo-gallery-large { grid-row: 1 / 3; }
.photo-gallery-item { position: relative; border-radius: var(--radius); overflow: hidden; background: #111; }
.photo-gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; min-height: 180px; }
.photo-gallery-large img { min-height: 380px; }
.photo-gallery-item:hover img { transform: scale(1.04); }
.photo-gallery-caption { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,0.75)); color: white; font-size: 0.78rem; padding: 1.5rem 0.75rem 0.6rem; line-height: 1.4; }
.photo-credit { text-align: right; font-size: 0.75rem; color: var(--text-muted); margin-top: 0.5rem; }
.photo-credit a { color: var(--text-muted); text-decoration: underline; }

/* ===== ABOUT PAGE PHOTOS ===== */
.about-photo-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }
.about-photo-item { border-radius: var(--radius); overflow: hidden; background: white; box-shadow: 0 4px 16px rgba(0,0,0,0.1); }
.about-photo-item img { width: 100%; height: 220px; object-fit: cover; display: block; transition: transform 0.4s ease; }
.about-photo-item:hover img { transform: scale(1.04); }
.about-photo-cap { font-size: 0.8rem; color: #666; padding: 0.6rem 0.75rem; text-align: center; line-height: 1.5; }

/* ===== HOWTO PHOTOS ===== */
.howto-step-photo { flex-shrink: 0; width: 260px; }
.howto-step-photo img { width: 100%; height: 200px; object-fit: cover; border-radius: var(--radius); display: block; }
.howto-photo-cap { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.4rem; text-align: center; line-height: 1.4; }

/* ===== SAFETY PHOTO ===== */
.safety-intro-photo { margin-top: 1.5rem; border-radius: var(--radius); overflow: hidden; }
.safety-intro-photo img { width: 100%; height: 300px; object-fit: cover; display: block; }

/* ===== VENUE HERO PHOTO ===== */
.venue-hero-photo { margin-bottom: 2rem; border-radius: var(--radius); overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,0.15); }
.venue-hero-photo img { width: 100%; height: 320px; object-fit: cover; display: block; }
.venue-hero-photo .photo-credit { padding: 0.35rem 0; }

/* ===== PAGE HERO VARIANTS (New Pages) ===== */
.page-hero-about { background: linear-gradient(135deg, #0d0d0d 0%, #1a0a0a 50%, #1a0505 100%); }
.page-hero-safety { background: linear-gradient(135deg, #0a0d1a 0%, #0d1a2a 50%, #091a0d 100%); }
.page-hero-faq { background: linear-gradient(135deg, #0d0d0d 0%, #1a1005 50%, #1a0a0a 100%); }

/* ===== SECTION-RED ===== */
.section-red { background: linear-gradient(135deg, #8b0000 0%, #c1121f 50%, #8b0000 100%); padding: 5rem 1.5rem; }
.title-bar-white { display: block; width: 56px; height: 4px; background: rgba(255,255,255,0.5); border-radius: 2px; margin: 1rem auto 1.5rem; }

/* ===== ABOUT PAGE ===== */
.about-intro-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.about-intro-card { background: white; border-radius: var(--radius); padding: 2rem; text-align: center; box-shadow: 0 4px 20px rgba(0,0,0,0.08); transition: transform var(--transition), box-shadow var(--transition); }
.about-intro-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.14); }
.about-intro-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.about-intro-card h3 { font-size: 1rem; font-weight: 700; color: #1a1a1a; margin-bottom: 0.75rem; }
.about-intro-card p { font-size: 0.88rem; color: #555; line-height: 1.8; }

/* History Timeline */
.history-timeline { display: flex; flex-direction: column; gap: 0; position: relative; }
.history-timeline::before { content: ''; position: absolute; left: 80px; top: 0; bottom: 0; width: 2px; background: rgba(255,215,0,0.2); }
.history-item { display: grid; grid-template-columns: 80px 1fr; gap: 1.5rem; padding: 1.5rem 0; position: relative; }
.history-item::after { content: ''; position: absolute; left: 74px; top: 2rem; width: 12px; height: 12px; background: var(--gold); border-radius: 50%; border: 2px solid var(--dark); }
.history-era { font-family: var(--font-en); font-size: 0.75rem; font-weight: 700; color: var(--gold); padding-top: 0.25rem; text-align: right; line-height: 1.3; }
.history-content { background: rgba(255,255,255,0.04); border-radius: var(--radius); padding: 1.25rem 1.5rem; border-left: 3px solid rgba(255,215,0,0.2); }
.history-content h3 { font-size: 0.97rem; font-weight: 700; color: var(--text-light); margin-bottom: 0.5rem; }
.history-content p { font-size: 0.85rem; color: rgba(255,255,255,0.65); line-height: 1.8; }

/* Popular Grid */
.popular-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
.popular-card { background: white; border-radius: var(--radius); padding: 1.75rem; position: relative; overflow: hidden; }
.popular-num { font-family: var(--font-en); font-size: 2.5rem; font-weight: 700; color: rgba(230,57,70,0.12); position: absolute; top: 0.5rem; right: 1rem; line-height: 1; }
.popular-card h3 { font-size: 0.97rem; font-weight: 700; color: #1a1a1a; margin-bottom: 0.6rem; margin-top: 0.25rem; }
.popular-card p { font-size: 0.85rem; color: #555; line-height: 1.8; }

/* Benefits Grid */
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
.benefit-item { background: rgba(255,255,255,0.08); border-radius: var(--radius); padding: 1.75rem; text-align: center; }
.benefit-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.benefit-item h3 { font-size: 0.95rem; font-weight: 700; color: white; margin-bottom: 0.5rem; }
.benefit-item p { font-size: 0.84rem; color: rgba(255,255,255,0.78); line-height: 1.8; }

/* Japan Content */
.japan-content { display: flex; flex-direction: column; gap: 2rem; }
.japan-stat-row { display: flex; gap: 2rem; justify-content: center; background: rgba(255,255,255,0.04); border-radius: var(--radius); padding: 2rem; }
.japan-stat { text-align: center; }
.japan-stat-num { display: block; font-family: var(--font-en); font-size: 2.5rem; font-weight: 700; color: var(--gold); }
.japan-stat-label { font-size: 0.83rem; color: rgba(255,255,255,0.6); }
.japan-text-block { background: rgba(255,255,255,0.04); border-radius: var(--radius); padding: 1.5rem 2rem; border-left: 3px solid var(--red); }
.japan-text-block h3 { font-size: 1rem; font-weight: 700; color: var(--text-light); margin-bottom: 0.75rem; }
.japan-text-block p { font-size: 0.87rem; color: rgba(255,255,255,0.7); line-height: 1.85; margin-bottom: 0.5rem; }

/* ===== SAFETY PAGE ===== */
.safety-answer-box { display: flex; gap: 1.5rem; align-items: flex-start; background: white; border-radius: var(--radius); padding: 2rem; box-shadow: 0 4px 24px rgba(0,0,0,0.1); border-left: 6px solid #2e7d32; }
.safety-answer-icon { font-size: 2.5rem; flex-shrink: 0; margin-top: 0.25rem; }
.safety-answer-text h2 { font-size: 1.1rem; font-weight: 700; color: #1a1a1a; margin-bottom: 0.75rem; }
.safety-answer-text p { font-size: 0.9rem; color: #444; line-height: 1.85; }
.safety-answer-text strong { color: #1a1a1a; }

/* Safety Stats */
.safety-stat-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-top: 2rem; }
.safety-stat-card { background: rgba(255,255,255,0.06); border-radius: var(--radius); padding: 1.75rem 1.25rem; text-align: center; border: 1px solid rgba(255,255,255,0.08); }
.safety-stat-highlight { border-color: rgba(46,125,50,0.5); background: rgba(46,125,50,0.12); }
.safety-stat-num { font-family: var(--font-en); font-size: 1.8rem; font-weight: 700; color: var(--gold); display: block; margin-bottom: 0.4rem; }
.safety-stat-label { font-size: 0.85rem; font-weight: 700; color: var(--text-light); margin-bottom: 0.5rem; }
.safety-stat-desc { font-size: 0.78rem; color: rgba(255,255,255,0.55); line-height: 1.7; }

/* Compare Table */
.compare-table-wrap { overflow-x: auto; margin-top: 1.5rem; }
.compare-table { width: 100%; border-collapse: collapse; font-size: 0.87rem; }
.compare-table th { background: #1a1a1a; color: var(--gold); padding: 0.75rem 1rem; text-align: left; font-weight: 700; border-bottom: 2px solid rgba(255,215,0,0.3); }
.compare-table td { padding: 0.7rem 1rem; border-bottom: 1px solid #e5e5e5; vertical-align: middle; color: #333; background: white; }
.compare-highlight td { background: #fff8e1; font-weight: 600; }
.safe-badge { display: inline-block; padding: 0.2rem 0.6rem; border-radius: 20px; font-size: 0.75rem; font-weight: 700; white-space: nowrap; }
.safe-green { background: #e8f5e9; color: #2e7d32; }
.safe-yellow { background: #fffde7; color: #f57f17; }
.safe-orange { background: #fff3e0; color: #e65100; }
.safe-red { background: #ffebee; color: #c62828; }
.compare-note { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.75rem; text-align: center; }

/* Safety Measures */
.safety-measures-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
.safety-measure-card { background: rgba(255,255,255,0.05); border-radius: var(--radius); padding: 1.75rem; border: 1px solid rgba(255,255,255,0.08); transition: border-color var(--transition); }
.safety-measure-card:hover { border-color: rgba(255,215,0,0.3); }
.safety-measure-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.safety-measure-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--text-light); margin-bottom: 0.5rem; }
.safety-measure-card p { font-size: 0.84rem; color: rgba(255,255,255,0.65); line-height: 1.8; }

/* Myth List */
.myth-list { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 1.5rem; }
.myth-item { background: white; border-radius: var(--radius); padding: 1.5rem 1.75rem; }
.myth-label { display: inline-block; font-size: 0.72rem; font-weight: 700; padding: 0.2rem 0.6rem; border-radius: 4px; margin-bottom: 0.4rem; font-family: var(--font-en); letter-spacing: 1px; }
.myth-ng { background: #ffebee; color: #c62828; }
.myth-ok { background: #e8f5e9; color: #2e7d32; }
.myth-text { font-size: 0.95rem; font-weight: 700; color: #555; margin-bottom: 0.75rem; font-style: italic; }
.fact-text { font-size: 0.88rem; color: #333; line-height: 1.8; }

/* Safety Tips */
.safety-tips-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.safety-tip { display: flex; gap: 1.25rem; align-items: flex-start; background: rgba(255,255,255,0.1); border-radius: var(--radius); padding: 1.25rem 1.5rem; }
.safety-tip-num { font-family: var(--font-en); font-size: 1.5rem; font-weight: 700; color: rgba(255,255,255,0.3); flex-shrink: 0; line-height: 1.2; min-width: 2.5rem; }
.safety-tip-text h3 { font-size: 0.95rem; font-weight: 700; color: white; margin-bottom: 0.35rem; }
.safety-tip-text p { font-size: 0.84rem; color: rgba(255,255,255,0.75); line-height: 1.8; }

/* ===== FAQ PAGE ===== */
.faq-category-nav { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; padding: 1rem 0; }
.faq-cat-btn { display: inline-block; padding: 0.55rem 1.1rem; border-radius: 24px; background: #1a1a1a; color: var(--text-light); font-size: 0.84rem; font-weight: 700; transition: background var(--transition), color var(--transition); border: 1px solid rgba(230,57,70,0.25); }
.faq-cat-btn:hover { background: var(--red); color: white; }

.faq-section { padding-top: 3rem; padding-bottom: 3rem; }
.faq-category-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.75rem; padding-bottom: 1rem; border-bottom: 2px solid rgba(230,57,70,0.2); }
.faq-category-header-dark { border-bottom-color: rgba(255,215,0,0.2); }
.faq-cat-icon { font-size: 1.8rem; }
.faq-category-header h2 { font-size: 1.3rem; font-weight: 700; color: #1a1a1a; }

/* FAQ List */
.faq-list { display: flex; flex-direction: column; gap: 0; border-radius: var(--radius); overflow: hidden; border: 1px solid #e5e5e5; }
.faq-list-dark { border-color: rgba(255,255,255,0.1); }
.faq-item { border-bottom: 1px solid #e5e5e5; }
.faq-item:last-child { border-bottom: none; }
.faq-item-dark { border-bottom-color: rgba(255,255,255,0.1); }
.faq-q { background: #f9f6f2; padding: 1.1rem 1.5rem; font-size: 0.93rem; font-weight: 700; color: #1a1a1a; cursor: default; border-left: 4px solid var(--red); }
.faq-item-dark .faq-q { background: rgba(255,255,255,0.08); color: var(--text-light); }
.faq-a { background: white; padding: 1.25rem 1.5rem; }
.faq-a p { font-size: 0.87rem; color: #444; line-height: 1.85; margin-bottom: 0.5rem; }
.faq-a p:last-child { margin-bottom: 0; }
.faq-item-dark .faq-a { background: rgba(255,255,255,0.03); }
.faq-item-dark .faq-a p { color: rgba(255,255,255,0.75); }
.faq-list-inner { padding-left: 1.25rem; list-style: disc; font-size: 0.85rem; color: #444; margin: 0.5rem 0; }
.faq-list-inner li { margin-bottom: 0.3rem; line-height: 1.7; }
.faq-note { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.5rem; }

/* Attire Grid */
.faq-attire-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin: 0.75rem 0; }
.faq-attire-ok, .faq-attire-ng { border-radius: 8px; padding: 1rem 1.25rem; }
.faq-attire-ok { background: #e8f5e9; }
.faq-attire-ng { background: #ffebee; }
.faq-attire-label { font-size: 0.78rem; font-weight: 700; margin-bottom: 0.5rem; }
.ok-label { color: #2e7d32; }
.ng-label { color: #c62828; }
.faq-attire-ok ul, .faq-attire-ng ul { padding-left: 1.25rem; list-style: disc; font-size: 0.83rem; }
.faq-attire-ok ul { color: #2e7d32; }
.faq-attire-ng ul { color: #c62828; }
.faq-attire-ok li, .faq-attire-ng li { margin-bottom: 0.25rem; line-height: 1.65; }

/* FAQ Price Table */
.faq-price-table { width: 100%; border-collapse: collapse; margin: 0.75rem 0; font-size: 0.85rem; }
.faq-price-table th { background: #1a1a1a; color: var(--gold); padding: 0.6rem 1rem; text-align: left; }
.faq-price-table td { padding: 0.6rem 1rem; border-bottom: 1px solid #e5e5e5; color: #333; background: white; }
.faq-price-table tr:last-child td { border-bottom: none; }

/* FAQ More Links */
.faq-more-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 1.5rem; }
.faq-more-link-card { display: flex; gap: 1rem; align-items: center; background: white; border-radius: var(--radius); padding: 1.25rem 1.5rem; transition: transform var(--transition), box-shadow var(--transition); border: 1px solid #e8e3dc; }
.faq-more-link-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.faq-more-icon { font-size: 2rem; flex-shrink: 0; }
.faq-more-link-card h3 { font-size: 0.92rem; font-weight: 700; color: #1a1a1a; margin-bottom: 0.2rem; }
.faq-more-link-card p { font-size: 0.8rem; color: #888; }

/* ===== RESPONSIVE (Flow & Recommend) ===== */
@media (max-width: 900px) {
  .flow-steps { flex-direction: column; gap: 0.75rem; }
  .flow-step-arrow { transform: rotate(90deg); align-self: center; padding: 0; }
  .recommend-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .recommend-grid { grid-template-columns: 1fr; }
  .flow-step-arrow { display: none; }
}

/* ===== RESPONSIVE (Photos) ===== */
@media (max-width: 900px) {
  .photo-gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .photo-gallery-large { grid-row: auto; }
  .photo-gallery-large img { min-height: 220px; }
  .about-photo-row { grid-template-columns: 1fr; }
  .about-photo-item img { height: 180px; }
  .howto-step-photo { width: 100%; }
  .howto-step-photo img { height: 180px; }
  .venue-hero-photo img { height: 220px; }
  .safety-intro-photo img { height: 200px; }
}
@media (max-width: 600px) {
  .photo-gallery-grid { grid-template-columns: 1fr; }
  .photo-gallery-large img { min-height: 200px; }
}

/* ===== RESPONSIVE (New Pages) ===== */
@media (max-width: 1024px) {
  .popular-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .safety-stat-cards { grid-template-columns: repeat(2, 1fr); }
  .safety-measures-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .about-intro-grid { grid-template-columns: 1fr; }
  .popular-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .history-timeline::before { left: 60px; }
  .history-item { grid-template-columns: 60px 1fr; }
  .history-item::after { left: 54px; }
  .faq-more-links { grid-template-columns: 1fr; }
  .faq-attire-grid { grid-template-columns: 1fr; }
  .safety-measures-grid { grid-template-columns: 1fr; }
  .safety-stat-cards { grid-template-columns: repeat(2, 1fr); }
}
