@charset "UTF-8";
/*
Theme Name: xmas_2025
Author: Plusers
Description: original theme
Version： 1.0.0
*/
/* Foundation */
/* Colors */
/* Assumed gold based on prompt, adjusted for web */
/* Fonts */
/* Breakpoints */
/* Spacing */
/* Simple Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

body {
  font-family: "Inter", sans-serif;
  color: #0a3212;
  background-color: #ffffff;
  line-height: 1.5;
  letter-spacing: 0.04em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: bold;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

img,
svg {
  display: block;
  height: auto;
  width: 100%;
}

.spNone {
  display: none;
}
@media screen and (min-width: 769px) {
  .spNone {
    display: block;
  }
}

.pcNone {
  display: block;
}
@media screen and (min-width: 769px) {
  .pcNone {
    display: none;
  }
}

.common_image {
  overflow: hidden;
  aspect-ratio: 16/9;
}
.common_image img {
  height: 100%;
  object-fit: cover;
}

.en_thin {
  font-family: "Inter", sans-serif;
  font-weight: 400; /* semibold */
  font-style: italic;
}

.en {
  font-family: "Inter", sans-serif;
  font-weight: 600; /* semibold */
  font-style: italic;
}

.en_bold {
  font-family: "Inter", sans-serif;
  font-weight: 700; /* semibold */
  font-style: italic;
}

.ja {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700; /* semibold */
  font-style: normal;
}

.en_serif {
  font-family: "EB Garamond", serif;
  font-weight: 700; /* semibold */
  font-style: italic;
}

