
:root {
  --bg-dark: #020817;
  --bg-deep: #020617;
  --bg-card: #0b1020;
  --accent: #38bdf8;
  --accent-warm: #f97316;
  --text-main: #e5e7eb;
  --text-muted: #9ca3af;
  --border-subtle: #1f2937;
}

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

/* Default color scheme */
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #0b1220 0%, #020617 50%, #020617 100%);
  color: var(--text-main, #ffffff);
  line-height: 1.6;
}

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

img {
  max-width: 100%;
  display: block;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin-top: -40px;
}

.container {
  width: 100%;
  max-width: 1255px;
  margin: 0 auto;
  padding: 0 16px;
}

/* デフォルトのパディング設定 */
.container, .container-fluid {
    /*padding-left: 55px;
    padding-right: 55px;*/
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: linear-gradient(to bottom, rgba(2, 6, 23, 0.92), rgba(2, 6, 23, 0.7), transparent);
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  gap: 16px;
}

.logo-block {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
    width: 36px;     /* ヘッダーの高さに合わせて調整 */
    height: 36px;
    /* background-image: url('/static/img/from_the_north_logo.webp');  ←ここに軽量化済ロゴを置く */
    background-size: cover;
    background-position: center;
    border-radius: 36px; /* 四角のままなら削除可 */
}


.logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-text-main {
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 20px;
  text-transform: uppercase;
  line-height: initial;
}

.logo-text-sub {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: normal;
}

nav {
  display: none;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 900;
}

.nav-link {
  color: var(--text-muted);
}

.nav-link.is-active {
  color: var(--text-main);
}

.nav-link:hover {
  color: var(--accent);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn {
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  background: transparent;
  color: var(--text-main);
}

.btn-primary {
  background: linear-gradient(135deg, #0ea5e9, #38bdf8);
  color: #0b1120;
  border: none;
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.35);
}

.btn-outline {
  border-color: rgba(148, 163, 184, 0.6);
  color: var(--text-muted);
}

.btn-primary:hover {
  filter: brightness(1.1);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.menu-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.9);
  cursor: pointer;
}

.menu-icon {
  width: 16px;
  height: 2px;
  background: var(--text-main);
  position: relative;
}

.menu-icon::before,
.menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 16px;
  height: 2px;
  background: var(--text-main);
}

.menu-icon::before {
  top: -5px;
}

.menu-icon::after {
  top: 5px;
}

/* Hero */
.hero {
  padding: 32px 0 24px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.7);
  background:
    radial-gradient(circle at 10% 0%, rgba(56, 189, 248, 0.13), transparent 55%),
    radial-gradient(circle at 90% 0%, rgba(59, 130, 246, 0.13), transparent 55%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr);
  gap: 24px;
  align-items: center;
}

.hero-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-badge {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.8);
  color: var(--accent);
}

.hero-title {
  font-size: clamp(24px, 6vw, 40px);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fcbd06;
}

.hero-subtitle {
  font-size: 18px;
  font-weight: 600;
  color: #f89300;
  margin-bottom: 10px;
}

.hero-tagline {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 460px;
  margin-bottom: 20px;
}

.hero-tagline span {
  color: var(--accent);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 11px;
  color: var(--text-muted);
}

.meta-item strong {
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e5e7eb;
  margin-bottom: 2px;
}

.hero-right {
  display: grid;
  gap: 14px;
}

.hero-card {
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.25), transparent 60%), rgba(15, 23, 42, 0.95);
  padding: 14px 14px 16px;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.9);
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}

.hero-card-header span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-card-header span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.6);
}

.hero-card-main {
  display: grid;
  gap: 6px;
}

.next-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.next-title {
  font-size: 14px;
  font-weight: 600;
}

.next-meta {
  font-size: 11px;
  color: var(--text-muted);
}

.next-meta span::before {
  content: "•";
  margin: 0 4px;
  opacity: 0.7;
}

.next-meta span:first-child::before {
  content: "";
  margin: 0;
}

.hero-card-footer {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--text-muted);
}

.hero-pill {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.hero-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  font-size: 11px;
}

