/* ===================================================================
   神戸ルーキーオールスターズ — Design System
   =================================================================== */

:root {
  /* Core palette — BayStars-inspired: navy primary, yellow accent */
  --navy-950: #011D4D;
  --navy-900: #023A8D;
  --navy-800: #1656B0;
  --navy-700: #2A7AD6;
  --navy-500: #4D9AEC;
  --red: #FFD500;         /* unified accent yellow — matches underline */
  --red-dark: #E5BE00;
  --orange: #FFD500;      /* pure bright yellow */
  --orange-soft: #FFE99A;  /* pale lemon */
  --cream: #F5F1EA;
  --cream-dark: #E8E2D5;
  --white: #FFFFFF;
  --text: #141820;
  --text-muted: #5A6270;
  --line: #D9D4C9;

  /* Typography */
  --ff-display-en: "Anton", "Zen Kaku Gothic New", sans-serif;
  --ff-label-en: "Bebas Neue", sans-serif;
  --ff-heading: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  --ff-body: "Noto Sans JP", sans-serif;
  --ff-serif: "Shippori Mincho B1", serif;

  /* Scale */
  --container: 1240px;
  --radius: 2px;
  --shadow-card: 0 20px 40px -20px rgba(10, 25, 41, 0.18);
  --shadow-float: 0 30px 60px -30px rgba(10, 25, 41, 0.35);

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  font-weight: 400;
  line-height: 1.75;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
#container{width:100%;overflow-x: hidden;}
img { max-width: 100%;height:auto; display: block; }

/* Yellow underline for important phrases — BayStars style (true underline) */
strong, .hl {
  font-weight: 700;
  font-size: 1.12em;
  text-decoration: underline;
  text-decoration-color: #FFD500;
  text-decoration-thickness: 5px;
  text-underline-offset: 5px;
  text-decoration-skip-ink: none;  /* draw the line continuously, even under descenders */
  padding: 0 1px;
  line-height: inherit;
}
/* Keep numeric inline emphasis (e.g., 込み, 任意) at normal size */
.fee-card strong, .fee-card .hl {
  font-size: 1em;
  text-decoration-thickness: 3px;
  text-underline-offset: 3px;
}

a { color: inherit; text-decoration: none; }

button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-family: var(--ff-label-en);
  font-size: 13px;
  letter-spacing: 0.32em;
  color: var(--navy-900);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}
.eyebrow::after {
  /* (kept for future overrides) */
}

/* On dark navy sections, the eyebrow text becomes bright yellow */
.cta-final .eyebrow,
.footer .eyebrow,
.burden-header .eyebrow,
.social-header .eyebrow {
  color: var(--red);
}
.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--red);
}

.section-title {
  font-family: var(--ff-heading);
  font-weight: 900;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--navy-900);
}

.section-title .en {
  display: block;
  font-family: var(--ff-display-en);
  font-weight: 700;
  font-size: 0.38em;
  letter-spacing: 0.18em;
  color: var(--navy-900);
  margin-top: 14px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 6px;
}
.section-title .en::after {
  /* Yellow accent bar under the english subtitle */
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 4px;
  background: var(--red);
}

/* ===================================================================
   NAV
   =================================================================== */
#nav{
	z-index:9999;
}
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(2, 58, 141, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: padding 0.3s var(--ease-out), background 0.3s;
}
.nav.scrolled { padding: 12px 0; }

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
}
.logo-mark {
  width: 94px;
  height: 52px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
}
.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
/* Footer logo sits on dark navy background — ensure consistency */
.footer .logo-mark {
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-text .jp {
  font-family: var(--ff-heading);
  font-weight: 900;
  font-size: 17px;
  letter-spacing: 0.02em;
}
.logo-text .en {
  font-family: var(--ff-label-en);
  font-size: 10px;
  letter-spacing: 0.28em;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-menu ul {
  display: flex;
  gap: 28px;
  list-style: none;
}
.nav-menu a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  letter-spacing: 0.04em;
  position: relative;
  padding: 6px 0;
  transition: color 0.2s;
}
.nav-menu a:hover { color: var(--white); }
.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width 0.3s var(--ease-out);
}
.nav-menu a:hover::after { width: 100%; }

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-image: linear-gradient(115deg, var(--red) 0%, #D85C2C 55%, var(--orange) 100%);
  color: var(--white);
  padding: 13px 22px;
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  position: relative;
  transition: transform 0.2s, box-shadow 0.25s, filter 0.25s;
  border: none;
  box-shadow: 0 6px 16px -8px rgba(255, 213, 0, 0.45);
}
.btn-cta::after {
  content: "→";
  font-family: var(--ff-body);
  transition: transform 0.2s;
}
.btn-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.1) saturate(1.08);
  box-shadow: 0 16px 32px -12px rgba(255, 213, 0, 0.6), 0 6px 12px -6px rgba(255, 213, 0, 0.4);
}
.btn-cta:hover::after { transform: translateX(4px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--navy-900);
  padding: 16px 28px;
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  border: 1.5px solid var(--navy-900);
  transition: all 0.2s;
}
.btn-outline:hover {
  background: var(--navy-900);
  color: var(--white);
}
.btn-outline::after {
  content: "→";
  transition: transform 0.2s;
}
.btn-outline:hover::after { transform: translateX(4px); }

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  position: relative;
  color: var(--white);
}
.menu-toggle span {
  position: absolute;
  left: 10px; right: 10px;
  height: 2px;
  background: currentColor;
  transition: transform 0.3s, opacity 0.3s;
}
.menu-toggle span:nth-child(1) { top: 14px; }
.menu-toggle span:nth-child(2) { top: 21px; }
.menu-toggle span:nth-child(3) { top: 28px; }
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile slide-in menu */
.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: 86vw;
  max-width: 380px;
  height: 100vh;
  background: var(--navy-950);
  transform: translateX(100%);
  transition: transform 0.35s var(--ease-out);
  z-index: 101;
  padding: 90px 32px 40px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  visibility: hidden;
}
.mobile-menu.open { transform: translateX(0); visibility: visible; }
.mobile-menu-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}
.mobile-menu-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 4px;
  color: var(--white);
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 17px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-menu-list li a::after {
  content: "→";
  color: var(--red);
  transition: transform 0.2s;
}
.mobile-menu-list li a:hover,
.mobile-menu-list li a:focus {
  color: var(--red);
  padding-left: 8px;
}
.mobile-menu-list li a:hover::after { transform: translateX(4px); }
.mobile-menu .btn-cta {
  justify-content: center;
  padding: 18px 20px;
  font-size: 14px;
}
.mobile-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 100;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.mobile-backdrop.open { opacity: 1; pointer-events: auto; }

/* ===================================================================
   HERO — Full-bleed key visual
   =================================================================== */

.hero {
  position: relative;
  background: var(--navy-900);
  overflow: hidden;
  display: block;
  padding: 0;
  min-height: auto;
}
.hero .hero-image,
.hero picture {
  display: block;
  width: 100%;
  height: auto;
  line-height: 0;
}
.hero .hero-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center center;
}