/* Layout */
.l-header {
  position: fixed;
  inset: 0;
  z-index: 50;
  background-color: #ffffff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* メニューが開いているときの変化（ボタンのアニメ） */
  /* SP 用のメニュー表示制御 */
}
.l-header__inner {
  width: 100%;
  padding-left: calc(5.5555555556vw);
  padding-right: calc(5.5555555556vw);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.l-header__logo {
  font-family: "Inter", sans-serif;
  color: #0a3212;
  font-size: 18px;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0;
}
@media (min-width: 769px) {
  .l-header__nav {
    display: flex;
    align-items: center;
    gap: 32px;
  }
}
.l-header__link {
  color: #0a3212;
  font-size: min(16px, calc(1.1111111111vw));
  font-weight: 500;
  font-style: italic;
}
.l-header__link:hover {
  color: #ad2c27;
}
.l-header__hamburger {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.l-header .hamburger__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: #0a3212;
  margin: 4px 0;
  transition: transform 0.25s, opacity 0.25s;
}
.l-header.is-open .hamburger__bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.l-header.is-open .hamburger__bar:nth-child(2) {
  opacity: 0;
}
.l-header.is-open .hamburger__bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
@media (max-width: 769px) {
  .l-header {
    /* 開いたとき */
    /* ハンバーガーを表示、既存のPCナビは非表示 */
  }
  .l-header__nav {
    /* 初期は画面外にスライドさせる */
    position: fixed;
    top: 64px; /* header 高さに合わせる（必要で調整） */
    right: 0;
    width: 64vw;
    max-width: 320px;
    height: calc(100vh - 64px);
    background: #ffffff;
    box-shadow: -8px 0 24px rgba(0, 0, 0, 0.12);
    transform: translateX(100%);
    transition: transform 0.28s ease;
    z-index: 60;
    padding: 24px;
    display: block;
    overflow-y: auto;
  }
  .l-header__nav.is-active {
    transform: translateX(0);
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .l-header__hamburger {
    display: block;
    margin-left: auto;
  }
}
@media (max-width: 768px) {
  .l-header {
    height: 64px;
  }
  .l-header__nav {
    top: 64px;
    height: calc(100vh - 64px);
  }
}

@media (max-width: 768px) {
  .l-header {
    height: 64px;
  }
  .l-header__link {
    font-size: 18px;
  }
}
.l-footer {
  background-color: #0a3212;
  color: #ffffff;
  padding-top: 5rem;
  padding-bottom: 56px;
  border-top: 1px solid #32693d;
}
.l-footer .container {
  width: min(1280px, calc(88.8888888889vw));
  margin-inline: auto;
}
.l-footer__top {
  display: flex;
}
@media (min-width: 769px) {
  .l-footer__top {
    flex-direction: row;
  }
}
.l-footer__logo {
  font-size: 24px;
}
.l-footer__copy {
  font-size: 12px;
  padding: 56px 0 0;
  border-top: 1px solid #32693d;
  margin-top: 56px;
}
.l-footer__nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 3rem;
}
@media (min-width: 769px) {
  .l-footer__nav {
    grid-template-columns: repeat(2, 1fr);
    margin: 0 0 0 auto;
  }
}
.l-footer__nav a:hover {
  color: #ad2c27;
}
.l-footer__bottom {
  text-align: center;
  font-size: 0.75rem;
  font-style: italic;
  opacity: 0.6;
}
.l-footer__bottom a:hover {
  text-decoration: underline;
}
.l-footer .footer_sns {
  margin: 0 0 0 min(80px, calc(5.5555555556vw));
}
.l-footer .footer_sns .sns_link {
  display: grid;
  grid-template-columns: repeat(5, 20px);
  gap: 24px;
  align-items: center;
}
@media (max-width: 768px) {
  .l-footer__top {
    display: grid;
    gap: 40px;
    width: 80%;
    margin-inline: auto;
  }
  .l-footer .footer_sns {
    margin: 0;
  }
  .l-footer .footer_sns .sns_link {
    justify-content: space-between;
  }
  .l-footer__copy {
    font-size: 11px;
    text-align: center;
  }
}

.l-main {
  padding-top: 80px;
  padding-left: 0;
}
.l-decoration-bar {
  position: fixed;
  inset: 0;
  height: 100%;
  z-index: 99;
  pointer-events: none;
  display: flex;
  justify-content: space-between;
}
.l-decoration-bar__segment {
  width: 5px;
  background-image: url(images/fixed_decoration.svg);
  background-repeat: repeat-y;
  background-size: contain;
}
@media (min-width: 769px) {
  .l-decoration-bar__segment {
    width: 10px;
  }
}

/* Object */
.c-button {
  display: block;
  min-width: 240px;
  border-radius: 100vmax;
  font-weight: bold;
  transition: all 0.3s ease;
  color: #ffffff;
  width: fit-content;
  text-align: center;
  padding: 6px 0;
}
@media (max-width: 768px) {
  .c-button {
    min-width: 200px;
  }
}
.c-button--primary {
  background-color: #ad2c27;
  color: #ffffff;
}
.c-button--primary:hover {
  background-color: rgb(131.3820754717, 33.4150943396, 29.6179245283);
}
.c-button__en {
  font-size: 24px;
  font-weight: bold;
  font-style: italic;
}
@media (max-width: 768px) {
  .c-button__en {
    font-size: 18px;
  }
}
.c-button__ja {
  font-size: 14px;
}
@media (max-width: 768px) {
  .c-button__ja {
    font-size: 12px;
  }
}

.section__title {
  font-family: "EB Garamond", serif;
  font-style: italic;
  font-size: 56px;
  display: grid;
  gap: 4px;
  margin-bottom: 40px;
}
.section__title--center {
  text-align: center;
}
.section__title.santa_title {
  position: relative;
}
.section__title.santa_title:before {
  content: "";
  position: absolute;
  top: -12px;
  left: -40px;
  width: 120px; /* 中央に固定幅の装飾バー（レスポンシブ） */
  height: 60px;
  background-image: url(images/santa_hat.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.section__title .section__subtitle {
  font-size: 16px;
  font-style: normal;
}

@media (max-width: 768px) {
  .section__title {
    font-size: 32px;
    text-align: center;
    width: fit-content;
    margin: 0 auto 40px;
  }
  .section__title .section__subtitle {
    font-size: 12px;
  }
  .section__title.santa_title::before {
    top: -18px;
    left: -40px;
    width: 64px;
  }
}
.schedule__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 800px;
  margin: 0 auto;
}

/* Match Card Component */
.match-card {
  display: flex;
  background: #f1f1f1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s;
  /* 左側：日付カラム */
  /* 右側：メインエリア */
  /* トリガー（ヘッダー部分） */
  /* 開いている状態のスタイル制御（親クラスに .is-open がついた時） */
  /* アコーディオンの中身（初期状態は非表示） */
}
.match-card:hover {
  transform: translateY(-2px);
}
.match-card__side {
  background-color: #0b661c;
  color: #ffffff;
  width: 150px; /* 固定幅 */
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px 0;
}
.match-card__date-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.match-card__wday {
  font-size: 16px;
}
.match-card__date {
  font-size: 32px;
}
.match-card__time {
  background: #0a3212;
  padding: 4px 16px;
  border-radius: 100vmax;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 8px;
}
.match-card__main {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.match-card__header {
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 120px; /* カードの高さ確保 */
  height: 100%;
  /* アコーディオン開閉時のアイコン回転 */
}
.match-card__header .match-card__icon {
  transition: transform 0.3s ease;
}
.match-card.is-open .match-card__icon {
  transform: rotate(180deg); /* 上向き矢印にする */
}
.match-card__place {
  font-size: 16px;
  color: #9d9d9d;
  display: grid;
  grid-template-columns: 20px auto auto;
  align-items: center;
  gap: 4px;
}
.match-card__versus {
  font-size: 32px;
  color: #0e3b1c; /* 暗い緑 */
  display: flex;
  align-items: center;
  gap: 20px;
}
.match-card__versus .vs {
  font-size: 32px;
}
.match-card__icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #333;
  font-size: 14px;
}
.match-card__body {
  height: 0;
  transition: height 0.3s ease-out;
}
.match-card__body-inner {
  padding: 0 30px 30px; /* 下と左右に余白 */
}

/* Scoreboard Table Design */
.scoreboard {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  border: 1px solid #0b661c;
  background: #ffffff;
  border-radius: 4px; /* テーブルの角丸は小さめ */
  overflow: hidden; /* 角丸を効かせる */
  /* ヘッダー行 */
  /* データ行 */
}
.scoreboard table {
  width: 100%;
  border-collapse: collapse;
}
.scoreboard th,
.scoreboard td {
  text-align: center;
  padding: 8px 5px;
  border: 1px solid #0b661c;
}
.scoreboard thead {
  background-color: #0b661c;
  color: #ffffff;
}
.scoreboard thead th {
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-weight: 400;
  font-size: 14px;
}
.scoreboard thead .team-col {
  width: 30%;
}
.scoreboard thead .result-col {
  font-weight: 700;
  background-color: rgb(8.517699115, 78.982300885, 21.6814159292);
}
.scoreboard tbody td {
  font-size: 18px;
  color: #0b661c;
}
.scoreboard tbody .team-name-cell {
  font-size: 12px;
  font-weight: 700;
  text-align: left;
  padding-left: 10px;
}
.scoreboard tbody .score-total {
  font-weight: 900;
  font-size: 20px;
}

/* スマホ対応（レスポンシブ） */
@media (max-width: 768px) {
  .schedule__list {
    width: 90%;
    margin-inline: auto;
  }
  .match-card {
    flex-direction: column;
  }
  .match-card__side {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    padding: 10px 20px;
    height: auto;
  }
  .match-card__date-box {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    align-items: center;
  }
  .match-card__date {
    margin-bottom: 0;
    font-size: 24px;
  }
  .match-card__header {
    padding: 20px;
    min-height: auto;
  }
  .match-card__versus {
    font-size: 20px;
  }
  .match-card__versus .vs {
    font-size: 24px;
  }
  .match-card__body-inner {
    padding: 0 15px 20px;
  }
  .match-card__time {
    margin: 0;
  }
  .match-card__place {
    font-size: 12px;
    grid-template-columns: 12px auto auto;
  }
  .match-card .scoreboard th,
  .match-card .scoreboard td {
    padding: 5px 2px;
    font-size: 14px;
  }
  .match-card .scoreboard tbody td {
    font-size: 16px;
  }
}
.p-hero {
  position: relative;
  height: 100vh;
  max-height: 800px;
  padding-bottom: 70px;
}
.p-hero .container {
  max-width: 1440px;
  padding: 0 min(80px, calc(5.5555555556vw));
  position: relative;
}
.p-hero__content {
  position: relative;
  z-index: 10;
  margin-top: 180px;
}
.p-hero__location {
  display: grid;
  grid-template-columns: min(24px, calc(1.6666666667vw)) auto;
  align-items: center;
  gap: 0.5rem;
  color: #ad2c27;
  font-family: "EB Garamond", serif;
  font-weight: bold;
  font-style: italic;
  font-size: min(16px, calc(1.1111111111vw));
  letter-spacing: 0.02em;
}
.p-hero__title {
  width: fit-content;
  font-size: min(80px, calc(5.5555555556vw));
  font-weight: bold;
  font-style: italic;
  line-height: 1;
  letter-spacing: 0.02em;
  font-family: "EB Garamond", serif;
  background: linear-gradient(to right, #ad2c27, #0b661c);
  -webkit-background-clip: text;
  color: transparent;
  margin-top: 8px;
}
.p-hero__title span {
  font-size: min(32px, calc(2.2222222222vw));
}
@media (max-width: 768px) {
  .p-hero__title span {
    font-size: 16px;
  }
}
@media (min-width: 769px) {
  .p-hero__title {
    font-size: min(80px, calc(5.5555555556vw));
  }
}
.p-hero__subtitle {
  width: fit-content;
  font-size: calc(8vw);
  font-weight: 200;
  font-style: italic;
  background: linear-gradient(to right, #ad2c27, #0b661c);
  -webkit-background-clip: text;
  color: transparent;
  margin-top: 8px;
}
@media (min-width: 769px) {
  .p-hero__subtitle {
    font-size: min(40px, calc(2.7777777778vw));
  }
}
.p-hero__buttons {
  margin-top: 48px;
  display: flex;
  gap: 12px;
}
.p-hero .sns_link {
  display: grid;
  grid-template-columns: repeat(5, 20px);
  gap: 24px;
  align-items: center;
  width: fit-content;
  margin: 24px 0 0 auto;
  position: absolute;
  right: calc(5.5555555556vw);
  top: -160px;
}
.p-hero .sns_link li {
  transition: all 0.4s;
}
.p-hero .sns_link li:hover {
  scale: 1.2;
}
.p-hero__image {
  width: 50vw;
  position: absolute;
  right: 0;
  top: -160px;
  max-width: 800px;
  overflow: hidden;
  pointer-events: none;
}

@media (max-width: 768px) {
  main {
    overflow: hidden;
  }
  .p-hero {
    height: auto;
    min-height: 700px;
  }
  .p-hero .container {
    padding: 0 25px;
  }
  .p-hero__buttons {
    display: grid;
  }
  .p-hero__location {
    font-size: 12px;
    grid-template-columns: 12px auto;
  }
  .p-hero__title {
    font-size: 37px;
  }
  .p-hero__content {
    margin-top: 40px;
  }
  .p-hero__subtitle {
    font-size: 18px;
  }
  .p-hero__image {
    width: calc(138.6666666667vw);
    top: 80px;
    right: -160px;
  }
}
.p-news {
  padding-top: 120px;
  padding-bottom: 120px;
}
.p-news__inner {
  display: flex;
  justify-content: space-between;
}
.p-news__title {
  font-size: min(56px, calc(3.8888888889vw));
  font-weight: bold;
  font-style: italic;
  font-family: "EB Garamond", serif;
  writing-mode: vertical-rl;
  letter-spacing: 0.1em;
  white-space: nowrap;
  transform-origin: center;
  margin-left: min(70px, calc(4.8611111111vw));
}
.p-news__items {
  display: grid;
  grid-template-columns: min(720px, calc(50vw)) min(420px, calc(29.1666666667vw));
  gap: 10px;
  width: fit-content;
  margin: 0 80px 0 auto;
}
.p-news__items li {
  overflow: hidden;
  border-radius: 16px;
  position: relative;
}
.p-news__items > li:nth-child(1) {
  grid-row: 1/3;
  height: 100%;
}
.p-news__items > li:nth-child(1) a,
.p-news__items > li:nth-child(1) figure {
  height: 100%;
}
.p-news__items > li:nth-child(1) figure {
  max-height: 480px;
}
.p-news__items > li:nth-child(2),
.p-news__items > li:nth-child(3) {
  grid-column: 2/3;
}
.p-news__items > li:nth-child(2) figure,
.p-news__items > li:nth-child(3) figure {
  max-height: 235px;
}
.p-news__items li a img {
  height: 100%;
  object-fit: cover;
  transition: all 0.4s;
}
.p-news__items li a:hover img {
  transform: scale(1.05); /* ホバー時に拡大 */
}
@media (max-width: 768px) {
  .p-news .p-news__title {
    font-size: 56px;
    writing-mode: inherit;
    margin: 0 0 -32px;
    position: relative;
    z-index: 2;
  }
  .p-news .p-news__inner {
    display: block;
  }
  .p-news .p-news__items {
    display: grid;
    gap: 8px;
    grid-template-columns: 1fr;
    margin-inline: auto;
  }
  .p-news .p-news__items li:nth-child(2),
  .p-news .p-news__items li:nth-child(3) {
    grid-column: 1/2;
  }
  .p-news .p-news__item-text {
    padding: 64px 12px 10px 12px;
  }
  .p-news .p-news__item-title {
    font-size: 16px;
  }
  .p-news .p-news__item-title span {
    font-size: 12px;
  }
}
.p-news__item-text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: #fff;
  font-size: min(16px, calc(1.1111111111vw));
  padding: min(64px, calc(4.4444444444vw)) min(24px, calc(1.6666666667vw)) min(16px, calc(1.1111111111vw)) min(24px, calc(1.6666666667vw));
  background: linear-gradient(to top, rgb(10, 50, 18) 0%, rgba(10, 50, 18, 0) 60%);
}
.p-news__item-date {
  color: #fff;
  font-size: min(14px, calc(0.9722222222vw));
}
.p-news__heading {
  font-size: min(16px, calc(1.1111111111vw));
  font-weight: bold;
  color: #0a3212;
  line-height: 1.25;
  transition: color 0.3s ease;
}
@media (min-width: 769px) {
  .p-news__heading {
    font-size: 1.5rem;
  }
}
.p-news__item-title {
  display: grid;
}

.bg_gray {
  background-color: #f1f1f1;
}

.location {
  padding: 24px 0 80px;
}
.location .location__map {
  width: 200px;
  margin: 0 auto -160px auto;
}
.location__container {
  max-width: calc(74.6666666667vw);
  margin-inline: auto;
}
.location__info {
  display: grid;
  gap: 24px;
}
.location__desc {
  font-size: 14px;
}
.location .en_text {
  font-size: 14px;
  line-height: 1.8;
}
@media screen and (min-width: 769px) {
  .location {
    padding: 160px 0;
  }
  .location__container {
    max-width: min(900px, calc(62.5vw));
    margin-inline: auto;
    position: relative;
  }
  .location .location__map {
    position: absolute;
    width: 400px;
    top: 50%;
    left: 0;
    translate: 0 -50%;
  }
  .location__info {
    gap: 32px;
    max-width: 560px;
    line-height: 1.8;
    margin: 0 0 0 auto;
  }
  .location__desc {
    font-size: 16px;
  }
  .location .en_text {
    font-size: 16px;
    padding-left: 24px;
    border-left: 4px solid #c3c3c3;
  }
}

.schedule {
  padding: 96px 0;
  position: relative;
}
.schedule .c-button {
  margin: 40px auto 0;
}
.schedule__decoration {
  position: absolute;
  width: min(220px, calc(15.2777777778vw));
  left: min(92px, calc(6.3888888889vw));
  bottom: -40px;
}
@media (max-width: 768px) {
  .schedule__decoration {
    width: 120px;
  }
}

.standings {
  background: linear-gradient(to top right, #0b661c 0%, #014b0e 100%);
  color: #ffffff;
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
  /* セクションタイトルの上書き（白文字へ） */
  /* テーブルのラッパー（幅制限と中央寄せ） */
  /* テーブル本体 */
  /* ヘッダー行 */
  /* データ行 */
  /* 順位アイコン（四角形） */
  /* 注釈テキスト */
  /* 背景の装飾（ツリーのシルエット） */
}
.standings .section__title {
  color: #ffffff;
}
.standings__table-wrapper {
  width: 100%;
  max-width: 800px;
  margin: 40px auto 0;
  padding: 0 20px;
}
.standings__table {
  width: 100%;
  border-collapse: collapse;
}
.standings thead th {
  font-weight: 400;
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.05em;
  padding: 15px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3); /* 薄い白線 */
  text-align: center;
  /* TEAMカラムのみ左寄せ */
}
.standings thead th:nth-child(2) {
  text-align: left;
  padding-left: 20px;
}
.standings tbody {
  /* チーム名セル */
}
.standings tbody td {
  padding: 20px 10px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* さらに薄い白線 */
  font-size: 18px;
  font-weight: 500;
}
.standings tbody .team-name {
  text-align: left;
  padding-left: 20px;
  font-size: 32px;
  font-weight: 500;
}
.standings .rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 4px;
  background-color: #0b661c; /* 4位以下のデフォルト緑 */
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  /* 1位：黄色（画像に忠実な黄色） */
  /* 2位：シルバー */
  /* 3位：ブロンズ（カッパー） */
}
.standings .rank--1 {
  background-color: #ffcc00;
}
.standings .rank--2 {
  background-color: #d9d9d9;
}
.standings .rank--3 {
  background-color: #cd7f32;
}
.standings__note {
  max-width: 800px;
  margin: 24px auto 0;
  padding: 0 20px;
  font-size: 12px;
  color: #fff;
  opacity: 0.8;
}
.standings__bg-deco {
  position: absolute;
  right: min(-200px, calc(-13.8888888889vw));
  bottom: -50px;
  width: min(800px, calc(55.5555555556vw));
  min-width: 200px;
  opacity: 0.15; /* 背景に馴染ませる */
  pointer-events: none;
  z-index: 0;
}
.standings__bg-deco img {
  width: 100%;
  height: auto;
  display: block;
}

/* -----------------------------------------------------------------
   Responsive (スマホ対応)
----------------------------------------------------------------- */
@media (max-width: 768px) {
  .standings {
    padding: 60px 0;
  }
  .standings__table-wrapper {
    padding: 0 15px;
    /* 横スクロールはさせず、画面内に収めるため auto を解除または unset */
    overflow-x: unset;
  }
  .standings__table {
    min-width: auto; /* 幅固定を解除して画面幅に合わせる */
    width: 100%;
    /* 列の表示制御 
       1列目: RK (表示)
       2列目: TEAM (表示)
       3列目: W (非表示)
       4列目: L (非表示)
       5列目: D (非表示)
       6列目: PTS/PCT (表示)
    */
    /* チーム名の幅を確保してレイアウト崩れを防ぐ */
    /* 最後の列(PTS)の幅を少し調整 */
  }
  .standings__table th,
  .standings__table td {
    font-size: 14px;
    padding: 15px 5px;
  }
  .standings__table th:nth-child(3), .standings__table td:nth-child(3),
  .standings__table th:nth-child(4), .standings__table td:nth-child(4),
  .standings__table th:nth-child(5), .standings__table td:nth-child(5) {
    display: none;
  }
  .standings__table th:nth-child(2),
  .standings__table td:nth-child(2) {
    width: auto; /* 余った幅を全て使う */
    font-size: 24px;
  }
  .standings__table th:last-child,
  .standings__table td:last-child {
    width: 60px;
  }
  .standings .rank {
    font-size: 24px;
    width: 40px;
    height: 40px;
  }
}
/* -----------------------------------------------------------------
   Coaches Section
----------------------------------------------------------------- */
.coaches {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  /* 左側の情報エリア（タイトル、説明、ボタン） */
  /* 右側のグリッドエリア */
  /* 装飾（オーナメントのイラスト） */
}
.coaches__container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  margin: 0 auto;
  padding: 0 min(80px, calc(5.5555555556vw));
  position: relative;
  z-index: 1;
  max-width: 1440px;
}
.coaches__info {
  width: min(440px, calc(30.5555555556vw));
}
.coaches__desc {
  margin: 30px 0 40px;
  line-height: 2;
  color: #666666;
  font-size: 15px;
  font-family: "Noto Sans JP", sans-serif;
}
.coaches__grid {
  flex-grow: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px 30px; /* 上下40px, 左右30pxの余白 */
}
.coaches__deco {
  position: absolute;
  top: 0;
  left: calc(17.3611111111vw);
  width: min(400px, calc(27.7777777778vw));
  pointer-events: none;
  z-index: 0;
  opacity: 0.8;
}
.coaches__deco img {
  width: 100%;
  height: auto;
}

/* -----------------------------------------------------------------
   Coach Card Component
----------------------------------------------------------------- */
.coach-card {
  display: flex;
  align-items: center;
  gap: 20px;
}
.coach-card__img {
  width: 45%;
  border-radius: 50%;
}
.coach-card__body {
  display: grid;
  gap: 12px;
}
.coach-card__name {
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.4;
}
.coach-card .label {
  font-size: 12px;
  padding: 4px 12px;
  background-color: #0a3212;
  color: #fff;
  border-radius: 100vmax;
  width: fit-content;
}

/* -----------------------------------------------------------------
   Responsive (スマホ対応)
----------------------------------------------------------------- */
@media (max-width: 768px) {
  .coaches {
    padding: 60px 0;
    /* スマホでのカード調整 */
  }
  .coaches__container {
    flex-direction: column; /* 縦並びに変更 */
    gap: 40px;
  }
  .coaches__info {
    width: 100%;
    text-align: center; /* スマホでは中央寄せ */
    padding-top: 0;
    /* ボタンも中央寄せにする */
  }
  .coaches__info .btn {
    margin: 0 auto;
  }
  .coaches__desc {
    margin: 20px 0 30px;
    text-align: left; /* 説明文は読みやすく左寄せ、またはcenterでも可 */
  }
  .coaches__grid {
    width: 100%;
    grid-template-columns: repeat(1, 1fr); /* 1列に変更 */
    gap: 20px;
  }
  .coaches .coach-card {
    background: #ffffff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); /* 少し影をつけて浮き上がらせる */
  }
  .coaches .coach-card__img {
    width: 80px;
    height: 80px;
  }
  .coaches .coach-card__name {
    font-size: 16px;
  }
  .coaches__deco {
    width: 240px;
    left: inherit;
    right: -80px;
  }
}
/* -----------------------------------------------------------------
   Players Section
----------------------------------------------------------------- */
.players {
  background-color: #ffffff;
  padding: 100px 0 0;
  position: relative;
  background-color: #f1f1f1;
  /* ヘッダーエリア（タイトルとView Allボタンを横並びにする） */
  /* Swiper本体の調整 */
  /* Swiper Slide の調整（高さ揃えなど） */
}
.players .section__header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end; /* 下揃え */
  max-width: min(1280px, calc(88.8888888889vw));
  margin: 0 auto 40px;
}
.players .section__header-row .c-button {
  height: fit-content;
}
.players .section__header-row .section__title {
  margin: 0;
}
.players-slider {
  padding-left: 5%; /* 最初のスライドが左端にくっつきすぎないように */
  padding-right: 5%;
}
.players .swiper-slide {
  height: auto; /* カードの高さを揃えるためにauto */
  display: flex; /* カードをslideいっぱいに広げる */
}
.players .swiper-slide img {
  height: 100%;
  object-fit: cover;
}
.players__bottom {
  display: grid;
  grid-template-columns: auto min(750px, calc(52.0833333333vw));
  gap: min(88px, calc(6.1111111111vw));
  align-items: center;
}
.players__message {
  font-size: min(48px, calc(3.3333333333vw));
  width: fit-content;
  margin: 0 auto 0 min(160px, calc(11.1111111111vw));
}

