/* =========================================================
   YAMAMUROYAMA FC 公式サイト
   - スローガン「Retador(挑戦者)」を視覚化
   - メイン:スカイブルー(チームカラー) #00a5e0
   - サブ :ミッドナイトネイビー        #0a1a2f
   - アクセント:ゴールド                #f5b800
   - モバイルファースト
   ========================================================= */

:root {
  /* チームカラー(水色〜青) */
  --sky: #00a5e0;          /* メイン:鮮やかな水色 */
  --sky-dark: #0078ab;     /* 深い水色(ホバー・濃色用) */
  --sky-deep: #005580;     /* 最も深い青(背景用) */
  --sky-light: #5ec4ed;    /* 明るい水色 */
  --sky-pale: #d9eef9;     /* 薄い水色(背景用) */

  --navy: #0a1a2f;
  --navy-mid: #142a4a;
  --navy-light: #2a4773;
  /* チームカラー(ロゴ由来の緑) */
  --green: #9bcf3e;        /* ロゴのアクセントグリーン */
  --green-dark: #7ab028;
  --green-light: #c5e98a;

  --gold: #f5b800;
  --gold-light: #ffd84a;
  --cream: #f4f9fc;        /* 水色寄りのクリーム */
  --paper: #fbfdff;        /* 水色寄りの紙色 */
  --gray-50: #f5f5f5;
  --gray-100: #e8eaed;
  --gray-300: #c1c5cc;
  --gray-600: #5a6378;
  --text: #1a1a1a;
  --text-mute: #5a5a5a;
  --shadow: 0 4px 20px rgba(0, 120, 171, 0.12);
  --shadow-lg: 0 12px 32px rgba(0, 120, 171, 0.22);
  --max: 1100px;
}

/* -------- リセット & ベース -------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Hiragino Sans",
               "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Yu Gothic", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  background: var(--paper);
  font-feature-settings: "palt";
  overflow-x: hidden;
}
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { line-height: 1.3; letter-spacing: 0.02em; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}
.sp-only { display: inline; }
@media (min-width: 720px) { .sp-only { display: none; } }

/* =========================================================
   ヘッダー(固定ナビ)
   ========================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 26, 47, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.2s, padding 0.2s;
  border-bottom: 2px solid var(--gold);
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}
.brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: var(--sky);
  color: #fff;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.05em;
  border-radius: 2px;
  box-shadow: 0 0 0 2px var(--gold);
}
/* 実画像のロゴ用 */
.brand-logo-img {
  width: 42px; height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-size: 14px; font-weight: 900; letter-spacing: 0.08em; }
.brand-sub { font-size: 10px; color: var(--gold-light); font-weight: 700; }
@media (min-width: 720px) {
  .brand-name { font-size: 16px; }
  .brand-sub  { font-size: 11px; }
}

.site-nav {
  display: none;
  align-items: center;
  gap: 4px;
}
.site-nav a {
  display: inline-block;
  padding: 8px 12px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 2px;
  transition: color 0.15s, background 0.15s;
}
.site-nav a:hover { color: var(--gold); }
.site-nav .nav-cta {
  background: var(--sky);
  color: #fff;
  padding: 8px 18px;
  margin-left: 8px;
  box-shadow: 0 4px 12px rgba(0, 165, 224, 0.4);
}
.site-nav .nav-cta:hover { background: var(--sky-dark); color: #fff; }

@media (min-width: 880px) {
  .site-nav { display: flex; }
}

/* ハンバーガー(モバイル) */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px; height: 22px;
  background: none;
  border: none;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.2s;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(9.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-9.5px) rotate(-45deg); }
@media (min-width: 880px) {
  .nav-toggle { display: none; }
}

/* モバイルメニュー展開時 */
.site-nav.is-open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: var(--navy);
  padding: 16px 20px 24px;
  gap: 0;
  border-bottom: 3px solid var(--gold);
}
.site-nav.is-open a {
  width: 100%;
  padding: 14px 8px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 15px;
}
.site-nav.is-open .nav-cta {
  margin-top: 12px;
  margin-left: 0;
  text-align: center;
}