/* Mobile: the <picture> element swaps to a 4:5 portrait crop via <source media>.
   The image still scales naturally to viewport width with its own aspect ratio intact —
   no CSS cropping, so the baked-in text and the player's face both remain visible. */
/* Subtle bottom fade so the section blends into the red recruit banner */
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 80px;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 25, 41, 0.35) 100%);
  pointer-events: none;
}

/* Keep the slideUp keyframes (still used elsewhere) */
@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ===================================================================
   HERO INFO STRIP — Activity area / League / Target
   =================================================================== */

.info-strip {
  background: var(--navy-900);
  color: var(--white);
  padding: 56px 0 60px;
  position: relative;
  overflow: hidden;
}
.info-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 40% 100% at 0% 50%, rgba(255, 213, 0, 0.08), transparent 70%),
    radial-gradient(ellipse 40% 100% at 100% 50%, rgba(255, 213, 0, 0.07), transparent 70%);
  pointer-events: none;
}
.info-strip .container { position: relative; z-index: 1; }

/* Top row: tagline (h1 headline) */
.info-tagline {
  text-align: center;
  background: var(--white);
  padding: 44px 32px 48px;
  margin-bottom: 48px;
  position: relative;
  box-shadow: 0 8px 28px rgba(1, 29, 77, 0.18);
}
.info-tagline .pin-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding: 7px 14px 7px 10px;
  border: 1px solid rgba(2, 58, 141, 0.25);
  background: rgba(255, 213, 0, 0.15);
}
.info-tagline .pin-label .pin {
  width: 18px;
  height: 18px;
  color: var(--navy-900);
  flex-shrink: 0;
}
.info-tagline .pin-label span {
  font-family: var(--ff-label-en);
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--navy-900);
  font-weight: 700;
}
.info-tagline h1 {
  font-family: var(--ff-heading);
  font-weight: 900;
  font-size: clamp(24px, 3.4vw, 44px);
  line-height: 1.5;
  color: var(--navy-900);
  letter-spacing: 0.01em;
  margin: 0;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.info-tagline h1 .cities {
  font-family: var(--ff-serif);
  font-weight: 800;
  font-style: italic;
  color: var(--navy-900);
  letter-spacing: 0.02em;
  padding: 0 4px;
  position: relative;
  display: inline-block;
  text-decoration: underline;
  text-decoration-color: #FFD500;
  text-decoration-thickness: 6px;
  text-underline-offset: 6px;
  text-decoration-skip-ink: none;
}

/* Bottom row: grid */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  position: relative;
}
.info-grid::before {
  content: "";
  position: absolute;
  top: 10%; bottom: 10%;
  left: 50%;
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
}
.info-item {
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.info-item:first-child { padding-left: 0; }
.info-item:last-child { padding-right: 0; }
.info-item .label-en {
  font-family: var(--ff-label-en);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 10px;
}
.info-item .label-en::before {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--orange);
}
.info-item .label-jp {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.08em;
}
.info-item h3 {
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.5;
  color: var(--white);
  margin: 4px 0 0;
  letter-spacing: 0.01em;
}
.info-item .chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  margin-top: 8px;
  padding: 6px 12px;
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 12px;
  color: var(--orange-soft);
  background: rgba(255, 213, 0, 0.1);
  border: 1px solid rgba(255, 213, 0, 0.4);
  letter-spacing: 0.04em;
}
.info-item .chip::before {
  content: "+";
  color: var(--orange);
  font-weight: 900;
}

/* League image — swap-in for the old text heading */
.info-item.league .league-image {
  display: block;
  margin-top: 10px;
  max-width: 420px;
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 10px 28px -14px rgba(0, 0, 0, 0.45);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.info-item.league .league-image:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -14px rgba(0, 0, 0, 0.55);
}
.info-item.league .league-image img {
  display: block;
  width: 100%;
  height: auto;
}

/* Target image — mirrors league-image styling */
.info-item.target .target-image {
  display: block;
  margin-top: 10px;
  max-width: 420px;
  overflow: hidden;
  box-shadow: 0 10px 28px -14px rgba(0, 0, 0, 0.45);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.info-item.target .target-image:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -14px rgba(0, 0, 0, 0.55);
}
.info-item.target .target-image img {
  display: block;
  width: 100%;
  height: auto;
}

/* ===================================================================
   TRIAL INFO
   =================================================================== */

.trial {
  padding: 120px 0;
  background: var(--white);
  position: relative;
}

.trial-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

.trial-visual {
  position: relative;
  aspect-ratio: 1000 / 1791; /* matches the comic-style illustration */
  background: var(--navy-900);
}
.trial-visual .visual-inner {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.trial-visual .visual-inner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.trial-visual .badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 140px;
  height: 140px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  font-family: var(--ff-heading);
  font-weight: 900;
  font-size: 16px;
  line-height: 1.3;
  box-shadow: var(--shadow-float);
  transform: rotate(-8deg);
}
.trial-visual .badge .big {
  display: block;
  font-family: var(--ff-display-en);
  font-size: 42px;
  line-height: 1;
  margin: 4px 0;
}

.trial-text .eyebrow { margin-bottom: 20px; }
.trial-text h2 { margin-bottom: 28px; }
.trial-text .lede {
  font-size: 17px;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 36px;
}

.trial-target {
  background: var(--white);
  padding: 32px;
  border-left: 4px solid var(--red);
  margin-bottom: 28px;
  box-shadow: var(--shadow-card);
}
.trial-target h3 {
  font-family: var(--ff-heading);
  font-weight: 900;
  font-size: 18px;
  color: var(--navy-900);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.trial-target h3::before {
  content: "対象";
  font-family: var(--ff-label-en);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--red);
  border: 1px solid var(--red);
  padding: 4px 8px;
}
.trial-target ul {
  list-style: none;
}
.trial-target li {
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}
.trial-target li:last-child { border-bottom: none; }
.trial-target li::before {
  content: "◆";
  color: var(--red);
  font-size: 12px;
}
.trial-note {
  font-size: 14px;
  color: var(--text-muted);
  padding: 14px 20px;
  background: rgba(255, 213, 0, 0.06);
  border: 1px solid rgba(255, 213, 0, 0.15);
  margin-bottom: 32px;
}
.trial-note strong {
  color: var(--red);
  font-weight: 700;
}

/* ======== Compact schedule inside trial-text ======== */
.schedule-compact {
  margin: 28px 0 24px;
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
}
.schedule-compact-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 18px 22px;
  background: var(--navy-900);
  color: var(--white);
}
.schedule-compact-head .label-en {
  font-family: var(--ff-label-en);
  font-size: 11px;
  letter-spacing: 0.26em;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 10px;
}
.schedule-compact-head .label-en::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--orange);
}
.schedule-compact-head .label-jp {
  font-family: var(--ff-heading);
  font-weight: 900;
  font-size: 16px;
  color: var(--white);
  letter-spacing: 0.02em;
}

.schedule-rows { display: grid; }

.schedule-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 16px 22px;
  border-bottom: 1px solid var(--line);
  color: var(--navy-900);
  text-decoration: none;
  transition: background 0.2s var(--ease-out), transform 0.2s var(--ease-out);
}
.schedule-row:last-child { border-bottom: none; }
a.schedule-row:hover {
  background: rgba(255, 213, 0, 0.04);
  transform: translateX(2px);
}
.schedule-row.full {
  opacity: 0.55;
  cursor: default;
}