/* -----------------------------------------------------------------
   Player Card Component
----------------------------------------------------------------- */
.player-card {
  width: 100%;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); /* ふんわりとした影 */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column; /* 縦並び */
  /* ホバー時の浮き上がりエフェクト */
  /* 選手画像エリア */
  /* 情報エリア */
  /* チーム名 */
  /* 選手名 */
}
.player-card__img {
  width: 100%;
  aspect-ratio: 3/4; /* 野球カードらしい縦長比率 */
  position: relative;
  overflow: hidden;
  background-color: #f1f1f1;
}
.player-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 枠に合わせてトリミング */
  transition: transform 0.5s ease;
}
.player-card__info {
  padding: 20px 15px;
  text-align: center;
  flex-grow: 1; /* 高さを埋める */
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 4px solid #0a3212; /* チームカラーのアクセント線 */
}
.player-card__team {
  display: block;
  color: #0a3212;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.8;
}
.player-card__name {
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.3;
}

/* -----------------------------------------------------------------
   Responsive (スマホ対応)
----------------------------------------------------------------- */
@media (max-width: 768px) {
  .players {
    padding: 60px 0 0;
  }
  .players .section__header-row {
    flex-direction: row; /* スマホでも横並び維持でOK、あるいは縦でも可 */
    align-items: center;
    margin-bottom: 30px;
  }
  .players .section__header-row .section__title {
    margin: 0 auto;
  }
  .players-slider {
    padding-left: 20px;
    padding-right: 20px;
  }
  .players__bottom {
    display: block;
    overflow: hidden;
  }
  .players__message {
    font-size: 24px;
    margin: 32px auto -40px 24px;
  }
  .players__bg {
    width: 500px;
    transform: translateX(30px);
  }
  .players .c-button {
    margin: 40px auto 0;
  }
  .player-card__img {
    /* スマホでは少し高さを抑えてもよいが、3/4比率維持がきれい */
    aspect-ratio: 3/4;
  }
  .player-card__info {
    padding: 15px 10px;
  }
  .player-card__name {
    font-size: 16px;
  }
}
/* -----------------------------------------------------------------
   Columns Section
----------------------------------------------------------------- */
.columns {
  padding: 100px 0;
  position: relative;
  background-image: repeating-linear-gradient(45deg, #ffffff, #ffffff 64px, rgba(173, 44, 39, 0.05) 64px, rgba(173, 44, 39, 0.05) 128px);
  /* セクション全体のコンテナ（左右配置） */
  /* グリッドエリア（記事一覧） */
}
.columns__container {
  max-width: min(1280px, calc(88.8888888889vw));
  margin: 0 auto;
}
.columns__grid {
  flex-grow: 1;
  display: grid;
  /* PCでは3列表示 */
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 24px; /* 上下40px, 左右30px */
  width: 100%; /* 幅を確保 */
}
.columns .c-button {
  margin: 40px auto 0;
}

/* -----------------------------------------------------------------
   Column Card Component
----------------------------------------------------------------- */
.column-card {
  display: flex;
  flex-direction: column;
  transition: opacity 0.3s;
  /* リンク全体を覆う */
  /* ホバー時の挙動 */
  /* サムネイル画像 */
  /* 記事タイトル */
  /* メタ情報（タグと日付） */
  /* タグ */
  /* 日付 */
}
.column-card.is-hidden {
  display: none;
}
.column-card a {
  display: flex;
  flex-direction: column;
  height: 100%; /* 高さを揃える */
}
.column-card:hover {
  opacity: 0.8;
}
.column-card:hover .column-card__img img {
  transform: scale(1.05); /* 画像を少し拡大 */
}
.column-card:hover .column-card__title {
  color: #ad2c27; /* タイトルを赤に */
}
.column-card__img {
  width: 100%;
  aspect-ratio: 16/9; /* 一般的な記事サムネ比率 */
  overflow: hidden;
  margin-bottom: 15px;
  background-color: #f1f1f1;
  border-radius: 8px; /* 角丸を少しつける */
}
.column-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.column-card__title {
  font-size: 16px;
  /* 2行以上になったら「...」で省略する設定 */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1; /* メタ情報を下に押し下げる */
}
.column-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  padding-top: 10px;
}
.column-card .tag {
  background-color: #0a3212;
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 8px;
  border-radius: 4px;
}
.column-card time {
  font-size: 12px;
}