.mini-card {
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: rgba(15, 23, 42, 0.9);
  padding: 8px 9px;
}

.mini-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 3px;
}

.mini-value {
  font-weight: 600;
  font-size: 13px;
}

/* Sections */
main {
  flex: 1;
}

section {
  padding: 24px 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
  gap: 8px;
}

.section-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.section-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  text-align: left;
}

.section-link {
  font-size: 13px;
  color: var(--accent);
}

.grid {
  display: grid;
  gap: 12px;
}

.grid-2 .grid-3 .grid-4 .grid-5 .grid-6 {
  grid-template-columns: repeat(1, 1fr);
}
.grid-4 {
  grid-template-columns: repeat(1, 1fr);
}
.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.grid-5 {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.grid-6 {
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}
@media (min-width: 771px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);  /* Create exactly 2 columns */
  }
  .grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr)); 
  }
  .grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
  .grid-5 {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }
  .grid-6 {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
}

.d-none {
  display: none!important;
}

.card {
  border-radius: 16px;
  border: 1px solid var(--border-subtle);
  background: rgba(15, 23, 42, 0.85);
  padding: 12px 12px 14px;
}

.card-header {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 6px;
  text-align: left;
}

.card-title {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
  margin-top: 12px;
  line-height: normal;
  text-align: left;
}

.card-meta {
  font-size: 11px;
  color: var(--text-muted);
  text-align: left;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.pill {
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.pill-hot {
  border-color: var(--accent-warm);
  color: var(--accent-warm);
}

.pill-green {
  border-color: #4CAF50; /* Green color */
  color: #4CAF50;        /* Green color */
}

.pill-new {
  border-color: var(--accent);
  color: var(--accent);
}

/* NEWS list */
.news-list {
  display: grid;
  gap: 8px;
}

.news-item {
  /*display: flex;*/
  align-items: baseline;
  font-size: 13px;
  border-bottom: 1px solid rgba(31, 41, 55, 0.9);
}

.news-date {
  font-size: 13px;
  color: var(--text-muted);
  min-width: 64px;
}

.news-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-right: 6px;
  display: inline-block;
  width: 40px;  /* ラベルの幅を固定 */
  white-space: nowrap;
  padding-left: 5%;
}


.news-item a:hover {
  text-decoration: underline;
}


/* event */
.event-card {
  display: grid;
  gap: 6px;
}

.event-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--text-muted);
}

.event-name {
  font-size: 13px;
  font-weight: 600;
}

.event-meta-row {
  /*display: flex;*/
  flex-wrap: wrap;
  gap: 6px 12px;
  font-size: 11px;
  color: var(--text-muted);
}

.event-buttons {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.btn-sm {
  padding: 5px 10px;
  font-size: 11px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: transparent;
  cursor: pointer;
  color: var(--text-main);
  max-height: 29.38px;
}

.btn-sm-primary {
  border-color: transparent;
  background: rgba(56, 189, 248, 0.16);
  color: var(--accent);
}

/* MOVIE */
.media-card {
  display: grid;
  /*grid-template-rows: 120px auto;*/
  gap: 8px;
}

.media-thumb {
  position: relative;
  min-height: 120px;
}

.media-thumb::after {
  content: "▶";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: rgba(226, 232, 240, 0.9);
  text-shadow: 0 0 12px rgba(15, 23, 42, 0.9);
  pointer-events: none;
  z-index: 2;
}

.media-thumb img{
  border-radius: 16px;
}

.media-meta {
  font-size: 11px;
  color: var(--text-muted);
}

/* GOODS */
.goods-card {
  display: grid;
  gap: 8px;
}

.goods-thumb {
  width: 100%; /* Ensure it takes up the full container width */
  border-radius: 12px;
  background: linear-gradient(135deg, #020617, #0f172a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--text-muted);
  position: relative; /* Required to make padding-top work */
}


.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 11px;
  color: var(--text-muted);
}

.price-row .text-right {
  margin-left: auto; /* Pushes the element to the right */
  text-align: right;
}

.price-row strong {
  font-size: 14px;
  color: var(--accent);
}

/* PARTNER */
.partner-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
  font-size: 11px;
}