.sr-date {
  display: grid;
  grid-template-columns: auto auto auto;
  align-items: baseline;
  gap: 8px;
  padding-right: 16px;
  border-right: 1px solid var(--line);
  min-width: 130px;
}
.sr-ym {
  font-family: var(--ff-label-en);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}
.sr-day {
  font-family: var(--ff-display-en);
  font-size: 28px;
  line-height: 1;
  color: var(--navy-900);
  letter-spacing: -0.01em;
}
.sr-dow {
  font-family: var(--ff-label-en);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--orange);
}
.sr-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.sr-time {
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--navy-900);
}
.sr-place {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sr-status {
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 12px;
  padding: 6px 12px;
  white-space: nowrap;
  letter-spacing: 0.04em;
}
.sr-status.available {
  background: var(--red);
  color: var(--white);
}
.sr-status.limited {
  background: rgba(255, 213, 0, 0.08);
  color: var(--red);
  border: 1px solid rgba(255, 213, 0, 0.35);
}
.sr-status.closed {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--line);
}

.schedule-compact-note {
  padding: 14px 22px;
  margin: 0;
  font-size: 12.5px;
  color: var(--text-muted);
  background: rgba(255, 213, 0, 0.06);
  border-top: 1px solid var(--line);
  line-height: 1.7;
}

/* ===================================================================
   PARENT BURDEN SECTION  (KEY DIFFERENTIATOR)
   =================================================================== */

.burden {
  padding: 120px 0 140px;
  background: var(--navy-900);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.burden::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255, 213, 0, 0.14), transparent 70%);
  pointer-events: none;
}
.burden::after {
  content: "05";
  position: absolute;
  right: -30px;
  bottom: -80px;
  font-family: var(--ff-display-en);
  font-size: clamp(280px, 34vw, 480px);
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.055);
  letter-spacing: -0.02em;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.burden-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}
.burden-header .eyebrow { color: var(--red); margin-bottom: 20px; }
.burden-header .eyebrow::before { background: var(--red); }
.burden-header h2 {
  font-family: var(--ff-heading);
  font-weight: 900;
  font-size: clamp(30px, 4.8vw, 54px);
  line-height: 1.3;
  color: var(--white);
  max-width: 960px;
  margin: 0 auto;
  letter-spacing: -0.01em;
}
.burden-header .count-badge {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 28px;
  padding: 10px 18px;
  background: rgba(255, 213, 0, 0.1);
  border: 1px solid rgba(255, 213, 0, 0.4);
}
.burden-header .count-badge .big {
  font-family: var(--ff-display-en);
  font-size: 28px;
  line-height: 1;
  color: var(--red);
}
.burden-header .count-badge .label {
  font-family: var(--ff-label-en);
  font-size: 11px;
  letter-spacing: 0.26em;
  color: var(--red);
}
.burden-header .count-badge .jp {
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  margin-left: 4px;
  letter-spacing: 0.04em;
}
.burden-header h2 .strike {
  display: inline-block;
  position: relative;
  color: rgba(255, 255, 255, 0.5);
}
.burden-header h2 .strike::before {
  content: "";
  position: absolute;
  left: -4%; right: -4%;
  top: 55%;
  height: 3px;
  background: var(--red);
  transform: rotate(-4deg);
}
.burden-header h2 .em {
  color: var(--red);
  font-family: var(--ff-serif);
  font-style: italic;
}
.burden-header .sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 24px;
  letter-spacing: 0.04em;
}

.burden-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
}
.burden-item {
  grid-column: span 2;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: border-color 0.4s var(--ease-out), transform 0.4s var(--ease-out), background 0.4s var(--ease-out);
}
.burden-item:nth-child(4) { grid-column: 2 / span 2; }
.burden-item:nth-child(5) { grid-column: 4 / span 2; }

.burden-item:hover {
  border-color: rgba(255, 213, 0, 0.45);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-4px);
}
.burden-item:hover .media::after {
  opacity: 1;
}

/* ---- Media area (photograph) ---- */
.burden-item .media {
  aspect-ratio: 16 / 10;
  position: relative;
  overflow: hidden;
  background: var(--navy-950);
}
/* Subtle scrim so overlay number/tag stay readable on bright photos */
.burden-item .media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 15, 28, 0.55) 0%, rgba(5, 15, 28, 0) 35%),
    linear-gradient(0deg,   rgba(5, 15, 28, 0.35) 0%, rgba(5, 15, 28, 0) 40%);
  pointer-events: none;
  z-index: 1;
}
/* Hover glow overlay */
.burden-item .media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 60%, rgba(255, 213, 0, 0.3), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
  pointer-events: none;
  z-index: 1;
}

.burden-item .media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.5s var(--ease-out);
}
.burden-item:hover .media img {
  transform: scale(1.04);
}

/* Number / tag overlay on the image */
.burden-item .media .meta {
  position: absolute;
  top: 18px;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}
.burden-item .media .meta .num {
  font-family: var(--ff-display-en);
  font-size: 26px;
  line-height: 1;
  color: var(--white);
  letter-spacing: 0.04em;
}
.burden-item .media .meta .num::before {
  content: "No.";
  font-family: var(--ff-label-en);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.5);
  margin-right: 5px;
  vertical-align: 3px;
}
.burden-item .media .meta .tag {
  font-family: var(--ff-label-en);
  font-size: 10px;
  letter-spacing: 0.26em;
  color: var(--orange-soft);
  padding: 5px 10px;
  background: rgba(5, 15, 28, 0.7);
  border: 1px solid rgba(255, 213, 0, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* ---- Content area ---- */
.burden-item .content {
  padding: 28px 28px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Claim headline: "お茶当番 なし" */
.burden-item h3.claim {
  font-family: var(--ff-heading);
  font-weight: 900;
  font-size: 26px;
  line-height: 1.25;
  letter-spacing: -0.005em;
  color: var(--white);
  margin-bottom: 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
}
.burden-item h3.claim .subject { color: var(--white); }
.burden-item h3.claim .neg {
  font-family: var(--ff-serif);
  font-weight: 800;
  font-style: italic;
  color: var(--red);
  font-size: 1.15em;
  letter-spacing: -0.01em;
  padding: 0 4px;
  position: relative;
}
.burden-item h3.claim .neg::before {
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  top: -6px;
  height: 2px;
  background: var(--red);
}

/* Description */
.burden-item .desc {
  font-size: 15.5px;
  line-height: 1.95;
  color: rgba(255, 255, 255, 0.78);
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
}

.burden-note {
  margin-top: 60px;
  padding: 28px 32px;
  background: rgba(255, 255, 255, 0.04);
  border-left: 3px solid var(--orange);
  display: grid;
  gap: 10px;
}
.burden-note p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
}
.burden-note p strong {
  color: var(--orange-soft);
  font-weight: 700;
}

/* ===================================================================
   PHILOSOPHY
   =================================================================== */

.philosophy {
  padding: 140px 0;
  background: var(--white);
  position: relative;
}

.philo-header {
  text-align: center;
  margin-bottom: 80px;
}
.philo-header .eyebrow { margin-bottom: 20px; }
.philo-header h2 { margin-bottom: 24px; }
.philo-header .lede {
  font-family: var(--ff-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--navy-800);
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.9;
}

.philo-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 80px;
}
.pillar {
  background: var(--white);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.pillar::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 80px; height: 4px;
  background: var(--red);
}
.pillar .en {
  font-family: var(--ff-label-en);
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--red);
  margin-bottom: 16px;
}
.pillar h3 {
  font-family: var(--ff-heading);
  font-weight: 900;
  font-size: 28px;
  color: var(--navy-900);
  margin-bottom: 20px;
  line-height: 1.4;
}
.pillar p {
  color: var(--text-muted);
  line-height: 1.9;
}