/* -----------------------------------------------------------------
   Responsive (スマホ・タブレット対応)
----------------------------------------------------------------- */
@media (max-width: 1024px) {
  /* タブレットサイズ: 2列にする */
  .columns__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .columns {
    padding: 60px 0;
    /* スマホでのカード調整 */
  }
  .columns__container {
    flex-direction: column; /* タイトルとグリッドを縦並びに */
    gap: 30px;
  }
  .columns__grid {
    /* スマホサイズ: 1列にする */
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
  .columns .column-card__title {
    font-size: 15px; /* 少し小さく */
  }
}
.columns__sidebar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.columns__sidebar .columns__filter-list {
  display: flex;
  gap: 8px;
  font-size: 18px;
}
.columns__sidebar .columns__filter-list li {
  padding: 4px 24px;
  border-radius: 1000vmax;
  border: 1px solid #ad2c27;
  color: #ad2c27;
}
.columns__sidebar .columns__filter-list li.is-active {
  background-color: #ad2c27;
  color: #fff;
}

@media (max-width: 768px) {
  .columns__sidebar {
    display: grid;
    gap: 0;
    margin-bottom: 40px;
    justify-content: center;
  }
  .columns__sidebar .columns__filter-list {
    font-size: 12px;
  }
  .columns__sidebar .columns__filter-list li {
    padding: 4px 8px;
  }
}
/* -----------------------------------------------------------------
   Partner Section
----------------------------------------------------------------- */
.cta__bg {
  background: linear-gradient(to top right, #0b661c 0%, #014b0e 100%);
}

.partner {
  color: #ffffff;
  padding: 80px 0 80px;
  text-align: center;
  position: relative;
  /* 説明テキスト */
  /* ボタンのラッパー */
}
.partner .line {
  max-width: 1280px;
  margin-inline: auto;
  background-color: #fff;
  margin-top: 80px;
  height: 1px;
  opacity: 0.8;
}
.partner .section__title {
  color: #ffffff;
}
.partner__box {
  border: 1px solid #fff;
  border-radius: 16px;
  max-width: 800px;
  margin-inline: auto;
  padding: 32px 0;
}
.partner__text {
  font-size: min(14px, calc(0.9722222222vw));
  line-height: 2.2; /* 少しゆったりと */
  margin-bottom: 32px;
}
.partner__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* -----------------------------------------------------------------
   Responsive (スマホ対応)
----------------------------------------------------------------- */
@media (max-width: 768px) {
  .partner {
    padding: 60px 0 40px;
    /* スマホでのボタン幅調整 */
    /* 線の幅調整 */
  }
  .partner__text {
    font-size: 14px;
    text-align: left; /* スマホでは読みやすく左寄せにする場合（中央のままでも可） */
    padding: 0 20px;
  }
  .partner__actions {
    flex-direction: column; /* ボタンを縦並び */
    gap: 20px;
    align-items: center;
    margin-bottom: 50px;
  }
  .partner .btn {
    width: 80%;
    max-width: 300px;
  }
  .partner__container::after {
    width: 80%;
  }
  .partner .section__title {
    line-height: 1.2;
  }
  .partner__box {
    width: 80%;
    text-align: left;
  }
}
/* -----------------------------------------------------------------
   Sponsors Section
----------------------------------------------------------------- */
.sponsors {
  padding: 0 0 80px; /* Partnerセクションから続けて表示するため上paddingは0 */
  text-align: center;
  /* コンテナ */
  /* セクションタイトル（Partnerと同じ白文字） */
}
.sponsors__container {
  margin: 0 auto;
  padding: 0 20px;
}
.sponsors .section__title {
  color: #ffffff;
}
.sponsors__title {
  font-size: 24px;
  width: 100%;
}
.sponsors__grid {
  display: flex;
  flex-wrap: wrap;
  width: 80%;
  max-width: 375px;
  margin-inline: auto;
  margin-bottom: 40px;
  justify-content: center;
  gap: 24px 0;
}
.sponsors__grid p {
  color: #fff;
}
.sponsors__grid:nth-of-type(2) {
  max-width: 800px;
  align-items: center;
  gap: 24px;
}
.sponsors__grid:nth-of-type(2) .sponsor-logo {
  width: 160px;
}
.sponsors .sponsor-logo {
  font-size: 10px;
  text-align: center;
}
.sponsors .sponsor-logo img {
  max-width: 200px;
  margin-inline: auto;
}
.sponsors .sponsor-logo p {
  padding-top: 8px;
}

/* -----------------------------------------------------------------
   Responsive (スマホ対応)
----------------------------------------------------------------- */
@media (max-width: 768px) {
  .sponsors {
    padding-bottom: 60px;
  }
  .sponsors .section__title {
    line-height: 1.2;
  }
}
/* 共通ページタイトルデザイン */
.c-page-title {
  position: relative;
  padding: 5rem 0 2rem;
  border-bottom: 1px solid #ddd;
  margin-bottom: 2rem;
}

.c-page-title__en {
  font-family: "EB Garamond", serif;
  font-style: italic;
  font-weight: 700;
  font-size: 5rem;
  color: #0a3212; /* brand-green */
  line-height: 1;
  letter-spacing: 0.05em;
}

.c-page-title__jp {
  font-size: 1rem;
  font-weight: 700;
  margin-top: 0.5rem;
  display: block;
}

/* パンくずリスト風ナビ (右側) */
.c-breadcrumbs {
  position: absolute;
  right: 0;
  bottom: 2rem;
  font-size: 0.75rem;
}

/* 指導者アイコンナビ */
.coach-nav-item {
  transition: all 0.3s ease;
  text-decoration: none;
}

.coach-nav-item:hover {
  transform: translateY(-2px);
}

.coach-nav-img {
  width: min(200px, calc(13.8888888889vw));
  min-width: 180px;
  height: auto;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.coach-nav-item:hover .coach-nav-img {
  border-color: #0a3212;
}

.coach-nav-arrow {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #0a3212;
  margin: 5px auto 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.coach-nav-item:hover .coach-nav-arrow {
  opacity: 1;
}

/* プロフィールカード */
.profile-card__tag {
  background-color: #0a3212;
  color: #fff;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 0.5rem;
  font-family: "EB Garamond", serif;
  letter-spacing: 0.05em;
}

.profile-card__name-en {
  font-family: "EB Garamond", serif;
  font-style: italic;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.2;
  color: #0a3212;
}

.profile-card__name-jp {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  display: block;
}

.profile-card__desc {
  font-size: 0.85rem;
  text-align: justify;
}

.coach-label {
  background-color: #0a3212;
  font-size: 18px;
}

/* 背景装飾（クリスマスカラーの枠線など）はbody枠外のため省略 */
.common_container p {
  line-height: 1.8;
}

@media (min-width: 769px) {
  .common_container {
    width: min(1280px, calc(88.8888888889vw));
    margin: 0 auto 120px;
  }
}
@media (max-width: 768px) {
  .common_container {
    width: calc(93.3333333333vw);
    margin: 0 auto 80px;
  }
  .c-page-title::before {
    left: 0;
  }
  .c-page-title {
    padding-left: 1rem;
    padding-top: 3rem;
  }
  .c-page-title__en {
    font-size: 32px;
  }
  .c-page-title__jp {
    font-size: 14px;
  }
  .c-breadcrumbs {
    right: 1rem;
    bottom: 1rem;
  }
  .text-sm {
    font-size: 14px;
    width: calc(85.3333333333vw);
    margin: 0 auto;
  }
  .coach-nav-img {
    min-width: 100px;
  }
  .coach-nav-item {
    width: 100px;
  }
  .coach-nav-item span {
    font-size: 12px;
    width: 90%;
  }
  .profile-card__name-jp {
    font-size: 16px;
  }
  .profile-card__name-en {
    font-size: 20px;
  }
  .coach-label {
    font-size: 12px;
  }
  .w-80 {
    margin-inline: auto;
  }
}
:root {
  --primary-green: #004d25; /* 深い緑 */
  --accent-red: #b32020; /* クリスマスレッド */
  --bg-gray: #f2f2f2; /* 背景の薄いグレー */
  --text-black: #333;
  --font-serif: "Times New Roman", Times, serif; /* 画像のタイトルのようなセリフ体 */
  --font-sans: "Helvetica Neue", Arial, sans-serif;
}

.page-players-wrapper {
  font-family: var(--font-sans);
  color: var(--text-black);
}

/* タイトルエリア */
.page-header {
  text-align: left;
  padding: 40px 0 20px;
  border-bottom: 2px solid #ddd;
  margin-bottom: 40px;
}

.page-title {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--primary-green);
  font-size: 3rem;
  margin: 0;
  line-height: 1;
}

.page-subtitle {
  font-size: 0.9rem;
  margin-bottom: 10px;
  font-weight: bold;
}

.breadcrumbs {
  font-size: 0.8rem;
  color: #666;
  text-align: right;
  margin-top: -30px; /* 右上に配置調整 */
}

/* フィルタエリア */
.filter-section {
  margin-bottom: 40px;
  text-align: center;
}

.filter-box {
  background-color: #f4f4f4;
  padding: 20px;
  border-radius: 8px;
  display: inline-block;
  width: 100%;
  max-width: 800px;
}

.filter-title {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--primary-green);
  font-size: 1.5rem;
  margin-bottom: 15px;
  margin-top: 0;
}

.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-btn {
  border: 1px solid #ccc;
  background: #fff;
  padding: 8px 20px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s;
}

.filter-btn img {
  height: 12px;
  width: auto;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--primary-green);
  color: #fff;
  border-color: var(--primary-green);
}

/* 選手グリッド */
.players-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4列 */
  gap: 20px;
  margin-bottom: 60px;
}