/* =========================================================
   ヒーロー
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
  padding: 100px 20px 60px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 20%, rgba(245, 184, 0, 0.18), transparent 50%),
    radial-gradient(circle at 75% 80%, rgba(0, 165, 224, 0.35), transparent 55%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, var(--sky-dark) 100%);
  z-index: 0;
}
/* ピッチライン風の装飾ストライプ */
.hero-stripes {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}
.hero::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  border: 2px solid rgba(245, 184, 0, 0.08);
  border-radius: 50%;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 8px;
  background: linear-gradient(90deg,
    var(--sky) 0%, var(--sky) 33%,
    var(--gold) 33%, var(--gold) 66%,
    var(--navy-light) 66%, var(--navy-light) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
/* ヒーローの大型ロゴ */
.hero-logo {
  width: 140px;
  height: auto;
  margin: 0 auto 18px;
  display: block;
  filter: drop-shadow(0 10px 26px rgba(0,0,0,0.5));
  animation: logoFloat 4s ease-in-out infinite;
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
@media (min-width: 720px) {
  .hero-logo { width: 180px; margin-bottom: 24px; }
}
.hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.25em;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 6px 16px;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.hero-title { display: flex; flex-direction: column; gap: 4px; margin-bottom: 26px; }
.hero-title-en {
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-shadow: 0 4px 18px rgba(0,0,0,0.5);
}
.hero-title-ja {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold-light);
}
@media (min-width: 720px) {
  .hero-title-en { font-size: 56px; }
  .hero-title-ja { font-size: 18px; }
}

.hero-slogan {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 14px 0 0;
  font-family: "Georgia", "Times New Roman", serif;
}
.slogan-mark {
  font-size: 56px;
  line-height: 1;
  color: var(--sky);
  font-weight: 900;
  text-shadow: 0 0 30px rgba(0, 165, 224, 0.6);
}
.slogan-text {
  font-size: 48px;
  font-weight: 900;
  font-style: italic;
  background: linear-gradient(180deg, #fff 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.05em;
}
@media (min-width: 720px) {
  .slogan-text { font-size: 80px; }
  .slogan-mark { font-size: 80px; }
}
.hero-slogan-sub {
  font-size: 13px;
  letter-spacing: 0.4em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 28px;
}

.hero-desc {
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 32px;
  color: rgba(255,255,255,0.92);
}
.hero-desc strong {
  color: var(--gold-light);
  font-weight: 800;
}

.hero-cta-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.05em;
  border-radius: 2px;
  border: 2px solid transparent;
  transition: transform 0.15s, background 0.15s, box-shadow 0.15s, color 0.15s;
  text-align: center;
}
.btn-primary {
  background: var(--sky);
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 165, 224, 0.45);
}
.btn-primary:hover { background: var(--sky-dark); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: var(--gold);
}
.btn-ghost:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }
.btn-ghost-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-ghost-dark:hover { background: var(--navy); color: #fff; }

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 24px; height: 38px;
  border: 2px solid var(--gold);
  border-radius: 14px;
}
.hero-scroll span {
  display: block;
  width: 4px; height: 8px;
  background: var(--gold);
  border-radius: 2px;
  margin: 6px auto 0;
  animation: scrollDot 1.6s infinite;
}
@keyframes scrollDot {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(14px); opacity: 0; }
}

/* =========================================================
   セクション共通
   ========================================================= */