.partner-logo {
  padding: 10px;
  border-radius: 12px;
  border: 1px dashed rgba(148, 163, 184, 0.4);
  text-align: center;
  color: var(--text-muted);
}

/* Footer */
footer {
  border-top: 1px solid rgba(31, 41, 55, 0.9);
  background: rgba(2, 6, 23, 0.98);
  padding: 18px 0 22px;
  font-size: 11px;
  color: var(--text-muted);
}

.footer-inner {
  display: grid;
  gap: 10px;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}

.footer-title {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 4px;
  color: #e5e7eb;
}

.footer-links {
  display: grid;
  gap: 3px;
}

.footer-bottom {
  /*display: flex;*/
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  align-items: center;
  border-top: 1px solid rgba(31, 41, 55, 0.9);
  padding-top: 8px;
  margin-top: 6px;
}

.footer-brand {
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.social-row {
  display: flex;
  gap: 10px;
}

.social-link {
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Responsive */
@media (min-width: 768px) {
  nav {
    display: block;
  }

  .menu-button {
    display: none;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
  }

  .hero {
    padding: 40px 0 30px;
  }

  section {
    padding: 28px 0;

  }
  .athlete-box{
    padding-top: 0px !important;
  }
.header-inner {
    padding: 14px 55px;
  }
}

#partner-box {
  padding: 20px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 20px;
}

.section-title {
  font-size: 24px;
  font-weight: bold;
  text-align: left;
}

.card.partner-card {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.partner-thumb img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .grid-6 {
    grid-template-columns: repeat(3, 1fr); /* 3 columns on tablets */
  }
}

@media (max-width: 480px) {
  .grid-6 {
    grid-template-columns: 1fr; /* 1 column on small screens */
  }
}

#music-player {
  margin-top: 50px;
}

.music-player audio {
  width: 100%;
  border-radius: 8px;
  background: #f0f0f0;
  border: none;
}


/* モバイルや小さな画面サイズの場合はパディングを変更する */
@media (max-width: 767px) {
    .container, .container-fluid {
        padding-left: 20px;  /* モバイル用の小さめのパディング */
        padding-right: 20px; /* モバイル用の小さめのパディング */
    }
    .hero-tagline {
        font-size: 12px;
    }
    .display-none {
        display: none;
    }
}


/* Footer */
footer {
  border-top: 1px solid rgba(31, 41, 55, 0.9);
  background: rgba(2, 6, 23, 0.98);
  padding: 18px 0 22px;
  font-size: 11px;
  color: var(--text-muted);
}

.footer-inner {
  display: grid;
  gap: 10px;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}

.footer-title {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 4px;
  color: #e5e7eb;
}

.footer-links {
  display: grid;
  gap: 3px;
  font-feature-settings: "palt";
}

.footer-bottom {
  /*display: flex;*/
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  align-items: center;
  border-top: 1px solid rgba(31, 41, 55, 0.9);
  padding-top: 8px;
  margin-top: 6px;
}

.footer-brand {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding-top: 10px;
  text-align: center;
}

.social-row {
  display: flex;
  gap: 10px;
}

.social-link {
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* PARTNER */
.partner-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
  font-size: 11px;
}

.partner-logo {
  padding: 10px;
  border-radius: 12px;
  border: 1px dashed rgba(148, 163, 184, 0.4);
  text-align: center;
  color: var(--text-muted);
}