@media (max-width: 900px) {
  .players-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
  }
}
/* 選手カード */
.player-card {
  background: #fff;
  border: 1px solid #eee;
  padding-bottom: 15px;
}

.card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4; /* 画像比率調整 */
  overflow: hidden;
  background: #eee;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-flag-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: var(--primary-green);
  color: #fff;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.card-flag-badge img {
  height: 10px;
  width: auto;
}

.card-info {
  padding: 10px 10px 0;
}

.card-info .position {
  color: var(--accent-red);
  font-size: 0.7rem;
  margin: 5px 0 8px;
  padding-bottom: 5px;
  font-weight: bold;
  border-bottom: 1px solid #c9c9c9;
}

.card-info .name-jp {
  font-size: 0.9rem;
  margin: 0;
  font-weight: bold;
}

.card-info .name-en {
  font-size: 18px;
}

/* PARTNER セクション */
.partner-section {
  background-color: var(--primary-green);
  color: #fff;
  padding: 60px 0;
  text-align: center;
}

.section-heading {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 2.5rem;
  margin: 0;
  letter-spacing: 1px;
}

.section-subheading {
  font-size: 0.9rem;
  margin-top: 5px;
  margin-bottom: 30px;
  opacity: 0.8;
}

.partner-box {
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  padding: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.partner-text {
  margin-bottom: 30px;
  line-height: 1.8;
  font-size: 0.95rem;
}

.partner-text .en-text {
  display: block;
  font-size: 0.75rem;
  margin-top: 10px;
  opacity: 0.8;
}

.partner-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn {
  display: inline-block;
  padding: 10px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  transition: opacity 0.3s;
}

.btn:hover {
  opacity: 0.8;
}

.btn-red {
  background-color: var(--accent-red);
  color: #fff;
  min-width: 180px;
}

.btn span {
  font-size: 0.7rem;
  font-weight: normal;
  display: block;
  margin-top: 2px;
}

/* SPONSORS セクション */
.sponsors-section {
  background-color: var(--primary-green);
  color: #fff;
  padding: 40px 0 80px; /* フッターの上なので余白多め */
  text-align: center;
}

.sponsors-list {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.sponsor-item {
  width: 280px;
}

.sponsor-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  height: 150px;
  width: 100%;
  margin-bottom: 10px;
}

/* ミズノのロゴ背景が青の場合は個別に調整 */
.sponsor-item img.bg-blue {
  background-color: #001e62; /* ミズノブルー */
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
}

.sponsor-item img:not(.bg-blue) {
  max-width: 80%;
  max-height: 80%;
}

.sponsor-name {
  font-size: 0.8rem;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .players-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
  }
  .card-info .name-en {
    font-size: 12px;
  }
}
.schedule-layout {
  display: flex;
  flex-wrap: wrap;
  gap: min(80px, calc(5.5555555556vw));
  margin-bottom: 80px;
  position: relative;
}

/* 左サイドバー (Sticky) */
.schedule-nav {
  flex-shrink: 0;
  /* PC: スクロール追従 */
  position: sticky;
  top: 100px;
  height: fit-content;
}

.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-list li {
  margin-bottom: 10px;
}

.nav-btn {
  display: block;
  background-color: var(--primary-green);
  color: #fff;
  text-align: center;
  padding: 10px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9rem;
  transition: opacity 0.3s;
  font-family: var(--font-sans);
}

.nav-btn:hover,
.nav-btn.active {
  opacity: 0.8;
}

.schedule-list {
  width: calc(100% - min(280px, calc(19.4444444444vw)));
  display: grid;
  gap: 80px;
}

.date-group {
  display: grid;
  gap: 16px;
}