.philo-policies {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.policy-col h3 {
  font-family: var(--ff-heading);
  font-weight: 900;
  font-size: 22px;
  color: var(--navy-900);
  padding-bottom: 16px;
  margin-bottom: 28px;
  border-bottom: 2px solid var(--navy-900);
  display: flex;
  align-items: center;
  gap: 14px;
  line-height: 1.3;
}
.policy-col h3 .en {
  font-family: var(--ff-label-en);
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--red);
  font-weight: 400;
  padding-top: 2px;
}
.policy-col ul {
  list-style: none;
  display: grid;
  gap: 0;
}
.policy-col li {
  position: relative;
  padding: 14px 0 14px 28px;
  border-bottom: 1px dashed var(--line);
  font-weight: 500;
  line-height: 1.85;
}
.policy-col li::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 18px;
  color: var(--red);
  font-size: 12px;
  line-height: 1;
}
.policy-col li strong {
  font-weight: 700;
  color: var(--orange);
}

.philo-quote {
  margin-top: 100px;
  padding: 60px 48px;
  background: var(--navy-900);
  color: var(--white);
  text-align: center;
  position: relative;
}
.philo-quote::before, .philo-quote::after {
  content: "";
  position: absolute;
  width: 40px; height: 40px;
  border: 2px solid var(--red);
}
.philo-quote::before { top: 20px; left: 20px; border-right: none; border-bottom: none; }
.philo-quote::after { bottom: 20px; right: 20px; border-left: none; border-top: none; }
.philo-quote p {
  font-family: var(--ff-serif);
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.02em;
}
.philo-quote p .em {
  color: var(--red);
}

/* ===================================================================
   STAFF
   =================================================================== */

.staff {
  padding: 140px 0;
  background: var(--white);
}

.staff-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 80px;
  flex-wrap: wrap;
}
.staff-header h2 { max-width: 560px; }
.staff-header .lede {
  max-width: 460px;
  color: var(--text-muted);
  line-height: 1.9;
}

.staff-leads {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 80px;
}
.lead-card {
  background: var(--cream);
  padding: 40px;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.lead-card::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 60px 60px 0;
  border-color: transparent var(--red) transparent transparent;
}
.lead-avatar {
  aspect-ratio: 1;
  background: var(--navy-900);
  position: relative;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.3);
  font-family: var(--ff-display-en);
  font-size: 48px;
}
.lead-avatar::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.lead-info .role {
  font-family: var(--ff-label-en);
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--red);
  margin-bottom: 8px;
}
.lead-info .role-jp {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.lead-info .name {
  font-family: var(--ff-heading);
  font-weight: 900;
  font-size: 26px;
  color: var(--navy-900);
  line-height: 1.2;
}

.staff-section-label {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
}
.staff-section-label .label {
  font-family: var(--ff-heading);
  font-weight: 900;
  font-size: 20px;
  color: var(--navy-900);
}
.staff-section-label .en {
  font-family: var(--ff-label-en);
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--red);
}
.staff-section-label .line {
  flex: 1;
  height: 1px;
  background: var(--line);
}
.staff-section-label .count {
  font-family: var(--ff-display-en);
  font-size: 20px;
  color: var(--navy-900);
}

.coach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 60px;
}
.coach-card {
  background: var(--cream);
  padding: 24px 20px;
  text-align: center;
  transition: transform 0.2s, background 0.2s;
  border-bottom: 3px solid transparent;
}
.coach-card:hover {
  transform: translateY(-4px);
  border-bottom-color: var(--red);
}
.coach-card .role-tag {
  font-family: var(--ff-label-en);
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--orange);
  margin-bottom: 8px;
}
.coach-card .name {
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--navy-900);
}

.staff-specialists {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.specialist-card {
  padding: 24px 20px;
  background: var(--navy-900);
  color: var(--white);
  position: relative;
}
.specialist-card .role-tag {
  font-family: var(--ff-label-en);
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--orange-soft);
  margin-bottom: 8px;
}
.specialist-card .role-jp {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
  line-height: 1.5;
}
.specialist-card .name {
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.3;
}
.specialist-card.wives {
  background: var(--red);
}
.specialist-card.wives .role-tag { color: rgba(255, 255, 255, 0.85); }

/* ===================================================================
   FEES
   =================================================================== */

.fees {
  padding: 140px 0;
  background: var(--white);
  position: relative;
}

.fees-header {
  text-align: center;
  margin-bottom: 60px;
}
.fees-header .eyebrow { margin-bottom: 20px; }
.fees-header h2 { margin-bottom: 20px; }
.fees-header .lede {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 620px;
  margin: 0 auto;
}

.fee-main {
  background: var(--navy-900);
  color: var(--white);
  padding: 56px 48px;
  margin-bottom: 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.fee-main::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  pointer-events: none;
}
.fee-main .label {
  font-family: var(--ff-label-en);
  font-size: 13px;
  letter-spacing: 0.32em;
  color: var(--red);
  margin-bottom: 20px;
}
.fee-main .label-jp {
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
}
.fee-main .price {
  font-family: var(--ff-display-en);
  font-size: clamp(58px, 13vw, 140px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--white);
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  flex-wrap: nowrap;
}
.fee-main .price .unit {
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: clamp(16px, 2.2vw, 24px);
  color: var(--red);
}
.fee-main .price .yen {
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: clamp(18px, 2.8vw, 32px);
  color: rgba(255, 255, 255, 0.9);
}
.fee-main .note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 20px;
  letter-spacing: 0.04em;
}