.section {
  padding: 80px 0;
  position: relative;
}
.section-head {
  text-align: center;
  margin-bottom: 48px;
}
.section-num {
  display: inline-block;
  font-family: "Georgia", serif;
  font-size: 56px;
  font-weight: 900;
  font-style: italic;
  line-height: 1;
  background: linear-gradient(180deg, var(--sky) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  opacity: 0.9;
}
.section-title {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.1em;
  margin-top: 8px;
  color: var(--navy);
}
.section-title small {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-mute);
  margin-top: 6px;
}
.section-head.light .section-title { color: #fff; }
.section-head.light .section-title small { color: rgba(255,255,255,0.7); }

@media (min-width: 720px) {
  .section { padding: 110px 0; }
  .section-num { font-size: 80px; }
  .section-title { font-size: 28px; }
}

/* =========================================================
   ABOUT
   ========================================================= */
.section-about { background: var(--paper); }
.lead {
  text-align: center;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}
.lead strong { color: var(--sky); }
.lead-body {
  text-align: center;
  font-size: 15px;
  color: var(--text-mute);
  margin-bottom: 48px;
}
.lead-body strong { color: var(--navy); }

.concept-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 48px;
}
@media (min-width: 600px) {
  .concept-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .concept-grid { grid-template-columns: repeat(5, 1fr); }
}
.concept-card {
  position: relative;
  background: #fff;
  padding: 28px 20px 24px;
  border-radius: 2px;
  border-top: 4px solid var(--navy);
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.concept-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.concept-card.concept-accent {
  border-top-color: var(--sky);
  background: linear-gradient(135deg, #fff 0%, #e8f6fc 100%);
}
.concept-num {
  display: block;
  font-family: "Georgia", serif;
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.concept-label {
  font-size: 22px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}
.concept-card.concept-accent .concept-label { color: var(--sky); }
.concept-card p {
  font-size: 13px;
  color: var(--text-mute);
  line-height: 1.7;
}

.quote {
  background: var(--navy);
  color: #fff;
  padding: 36px 28px;
  border-radius: 2px;
  text-align: center;
  position: relative;
  border-left: 5px solid var(--sky);
  border-right: 5px solid var(--gold);
}
.quote p {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.9;
}
.quote strong { color: var(--gold); font-weight: 900; }

/* =========================================================
   CATEGORIES
   ========================================================= */
.section-categories {
  background:
    linear-gradient(180deg, rgba(10,26,47,0.95), rgba(10,26,47,0.95)),
    repeating-linear-gradient(45deg,
      transparent 0, transparent 20px,
      rgba(255,255,255,0.02) 20px, rgba(255,255,255,0.02) 21px);
  background-color: var(--navy);
  color: #fff;
}

.cat-tabs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 40px;
}
@media (min-width: 880px) {
  .cat-tabs { grid-template-columns: 1fr 1fr 1fr; }
}
.cat-card {
  background: #fff;
  color: var(--text);
  border-radius: 2px;
  padding: 24px 22px;
  position: relative;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
}
.cat-card-feature {
  background: linear-gradient(135deg, #fff 0%, #e8f6fc 100%);
  border: 2px solid var(--sky);
}
.cat-card-head {
  border-bottom: 1px dashed var(--gray-100);
  padding-bottom: 14px;
  margin-bottom: 16px;
}
.cat-tag {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  padding: 4px 12px;
  letter-spacing: 0.2em;
  margin-bottom: 10px;
}
.cat-tag-accent { background: var(--sky); }
.cat-card h3 {
  font-size: 22px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: 0.03em;
}
.cat-target {
  font-size: 13px;
  color: var(--text-mute);
  margin-top: 6px;
  font-weight: 600;
}
.cat-target small { color: var(--gray-600); }
.cat-desc {
  font-size: 14px;
  color: var(--text-mute);
  margin-bottom: 16px;
  line-height: 1.7;
}
.cat-desc small { color: var(--gray-600); }
.cat-sub {
  font-size: 13px;
  font-weight: 800;
  color: var(--sky);
  margin: 14px 0 8px;
  letter-spacing: 0.05em;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.schedule-table thead th {
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: 11px;
  padding: 7px 6px;
  text-align: center;
  letter-spacing: 0.1em;
}
.schedule-table tbody td {
  padding: 9px 6px;
  border-bottom: 1px solid var(--gray-100);
  text-align: center;
}
.schedule-table tbody td:first-child {
  font-weight: 800;
  color: var(--sky);
}
.schedule-table tbody tr:last-child td { border-bottom: none; }

.venue-info {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(245, 184, 0, 0.3);
  padding: 24px;
  border-radius: 2px;
}
.venue-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 14px;
  letter-spacing: 0.05em;
}
.venue-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 14px;
}
@media (min-width: 600px) {
  .venue-list { grid-template-columns: 1fr 1fr; }
}
.venue-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 14px 16px;
  border-radius: 2px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: background 0.15s, border-color 0.15s;
}
.venue-item:hover {
  background: rgba(245, 184, 0, 0.08);
  border-color: var(--gold);
}
.venue-item strong { font-size: 14px; color: var(--gold-light); }
.venue-item span { font-size: 13px; color: rgba(255,255,255,0.7); }
.venue-note {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* =========================================================
   RECRUIT
   ========================================================= */
.section-recruit {
  background:
    linear-gradient(135deg, rgba(0, 165, 224, 0.95), rgba(0, 120, 171, 0.95)),
    radial-gradient(circle at 70% 30%, rgba(245, 184, 0, 0.3), transparent 50%);
  background-color: var(--sky);
  color: #fff;
}
.recruit-card {
  background: #fff;
  color: var(--text);
  border-radius: 2px;
  padding: 36px 28px;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
  position: relative;
  border-top: 6px solid var(--gold);
}
.recruit-card::before {
  content: "";
  position: absolute;
  top: -6px; left: 0;
  width: 30%;
  height: 6px;
  background: var(--sky);
}
.recruit-title {
  font-size: 22px;
  font-weight: 900;
  color: var(--navy);
  text-align: center;
  margin-bottom: 24px;
}
.recruit-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 24px;
}
@media (min-width: 600px) {
  .recruit-points { grid-template-columns: 1fr 1fr; }
}
.recruit-points li {
  padding: 10px 14px;
  background: var(--cream);
  border-left: 4px solid var(--sky);
  font-size: 14px;
  font-weight: 700;
}
.recruit-msg {
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--text-mute);
}
.recruit-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =========================================================
   FEES
   ========================================================= */
.section-fees { background: var(--paper); }

.fee-update {
  text-align: center;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.fee-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.15em;
  padding: 6px 16px;
  border-radius: 2px;
  box-shadow: 0 4px 10px rgba(122, 176, 40, 0.35);
}
.fee-update small {
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 0.05em;
}