@media (min-width: 769px) {
  .match-card {
    min-width: 650px;
  }
}
/* --- スマホ対応 (SP) --- */
@media (max-width: 768px) {
  .schedule-layout {
    display: block; /* Flex解除 */
  }
  /* ナビゲーションをグリッド2列に */
  .schedule-nav {
    width: 100%;
    position: static; /* Sticky解除 */
    margin-bottom: 30px;
  }
  .nav-list {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2列 */
    gap: 10px;
  }
  .nav-list li {
    margin-bottom: 0;
  }
  .schedule-list {
    width: 100%;
  }
}
#contact #select {
  margin-bottom: 50px;
}
#contact #select p {
  text-align: center;
  margin-bottom: 40px;
}
#contact #select ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  max-width: 585px;
  margin: 0 auto;
}
#contact #select li a {
  text-align: center;
  border: 1px solid #0a3212;
  border-radius: 100vmax;
  font-size: 18px;
  padding: 12px 0;
  display: block;
}
#contact #select li a.active {
  background-color: #0a3212;
  color: #f1f1f1;
  position: relative;
  pointer-events: none;
}
#contact #select li a.active:after {
  content: "";
  position: absolute;
  translate: -50% 0;
  left: 50%;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  background-color: #0a3212;
  width: 30px;
  height: 10px;
  bottom: -20px;
}
#contact #select li a:hover {
  scale: 1.05;
}
#contact .b_box {
  background-color: #0a3212;
  color: #f1f1f1;
  text-align: center;
  border-radius: 10px;
  padding: 40px 0;
  max-width: 600px;
  margin: 0 auto 110px;
}
#contact .b_box .en {
  font-size: 42px;
  padding-bottom: 20px;
}
#contact form {
  max-width: 750px;
  margin: 0 auto;
}
#contact form ul {
  display: grid;
  gap: 30px;
}
#contact form ul li {
  display: grid;
}
#contact form ul li p span input {
  display: block;
  width: 100%;
  border: 1px solid #0a3212;
  height: 40px;
  display: grid;
  align-items: center;
  border-radius: 5px;
  padding: 0 10px;
}
#contact form ul li p span input::placeholder {
  color: #d2d2d2;
}
#contact form ul li p span textarea {
  display: block;
  width: 100%;
  border: 1px solid #0a3212;
  border-radius: 5px;
  padding: 5px 10px;
}
#contact form .c-button input {
  all: unset;
  display: block;
  min-width: 200px;
  padding: 10px 15px;
  cursor: pointer;
}
#contact form .c-button {
  padding: 0;
  display: flex;
  align-items: center;
  margin: 24px auto 0;
}
#contact form .c-button:after {
  padding-inline: 0 10px;
}
#contact form .off {
  opacity: 0.4;
  pointer-events: none;
}
#contact form .privacy_box:has(input[type=checkbox]:checked) + .c-button {
  opacity: 1;
  pointer-events: auto;
}
#contact form .small {
  font-size: 11px;
  margin-left: 5px;
}
#contact form .wpcf7-not-valid-tip {
  font-size: 12px;
  padding: 3px 0 0 3px;
}
#contact form .wpcf7-list-item {
  margin: 0;
}
#contact form .privacy_box p {
  margin-top: 25px;
  display: flex;
}
#contact form .privacy_box p a {
  text-decoration: underline;
}
#contact .wpcf7-radio input {
  display: inline-block;
  height: auto;
  width: auto;
  padding: 0;
}
#contact .wpcf7-spinner {
  display: none;
}
#contact input[type=checkbox i] {
  border: 1px solid #0a3212;
}

.contact_confirm .btn_grid .c-button:nth-child(1) {
  background-color: #f1f1f1;
  color: #0a3212;
}
.contact_confirm .btn_grid .c-button:nth-child(1):hover {
  background-color: #0a3212;
  color: #f1f1f1;
}

.contact form .c-button,
.contact-collect .c-button {
  margin: 60px auto 0;
}

@media (max-width: 768px) {
  #contact #select p {
    font-size: 14px;
  }
  #contact #select ul {
    gap: 10px;
  }
  #contact #select li a {
    font-size: 14px;
    height: 50px;
    display: grid;
    place-content: center;
    padding: 0;
  }
  #contact form ul li > p {
    padding-bottom: 5px;
  }
  #contact form .wpcf7-list-item-label {
    font-size: 14px;
  }
  #contact form .wpcf7-radio > span {
    display: block;
  }
  #contact form ul li p span input,
  #contact form ul li p span textarea {
    width: calc(100% - 20px);
  }
  .contact_confirm form div > p {
    font-size: 14px;
  }
  .contact_confirm form .btn_grid {
    display: grid;
    margin: 50px auto 0;
    gap: 10px;
    width: fit-content;
  }
  .contact_confirm form .c-button {
    margin: 0;
  }
  .contact form .c-button,
  .contact-collect .c-button {
    margin: 50px auto 0;
  }
}
@media (min-width: 769px) {
  #contact form ul {
    display: grid;
    gap: 25px;
  }
  #contact form ul li {
    grid-template-columns: 180px auto;
    gap: 25px;
    font-size: 18px;
  }
  .contact_confirm form ul li {
    width: fit-content;
  }
  .contact_confirm form ul {
    width: fit-content;
    margin: 0 auto;
  }
  .contact_confirm form .c-button {
    display: inline-block;
    margin: 0;
  }
  .contact_confirm form .btn_grid {
    margin: 60px auto 0;
    display: flex;
    justify-content: center;
    gap: 10px;
  }
}
/*--------------------------------------*
* 固定ページ
*--------------------------------------*/
#about .box {
  padding: 3.125%;
  background-color: #fff;
  border-radius: 10px;
}
#about .box_inner {
  display: grid;
  align-items: center;
  justify-content: center;
}
#about .default_btn {
  margin: 45px auto 0;
}
#about .block {
  margin-bottom: 40px;
  position: relative;
}
#about .history .box_inner {
  grid-template-columns: 1fr;
}
#about .school_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: fit-content;
  margin: 0 auto;
}
#about .history_title {
  font-size: 24px;
  text-align: center;
  padding-bottom: 20px;
}
#about .gallaly {
  width: 100vw;
  margin: 0 calc(50% - 50vw) 115px;
}
#about .stadium_li {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  padding-top: 50px;
}
#about .stadium_li li {
  background-color: #fff;
  padding: 30px 0;
  width: calc(50% - 30px);
  min-width: 505px;
  border: 1px solid #0a3212;
  border-radius: 5px;
}
#about .stadium_li .access {
  font-size: 12px;
  margin: 10px auto 20px;
  width: fit-content;
  text-decoration: underline;
  display: flex;
  align-items: center;
  gap: 4px;
}
#about .stadium_li .map {
  margin: 0 auto;
  width: fit-content;
}
#about .stadium_li .map iframe {
  border-radius: 5px;
}
#about .stadium_li .stadium_name {
  border-radius: 3px;
  font-size: 16px;
  text-align: center;
  background-color: #eee;
  padding: 8px;
  width: 70%;
  margin: 0 auto;
}
#about .table_container table td {
  padding: 8px;
  border-bottom: 0.5px solid #9c9c9c;
}

#archive,
#single {
  margin-bottom: 80px;
}
#archive .archive_li,
#single .archive_li {
  display: grid;
  gap: 8px;
}
#archive .archive_li li,
#single .archive_li li {
  border-radius: 10px;
  background-color: #eee;
  padding: 20px;
  position: relative;
}
#archive .archive_li a,
#single .archive_li a {
  display: grid;
  grid-template-columns: 29.296875% auto;
  gap: 0 30px;
  align-items: center;
}
#archive .archive_li a:hover img,
#single .archive_li a:hover img {
  scale: 1.1;
}
#archive .archive_li a:hover .default_btn,
#single .archive_li a:hover .default_btn {
  background-color: #fff;
  color: #0068b7;
}
#archive .archive_li .default_btn,
#single .archive_li .default_btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 1.09375vw;
}
#archive .archive_li figure,
#single .archive_li figure {
  overflow: hidden;
  border-radius: 10px;
}
#archive .archive_li img,
#single .archive_li img {
  transition: all 0.4s;
  border-radius: 10px;
}
#archive .archive_li .data,
#single .archive_li .data {
  font-size: 14px;
  position: absolute;
  top: 20px;
  right: 20px;
}
#archive .archive_li .archive_title,
#single .archive_li .archive_title {
  font-size: 24px;
}
#archive .archive_li .news_excerpt,
#single .archive_li .news_excerpt {
  font-size: 14px;
  padding-top: 10px;
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* 3行以上は非表示 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 100px; /* 50px以上は非表示 */
}

.schedule {
  position: relative;
}
.schedule .common_container {
  position: relative;
}
.schedule .box {
  padding: 3.125%;
  background-color: #fff;
  border-radius: 10px;
}
.schedule .box_inner {
  display: grid;
  align-items: center;
  justify-content: center;
}
.schedule .box ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px auto 0;
}
.schedule .box ul li a {
  display: flex;
  justify-content: space-between;
  width: auto;
  cursor: pointer;
}

#games .leagu_table {
  display: grid;
  gap: 30px;
}
#games .leagu_table .leagu_title {
  font-size: 18px;
  padding-bottom: 10px;
}
#games .leagu_table .side_grid {
  display: grid;
  grid-template-columns: repeat(11, 1fr);
  font-size: 10px;
  background-color: #fff;
}
#games .leagu_table .side_grid li {
  text-align: center;
  border: solid #0a3212;
  border-width: 1px 1px 0 0;
  display: grid;
  place-content: center;
  min-height: 40px;
}
#games .leagu_table .side_grid li:nth-child(1) {
  border-width: 1px 1px 0 1px;
}
#games .leagu_table .side_grid li:first-child {
  background-color: #fff6f6;
}
#games .leagu_table .side_grid:last-child {
  border-bottom: 1px solid #0a3212;
}
#games .leagu_table .side_grid.grid_top {
  background-color: #fff6f6;
}
#games .next_text {
  margin: 60px auto 30px;
  text-align: center;
}
#games .next_text .next_arrow {
  width: 20px;
  height: 10px;
  background-color: #0a3212;
  display: block;
  margin: 5px auto 10px;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}