/* ---- Fee inclusion highlight band ---- */
.fee-main .fee-includes {
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.fee-main .fee-includes .check {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  display: grid;
  place-items: center;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 0 0 6px rgba(255, 213, 0, 0.15);
}
.fee-main .fee-includes .check svg {
  width: 22px;
  height: 22px;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.fee-main .fee-includes .inc-main {
  font-family: var(--ff-heading);
  font-weight: 900;
  font-size: clamp(19px, 2.2vw, 26px);
  line-height: 1.4;
  color: var(--white);
  letter-spacing: 0.02em;
  text-align: left;
}
.fee-main .fee-includes .inc-main strong {
  color: var(--red);
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 800;
  font-size: 1.1em;
  padding: 0 2px;
}
.fee-main .fee-includes .inc-except {
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 13px;
  color: var(--red);
  padding: 8px 14px;
  background: rgba(255, 213, 0, 0.1);
  border: 1px solid rgba(255, 213, 0, 0.4);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.fee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.fee-card {
  background: var(--white);
  padding: 32px 28px;
  border-top: 3px solid var(--navy-900);
}
.fee-card .label {
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}
.fee-card .price {
  font-family: var(--ff-display-en);
  font-size: 38px;
  line-height: 1;
  color: var(--navy-900);
  margin-bottom: 14px;
}
.fee-card .price .yen {
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 18px;
  margin-left: 4px;
}
.fee-card .breakdown {
  font-size: 12px;
  line-height: 1.7;
  color: var(--text-muted);
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.fee-disclaimer {
  background: rgba(255, 213, 0, 0.07);
  border: 1px solid rgba(255, 213, 0, 0.25);
  padding: 24px 32px;
  display: grid;
  gap: 8px;
}
.fee-disclaimer p {
  font-size: 14px;
  color: var(--navy-800);
  padding-left: 24px;
  position: relative;
  line-height: 1.7;
}
.fee-disclaimer p::before {
  content: "※";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

/* ---- Fees Promise Banner (明朗会計) ---- */
.fees-promise {
  margin-top: 40px;
  background: var(--navy-900);
  color: var(--white);
  padding: 72px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.fees-promise::before {
  content: "¥";
  position: absolute;
  left: -20px;
  top: -50px;
  font-family: var(--ff-display-en);
  font-size: 420px;
  line-height: 0.82;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.07);
  pointer-events: none;
  user-select: none;
}
.fees-promise::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}
.fees-promise .inner {
  position: relative;
  z-index: 1;
}
.fees-promise .eyebrow {
  color: var(--red);
  margin-bottom: 28px;
  justify-content: center;
}
.fees-promise .eyebrow::before { background: var(--red); }
.fees-promise h3 {
  font-family: var(--ff-heading);
  font-weight: 900;
  font-size: clamp(30px, 4.5vw, 52px);
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 28px;
}
.fees-promise h3 .accent {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 800;
  color: var(--red);
  padding: 0 4px;
  display: inline-block;
  position: relative;
}
.fees-promise h3 .accent::before {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -6px;
  height: 3px;
  background: var(--red);
  transform: scaleX(0.8);
}
.fees-promise p {
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 2;
  color: rgba(255, 255, 255, 0.88);
  max-width: 680px;
  margin: 0 auto;
}
.fees-promise p strong {
  color: var(--white);
  font-weight: 700;
  background: linear-gradient(180deg, transparent 62%, rgba(255, 213, 0, 0.55) 62%, rgba(255, 213, 0, 0.55) 90%, transparent 90%);
  padding: 0 4px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

/* ===================================================================
   EQUIPMENT
   =================================================================== */

.equipment {
  padding: 140px 0;
  background: var(--white);
}

.equip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 60px;
}
.equip-box {
  background: var(--cream);
  padding: 40px;
}
.equip-box.primary {
  background: var(--navy-900);
  color: var(--white);
}
.equip-box h3 {
  font-family: var(--ff-heading);
  font-weight: 900;
  font-size: 22px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--red);
}
.equip-box.primary h3 { color: var(--white); }
.equip-box h4 {
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 15px;
  margin: 20px 0 10px;
  color: var(--orange);
}
.equip-box p {
  font-size: 14px;
  line-height: 1.9;
}
.equip-box.primary p { color: rgba(255, 255, 255, 0.8); }

.equip-list {
  list-style: none;
  display: grid;
  gap: 8px;
}
.equip-list li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
  font-size: 14px;
}
.equip-box.primary .equip-list li {
  border-bottom-color: rgba(255, 255, 255, 0.15);
}
.equip-list .item-name { flex: 1; }
.equip-list .item-price {
  font-family: var(--ff-heading);
  font-weight: 700;
  color: var(--navy-900);
  white-space: nowrap;
}
.equip-box.primary .equip-list .item-price { color: var(--white); }

.equip-sub {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 16px;
  padding: 10px 14px;
  background: rgba(255, 213, 0, 0.07);
}
.equip-box.primary .equip-sub {
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.05);
}

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

.faq {
  padding: 140px 0;
  background: var(--white);
}
.faq-header {
  text-align: center;
  margin-bottom: 60px;
}
.faq-header .eyebrow { margin-bottom: 20px; }
.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border-left: 3px solid var(--orange);
  transition: border-color 0.3s;
}
.faq-item.open { border-left-color: var(--red); }
.faq-q {
  width: 100%;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--red); }
.faq-q .qmark {
  font-family: var(--ff-display-en);
  font-size: 24px;
  color: var(--orange);
  flex-shrink: 0;
  width: 36px;
}
.faq-q .qtext {
  flex: 1;
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
}
.faq-q .toggle {
  width: 32px; height: 32px;
  position: relative;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-q .toggle::before,
.faq-q .toggle::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  background: var(--navy-900);
  transition: transform 0.3s, background 0.3s;
}
.faq-q .toggle::before {
  width: 14px; height: 2px;
  transform: translate(-50%, -50%);
}
.faq-q .toggle::after {
  width: 2px; height: 14px;
  transform: translate(-50%, -50%);
}
.faq-item.open .faq-q .toggle::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-item.open .faq-q .toggle::before { background: var(--red); }
.faq-a {
  /*max-height: 0;*/
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}
.faq-a-inner {
  padding: 0 32px 28px 80px;
  display: flex;
  gap: 16px;
  align-items: start;
  color: var(--text-muted);
  line-height: 1.9;
}
.faq-a-inner .amark {
  font-family: var(--ff-display-en);
  color: var(--navy-900);
  font-size: 20px;
  flex-shrink: 0;
  margin-left: -44px;
}

/* ===================================================================
   ACTIVITY / ARTICLES
   =================================================================== */

.activity {
  padding: 140px 0;
  background: var(--white);
}
.activity-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.article-card {
  background: var(--cream);
  transition: transform 0.3s var(--ease-out);
  overflow: hidden;
}
.article-card:hover { transform: translateY(-6px); }
.article-img {
  aspect-ratio: 16 / 10;
  background: var(--navy-900);
  position: relative;
  overflow: hidden;
}
.article-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 213, 0, 0.2), transparent 50%),
    linear-gradient(135deg, var(--navy-800), var(--navy-950));
}
.article-img .category {
  position: absolute;
  top: 16px; left: 16px;
  font-family: var(--ff-label-en);
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--white);
  background: var(--red);
  padding: 6px 12px;
	z-index:9;
}
.article-img .placeholder-label {
  position: absolute;
  bottom: 0; right: 0;
  font-family: var(--ff-label-en);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.3);
}
.article-body {
  padding: 28px 24px;
}
.article-body .date {
  font-family: var(--ff-label-en);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--red);
  margin-bottom: 10px;
}
.article-body h3 {
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.6;
  color: var(--navy-900);
  margin-bottom: 10px;
}
.article-body p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===================================================================
   SOCIAL
   =================================================================== */