/* 料金表 */
.fee-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background: #fff;
  border-radius: 2px;
  box-shadow: var(--shadow);
  margin-bottom: 18px;
}
.fee-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 14px;
}
.fee-table thead th {
  background: linear-gradient(135deg, var(--sky) 0%, var(--sky-dark) 100%);
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.05em;
  padding: 12px 8px;
  text-align: center;
  white-space: nowrap;
}
.fee-table tbody td {
  padding: 14px 10px;
  border-bottom: 1px solid var(--gray-100);
  text-align: center;
  vertical-align: middle;
  font-variant-numeric: tabular-nums;
}
.fee-table tbody tr:nth-child(even) td { background: var(--sky-pale); }
.fee-table tbody tr:hover td { background: #fff8d6; }
.fee-table .fee-cat {
  text-align: left;
  font-weight: 800;
  color: var(--navy);
  min-width: 140px;
}
.fee-table .fee-free {
  font-weight: 800;
  color: var(--green-dark);
}

.fee-rules {
  background: var(--cream);
  border-left: 4px solid var(--sky);
  padding: 14px 18px;
  font-size: 13px;
  line-height: 1.9;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.fee-rules li { color: var(--text-mute); }
.fee-rules strong { color: var(--navy); }

/* 兄弟割引 */
.discount-card {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
  padding: 22px 24px;
  border-radius: 2px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(122, 176, 40, 0.3);
}
.discount-card::after {
  content: "★";
  position: absolute;
  top: -20px; right: -10px;
  font-size: 120px;
  opacity: 0.15;
  line-height: 1;
}
.discount-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 900;
  padding: 4px 12px;
  letter-spacing: 0.15em;
  margin-bottom: 10px;
  border-radius: 2px;
}
.discount-card p {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}
.discount-card strong { font-size: 18px; }
.discount-card small {
  font-size: 12px;
  opacity: 0.85;
  font-weight: 600;
}

.fee-other {
  font-size: 13px;
  color: var(--text-mute);
  text-align: center;
  margin-bottom: 48px;
  line-height: 1.8;
  padding: 12px 16px;
  background: var(--cream);
  border-radius: 2px;
}
.fee-other strong { color: var(--sky); }

/* 保護者会なし(差別化セクション) */
.parents-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: #fff;
  padding: 40px 28px;
  border-radius: 2px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 5px solid var(--gold);
}
.parents-section::before {
  content: "";
  position: absolute;
  top: -50px; right: -50px;
  width: 200px; height: 200px;
  border: 30px solid var(--sky);
  opacity: 0.08;
  border-radius: 50%;
}
.parents-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.15em;
  padding: 5px 14px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.parents-title {
  font-size: 22px;
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.parents-title strong {
  color: var(--gold);
  font-size: 30px;
  display: inline-block;
  margin-top: 4px;
}
@media (min-width: 720px) {
  .parents-title { font-size: 28px; }
  .parents-title strong { font-size: 40px; }
}
.parents-msg {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(255,255,255,0.9);
  max-width: 640px;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
}
.parents-msg strong { color: var(--gold-light); }
.parents-ask {
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.parents-pillars {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.pillar {
  background: rgba(255,255,255,0.08);
  border: 1.5px solid var(--gold);
  padding: 14px 22px;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 2px;
}
.pillar span {
  font-family: "Georgia", serif;
  font-style: italic;
  font-size: 22px;
  font-weight: 900;
  color: var(--gold);
}

/* =========================================================
   GK TRAINING
   ========================================================= */
.section-gk {
  background:
    linear-gradient(160deg, rgba(10,26,47,0.95), rgba(20,42,74,0.95)),
    radial-gradient(circle at 80% 20%, rgba(245, 184, 0, 0.15), transparent 50%);
  background-color: var(--navy);
  color: #fff;
}
.gk-lead {
  font-size: 16px;
  text-align: center;
  line-height: 1.9;
  margin-bottom: 28px;
  color: rgba(255,255,255,0.92);
}
.gk-lead strong { color: var(--gold); }

/* GK 開催スケジュールカード */
.gk-schedule {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(245,184,0,0.35);
  padding: 22px 22px 18px;
  border-radius: 4px;
  margin-bottom: 32px;
  position: relative;
}
.gk-schedule::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sky) 0%, var(--gold) 50%, var(--green) 100%);
}
.gk-schedule-title {
  font-size: 14px;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.gk-schedule-info {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 18px;
  font-size: 15px;
  margin-bottom: 18px;
  color: #fff;
}
.gk-schedule-info dt {
  font-size: 11px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.1em;
  align-self: center;
  background: rgba(245,184,0,0.15);
  padding: 3px 10px;
  border-radius: 2px;
  text-align: center;
}
.gk-schedule-info dd {
  font-weight: 700;
  align-self: center;
  font-variant-numeric: tabular-nums;
}

.gk-target-title {
  font-size: 12px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin: 12px 0 8px;
  padding-top: 12px;
  border-top: 1px dashed rgba(245,184,0,0.25);
}
.gk-target-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.gk-target-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  background: rgba(0,0,0,0.18);
  padding: 10px 14px;
  border-radius: 2px;
  border-left: 3px solid var(--sky-light);
}
.gk-target-list li:nth-child(2) { border-left-color: var(--green); }
.gk-week {
  font-size: 12px;
  font-weight: 800;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.gk-grade {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.gk-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 36px;
}
.stat {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(245, 184, 0, 0.3);
  text-align: center;
  padding: 22px 8px;
  border-radius: 2px;
}
.stat-num {
  display: block;
  font-family: "Georgia", serif;
  font-style: italic;
  font-size: 44px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
@media (min-width: 720px) {
  .stat-num { font-size: 60px; }
}
.stat-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}
.stat-label small {
  display: block;
  color: rgba(255,255,255,0.5);
  font-size: 10px;
  margin-top: 2px;
}

.gk-msg, .gk-notes {
  font-size: 14px;
  text-align: center;
  color: rgba(255,255,255,0.85);
  max-width: 720px;
  margin: 0 auto 14px;
  line-height: 1.9;
}
.gk-msg strong { color: var(--gold-light); }
.gk-notes { font-size: 12px; color: rgba(255,255,255,0.5); }

/* 全カテゴリー トレセン合格実績 */
.trecen-results {
  margin-top: 40px;
  padding: 28px 24px 24px;
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(245,184,0,0.35);
  border-radius: 4px;
  position: relative;
}
.trecen-results::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg,
    var(--sky) 0%, var(--gold) 50%, var(--green) 100%);
}
.trecen-title {
  font-size: 14px;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 18px;
}
.trecen-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.trecen-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  padding: 22px 12px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.trecen-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}
.trecen-num {
  font-family: "Georgia", serif;
  font-style: italic;
  font-weight: 900;
  font-size: 48px;
  line-height: 1;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}