.card.partner-card {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (min-width: 768px) {
  nav {
    display: block;
  }

  .menu-button {
    display: none;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
  }

  .hero {
    padding: 40px 0 30px;
  }

  section {
    padding: 28px 0;
  }

  .header-inner {
    padding: 14px 55px;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 20px;
}

.section-title {
  font-size: 24px;
  font-weight: bold;
  text-align: left;
}


@media (max-width: 768px) {
  .grid-6 {
    grid-template-columns: repeat(3, 1fr); /* 3 columns on tablets */
  }
}

@media (max-width: 480px) {
  .grid-6 {
    grid-template-columns: 1fr; /* 1 column on small screens */
  }
}

#music-player {
  margin-top: 50px;
}

.music-player audio {
  width: 100%;
  border-radius: 8px;
  background: #f0f0f0;
  border: none;
}


/* モバイルや小さな画面サイズの場合はパディングを変更する */
@media (max-width: 767px) {
    .container, .container-fluid {
        padding-left: 20px;  /* モバイル用の小さめのパディング */
        padding-right: 20px; /* モバイル用の小さめのパディング */
    }
    .hero-tagline {
        font-size: 12px;
    }
    .display-none {
        display: none;
    }
}



/*---パートナー---*/
.partner-box{background-color: #FFFFFF;}
.partner-box .flex{display: flex;flex-wrap: wrap;margin-bottom: 30px;justify-content: center;}
.partner-box .flex._main > div{width: calc(50% - 40px);margin: 0 20px 20px}
.partner-box .flex._main > div:nth-child(2n+1){margin-left: 0;}
.partner-box .flex._second > div{width: calc(25% - 20px);margin: 0 10px 10px}
.partner-box .flex._main > div:nth-child(4n+1){margin-left: 0;}

@media (min-width: 771px) {
    .partner-box .flex {
        margin-bottom: 50px;
    }
}

@media (min-width: 771px){
/*---パートナー---*/ 
    .partner-box .flex{margin-bottom: 50px;align-items: center;justify-content: center;}
    .partner-box .flex._main > div{width: calc(25% - 40px);margin: 0 20px 20px;max-height: 55px;}
    #women .partner-box .flex._main > div{width: calc(33.333% - 40px);margin: 0 20px 20px}
    #women .partner-box .flex._main > div:nth-child(3n+1){margin-left: 0;}
	
    .partner-box .flex._main > div:nth-child(4n+1){margin-left: 0;}
    .partner-box .flex._second > div{width: calc(16% - 20px);margin: 0 10px 10px}
    .partner-box .flex._main > div:nth-child(6n+1){margin-left: 0;}
    .partner-box img{max-height: 55px!important;}

/*--------
パートナー
--------*/
	.dir-partner .partner-list > section ul li{width: calc(33.33% - 15px);}
	.dir-partner .partner-list .partner-top li{width: 300px;}
	.dir-partner .partner-list .partner-official li{width: calc(25% - 27.5px);margin: 0 10px 10px 0;padding: 0 10px;text-align: center;}
	.dir-partner .partner-list > section ul li a,.dir-partner .partner-list > section ul li span{font-size: 1.4rem;}
}


/*---サイトマップ---*/ 
	footer{background-color: #001D46;position: relative;}
    .map-box{background-color: #001D46;}
	.footer_nav{
		display: flex;
		flex-wrap: wrap;
		justify-content: space-around;
		align-items: flex-start;
	}
	.footer_link_wrap{width: 100%;padding: 0;}
	.footer_link_cate{margin: 0;}
/*	.footer_nav .footer_link_wrap:last-child .footer_link_cate:last-of-type{border-bottom: 1px solid #026ad2;}*/
	.footer_nav .footer-title{
		display: block;
		position: relative;
		margin: 0;
		padding: 0.625em 0 0.625em 0;
		font-size: 1.4rem;
		font-weight: normal;
		color: #fff;
		cursor: pointer;
	}
.footer_nav .footer-title a:hover{
	color: #FFFFFF;
	opacity: .7;
}
	.footer_nav .footer-accordion-title:after{
		content: "";
		position: absolute;
		right: 10px;
		top: 38%;
		transition: all 0.2s ease-in-out;
		display: block;
		width: 8px;
		height: 8px;
		border-top: solid 2px #fff;
		border-right: solid 2px #fff;
		-webkit-transform: rotate(135deg);
		transform: rotate(135deg);
	}
	.footer_nav .footer-accordion-title.open:after{-webkit-transform: rotate(-45deg);transform: rotate(-45deg);top: 45%;}
	.footer_nav .accordion-content{padding-left: 15px;}
	.footer_nav .accordion-content li a{font-size: 1.2rem;}
	.footer_nav .accordion-content li a:hover{opacity: .7;}
	.footer-bottom-box{background-color: #001D46;border-top: 2px solid #002244;}
	.footer-inner{width: 100%;}
	.footer-logo{display: block;flex-wrap: nowrap;justify-content: space-between;align-items: flex-start;}
	.footer-logo_sns ul{display: flex;flex-wrap: nowrap;justify-content: space-between;align-items: center;margin-bottom: 10px;}
	.footer-logo_sns ul li{width: 30px;list-style: none !important;}
	.footer-logo_sns ul li a img{width: 100%;height: auto;vertical-align: middle;}
	.footer-logo_emb{width: calc(20%);margin: 0 auto;}
	.footer-logo_list{display: flex;flex-wrap: wrap;justify-content: center;align-items: flex-start;margin-top: 15px;}
	.footer-logo_list li{margin: 5px 5px;font-size: 1.1rem;}
	.footer-logo_list li a{color: #FFFFFF;}
	footer .copyright{color: #FFFFFF;margin-top: 30px;text-align: center;}
	footer .copyright span{display: block;margin-top: 5px;}

    @media (min-width: 768px){
		.footer_link_wrap{width: 25%;padding: 0 15px;}
		.footer_nav .footer-title{padding: 0.625em 0.625em 0.625em 0;}
		.footer_nav .accordion-content li{padding: 5px 0;}
		.footer_nav .accordion-content li a{font-size: 1.2rem;}
		.footer_nav .footer-accordion-title:after{right: 25px;}
		.footer-logo{display: flex;justify-content: center;}
		.footer-logo_sns ul li{margin: 0 0 15px 30px;}
		.footer-logo_sns ul li:first-of-type{margin-left: 0;}
		.popup_banner_inner{width: 400px;bottom: 10px;}
		.popup_banner_inner .popup_banner_close{
		top: -18px;
		left: -14px;
		width: 30px;
		height: 30px;
		line-height: 30px;
		z-index: 101;
		font-size: 20px;
	}
		.dir-school.sub-coach .staff-list ul li:nth-child(3n + 1){margin-left: 0;}
		.dir-school.sub-personal .personal-box table.table th{min-width: 150px;text-align: center;}
		.dir-school.sub-top .twitter-box{width: 600px;margin: 0 auto;}
         .league-box{flex-wrap: wrap;}
	 .league-box .league-item a{min-width: 240px;width: 249px;display: flex;align-items: center;justify-content: center;position: relative;padding: 10px 30px;height: 52px;}
	 .league-box .league-item a:before{content: "";width: 100%;height: 1px; background-color: #eee;position: absolute;bottom: 0px;}
	 .league-box .league-item:nth-child(-n + 3) a{border-top: 1px solid #eeee;}
	 .league-box .league-item:nth-child(3n) a{border-right: 1px solid #eeee;}
	 .league-box .league-img{display: flex;align-items: center;justify-content: center;}
    }


:root {
  --header-offset: 55px;
}

#news,
#event,
#movie,
#team,
#academy,
#goods,
#partner {
  scroll-margin-top: var(--header-offset);
}

/* AdSenseがbodyに入れるpaddingを無効化（inlineでも !important で勝てる） */
body{
  padding-top: 0 !important;
}

/* 代わりに、あなたのコンテナで吸収する */
.page{
  padding-top: var(--ads-pad-top, 0px);
}

/* =========================
   MOBILE MENU - Premium
========================= */
/* =========================
   Mobile Menu (Drawer style)
========================= */

/* overlay */
.mobile-menu{
  position: fixed;
  top: 64px;
  left: 0;
  width: 100%;
  height: calc(100vh - 64px);
  z-index: 120;

  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;

  background: rgba(2, 6, 23, .55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.mobile-menu.is-open{
  opacity: 1;
  pointer-events: auto;
}

/* panel */
.mobile-menu-panel{
  position: absolute;
  top: 0;
  right: 0;
  width: min(88vw, 380px);
  height: 100%;

  background: rgba(255,255,255,.98);
  box-shadow: -18px 0 60px rgba(0,0,0,.35);

  transform: translateX(16px);
  opacity: 0;
  transition: transform .22s ease, opacity .22s ease;

  padding: 16px 14px 16px;
  overflow: auto;
}
.mobile-menu.is-open .mobile-menu-panel{
  transform: translateX(0);
  opacity: 1;
}

/* title */
.mobile-menu-title{
  margin: 10px 8px 8px;
  font-size: 11px;
  letter-spacing: .22em;
  color: rgba(15,23,42,.55);
  text-transform: uppercase;
}

/* close */
.mobile-menu-close{
  position: sticky;
  top: 0;
  margin-left: auto;

  width: 42px;
  height: 42px;
  border-radius: 12px;

  border: 1px solid rgba(0,0,0,.08);
  background: #0b1220;
  color: #fff;
  font-size: 22px;
  line-height: 1;

  display: grid;
  place-items: center;
}

/* list */
.mobile-menu .nav-list{
  display: grid;
  margin: 0 6px 14px;
  border-top: 1px solid rgba(2,6,23,.08);
  border-bottom: 1px solid rgba(2,6,23,.08);
}

/* row link */
.mobile-menu .nav-link{
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 14px 10px;
  text-decoration: none;

  color: rgba(2,6,23,.88);
  font-weight: 800;
  letter-spacing: .06em; /* 旧サイトっぽさは残しつつ、強すぎない */
  text-transform: uppercase;

  border-bottom: 1px solid rgba(2,6,23,.06);
  background: transparent;

  transition: background .14s ease;
}
.mobile-menu .nav-link:last-child{
  border-bottom: none;
}

.mobile-menu .nav-link:hover{
  background: rgba(2,6,23,.03);
}

.mm-arrow{
  color: rgba(2,6,23,.35);
  font-size: 18px;
}

/* CTA: Archive only */
.mobile-menu .mm-cta{
  margin: 12px 6px 6px;
  border-radius: 14px;
  border: 1px solid rgba(250,204,21,.50);

  background:
    radial-gradient(600px 180px at 50% 0%, rgba(250,204,21,.22), transparent 65%),
    #fff;

  box-shadow: 0 10px 24px rgba(2,6,23,.10);
  letter-spacing: .10em;
}

/* sns block */
.mobile-sns{
  display: flex;
  justify-content: center;
  gap: 14px;

  margin: 10px 6px 6px;
  padding: 14px 10px;

  border-radius: 14px;
  border: 1px solid rgba(2,6,23,.08);
  background: rgba(2,6,23,.02);
}
.mobile-sns img{
  width: 22px;
  height: 22px;
  opacity: .88;
  transition: opacity .2s ease, transform .2s ease, filter .2s ease;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,.12));
}
.mobile-sns a:hover img{
  opacity: 1;
  transform: translateY(-2px);
}

/* iOS safe height */
@supports (height: 100svh){
  .mobile-menu{ height: calc(100svh - 64px); }
}

/* 1) closeボタンが下を覆わないようにする */
.mobile-menu-close{
  position: absolute;  /* stickyやめる */
  top: 10px;
  right: 10px;
  z-index: 3;
}

/* 2) タイトルとnavに“上の余白”を作る（closeと被らない） */
.mobile-menu-panel{
  padding-top: 60px; /* ×ボタン分あける */
}

/* 3) navを確実に前に出す */
.mobile-menu-panel nav{
  position: relative;
  z-index: 1;
}
.mobile-menu .nav-link{
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
}
/* ✅ global nav{display:none;} をモバイルメニュー内だけ解除 */
.mobile-menu nav{
  display: block !important;
}

hr {
  margin-top: 20px;
  margin-bottom: 20px;
}

/* 広告ブロック上下の余白 */
.adsense{
  margin: 20px 0;
}

/* 広告注意ラベル（Number風） */
.article-ad-label{
  margin: 20px 0;
  text-align: center;
  font-size: 12px;
  letter-spacing: .15em;
  color: rgba(0,0,0,.45);
  font-family: "Noto Serif JP","Yu Mincho","Hiragino Mincho ProN",serif;
}
/* =========================================================
   MOBILE MENU (Renewal) - Charcoal Drawer / Official Style
   Paste at the END of jsh.css
========================================================= */

/* overlay */
.mobile-menu{
  position: fixed;
  top: 64px;
  left: 0;
  width: 100%;
  height: calc(100vh - 64px);
  z-index: 120;

  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;

  background: rgba(2, 6, 23, .55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.mobile-menu.is-open{
  opacity: 1;
  pointer-events: auto;
}

/* ✅ global nav{display:none;} をモバイルメニュー内だけ解除 */
.mobile-menu nav{
  display: block !important;
}

/* panel (charcoal) */
.mobile-menu-panel{
  position: absolute;
  top: 0;
  right: 0;
  width: min(88vw, 380px);
  height: 100%;

  background: linear-gradient(180deg, #0b1220 0%, #0f172a 100%);
  color: rgba(255,255,255,.92);

  box-shadow: -18px 0 60px rgba(0,0,0,.40);

  transform: translateX(16px);
  opacity: 0;
  transition: transform .22s ease, opacity .22s ease;

  padding: 60px 14px 16px; /* ✅ closeボタン分の上余白 */
  overflow: auto;
}
.mobile-menu.is-open .mobile-menu-panel{
  transform: translateX(0);
  opacity: 1;
}

/* close button */
.mobile-menu-close{
  position: absolute; /* stickyは使わない（被り事故防止） */
  top: 10px;
  right: 10px;
  z-index: 3;

  width: 42px;
  height: 42px;
  border-radius: 12px;

  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
  font-size: 22px;
  line-height: 1;

  display: grid;
  place-items: center;

  transition: transform .14s ease, background .14s ease, border-color .14s ease;
}
.mobile-menu-close:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.18);
}

/* section title */
.mobile-menu-title{
  margin: 12px 10px 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .24em;
  color: rgba(255,255,255,.58);
  text-transform: uppercase;
}

/* list wrapper */
.mobile-menu .nav-list{
  display: grid !important;
  margin: 0 8px 12px;

  border-top: 1px solid rgba(255,255,255,.10);
  border-bottom: 1px solid rgba(255,255,255,.10);
}

/* row link */
.mobile-menu .nav-link{
  display: flex !important;
  align-items: center;
  justify-content: space-between;

  padding: 10px 10px;
  text-decoration: none;

  color: rgba(255,255,255,.92);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;

  border-bottom: 1px solid rgba(255,255,255,.08);
  background: transparent;

  transition: background .14s ease, transform .14s ease;
}
.mobile-menu .nav-link:last-child{
  border-bottom: none;
}

.mobile-menu .nav-link:hover{
  background: rgba(255,255,255,.06);
  transform: translateY(-1px);
}

/* arrow */
.mm-arrow{
  color: rgba(255,255,255,.45);
  font-size: 18px;
}

/* CTA: Archive only (win color) */
.mobile-menu .mm-cta{
  margin: 12px 8px 20px;
  border-radius: 14px;

  color: #facc15;
  border: 1px solid rgba(250,204,21,.45);

  background:
    radial-gradient(600px 180px at 50% 0%, rgba(250,204,21,.18), transparent 65%),
    rgba(255,255,255,.04);

  box-shadow: 0 12px 28px rgba(0,0,0,.30);
  letter-spacing: .10em;
  font-weight: 900;
}

/* follow sns block */
.mobile-sns{
  display: flex;
  justify-content: center;
  gap: 14px;

  margin: 8px 8px 6px;
  padding: 12px 10px;

  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
}
.mobile-sns img{
  width: 22px;
  height: 22px;
  opacity: .90;
  transition: opacity .2s ease, transform .2s ease, filter .2s ease;

  filter: drop-shadow(0 4px 10px rgba(0,0,0,.35));
}
.mobile-sns a:hover img{
  opacity: 1;
  transform: translateY(-2px);
}

/* iOS safe height */
@supports (height: 100svh){
  .mobile-menu{ height: calc(100svh - 64px); }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce){
  .mobile-menu,
  .mobile-menu-panel,
  .mobile-menu .nav-link,
  .mobile-menu-close{
    transition: none !important;
  }
}