.social {
  padding: 120px 0;
  background: var(--navy-900);
  color: var(--white);
}
.social-header {
  text-align: center;
  margin-bottom: 60px;
}
.social-header .eyebrow { color: var(--red); }
.social-header .eyebrow::before { background: var(--red); }
.social-header h2 { color: var(--white); }
.social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.social-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 48px 40px;
  text-align: center;
  aspect-ratio: 4 / 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  transition: background 0.3s;
}
.social-card:hover { background: rgba(255, 255, 255, 0.08); }
.social-card svg {
  width: 56px; height: 56px;
  margin: 0 auto;
  color: var(--red);
}
.social-card .platform {
  font-family: var(--ff-display-en);
  font-size: 28px;
  letter-spacing: 0.1em;
  color: var(--white);
}
.social-card .note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.04em;
}

/* ===================================================================
   CTA FINAL
   =================================================================== */

.cta-final {
  padding: 140px 0;
  background:
    linear-gradient(180deg, rgba(5,15,28,0.82) 0%, rgba(10,25,41,0.72) 45%, rgba(5,15,28,0.88) 100%),
    url("../img/AdobeStock_262192344.jpeg") center center / cover no-repeat,
    var(--navy-900);
  background-attachment: scroll, scroll, scroll;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 100%, rgba(255, 213, 0, 0.22), transparent 72%),
    radial-gradient(ellipse 55% 38% at 50% 0%, rgba(255, 213, 0, 0.14), transparent 72%),
    radial-gradient(ellipse 90% 60% at 50% 50%, transparent 0%, rgba(5, 15, 28, 0.35) 80%);
  pointer-events: none;
  z-index: 1;
}
.cta-final::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  pointer-events: none;
  z-index: 1;
}
.cta-final > * { position: relative; z-index: 2; }
.cta-final .eyebrow {
  color: var(--white);
  margin-bottom: 20px;
}
.cta-final .eyebrow::before { background: var(--white); }
.cta-final h2 {
  font-family: var(--ff-heading);
  font-weight: 900;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.3;
  margin-bottom: 24px;
  color: var(--white);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45), 0 1px 2px rgba(0, 0, 0, 0.3);
}
.cta-final p {
  font-size: 17px;
  max-width: 620px;
  margin: 0 auto 44px;
  line-height: 1.9;
  opacity: 0.95;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5);
}
.cta-final .btn-cta {
  padding: 22px 40px;
  font-size: 16px;
  box-shadow: 0 14px 36px -10px rgba(255, 213, 0, 0.55), 0 6px 18px -6px rgba(255, 213, 0, 0.5);
}
.cta-final .btn-cta:hover {
  box-shadow: 0 24px 50px -14px rgba(255, 213, 0, 0.75), 0 10px 24px -8px rgba(255, 213, 0, 0.55);
}

/* ===== LINE CTA Button ===== */
.btn-line {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #06C755;
  background-image: linear-gradient(180deg, #0ADA5E 0%, #06C755 55%, #05B04C 100%);
  color: var(--white);
  padding: 22px 40px 22px 32px;
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.04em;
  border-radius: 4px;
  border: none;
  text-decoration: none;
  position: relative;
  transition: transform 0.2s var(--ease-out), box-shadow 0.25s, filter 0.25s;
  box-shadow:
    0 14px 36px -10px rgba(6, 199, 85, 0.65),
    0 6px 18px -6px rgba(6, 199, 85, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}
.btn-line::before {
  content: "";
  width: 28px; height: 28px;
  background: var(--white);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 36'><path d='M18 3C9.16 3 2 8.84 2 16.05c0 6.46 5.7 11.87 13.4 12.88.52.11 1.23.35 1.41.8.16.41.1 1.05.05 1.47l-.23 1.38c-.07.41-.32 1.6 1.4.87 1.72-.72 9.3-5.48 12.69-9.38C33.1 21.36 34 18.82 34 16.05 34 8.84 26.84 3 18 3Z'/></svg>") center / contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 36'><path d='M18 3C9.16 3 2 8.84 2 16.05c0 6.46 5.7 11.87 13.4 12.88.52.11 1.23.35 1.41.8.16.41.1 1.05.05 1.47l-.23 1.38c-.07.41-.32 1.6 1.4.87 1.72-.72 9.3-5.48 12.69-9.38C33.1 21.36 34 18.82 34 16.05 34 8.84 26.84 3 18 3Z'/></svg>") center / contain no-repeat;
  flex-shrink: 0;
}
.btn-line:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow:
    0 22px 50px -14px rgba(6, 199, 85, 0.8),
    0 10px 24px -8px rgba(6, 199, 85, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.btn-line:active { transform: translateY(0); }

.btn-line-label { display: inline-flex; flex-direction: column; align-items: flex-start; gap: 2px; line-height: 1.2; }
.btn-line-main  { font-size: 17px; font-weight: 700; letter-spacing: 0.02em; }
.btn-line-sub   { font-size: 11px; font-weight: 500; letter-spacing: 0.1em; opacity: 0.92; }

@media (max-width: 640px) {
  .btn-line { padding: 18px 28px 18px 22px; gap: 12px; }
  .btn-line::before { width: 24px; height: 24px; }
  .btn-line-main { font-size: 15px; }
  .btn-line-sub  { font-size: 10px; }
}

/* ===== LINE CTA Button — Compact (Nav) ===== */
.btn-line-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #06C755;
  background-image: linear-gradient(180deg, #0ADA5E 0%, #06C755 55%, #05B04C 100%);
  color: var(--white);
  padding: 11px 20px !important;
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  border-radius: 4px;
  border: none;
  text-decoration: none;
  position: relative;
  transition: transform 0.2s var(--ease-out), box-shadow 0.25s, filter 0.25s;
  box-shadow:
    0 6px 16px -8px rgba(6, 199, 85, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  white-space: nowrap;
}
.btn-line-nav::before {
  content: "";
  width: 18px; height: 18px;
  background: var(--white);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 36'><path d='M18 3C9.16 3 2 8.84 2 16.05c0 6.46 5.7 11.87 13.4 12.88.52.11 1.23.35 1.41.8.16.41.1 1.05.05 1.47l-.23 1.38c-.07.41-.32 1.6 1.4.87 1.72-.72 9.3-5.48 12.69-9.38C33.1 21.36 34 18.82 34 16.05 34 8.84 26.84 3 18 3Z'/></svg>") center / contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 36'><path d='M18 3C9.16 3 2 8.84 2 16.05c0 6.46 5.7 11.87 13.4 12.88.52.11 1.23.35 1.41.8.16.41.1 1.05.05 1.47l-.23 1.38c-.07.41-.32 1.6 1.4.87 1.72-.72 9.3-5.48 12.69-9.38C33.1 21.36 34 18.82 34 16.05 34 8.84 26.84 3 18 3Z'/></svg>") center / contain no-repeat;
  flex-shrink: 0;
}
.btn-line-nav:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow:
    0 14px 28px -10px rgba(6, 199, 85, 0.7),
    0 4px 10px -4px rgba(6, 199, 85, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.btn-line-nav:active { transform: translateY(0); }

/* Mobile menu variant — center + taller tap area */
.mobile-menu .btn-line {
  justify-content: center;
  padding: 18px 24px;
}
.mobile-menu .btn-line-main { font-size: 15px; }
.mobile-menu .btn-line-sub  { font-size: 10px; }

/* ===================================================================
   SPONSORS & PARTNERS
   =================================================================== */

.sponsors {
  padding: 120px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.sponsors::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(255, 213, 0, 0.06), transparent 70%),
    radial-gradient(ellipse 60% 40% at 0% 100%, rgba(10, 25, 41, 0.04), transparent 70%);
  pointer-events: none;
}
.sponsors .container { position: relative; z-index: 1; }

.sponsors-header {
  text-align: center;
  margin-bottom: 64px;
}
.sponsors-header .eyebrow { justify-content: center; margin-bottom: 20px; }
.sponsors-header .section-title { margin-bottom: 28px; }
.sponsors-intro {
  max-width: 620px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.95;
  color: var(--text-muted);
}

.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
.sponsor-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 32px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s, border-color 0.25s;
  position: relative;
}
.sponsor-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--navy-500);
}

.sponsor-role {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: var(--ff-label-en);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--red);
  text-transform: uppercase;
}
.sponsor-role::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 1px;
  background: var(--red);
  vertical-align: middle;
  margin-right: 8px;
  transform: translateY(-2px);
}