.trecen-num small {
  font-family: -apple-system, "Hiragino Sans", "Noto Sans JP", sans-serif;
  font-style: normal;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  margin-left: 4px;
  letter-spacing: 0.05em;
}
.trecen-label {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.05em;
}
.trecen-note {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  text-align: center;
  line-height: 1.7;
}
@media (min-width: 600px) {
  .trecen-num { font-size: 64px; }
  .trecen-num small { font-size: 16px; }
}

/* =========================================================
   RESULTS
   ========================================================= */
.section-results { background: var(--cream); }
.result-year {
  background: #fff;
  padding: 28px 24px;
  border-radius: 2px;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
  border-top: 5px solid var(--sky);
}
.year-title {
  font-size: 18px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}
.year-title span {
  display: inline-block;
  font-family: "Georgia", serif;
  font-style: italic;
  font-size: 32px;
  color: var(--sky);
  margin-right: 8px;
}
.cat-result-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  background: var(--cream);
  padding: 7px 14px;
  margin: 18px 0 10px;
  border-left: 4px solid var(--sky);
  letter-spacing: 0.03em;
}
.result-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.result-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 6px;
  border-bottom: 1px dashed var(--gray-100);
  font-size: 14px;
  flex-wrap: wrap;
}
.result-list li:last-child { border-bottom: none; }
.result-list strong {
  flex: 1;
  font-weight: 700;
  color: var(--text);
  min-width: 200px;
}
.result-list .rank {
  font-size: 12px;
  font-weight: 800;
  padding: 4px 10px;
  background: var(--gray-100);
  color: var(--text-mute);
  letter-spacing: 0.05em;
  white-space: nowrap;
  border-radius: 2px;
}
.result-list li:has(.trophy) .rank,
.result-list .rank:not(.rank-2nd):not(.rank-best):first-of-type {
  background: var(--gold);
  color: var(--navy);
}
.result-list .rank-2nd { background: #e8e8e8; color: #555; }
.result-list .rank-best { background: #ffe5cc; color: #b85c00; }
.result-list .rank small { font-size: 10px; opacity: 0.7; }
.trophy.gold { font-size: 18px; }

.result-archive {
  margin-top: 16px;
  background: #fff;
  padding: 0;
  border-radius: 2px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--navy);
}
.result-archive summary {
  cursor: pointer;
  padding: 18px 24px;
  font-weight: 800;
  font-size: 14px;
  color: var(--navy);
  letter-spacing: 0.03em;
  list-style: none;
  user-select: none;
}
.result-archive summary::-webkit-details-marker { display: none; }
.result-archive[open] summary { border-bottom: 1px solid var(--gray-100); }
.result-archive .result-year {
  margin-bottom: 0;
  box-shadow: none;
  border-top: none;
  padding: 16px 24px 24px;
}

.results-note {
  background: var(--navy);
  color: #fff;
  padding: 18px 22px;
  border-radius: 2px;
  font-size: 13px;
  line-height: 1.8;
  text-align: center;
  margin-top: 24px;
  border-left: 4px solid var(--gold);
}

/* =========================================================
   INSTAGRAM プロフィール風カード
   ========================================================= */
.ig-profile-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 28px;
  box-shadow: var(--shadow);
  text-decoration: none;
  color: var(--text);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.15s;
}
.ig-profile-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  /* Instagramブランドグラデ */
  background: linear-gradient(45deg,
    #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.ig-profile-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.ig-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  padding: 3px;
  /* グラデリング */
  position: relative;
}
.ig-avatar::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: linear-gradient(45deg,
    #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  z-index: -1;
}
.ig-avatar img {
  width: 100%; height: 100%;
  object-fit: contain;
  border-radius: 50%;
  background: var(--navy);
  padding: 6px;
}
@media (min-width: 600px) {
  .ig-avatar { width: 100px; height: 100px; }
}