#games .data_wrapper .data_block:nth-child(odd) {
  background-color: #fff;
}
#games .data_wrapper .data_block {
  padding: 15px 0 70px;
}
#games .data_wrapper .common_container {
  padding: 0;
}
#games .data_title {
  font-size: 42px;
  font-weight: 500;
  margin-bottom: 15px;
}
#games .data_title span {
  font-size: 21px;
  margin-left: 10px;
}
#games .games_wrapper {
  display: grid;
  grid-template-columns: min(300px, 22.0833333333vw) min(500px, 39.1666666667vw) auto;
  gap: 25px;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
#games .games_wrapper:not(#games .games_wrapper:nth-child(2)) {
  padding-top: 25px;
  position: relative;
}
#games .games_wrapper:not(#games .games_wrapper:nth-child(2)):after {
  content: "";
  position: absolute;
  top: 0;
  translate: -50% 0;
  left: 50%;
  background-color: #c2c2c2;
  height: 1px;
  width: 80%;
}
#games .games_wrapper:not(#games .games_wrapper:last-child) {
  margin-bottom: 25px;
}
#games .score_number {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0068b7;
  gap: 10px;
}
#games .score_number .school_name {
  font-size: 18px;
  padding-top: 5px;
}
#games .score_number .en {
  font-size: 42px;
}
#games .score_number .line {
  padding: 0 5px;
}
#games .score_number .total_score {
  min-width: 20px;
}
#games .score_number .total_score.win {
  color: #0a3212;
  position: relative;
}
#games .score_number .total_score.win:after {
  content: "";
  width: 11px;
  height: 5px;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  background-color: #0a3212;
  position: absolute;
  top: -5px;
  translate: -50% 0;
  left: 50%;
}
#games .stadium {
  font-size: 10px;
  color: #0068b7;
  font-weight: 400;
  text-align: center;
  padding-top: 5px;
}
#games .stadium .switch {
  display: none;
}
#games .stadium .switch.active {
  display: block;
}
#games .score_block {
  max-width: 500px;
}
#games .score_block table {
  background-color: #fff;
  border: 1px solid #0a3212;
  border-radius: 3px;
  overflow: hidden;
  border-collapse: separate;
  border-spacing: 0;
}
#games .score_block table thead {
  background-color: #0a3212;
  color: #fff;
  font-size: 14px;
}
#games .score_block table thead th {
  padding: 3px 0;
}
#games .score_block table tbody {
  align-items: center;
  display: contents;
  color: #0068b7;
}
#games .score_block table tbody tr:nth-child(2) {
  background-color: #fff;
  border-top: 1px solid #0a3212;
}
#games .score_block table tbody tr:nth-child(2) td,
#games .score_block table tbody tr:nth-child(2) th {
  border-top: 1px solid #0a3212;
}
#games .score_block table tbody th {
  border-right: 1px solid #0a3212;
}
#games .score_block table td {
  padding: 0;
  text-align: center;
  width: 7%;
  font-size: 24px;
  font-weight: 300;
  height: 35px;
}
#games .score_block table td:not(#games .score_block table td:last-child) {
  border-right: 1px solid #0a3212;
}
#games .score_block table td.total {
  font-weight: 700;
}
#games .score_block table .school_name {
  font-size: 12px;
  vertical-align: middle;
}
#games .score_block table td:nth-child(2) {
  font-weight: 400;
  padding: 0;
}
#games .score_block .information {
  color: #ff0000;
  font-size: 11px;
  padding-top: 3px;
}
#games .game_link ul {
  display: grid;
  align-items: center;
  gap: 10px;
}
#games .game_link ul li a {
  font-size: 12px;
  font-weight: 400;
  text-decoration: underline;
  width: fit-content;
}

#column .column_wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px 20px;
}
#column .column_wrap li {
  transition: all 0.4s;
}
#column .column_wrap .fade {
  transition: opacity 0.4s ease;
  opacity: 1;
}
#column .column_wrap .fade-out {
  opacity: 0;
}
#column .section_title {
  font-size: 42px;
}
#column .section_title span {
  font-size: 14px;
}
#column .section_title.bottom_title {
  margin: 100px 0 10px;
}
#column .review {
  padding-top: 40px;
}
#column .bottom_wrapper .common_container {
  padding: 0 0 40px;
}

#column .column_wrap img,
.front_column .column_wrap img {
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 10px;
}
#column .column_wrap .data,
.front_column .column_wrap .data {
  font-size: 12px;
}
#column .column_wrap .title,
.front_column .column_wrap .title {
  font-size: 18px;
  padding: 5px 0 10px;
}

.front_column .section_title.center_title {
  margin-bottom: 45px;
}
.front_column .section_title {
  font-size: 42px;
  margin: 0;
}
.front_column .section_title span {
  font-size: 14px;
}
.front_column .bottom_title {
  margin: 100px auto 30px;
}

#page .common_container {
  width: 800px;
  margin: 50px auto;
}
#page .page_content h2:nth-child(1) {
  padding: 0 0 5px;
}
#page .page_content h2 {
  font-size: 24px;
  padding: 50px 0 10px;
}
#page .page_content p {
  padding: 10px 0;
  font-size: 16px;
  line-height: 1.625;
}

#team .bottom_wrapper {
  overflow-x: hidden;
}

#team_archive .place_li {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 18px;
  width: 530px;
  margin: 0 auto;
}

#team_archive .place_li li a {
  text-decoration: underline;
}

#team_archive h2 {
  margin-top: 30px;
  font-size: 14px;
  padding: 60px 0 50px;
  position: relative;
  z-index: 3;
}

#team_archive h2:before {
  font-size: 120px;
  color: rgba(238, 238, 238, 0.4705882353);
  position: absolute;
  translate: 0 -50%;
  top: 50%;
  left: -8.3333333333vw;
  z-index: -1;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

#team_archive h2:nth-of-type(even) {
  text-align: right;
}

#team_archive h2:nth-of-type(even):before {
  left: inherit;
  right: -8.3333333333vw;
}

#team_archive h2:nth-of-type(1):before {
  content: "HOKKAIDO";
}

#team_archive h2:nth-of-type(2) {
  text-align: right;
}

#team_archive h2:nth-of-type(2):before {
  content: "TOHOKU";
}

#team_archive h2:nth-of-type(3):before {
  content: "KANTO";
}

#team_archive h2:nth-of-type(4):before {
  content: "CHUBU";
}

#team_archive h2:nth-of-type(5):before {
  content: "KINKI";
}

#team_archive h2:nth-of-type(6):before {
  content: "CHUGOKU";
}

#team_archive h2:nth-of-type(7):before {
  content: "SHIKOKU";
}

#team_archive h2:nth-of-type(8):before {
  content: "KYUSHU";
}

#team_archive .team_grid {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: -30px;
  position: relative;
  z-index: 190;
}

#team_archive .team_grid:nth-last-of-type(odd) {
  justify-content: center;
}

#team_archive .team_grid li a {
  background-color: #0068b7;
  width: 320px;
  border-radius: 5px;
  overflow: hidden;
  color: #fff;
  overflow: hidden;
  height: 100%;
}

#team_archive .team_grid li a:hover img {
  scale: 1.05;
  transition: all 0.4s;
}

#team_archive .team_grid li a figure {
  overflow: hidden;
}

#team_archive .team_grid li a img {
  transition: all 0.4s;
  aspect-ratio: 16/9;
  height: 100%;
  object-fit: cover;
}

#team_archive .team_grid li a .team_name {
  padding: 7px 15px;
  text-align: right;
  font-size: 16px;
  letter-spacing: 0.08em;
}