.sponsor-logo {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--cream);
  border: 1px dashed var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-family: var(--ff-label-en);
  font-size: 14px;
  letter-spacing: 0.24em;
  margin-bottom: 20px;
  overflow: hidden;
}
.sponsor-logo img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  filter: grayscale(0.1);
  transition: filter 0.25s;
}
.sponsor-card:hover .sponsor-logo img { filter: grayscale(0); }

.sponsor-name {
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 15px;
  color: var(--navy-900);
  line-height: 1.5;
  margin-bottom: 4px;
}
.sponsor-note {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.sponsors-cta {
  text-align: center;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}
.sponsors-cta p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.8;
}
.sponsors-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--navy-900);
  text-decoration: none;
  border-bottom: 1px solid var(--navy-900);
  padding-bottom: 3px;
  letter-spacing: 0.04em;
  transition: color 0.2s, border-color 0.2s, gap 0.2s;
}
.sponsors-cta a::after {
  content: "→";
  transition: transform 0.2s;
}
.sponsors-cta a:hover {
  color: var(--red);
  border-color: var(--red);
  gap: 12px;
}
.sponsors-cta a:hover::after { transform: translateX(4px); }

@media (max-width: 1024px) {
  .sponsor-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .sponsors { padding: 80px 0; }
  .sponsors-header { margin-bottom: 48px; }
  .sponsor-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .sponsor-card { padding: 26px 16px 20px; }
  .sponsor-logo { margin-bottom: 16px; }
  .sponsor-name { font-size: 13px; }
}
@media (max-width: 420px) {
  .sponsor-grid { grid-template-columns: 1fr; }
}

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

.footer {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 32px;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand .logo { margin-bottom: 24px; }
.footer-brand p {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
}
.footer h4 {
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.footer ul { list-style: none; display: grid; gap: 10px; }
.footer ul a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}
.footer ul a:hover { color: var(--red); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 12px;
  letter-spacing: 0.04em;
}
.footer-bottom .league {
  font-family: var(--ff-label-en);
  letter-spacing: 0.24em;
  color: rgba(255, 255, 255, 0.5);
}

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

@media (max-width: 1024px) {
  .burden-grid { grid-template-columns: repeat(3, 1fr); }
  .burden-item,
  .burden-item:nth-child(4),
  .burden-item:nth-child(5) { grid-column: auto; }
  .coach-grid, .staff-specialists { grid-template-columns: repeat(3, 1fr); }
  .fee-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; }
  /* Switch to mobile nav at tablet widths */
  .nav-menu ul { display: none; }
  .nav-menu > .btn-cta,
  .nav-menu > .btn-line-nav { display: none; }
  .menu-toggle { display: block; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }

  .logo-text .en { display: none; }
  .logo-text .jp { font-size: 14px; letter-spacing: 0.01em; }
  .logo-mark { width: 72px; height: 40px; }

  /* Hero: keep the player's face visible on narrow screens */
  .hero .hero-image img { object-position: top center; }

  .info-strip { padding: 48px 0 52px; }
  .info-tagline { padding-bottom: 36px; margin-bottom: 36px; }
  .info-tagline .pin-label { margin-bottom: 18px; padding: 6px 12px 6px 9px; }
  .info-tagline .pin-label .pin { width: 14px; height: 14px; }
  .info-tagline .pin-label span { font-size: 10px; letter-spacing: 0.24em; }
  .info-tagline h1 { font-size: 21px; line-height: 1.55; }
  .info-tagline h1 .br-lg { display: none; }
  .info-grid { grid-template-columns: 1fr; gap: 28px; }
  .info-grid::before { display: none; }
  .info-item { padding: 0; padding-bottom: 28px; border-bottom: 1px dashed rgba(255, 255, 255, 0.12); }
  .info-item:last-child { padding-bottom: 0; border-bottom: none; }

  .trial { padding: 80px 0; }
  .trial-grid { grid-template-columns: 1fr; gap: 60px; }
  .trial-visual .badge { width: 110px; height: 110px; font-size: 13px; bottom: -16px; right: -16px; }
  .trial-visual .badge .big { font-size: 32px; }
  /* Compact schedule on mobile */
  .schedule-compact-head { padding: 14px 18px; flex-wrap: wrap; gap: 8px 14px; }
  .schedule-row { grid-template-columns: auto 1fr; padding: 14px 18px; gap: 14px; }
  .sr-date { padding-right: 14px; min-width: 96px; }
  .sr-day { font-size: 24px; }
  .sr-status {
    grid-column: 1 / -1;
    justify-self: start;
    margin-top: 2px;
  }
  .schedule-compact-note { padding: 12px 18px; font-size: 12px; }

  .burden { padding: 80px 0 100px; }
  .burden::after { font-size: 260px; right: -40px; bottom: -40px; }
  .burden-grid { grid-template-columns: 1fr; }
  .burden-item { min-height: auto; }
  .burden-item .content { padding: 24px 22px 26px; }
  .burden-item h3.claim { font-size: 22px; }

  .philosophy { padding: 80px 0; }
  .philo-pillars { grid-template-columns: 1fr; }
  .philo-policies { grid-template-columns: 1fr; gap: 40px; }
  .philo-quote { margin-top: 60px; padding: 44px 28px; }

  .staff { padding: 80px 0; }
  .staff-leads { grid-template-columns: 1fr; }
  .lead-card { grid-template-columns: 100px 1fr; padding: 28px; gap: 20px; }
  .lead-info .name { font-size: 22px; }
  .coach-grid { grid-template-columns: repeat(2, 1fr); }
  .staff-specialists { grid-template-columns: repeat(2, 1fr); }

  .fees { padding: 80px 0; }
  .fee-main { padding: 40px 24px; }
  .fee-main .fee-includes { gap: 14px; flex-direction: column; padding-top: 24px; margin-top: 28px; }
  .fee-main .fee-includes .inc-main { text-align: center; font-size: 20px; }
  .fees-promise { padding: 48px 28px; }
  .fees-promise::before { font-size: 280px; left: -40px; top: -30px; }
  .fees-promise::after { inset: 8px; }
  .fee-grid { grid-template-columns: 1fr; }

  .equipment { padding: 80px 0; }
  .equip-grid { grid-template-columns: 1fr; }
  .equip-box { padding: 28px; }

  .faq { padding: 80px 0; }
  .faq-q { padding: 20px 24px; }
  .faq-q .qtext { font-size: 15px; }
  .faq-a-inner { padding: 0 24px 24px 64px; }
  .faq-a-inner .amark { margin-left: -40px; }

  .activity { padding: 80px 0; }
  .article-grid { grid-template-columns: 1fr; }
	

  .social { padding: 80px 0; }
  .social-grid { grid-template-columns: 1fr; }
  .social-card { aspect-ratio: auto; padding: 48px 24px; }

  .cta-final { padding: 80px 0; }

  .footer { padding: 60px 0 24px; }
  .footer-main { grid-template-columns: 1fr; gap: 36px; padding-bottom: 40px; margin-bottom: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* Scroll Reveal utility */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* Selection */
::selection {
  background: var(--red);
  color: var(--white);
}

/* Scrollbar (webkit) */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--navy-700); }
/* ===================================================================
   COLUMN ARTICLE CARD
   =================================================================== */