.ig-profile-info { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.ig-handle-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.ig-handle {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.02em;
  word-break: break-all;
}
@media (min-width: 600px) {
  .ig-handle { font-size: 16px; }
}
.ig-follow-btn {
  display: inline-block;
  background: linear-gradient(45deg, #f09433 0%, #dc2743 50%, #bc1888 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 6px;
  letter-spacing: 0.05em;
}
.ig-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: var(--text-mute);
}
.ig-stats strong { color: var(--navy); font-weight: 800; }
.ig-domain {
  color: var(--sky-dark);
  font-weight: 600;
}
.ig-bio {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-mute);
  margin-top: 2px;
}

/* =========================================================
   PHOTO GALLERY
   ========================================================= */
.section-gallery {
  background:
    linear-gradient(180deg, var(--paper) 0%, var(--sky-pale) 100%);
}
.gallery-lead {
  text-align: center;
  font-size: 14px;
  color: var(--text-mute);
  margin-bottom: 32px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 24px;
}
@media (min-width: 600px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
}
@media (min-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); gap: 12px; }
}

.gallery-item {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: none;
  padding: 0;
  background: var(--navy);
  cursor: pointer;
  border-radius: 2px;
  position: relative;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.gallery-item:hover::after {
  content: "🔍";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 31, 77, 0.4);
  color: #fff;
  font-size: 28px;
  pointer-events: none;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.gallery-item:hover img { transform: scale(1.08); }

/* Instagram CTAバナー */
.ig-cta-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  border-radius: 12px;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg,
    #f09433 0%, #e6683c 20%, #dc2743 45%, #cc2366 70%, #bc1888 100%);
  box-shadow: 0 8px 24px rgba(220, 39, 67, 0.35);
  transition: transform 0.15s, box-shadow 0.15s;
  margin-top: 8px;
}
.ig-cta-banner:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(220, 39, 67, 0.5);
}
.ig-cta-icon {
  flex: 0 0 auto;
  width: 50px; height: 50px;
  background: rgba(255,255,255,0.18);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.ig-cta-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.4;
}
.ig-cta-text strong {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.02em;
}
.ig-cta-text small {
  font-size: 12px;
  opacity: 0.95;
  font-weight: 600;
}
.ig-cta-arrow {
  flex: 0 0 auto;
  font-size: 24px;
  font-weight: 900;
  transition: transform 0.2s;
}
.ig-cta-banner:hover .ig-cta-arrow { transform: translateX(6px); }
@media (min-width: 600px) {
  .ig-cta-banner { padding: 22px 28px; gap: 20px; }
  .ig-cta-text strong { font-size: 17px; }
}

/* フローティング Instagram ボタン(画面右下) */
.ig-floating {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(45deg,
    #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  box-shadow: 0 8px 22px rgba(220, 39, 67, 0.5);
  transition: transform 0.15s, box-shadow 0.15s;
  text-decoration: none;
}
.ig-floating:hover {
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 12px 30px rgba(220, 39, 67, 0.65);
}
.ig-floating::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: linear-gradient(45deg,
    #f09433, #dc2743, #bc1888);
  z-index: -1;
  opacity: 0;
  filter: blur(8px);
  transition: opacity 0.2s;
}
.ig-floating:hover::before { opacity: 0.7; }
@media (min-width: 720px) {
  .ig-floating { right: 24px; bottom: 24px; width: 60px; height: 60px; }
}
/* ヒーロー上では非表示にして邪魔しない */
@media (max-height: 500px) {
  .ig-floating { display: none; }
}

/* ライトボックス */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 10, 25, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: lbFade 0.2s ease-out;
}
.lightbox[hidden] { display: none; }
@keyframes lbFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.lightbox-img-wrap {
  max-width: 95vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  display: block;
  box-shadow: 0 12px 50px rgba(0,0,0,0.7);
  border: 3px solid var(--gold);
  border-radius: 2px;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(245,184,0,0.5);
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  width: 50px; height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, transform 0.1s;
}
.lightbox-close { top: 16px; right: 16px; }
.lightbox-prev  { top: 50%; left: 12px; transform: translateY(-50%); font-size: 32px; line-height: 1; }
.lightbox-next  { top: 50%; right: 12px; transform: translateY(-50%); font-size: 32px; line-height: 1; }
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}
.lightbox-prev:hover { transform: translateY(-50%) scale(1.1); }
.lightbox-next:hover { transform: translateY(-50%) scale(1.1); }
.lightbox-count {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  background: rgba(0,0,0,0.5);
  padding: 6px 16px;
  border-radius: 999px;
  font-variant-numeric: tabular-nums;
}
@media (min-width: 720px) {
  .lightbox-prev { left: 24px; }
  .lightbox-next { right: 24px; }
}