.team_single .bottom_wrapper .container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 0 120px 0;
}
.team_single article {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.team_single article .common_image {
  padding: 0;
  border-radius: 5px;
  width: 100%;
  margin: 0 auto 15px;
}
.team_single article .right {
  padding-left: 14.4230769231%;
}
.team_single article .small_txt {
  font-size: 10px;
  padding-bottom: 3px;
}
.team_single article .team_comment {
  font-size: 14px;
  line-height: 1.4285714286;
  padding: 10px 25px;
}
.team_single article .history > p {
  font-size: 18px;
  padding: 45px 0 5px;
}
.team_single article .history .history_li {
  display: grid;
  gap: 5px;
}
.team_single article .history .history_li li {
  padding: 5px 15px;
  font-size: 14px;
  background-color: #f1f1f1;
}
.team_single .member_table tr {
  display: grid;
  text-align: center;
  gap: 10px;
}
.team_single .member_table tr td {
  padding: 5px 0;
  font-size: 16px;
  font-weight: bold;
}
.team_single .member_table tr:nth-child(1) td {
  background-color: #0a3212;
  color: #f1f1f1;
  font-size: 14px;
  border-radius: 3px;
}
.team_single .member_table tr:nth-child(1) tr {
  vertical-align: middle;
}

@media (max-width: 768px) {
  .page_title_wrapper .common_container {
    padding: 105px 0 20px;
    border-bottom: 1px solid #fff;
  }
  .bottom_wrapper .common_container {
    padding: 0 0 100px;
  }
  .page_index_wrap .container {
    grid-template-columns: 1fr;
  }
  #archive .archive_li li,
  #single .archive_li li {
    padding: 10px;
  }
  #archive .archive_li li a,
  #single .archive_li li a {
    grid-template-columns: 120px auto;
    font-size: 14px;
    align-items: flex-start;
    gap: 0 10px;
  }
  #archive .archive_li li .news_excerpt,
  #archive .archive_li li .data,
  #single .archive_li li .news_excerpt,
  #single .archive_li li .data {
    display: none;
  }
  #archive .archive_li .archive_title,
  #single .archive_li .archive_title {
    font-size: 14px;
    line-height: 1.4;
  }
  #archive .archive_li figure,
  #archive .archive_li img,
  #single .archive_li figure,
  #single .archive_li img {
    border-radius: 5px;
  }
  #archive .archive_li .arrow,
  #single .archive_li .arrow {
    width: 20px;
    height: 20px;
  }
  #archive .section_title,
  #single .section_title {
    text-align: center;
  }
  #archive .section_title p,
  #single .section_title p {
    margin: 0 auto;
  }
  #about .box {
    padding: calc(8vw) 10px;
  }
  #about .tounament_about {
    margin-top: 40px;
  }
  #about .tounament_logo {
    width: calc(66.6666666667vw);
    margin: 0 auto;
    padding-bottom: 30px;
  }
  #about .tounament_logo img {
    width: 80%;
    margin: 0 auto;
  }
  #about .block {
    margin-bottom: 120px;
  }
  #about .school_list {
    grid-template-columns: 1fr;
    width: fit-content;
    margin: 0 auto;
    font-size: 14px;
  }
  #about .stadium_li {
    padding-top: 30px;
    gap: 10px;
  }
  #about .stadium_li li {
    width: 100%;
    min-width: inherit;
    padding: 15px 0;
  }
  #about .stadium_li .stadium_name {
    width: 90%;
  }
  #about .stadium_li .access {
    margin: 8px auto;
  }
  #about .stadium_li .map {
    width: 90%;
  }
  #about .stadium_li .map iframe {
    width: 100%;
    height: 130px;
  }
  #final .block {
    padding: 80px 0;
  }
  #final .ticket_btn {
    font-size: 16px;
    width: 80%;
    margin: 30px auto 0;
  }
  #final .sp_grid {
    display: grid;
  }
  #final .sp_grid .banner {
    grid-row: 1/2;
  }
  #final .sp_grid figure {
    margin: 0;
  }
  #final .table_container table td:nth-child(1) {
    min-width: 60px;
  }
  #final .final_text {
    font-size: 14px;
  }
  .schedule {
    margin-top: 40px;
  }
  .schedule .box ul {
    grid-template-columns: 1fr 1fr;
    margin: 20px auto;
  }
  .schedule .box ul li a {
    width: auto;
  }
  #games .games_wrapper {
    padding: 30px 0;
    grid-template-columns: 1fr;
  }
  #games .games_wrapper:not(#games .games_wrapper:nth-child(2)):after {
    width: 100%;
  }
  #games .game_link ul {
    justify-content: right;
  }
  #games .game_link ul li a {
    margin: 0 0 0 auto;
  }
  #page .common_container {
    width: 335px;
    margin: 20px auto;
  }
  #page .page_content h2 {
    font-size: 18px;
  }
  #page .page_content p {
    font-size: 14px;
    padding: 5px 0;
  }
  #team_archive .place_li {
    width: 350px;
    gap: 10px 20px;
    font-size: 14px;
  }
  #team_archive h2:before {
    font-size: 80px;
    left: -20px;
  }
  #team_archive h2:nth-of-type(even):before {
    right: -20px;
  }
  #team_archive .team_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  #team_archive .team_grid li a {
    width: 100%;
  }
  #team_archive .team_grid li a .team_name {
    font-size: 12px;
    padding: 5px 10px;
  }
  .team_single .container {
    width: 90%;
  }
  .team_single article {
    grid-template-columns: 1fr;
  }
  .team_single article .right {
    padding: 0;
    margin-top: 80px;
  }
  .team_single .member_table tr td {
    font-size: 14px;
  }
  #column .column_wrap {
    grid-template-columns: 1fr 1fr;
    gap: 20px 5px;
  }
  #column .column_wrap .data {
    font-size: 11px;
  }
  #column .column_wrap img {
    margin-bottom: 5px;
    border-radius: 3px;
  }
  #column .column_wrap .title {
    font-size: 16px;
    padding: 3px 0 0 0;
    line-height: 1.4;
  }
}
@media (min-width: 769px) {
  #about .box_inner {
    grid-template-columns: 27.34375% auto;
  }
  #about .tounament_logo {
    padding-right: 50px;
  }
  #about .table_container {
    padding-left: 50px;
  }
  #games .leagu_table {
    grid-template-columns: 1fr 1fr;
    gap: 45px;
  }
  #games .leagu_table .side_grid {
    font-size: 14px;
  }
}
/*--------------------------------------*
* 詳細ページ
*--------------------------------------*/
.single_wrapper {
  margin-top: 50px;
}
.single_wrapper .common_container {
  width: 800px;
}
.single_wrapper .common_image {
  padding-bottom: 15px;
  width: 80%;
  margin: 0 auto 20px;
}
.single_wrapper .common_image img {
  border-radius: 10px;
}
.single_wrapper .text p {
  font-size: 16px;
  line-height: 1.5625;
  padding: 20px 0;
}
.single_wrapper .text img {
  padding: 10px 0;
}
.single_wrapper .left .text a {
  display: inline;
  text-decoration: underline;
  color: #0a3212;
}
.single_wrapper .default_btn {
  margin: 80px auto 0;
}

.side_wrapper .grid {
  display: grid;
  gap: 8px;
}
.side_wrapper li a {
  display: grid;
  grid-template-columns: 140px auto;
  gap: 10px;
  font-size: 13px;
}
.side_wrapper li a figure {
  border-radius: 5px;
  overflow: hidden;
}
.side_wrapper li a:hover img {
  scale: 1.1;
}
.side_wrapper li a:hover .card_title {
  text-decoration: underline;
}
.side_wrapper .data {
  padding-top: 5px;
  color: #0a3212;
  font-size: 12px;
}
.side_wrapper img {
  border-radius: 5px;
  transition: all 0.4s;
}
.side_wrapper .link_wrap {
  margin-top: 35px;
}
.side_wrapper .link_wrap a:not(a:last-child) {
  margin-bottom: 10px;
}

.single_team .team_text {
  padding-bottom: 15px;
  font-size: 18px;
}
.single_team .team_text span {
  color: #0a3212;
  font-size: 14px;
}
.single_team .member_wrap {
  border: solid #fff;
  border-width: 1px 0;
  margin: 15px 0;
}
.single_team .member_wrap .member_title {
  background-color: #f1f1f1;
  margin-top: -28px;
  display: block;
  width: fit-content;
  padding: 15px 10px 0 0;
}
.single_team .default_btn {
  margin: 65px auto 0;
}
.single_team .common_image {
  position: relative;
  padding-top: 30px;
}
.single_team .common_image.sidebar_image {
  padding-top: 0;
}
.single_team .index_number {
  color: #0a3212;
  font-size: 42px;
  position: absolute;
  z-index: 2;
  top: 0;
  font-weight: 500;
}
.single_team .cate_label span {
  font-size: 13px;
  width: 160px;
  text-align: center;
  position: absolute;
  z-index: 2;
  bottom: 25px;
  right: 0;
  padding: 7px 0;
  color: #fff;
}
.single_team table {
  background-color: inherit;
  border: inherit;
  border-radius: inherit;
}
.single_team table tr:not(tr:last-child) {
  border-bottom: inherit;
}
.single_team table tr {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: fit-content;
  margin: 10px auto 0;
  gap: 10px 50px;
}
.single_team table td {
  padding: 0;
  min-width: auto;
  width: auto;
  font-size: 18px;
  font-weight: bold;
  display: flex;
  align-items: flex-start;
}
.single_team table td span {
  font-size: 14px;
  margin-right: 20px;
}
.single_team table td p {
  padding: 0 !important;
}

@media (max-width: 768px) {
  .single_wrapper {
    margin-top: 30px;
  }
  .single_wrapper .text p {
    font-size: 14px;
    line-height: 1.8571428571;
    padding: 12px 0;
  }
  .single_wrapper .common_container {
    width: calc(89.3333333333vw);
  }
  .single_wrapper .common_image {
    width: 100%;
    padding-bottom: 10px;
    margin-bottom: 0;
  }
  .single_wrapper .default_btn {
    margin: 50px auto 0;
  }
}
@media (min-width: 1024px) {
  .u-hidden-lg {
    display: none !important;
  }
}

.u-block-lg {
  display: none;
}
@media (min-width: 1024px) {
  .u-block-lg {
    display: block;
  }
}

.u-text-center {
  text-align: center;
}/*# sourceMappingURL=style.css.map */