.col-article-wrap { margin: 32px 0 24px; }
.col-article-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px 24px;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-left: 4px solid var(--navy-900);
  border-radius: var(--radius);
  transition: box-shadow 0.2s var(--ease-out), transform 0.18s var(--ease-out);
}
.col-article-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
  border-left-color: var(--red);
}
.col-article-tag {
  display: inline-block;
  background: var(--navy-900);
  color: var(--white);
  font-family: var(--ff-label-en);
  font-size: 11px;
  letter-spacing: 0.12em;
  padding: 3px 10px;
  border-radius: 2px;
}
.col-article-title {
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 15px;
  color: var(--navy-900);
  line-height: 1.6;
}
.col-article-more {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy-700);
  letter-spacing: 0.04em;
}
::-webkit-scrollbar-thumb:hover { background: var(--navy-900); }

.news-listwrap{
max-width:780px;
  margin: 0 auto;
  padding: 120px 24px 80px;
}
.news-listwrap .col-article-tag{
	display:inline-block;
}
.news-listwrap time{font-size:12px;padding-left:1em;}


.news-pagination{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:8px;
  margin-top:42px;
}

.news-pagination a,
.news-pagination span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:42px;
  height:42px;
  padding:0 14px;
  border-radius:12px;
  border:1px solid #023A8D;
  background:#fff;
  color:#023A8D;
  font-size:14px;
  font-weight:800;
  text-decoration:none;
}

.news-pagination .current,
.news-pagination a:hover{
  background:#023A8D;
  border-color:#023A8D;
  color:#fff;
}

#clm2{
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
	padding-top:100px;
}
#pankuzu{
	width:100%;
	padding-bottom:3em;
	font-size:0.8em;
	color:#999;
}
#pankuzu a{
	color:#000;
	text-decoration:underline;
}
#clm2 #main{
	width:70%;
}
#clm2 #side{
	width:25%;
}
#clm2 #side .sbox{
	background: var(--cream);
	padding:1em;
	margin-bottom:1.5em;
}
#clm2 #side .sbox h3{
	font-family: var(--ff-display-en);
	color:var(--navy-900);
	padding-bottom:0.5em;
	font-size:1.2em;
	font-weight: 700;
}
#clm2 #side .sbox ul li{
	list-style:none;
	padding:0.5em 0;
}
#clm2 #side .sbox ul.slist li{
	position:relative;
	display:flex;
	justify-content:space-between;
	line-height:1.5;
}
#clm2 #side .sbox ul.slist li .num{
	display:block;
	width:1.5em;
	height:1.5em;
	background:var(--red);
	color:#000;
	text-align:center;
	line-height:1.4;
	position:absolute;
	left:0;
	top:0;
	z-index:2;
}
#clm2 #side .sbox ul.slist li .pic{
	width:90px;
	height:70px;
}
#clm2 #side .sbox ul.slist li .pic img{
	width:100%;
	height:100%;
	object-fit:cover;
}
#clm2 #side .sbox ul.slist li .txt{
	width:calc(100% - 105px);
}
.column-single{
	padding-bottom:50px;
}
.column-single .meta{
	display:flex;
	align-items:center;
}
.column-single .meta a{
	display: inline-block;
  background: var(--navy-900);
  color: var(--white);
  font-family: var(--ff-label-en);
  font-size: 11px;
  letter-spacing: 0.12em;
  padding: 3px 10px;
	margin-right:0.5em;
  border-radius: 2px;
}
.column-single .meta time{
	font-size:12px;
	padding-left:0.5em;
}
.column-single h1{
	padding-bottom:0.6em;
	line-height:1.5;
}
.column-single img{
	max-width:100%;
	height:auto;
}
.column-single .thumb{
	padding-bottom:2em;
}
.column-single p{
	padding-bottom:2em;
}
.column-single h2{
	background:var(--navy-900);
	font-size:1.6em;
	padding:0.5em 1em;
	margin-bottom:1em;
	color:#fff;
	border-left:solid 8px var(--red);
}
.column-single h3{
	font-size:1.4em;
	color:var(--navy-900);
	border-left:solid 6px var(--navy-900);
	padding:0 0 0 1em;
	margin-bottom:1em;
}
.column-single em{
	color:var(--navy-900);
	font-style:normal;
	font-weight:700;
}
.column-single ul{
	padding-bottom:1em;
}
.column-single ul li{
	margin-left:1.2em;
	padding:0.5em 0;
	font-weight:bold;
}
.column-single table{
	width:100%;
	border-top:solid 1px #ddd;
	border-left:solid 1px #ddd;
	margin-bottom:1.5em;
}
.column-single table th{
	background:#fafafa;
	font-weight:bold;
	border-right:solid 1px #ddd;
	border-bottom:solid 1px #ddd;
	padding:0.7em 1em;
}
.column-single table td{
	border-right:solid 1px #ddd;
	border-bottom:solid 1px #ddd;
	padding:0.7em 1em;
}
#clm2 .article-grid{grid-template-columns: repeat(2, 1fr);padding-bottom:50px;}

@media (max-width: 768px) {
#clm2{
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
	padding-top:90px;
}

#clm2 #main{
	width:100%;
}
#clm2 #side{
	width:100%;
}	
.column-single h2{
	font-size:1.4em;
	border-left:solid 4px var(--red);
}
.column-single h3{
	font-size:1.2em;
}	
	#clm2 .article-grid{grid-template-columns: 1fr;}
}

.SP{display:none;}
@media (max-width: 640px) {
	.SP{display:block;}
	.PC{display:none;}
	.spfix{
		position:fixed;
		left:0;
		bottom:0;
		z-index:999;
		width:100%;
	}
	.spfix a{
		width:100%;
	}
	.spfix .btn-line{
		padding:0.8em 2em;
	}
  .spfix .btn-line-main { font-size: 5.8vw; }
 .spfix  .btn-line-sub  { font-size: 2.8vw; }
	
}