/* =========================================================
   STAFF
   ========================================================= */
.section-staff {
  background:
    linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: #fff;
}

/* リーダー3名(2026年度新体制) */
.staff-leaders {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 16px;
}
@media (min-width: 720px) {
  .staff-leaders { grid-template-columns: repeat(3, 1fr); }
}
.leader-card {
  background: #fff;
  color: var(--text);
  padding: 24px 20px;
  border-radius: 2px;
  border-top: 5px solid var(--sky);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.leader-card::after {
  content: "";
  position: absolute;
  top: -5px; right: 0;
  width: 30%; height: 5px;
  background: var(--green);
}
.leader-card-rep {
  border-top-color: var(--gold);
  background: linear-gradient(135deg, #fff 0%, #fff8e1 100%);
}
.leader-card-rep::after { background: var(--sky); }
.leader-role {
  display: inline-block;
  background: var(--navy);
  color: var(--gold);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.15em;
  padding: 5px 12px;
  margin-bottom: 10px;
}
.leader-card-rep .leader-role { background: var(--sky); color: #fff; }
.leader-name {
  font-size: 22px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: 0.03em;
  margin-bottom: 12px;
}

.staff-office {
  text-align: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(245,184,0,0.3);
  padding: 14px;
  border-radius: 2px;
  margin-bottom: 36px;
  font-size: 14px;
  color: #fff;
}
.staff-office-label {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  margin-right: 10px;
}

.staff-sub-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin: 0 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(245,184,0,0.2);
}

.staff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px;
}
@media (min-width: 600px) {
  .staff-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 900px) {
  .staff-grid { grid-template-columns: repeat(4, 1fr); }
}
.staff-card {
  background: #fff;
  color: var(--text);
  padding: 18px 16px;
  border-radius: 2px;
  border-top: 3px solid var(--navy);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.staff-card-lead {
  grid-column: 1 / -1;
  border-top-color: var(--gold);
  background: linear-gradient(135deg, #fff 0%, #fff8e1 100%);
}
@media (min-width: 600px) {
  .staff-card-lead { grid-column: span 3; }
}
@media (min-width: 900px) {
  .staff-card-lead { grid-column: span 2; }
}
.staff-card-new {
  border-top-color: var(--sky);
  background: linear-gradient(135deg, #fff 0%, #e8f6fc 100%);
}
.staff-card-mute { opacity: 0.85; }

.staff-role {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--sky);
  text-transform: uppercase;
}
.staff-role small { color: var(--gold); font-weight: 800; }
.staff-card-lead .staff-role { color: var(--gold); background: var(--navy); padding: 4px 8px; align-self: flex-start; }
.staff-name {
  font-size: 17px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.staff-license {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 11px;
  color: var(--text-mute);
}
.staff-license li {
  padding-left: 12px;
  position: relative;
  line-height: 1.6;
}
.staff-license li::before {
  content: "";
  position: absolute;
  top: 8px; left: 0;
  width: 6px; height: 2px;
  background: var(--sky);
}
.staff-history {
  font-size: 11px;
  color: var(--text-mute);
  line-height: 1.7;
}

.staff-recruit {
  text-align: center;
  font-weight: 800;
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 0.05em;
}

/* カテゴリー別担当表 */
.duty-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(245,184,0,0.2);
  border-radius: 2px;
  margin-bottom: 18px;
}
.duty-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 13px;
  color: #fff;
}
.duty-table thead th {
  background: linear-gradient(135deg, var(--sky-dark) 0%, var(--navy-mid) 100%);
  color: var(--gold-light);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.1em;
  padding: 11px 8px;
  text-align: center;
  white-space: nowrap;
}
.duty-table tbody td {
  padding: 10px 8px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  color: rgba(255,255,255,0.88);
}
.duty-table tbody tr:hover td { background: rgba(245,184,0,0.06); }
.duty-table tbody td:first-child {
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.05em;
}
.duty-table tbody td strong { font-weight: 900; }

.staff-notes {
  font-size: 12px;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 24px;
}

/* =========================================================
   PARTNERS
   ========================================================= */
.section-partners { background: var(--paper); }
.partner-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}
@media (min-width: 600px) {
  .partner-list { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 900px) {
  .partner-list { grid-template-columns: repeat(4, 1fr); }
}
.partner-list li {
  background: #fff;
  border: 1px solid var(--gray-100);
  padding: 18px 14px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 70px;
  transition: border-color 0.15s, transform 0.15s;
}
.partner-list li:hover {
  border-color: var(--sky);
  transform: translateY(-2px);
}
.partner-list li small {
  font-size: 10px;
  color: var(--text-mute);
  font-weight: 600;
  display: block;
  margin-top: 2px;
}
.partner-note {
  text-align: right;
  font-size: 12px;
  color: var(--text-mute);
  margin-bottom: 32px;
}
.partner-cta {
  background: linear-gradient(135deg, var(--sky) 0%, var(--sky-dark) 100%);
  color: #fff;
  padding: 24px;
  text-align: center;
  border-radius: 2px;
  border-top: 3px solid var(--gold);
}
.partner-cta p { font-size: 14px; font-weight: 700; line-height: 1.8; }
.partner-cta p:first-child { font-size: 16px; color: var(--gold-light); font-weight: 800; margin-bottom: 4px; }

/* =========================================================
   CONTACT
   ========================================================= */
.section-contact {
  background:
    linear-gradient(135deg, var(--navy) 0%, var(--sky-dark) 100%);
  color: #fff;
  text-align: center;
}
.contact-lead {
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 36px;
  color: rgba(255,255,255,0.9);
}
.contact-lead strong { color: var(--gold); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 720px;
  margin: 0 auto 24px;
}
@media (min-width: 720px) {
  .contact-grid { grid-template-columns: repeat(3, 1fr); }
}
.contact-card {
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(245, 184, 0, 0.3);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: #fff;
  border-radius: 2px;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.contact-card:hover {
  background: rgba(245, 184, 0, 0.12);
  border-color: var(--gold);
  transform: translateY(-3px);
}
.contact-icon { font-size: 30px; line-height: 1; }
.contact-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  font-weight: 800;
  color: var(--gold);
  text-transform: uppercase;
}
.contact-value {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.4;
  word-break: break-all;
  text-align: center;
}

.contact-staff {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
}

/* LINE 友だち追加カード */
.line-card {
  max-width: 720px;
  margin: 0 auto 24px;
  background: #fff;
  color: var(--text);
  padding: 28px 24px;
  border-radius: 2px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: center;
  border-top: 5px solid #06c755;  /* LINEブランドカラー */
  box-shadow: var(--shadow-lg);
}
@media (min-width: 600px) {
  .line-card { grid-template-columns: 1fr auto; padding: 32px; gap: 28px; }
}
.line-card-text { text-align: left; }
.line-icon { font-size: 28px; display: inline-block; margin-bottom: 6px; }
.line-title {
  font-size: 20px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: 0.03em;
}
.line-title::before {
  content: "LINE";
  display: inline-block;
  background: #06c755;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  padding: 3px 8px;
  border-radius: 2px;
  margin-right: 8px;
  vertical-align: middle;
}
.line-msg {
  font-size: 14px;
  color: var(--text-mute);
  line-height: 1.8;
  margin-bottom: 8px;
}
.line-msg strong { color: #06c755; font-weight: 800; }
.line-msg-sub {
  font-size: 12px;
  color: var(--gray-600);
  line-height: 1.7;
}
.line-qr {
  width: 160px;
  height: 160px;
  margin: 0 auto;
  padding: 8px;
  background: #fff;
  border: 2px solid #06c755;
  border-radius: 4px;
  flex-shrink: 0;
}
.line-qr img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
}
@media (min-width: 600px) {
  .line-qr { width: 180px; height: 180px; }
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: #050d1a;
  color: #fff;
  padding: 48px 0 32px;
  text-align: center;
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg,
    var(--sky) 0%, var(--sky) 33%,
    var(--gold) 33%, var(--gold) 66%,
    var(--navy-light) 66%, var(--navy-light) 100%);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px; height: 50px;
  background: var(--sky);
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.05em;
  box-shadow: 0 0 0 3px var(--gold);
}
.footer-logo-img {
  width: 56px; height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
}
.footer-name {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: left;
}
.footer-sub {
  font-size: 11px;
  color: var(--gold);
  font-weight: 700;
  text-align: left;
}
.footer-tagline {
  font-family: "Georgia", serif;
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.1em;
}
.footer-addr {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}
.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
  margin-top: 18px;
}

/* =========================================================
   フェードインアニメーション(JSで is-visible 付与)
   ========================================================= */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .hero-scroll span { animation: none; }
}
