@import url("../bases/variables.css");
@import url("../style.css");
/* ==================================================
* Common
* ================================================== */
main {
  background: var(--color-gray-snow);
}
@media screen and (max-width: 768px) {
  main.light {
    margin-top: 0;
  }
}
.page-section {
  position: relative;
  padding-top: var(--space-80);
  /* padding-bottom: var(--space-100); */
  background: var(--color-gray-snow);
}
.page-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 720px;
  z-index: 0;
}
.page-title {
  position: relative;
  z-index: 1;
  color: var(--color-yellow);
  font-size: var(--fs-38);
  font-weight: 900;
  text-align: center;
}
.page-title::before {
  content: attr(data-label);
  margin: 0 auto 10px;
  padding: 5px var(--space-20);
  display: block;
  max-width: 165px;
  font-size: var(--fs-20);
  font-weight: 900;
  border: 1px solid var(--color-yellow);
}
.page-section .contents {
  position: relative;
  z-index: 1;
  margin-top: 100px;
  /* padding-bottom: var(--space-80); */
  padding: var(--space-50) var(--page-contents) var(--space-80);
  background: var(--color-white);
}
.page-section .contents.full {
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}
.contents .menu {
  display: flex;
  align-items: center;
}
.contents .menu li {
  flex-basis: 25%;
  border-left: 2px dashed var(--color-black);
  text-align: center;
  position: relative;
}
.contents .menu li:last-child {
  border-right: 2px dashed var(--color-black);
}
.contents .menu li a {
  padding: var(--space-10) 4px;
  font-size: clamp(12px, 1vw, 16px);
}
.contents .menu li::after {
  content: "\e313";
  font-family: var(--ff_material);
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  font-size: var(--fs-16);
}
.page-section .contents .item h3,
.page-section .item > h3 {
  margin-top: var(--space-50);
  padding: var(--space-20) var(--space-10);
  font-size: var(--fs-22);
  font-weight: 900;
  border-top: 2px solid var(--color-black);
  border-bottom: 2px solid var(--color-black);
}

.page-section .contents .item h3.content-title {
  display: flex;
  align-items: center;
}
.page-section .contents .item h3.content-title .content-title-icon {
  padding-left: var(--space-20);
  padding-right: var(--space-20);
}
.page-section .contents .item h3.content-title .content-title-icon img {
  width: auto;
  height: var(--space-30);
}
.page-section .contents .item h3.content-title .content-title-text {
  padding-left: var(--space-20);
  padding-right: var(--space-20);
  border-left: 2px solid var(--color-black);
}

.page-section .item > h3.white {
  position: relative;
  z-index: 1;
  color: var(--color-white);
  border-color: var(--color-white);
  border-width: 1px;
}
.section-header {
  text-align: center;
}
.page-section .contents .item .item-content {
  margin-top: var(--space-30);
}

.button {
  background: var(--color-black);
  color: var(--color-white);
}
.button:hover {
  background: var(--color-white);
  color: var(--color-black);
}

.section-tab-buttons {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
  margin-top: var(--space-70);
}

.section-tab-button {
  padding: var(--space-16) 0;
  max-width: 420px;
  width: 100%;
  color: var(--color-yellow);
  border: 1px solid var(--color-yellow);
  font-size: var(--fs-16);
  font-weight: 900;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.section-tab-button:hover {
  opacity: 0.7;
}
.section-tab-button:first-child {
  border-radius: 6px 0 0 6px;
}
.section-tab-button:last-child {
  border-radius: 0 6px 6px 0;
}

.section-tab-button.is-active {
  background: var(--color-yellow);
  color: var(--color-black);
}

.section-tab-button img {
  filter: brightness(0) saturate(100%) invert(89%) sepia(50%) saturate(7499%)
    hue-rotate(359deg) brightness(104%) contrast(104%);
}

.section-tab-button.is-active img {
  filter: brightness(0) saturate(100%);
}

.border-section {
  display: flex;
  flex-direction: column;
  gap: var(--space-20);
  position: relative;
  padding: var(--fs-50);
  border: 2px solid var(--color-gold-dark);
  border-radius: 20px;
}

.border-section-title {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 var(--space-20);
  background: var(--color-white);
  color: var(--color-gold-dark);
  font-size: var(--fs-26);
  font-weight: 900;
  text-align: center;
}

.item-content-title {
  padding-left: var(--space-20);
  font-size: var(--fs-18);
  font-weight: 900;
  background-image: linear-gradient(
    to bottom,
    var(--color-gold-dark) 50%,
    var(--color-black) 50%
  );
  background-position: left;
  background-repeat: no-repeat;
  background-size: 2px 100%;
  border-left: none;
}
@media screen and (max-width: 768px) {
  .border-section {
    gap: var(--space-16);
    padding: var(--space-30) var(--space-16) var(--space-20);
  }
  .item-content-title {
    font-size: var(--fs-16);
  }
}

.info-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 60px);
}

.info-card-body {
  padding: var(--space-20);
}

.info-card-label {
  font-size: var(--fs-16);
  font-weight: 900;
}

.info-card-heading {
  margin-top: var(--fs-12);
  font-size: var(--fs-20);
  font-weight: 900;
}

.info-card-description {
  margin-top: var(--fs-14);
  font-size: var(--fs-14);
}

.info-card-action {
  margin-top: var(--fs-24);
}

.info-card-action a {
  padding: var(--space-8) var(--space-20);
  max-width: 140px;
  font-size: var(--fs-12);
  text-align: start;
}
.info-card-action a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 768px) {
  .info-card-grid {
    grid-template-columns: 1fr;
    gap: var(--space-30);
  }
}

.contents .menu li a:hover {
  opacity: 0.7;
}

/* ==================================================
* Pages
* ================================================== */
/*
* 試合・観戦 - 試合日程
-------------------------------------------------- */
#game {
  background: var(--color-gray-snow);
}
#game::after {
  background: url("../../images/pages/game/schedule/bg.png") no-repeat;
  background-size: cover;
  height: 720px;
}

#game .item-content {
  margin-top: 0;
}

.game-list {
  display: flex;
  flex-direction: column;
}

.game-item {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 100px);
  padding: var(--space-10) clamp(10px, 1vw, 30px);
  background: var(--color-white);
  border-bottom: 2px solid #dcdcdc;
}

.game-info {
  display: flex;
  flex-direction: column;
  flex-basis: 30%;
  min-width: 200px;
}

.game-section {
  display: flex;
  align-items: center;
  font-size: var(--fs-14);
  white-space: nowrap;
}

.game-label {
  margin-right: var(--space-14);
  padding: var(--space-8) clamp(10px, 1vw, 20px);
  width: fit-content;
  font-size: clamp(12px, 1vw, 16px);
  font-weight: 900;
  border-radius: 100px;
}

.game-label.home {
  background: var(--color-yellow);
  color: var(--color-black);
}

.game-label.away {
  background: #e5e5e5;
}

.game-section-text {
  padding: 0 var(--space-14);
  border-left: 2px solid var(--color-black);
  border-right: 2px solid var(--color-black);
}

.game-stadium-text {
  padding: 0 var(--space-14);
}

.game-meta {
  display: flex;
  flex-direction: column;
}

.game-date {
  display: flex;
  align-items: baseline;
  gap: var(--space-10);
  font-weight: 900;
}

.game-date .date {
  font-size: clamp(20px, 2vw, 40px);
}

.game-date .day,
.game-date .time {
  font-size: var(--fs-20);
}

.game-match {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(10px, 1vw, 30px);
}

.game-team {
  display: flex;
  align-items: center;
  gap: var(--space-16);
}

.game-team .vs {
  font-size: clamp(20px, 2vw, 40px);
  font-weight: 900;
}
.game-team .team-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: clamp(90px, 10vw, 150px);
  text-align: center;
}

.team-logo {
  margin: 0 auto;
  width: fit-content;
  height: clamp(80px, 4vw, 120px);
  text-align: center;
}

.team-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.team-name {
  font-size: var(--fs-14);
  font-weight: 900;
}

.game-score {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1vw, 30px);
}
.game-score a:hover {
  opacity: 0.7;
}

.score {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1vw, 20px);
}

.score-myself {
  color: var(--color-gold-dark);
}

.score-opponent {
  color: #777777;
}

.score .numbers {
  font-family: var(--ff_roboto);
  font-size: clamp(20px, 2vw, 40px);
  font-weight: 900;
}

.game-score .button {
  padding: var(--space-10);
  width: 110px;
  background: var(--color-black);
  color: var(--color-white);
  font-size: var(--fs-14);
  border-radius: 5px;
  text-align: start;
}
.game-score.info .button {
  background: var(--color-yellow);
  color: var(--color-black);
  border: none;
}

#game .contents:last-child {
  margin-bottom: var(--space-100);
}

#game .contents .menu li a {
  font-size: clamp(11px, 1vw, 16px);
}

#past-seasons .archive-years {
  gap: var(--space-10);
  padding: var(--space-10);
  background: var(--color-gray-snow);
}
#past-seasons .archive-year {
  background: var(--color-white);
}
#past-seasons .archive-year a {
  color: var(--color-black);
}
#past-seasons .archive-year a::after {
  right: 12px !important;
}

@media screen and (max-width: 768px) {
  .game-item {
    /* flex-direction: column; */
    gap: var(--space-16);
    padding: var(--space-16);
  }

  .game-info {
    width: 100%;
    min-width: auto;
    flex-basis: auto;
  }

  .game-section {
    flex-wrap: wrap;
    gap: var(--space-8);
  }

  .game-section-text,
  .game-stadium-text {
    font-size: var(--fs-12);
  }

  .game-label {
    font-size: var(--fs-14);
    padding: var(--space-4) var(--space-16);
  }

  .game-meta {
    margin-top: var(--space-8);
  }

  .game-date {
    justify-content: flex-start;
    gap: var(--space-8);
  }

  .game-date .date {
    font-size: var(--fs-24);
  }

  .game-date .day,
  .game-date .time {
    font-size: var(--fs-14);
  }

  .game-match {
    width: 100%;
    flex-direction: column;
    gap: var(--space-16);
  }

  .game-team {
    width: 100%;
    justify-content: center;
  }

  .game-team .vs {
    font-size: var(--fs-24);
  }

  .game-team .team-info {
    flex-direction: row;
    align-items: center;
    /* width: 60%; */
  }

  .team-logo {
    width: 80px;
    height: 80px;
  }

  .team-name {
    font-size: var(--fs-14);
  }

  .game-score {
    width: 100%;
    justify-content: space-between;
  }

  .game-score.info {
    justify-content: end;
  }

  .game-score .score {
    gap: var(--space-12);
  }

  .game-score .score .numbers {
    font-size: var(--fs-24);
  }

  .game-score .button {
    width: 120px;
    padding: var(--space-8) var(--space-16);
    font-size: var(--fs-12);
  }

  .game-score.info .button {
    width: 120px;
    text-align: center;
  }
}

@media screen and (max-width: 600px) {
  .game-item {
    flex-direction: column;
    gap: var(--space-16);
    padding: var(--space-16);
  }

  .game-info {
    width: 100%;
    min-width: auto;
    flex-basis: auto;
  }

  .game-section {
    flex-wrap: wrap;
    gap: var(--space-8);
  }

  .game-section-text,
  .game-stadium-text {
    font-size: var(--fs-12);
  }

  .game-label {
    font-size: var(--fs-14);
    padding: var(--space-4) var(--space-16);
  }

  .game-meta {
    margin-top: var(--space-8);
  }

  .game-date {
    justify-content: flex-start;
    gap: var(--space-8);
  }

  .game-date .date {
    font-size: var(--fs-24);
  }

  .game-date .day,
  .game-date .time {
    font-size: var(--fs-14);
  }

  .game-match {
    width: 100%;
    flex-direction: row;
    gap: var(--space-16);
  }

  .game-team {
    width: 100%;
    justify-content: center;
  }

  .game-team .vs {
    font-size: var(--fs-24);
  }

  .game-team .team-info {
    flex-direction: row;
    align-items: center;
    /* width: 60%; */
  }

  .team-logo {
    width: 80px;
    height: 80px;
  }

  .team-name {
    font-size: var(--fs-14);
  }

  .game-score {
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
  }

  .game-score.info {
    justify-content: end;
  }

  .game-score .score {
    gap: var(--space-12);
  }

  .game-score .score .numbers {
    font-size: var(--fs-24);
  }

  .game-score .button {
    width: 120px;
    padding: var(--space-8) var(--space-16);
    font-size: var(--fs-12);
  }

  .game-score.info .button {
    width: 120px;
    text-align: start;
  }
}

@media screen and (max-width: 420px) {
  .game-item {
    flex-direction: column;
    gap: var(--space-16);
    padding: var(--space-16);
  }

  .game-info {
    width: 100%;
    min-width: auto;
    flex-basis: auto;
  }

  .game-section {
    flex-wrap: wrap;
    gap: var(--space-8);
  }

  .game-section-text,
  .game-stadium-text {
    font-size: var(--fs-12);
  }

  .game-label {
    font-size: var(--fs-14);
    padding: var(--space-4) var(--space-16);
  }

  .game-meta {
    margin-top: var(--space-8);
  }

  .game-date {
    justify-content: flex-start;
    gap: var(--space-8);
  }

  .game-date .date {
    font-size: var(--fs-24);
  }

  .game-date .day,
  .game-date .time {
    font-size: var(--fs-14);
  }

  .game-match {
    width: 100%;
    flex-direction: column;
    gap: var(--space-16);
  }

  .game-team {
    width: 100%;
    justify-content: flex-start;
  }

  .game-team .vs {
    font-size: var(--fs-24);
    display: block;
    width: 30%;
    text-align: center;
  }

  .game-team .team-info {
    flex-direction: row;
    justify-content: flex-start;
    width: 70%;
  }

  .team-logo {
    width: 50%;
    height: auto;
    margin: 0;
  }

  .team-name {
    font-size: var(--fs-14);
  }

  .game-score {
    width: 100%;
    justify-content: space-between;
  }

  .game-score.info {
    justify-content: end;
  }

  .game-score .score {
    gap: var(--space-12);
  }

  .game-score .score .numbers {
    font-size: var(--fs-24);
  }

  .game-score .button {
    width: 120px;
    padding: var(--space-8) var(--space-16);
    font-size: var(--fs-12);
  }

  .game-score.info .button {
    width: 120px;
    text-align: center;
  }
}

#ranking::after {
  background: url("../../images/pages/game/schedule/bg02.png") no-repeat;
  background-size: cover;
  height: 360px;
}

#ranking .page-title {
  font-size: var(--fs-18);
}

#ranking .page-title::before {
  padding: 0;
  max-width: 100%;
  font-family: var(--ff_roboto);
  font-size: var(--fs-50);
  border: none;
}

#ranking .contents {
  background: var(--color-gray-snow);
}

#ranking .item {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
  margin-top: var(--space-56);
}

#ranking .item a {
  display: flex;
  align-self: center;
  justify-content: center;
  gap: var(--space-10);
  /* padding: var(--space-24) 0; */
  max-width: 300px;
  width: 100%;
  border-color: var(--color-white);
  color: var(--color-white);
  text-align: center;
}

#ranking .item a img {
  width: 40px;
  height: auto;
}

.league-name {
  position: absolute;
  left: 0;
  top: 280px;
  z-index: 1;
  width: 100%;
  color: var(--color-white);
  font-family: var(--ff_roboto);
  font-size: var(--fs-80);
  font-weight: 900;
  text-align: center;
  opacity: 0.2;
}

@media screen and (max-width: 768px) {
  .league-name {
    display: none;
  }
}

/*
* 試合・観戦 - 試合結果
-------------------------------------------------- */
#game-result {
  background: var(--color-gray-snow);
}

#game-result::after {
  background: url("../../images/pages/game/result/bg.png") no-repeat;
  background-size: cover;
  max-height: 720px;
}

#game-result .section-tab-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-10);
}

.section-tab-button img {
  max-width: 24px;
  width: 100%;
  height: auto;
}

#game-result .game-result-fv {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-60) 0;
  background: url("../../images/pages/game/result/fv.png") no-repeat;
  color: var(--color-white);
  background-size: cover;
  text-align: center;
}

#game-result .contents.full {
  padding-bottom: 0;
}

#game-result .item.page-contents-x {
  padding-bottom: var(--space-80);
}

/*  */
.game-info-team-type {
  margin: 0 auto;
  padding: var(--space-8) 0;
  max-width: 60px;
  width: 100%;
  color: var(--color-black);
  font-size: var(--fs-12);
  font-weight: 900;
  border-radius: 30px;
}

.game-info-team-type.home {
  background: var(--color-yellow);
}

.game-info-team-type.away {
  background: var(--color-white);
}

.game-info-scorer-title {
  margin: 0 auto;
  padding: var(--space-4) var(--space-10);
  width: fit-content;
  color: var(--color-white);
  border: 2px solid var(--color-white);
  border-radius: 4px;
}

.game-info-scorer-detail {
  margin-top: var(--space-10);
  color: var(--color-white);
}

.game-info-result-score {
  color: var(--color-white);
  font-weight: 900;
  word-break: keep-all;
}

.game-info-result-status {
  font-size: var(--fs-22);
}

.game-info-result-total {
  margin-top: var(--space-24);
  margin-bottom: var(--space-10);
  border-top: 2px solid var(--color-white);
  border-bottom: 2px solid var(--color-white);
}

.game-info-result-number,
.game-info-result-separator {
  font-family: var(--ff_roboto);
  font-size: clamp(60px, 4vw, 100px);
}

.game-info-result-half {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-10);
}

.game-info-result-half .game-info-result-number {
  font-size: var(--fs-40);
}

.game-info-result-period {
  font-size: var(--fs-18);
  width: 72px;
}

/*  */
.comment-section {
  padding: clamp(40px, 3vw, 80px);
  background: var(--color-gray-snow);
}

.comment-header {
  text-align: center;
}

.comment-icon {
  width: auto;
  height: 40px;
}

.comment-title {
  margin-top: var(--space-12);
  font-size: var(--fs-26);
  font-weight: 900;
}

.comment-list {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 2vw, 40px);
  margin-top: var(--space-50);
}

.comment-item {
  flex: 0 0 calc(50% - clamp(20px, 2vw, 40px));
  padding: var(--space-40) clamp(20px, 2vw, 50px);
  background: var(--color-white);
  border-radius: 10px;
}

.comment-name {
  position: relative;
  font-size: var(--fs-20);
  font-weight: 900;
}

.comment-name::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: calc(var(--space-20) * -1);
  width: 20px;
  height: 2px;
  background: var(--color-black);
}

.comment-text {
  margin-top: var(--space-40);
  line-height: var(--space-28);
}

@media screen and (max-width: 768px) {
  .comment-section {
    padding: var(--space-20);
  }

  .comment-list {
    flex-direction: column;
  }
}

/*
* 試合・観戦 - インフォ
-------------------------------------------------- */
#game-info {
  background: var(--color-gray-snow);
}

#game-info::after {
  background: url("../../images/pages/game/info/bg.png") no-repeat;
  background-size: cover;
  max-height: 720px;
}

#game-info .section-tab-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-10);
}

#game-info .section-tab-button img {
  max-width: 24px;
  width: 100%;
  height: auto;
}

/* Game Info FV */
.game-info-fv {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-60) 0;
  background: url("../../images/pages/game/info/fv.png") no-repeat;
  background-size: cover;
  text-align: center;
}
.game-info-meta {
  display: flex;
  align-items: center;
  gap: var(--space-10);
  margin-bottom: var(--space-10);
}

.game-info-date {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.game-info-label {
  padding: var(--space-10) var(--space-16);
  background: var(--color-white);
  color: var(--color-black);
  font-size: var(--fs-16);
  font-weight: 900;
  border-radius: 100px;
}

.game-info-year {
  font-family: var(--ff_roboto);
  font-size: var(--fs-40);
  font-weight: 900;
}

.game-info-day {
  display: flex;
  align-items: baseline;
}

.game-info-number {
  font-family: var(--ff_roboto);
  font-size: var(--fs-80);
  font-weight: 900;
}

.game-info-week {
  font-size: var(--fs-30);
  font-weight: 900;
}

.game-info-time {
  font-family: var(--ff_roboto);
  font-size: var(--fs-30);
  font-weight: 900;
}

.game-info-stadium {
  margin-top: var(--space-8);
  font-size: var(--fs-20);
  font-weight: 900;
}

.game-info-teams {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-50);
  margin-top: var(--space-14);
}

.game-info-team {
  flex-basis: 40%;
}
.game-info-team img {
  width: 100%;
  height: 170px;
  object-fit: contain;
}

@media screen and (min-width: 769px) {
  .game-info-team img {
    height: 260px;
    width: 360px;
  }
}

.game-info-vs {
  font-family: var(--ff_roboto);
  font-size: var(--fs-80);
  font-weight: 900;
}

@media screen and (max-width: 768px) {
  .game-info-team img {
    width: 100%;
    height: 170px;
    object-fit: contain;
  }
  .game-info-fv {
    padding: var(--space-30) var(--space-16);
    min-height: 300px;
  }

  .game-info-meta {
    gap: var(--space-16);
  }

  .game-info-label {
    padding: var(--space-2) var(--space-10);
  }

  .game-info-teams {
    gap: var(--space-10);
    margin-top: var(--space-20);
  }

  .game-info-result-total .game-info-result-number,
  .game-info-result-total .game-info-result-separator {
    font-size: var(--fs-50);
  }

  .game-info-result-period {
    font-size: var(--fs-16);
    width: 64px;
  }

  .game-info-scorer-title {
    font-size: var(--fs-16);
  }

  .game-info-scorer-name {
    font-size: var(--fs-14);
  }

  /* Info Block Responsive */
  .info-block {
    flex-direction: column;
    gap: var(--space-8);
    padding: var(--space-8);
  }

  .link-container {
    flex-basis: 100%;
    padding: var(--space-8) var(--space-12);
  }

  .link-container a {
    font-size: var(--fs-12);
    gap: var(--space-8);
  }

  .status-badge {
    padding: var(--space-2) var(--space-4);
    font-size: var(--fs-10);
  }

  .info-text {
    margin-bottom: var(--space-8);
    font-size: var(--fs-12);
  }

  .info-note {
    flex-direction: column;
    gap: var(--space-8);
  }

  .info-note-text {
    flex-basis: 100%;
    font-size: var(--fs-12);
  }

  /* Tab Button Responsive */
  #game-info .section-tab-button {
    padding: var(--space-8) var(--space-12);
    font-size: var(--fs-12);
  }

  #game-info .section-tab-button img {
    max-width: 20px;
  }
}

@media screen and (max-width: 420px) {
  .game-info-number {
    font-size: clamp(40px, 4vw, 60px);
  }
  .game-info-vs {
    font-size: clamp(20px, 2vw, 40px);
  }
}

.info-block {
  display: flex;
  gap: var(--space-10);
  padding: var(--space-10);
  background: var(--color-gray-snow);
}

.link-container {
  flex-basis: 50%;
  padding: var(--space-10) var(--space-14);
  background: var(--color-white);
}

.link-container a {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: clamp(12px, 1vw, 16px);
}

.link-container a::after {
  font-size: clamp(12px, 1vw, 16px);
  right: 0;
}

.status-badge {
  padding: var(--space-4);
  background: var(--color-red);
  color: var(--color-white);
  font-size: var(--fs-10);
  font-weight: 900;
  border-radius: 2px;
}

.info-text {
  margin-bottom: var(--space-12);
}

.info-note {
  display: flex;
  gap: var(--space-10);
  justify-content: end;
}

.info-note-text {
  flex-basis: 50%;
  font-size: var(--fs-14);
}

/*
* 試合・観戦 - DAZN
-------------------------------------------------- */
/* .bg-clip-path {
  clip-path: polygon(0 100px, 100% 0, 100% calc(100% - 100px), 0 100%);
} */
@media screen and (max-width: 768px) {
  /* .bg-clip-path {
    clip-path: polygon(0 50px, 100% 0, 100% calc(100% - 50px), 0 100%);
  } */
}

.marker {
  position: relative;
}
.marker::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 55px;
  width: 100%;
  height: 14px;
  background: linear-gradient(transparent 0%, rgba(255, 241, 0, 1) 0%);
  z-index: -1;
}

.contents-light {
  background: var(--color-gray-snow);
  padding-bottom: var(--space-100);
}

.header-light {
  /* background: linear-gradient(45deg, var(--color-dark-yellow) 0%, var(--color-yellow) 100%); */
  background: var(--color-yellow);
}

.header-light .header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-14) var(--space-30);
}

.header-light .header-logo {
  display: flex;
  align-items: center;
  gap: var(--space-20);
  color: var(--color-black);
  font-size: var(--fs-24);
  font-weight: 900;
}

.header-light .header-logo img {
  width: 80px;
  height: auto;
}

.media-content {
  display: flex;
  align-items: center;
  gap: var(--space-20);
  padding: 0 var(--space-30);
  border-left: 2px solid var(--color-black);
}

.media-content img {
  width: 50px;
  height: 50px;
}

.media-content a {
  width: 220px;
}
.media-content a::after {
  font-size: 18px;
}

.hero-image {
  position: relative;
}

.feature-image {
  position: absolute;
  bottom: 24px;
  right: 28px;
  z-index: 10;
  width: 135px;
  height: 135px;
}

.feature-container {
  position: relative;
  z-index: 2;
  top: calc(var(--space-60) * 2 * -1);
  padding-top: calc((var(--space-60) * 2) + var(--space-100));
  width: 100%;
  height: 900px;
  /* background: url('../../images/pages/game/dazn/bg-feature.png') no-repeat; */
  /* background-size: cover; */
}
.feature-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../../images/pages/game/dazn/bg-feature.png") no-repeat;
  background-size: cover;
  clip-path: polygon(0 100px, 100% 0, 100% calc(100% - 100px), 0 100%);
  z-index: -1;
}

.feature-container-inner {
  display: flex;
  gap: clamp(20px, 2vw, 40px);
}

.feature-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-50) clamp(16px, 2vw, 50px) var(--space-40);
  color: var(--color-white);
  border: 2px solid var(--color-white);
}

.feature-icon {
  text-align: center;
}

.feature-icon img {
  width: auto;
  height: 70px;
}

.feature-title {
  position: relative;
  margin-top: var(--space-20);
  font-size: clamp(18px, 2vw, 32px);
  font-weight: 900;
  text-align: center;
  z-index: 1;
}

.feature-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 35%;
  background: linear-gradient(transparent 0%, rgba(255, 241, 0, 0.5) 0%);
  z-index: -1;
}

.feature-text {
  margin-top: var(--space-30);
  font-size: var(--fs-18);
  font-weight: 900;
  line-height: var(--space-36);
}

.plan-section {
  position: relative;
  top: -220px;
  z-index: 2;
  padding-top: 150px;
  height: 1070px;
  background: url("../../images/pages/game/dazn/bg-plan.png") no-repeat;
  background-size: cover;
}

.plan-section .section-title,
.faq-section .section-title {
  position: relative;
  z-index: 1;
  display: block;
  margin: 0 auto;
  width: fit-content;
  font-size: var(--fs-32);
  font-weight: 900;
  text-align: center;
}

.plan-section .section-title::before,
.faq-section .section-title::before {
  content: attr(data-label);
  display: block;
  margin-bottom: var(--space-10);
  font-family: var(--ff_roboto);
  font-size: var(--fs-80);
}

.plan-section .section-title:::after,
.faq-section .section-title:::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 55px;
  width: 100%;
  height: 14px;
  background: linear-gradient(transparent 0%, rgba(255, 241, 0, 1) 0%);
  z-index: -1;
}

.plan-table-wrapper {
  display: flex;
  /* overflow-x: scroll; */
  padding: 0 var(--page-contents);
}

.plan-table {
  flex-shrink: 0;
  margin-top: var(--space-40);
  width: 100%;
  border-collapse: collapse;
  font-weight: 900;
  background: var(--color-white);
  /* white-space: nowrap; */
}

.plan-table thead tr {
  border-bottom: 2px solid var(--color-white);
}
.plan-table thead th:first-child {
  border-right: 2px solid var(--color-white);
}

.plan-table th {
  padding: var(--space-16);
  font-size: var(--fs-16);
  text-align: center;
  background: var(--color-black);
  color: var(--color-white);
}

.plan-table tbody tr:first-child {
  border-bottom: 2px solid var(--color-black);
}

.plan-table tbody tr:nth-child(2) {
  border-bottom: 2px dashed var(--color-black);
}

.plan-table tbody td:first-child {
  padding: var(--space-18) clamp(20px, 3vw, 60px);
  text-align: center;
}

.plan-table tbody td.cell-orange {
  background: #dfb812;
}

.plan-table tbody td.cell-yellow {
  background: var(--color-yellow);
}

.plan-table tbody td:first-child span {
  font-size: var(--fs-14);
}

.plan-table tbody td:last-child {
  display: flex;
  align-items: baseline;
  gap: var(--space-16);
}

.plan-table tbody td {
  padding: var(--space-18) clamp(20px, 3vw, 60px);
  background: var(--color-white);
  font-size: var(--fs-20);
  vertical-align: middle;
}

.price-main .number {
  font-size: var(--fs-44);
}

.price-sub .number {
  font-size: var(--fs-26);
}

.price-main .tax,
.price-sub .tax {
  font-size: var(--fs-14);
}

.plan-actions {
  display: flex;
  justify-content: center;
  gap: var(--space-20);
  margin-top: var(--space-40);
}

.plan-action-item {
  display: flex;
  align-items: center;
  flex: 1;
  width: 100%;
}

.plan-action-item.yellow {
  background: var(--color-yellow);
}

.plan-action-item.orange {
  background: #dfb812;
}

.plan-action-logo {
  display: flex;
  align-items: center;
  padding: clamp(10px, 1vw, 20px);
  background: var(--color-black);
}

.plan-action-logo img {
  width: 55px;
  height: auto;
}

.plan-action-button {
  display: flex;
  align-items: center;
  flex: 1;
}

.plan-action-button a {
  padding: 0 var(--space-24);
  color: var(--color-black);
  width: 100%;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 900;
}

@media screen and (max-width: 768px) {
  .plan-section {
    margin-top: var(--space-50);
    padding: calc(var(--space-60) * 2) var(--space-16) var(--space-100);
    height: 1300px;
  }

  .faq-section .section-title,
  .plan-section .section-title {
    margin-bottom: var(--space-30);
    padding: var(--space-16) 0;
    font-size: var(--fs-18);
  }

  .faq-section .section-title::before,
  .plan-section .section-title::before {
    font-size: var(--fs-30);
  }

  .plan-table th,
  .plan-table td {
    padding: var(--space-16) var(--space-8);
    font-size: var(--fs-14);
  }

  .plan-table tbody td {
    flex-direction: column;
  }

  .price-main .number {
    font-size: clamp(30px, 3vw, 50px);
  }

  .monthly-price,
  .annual-price {
    font-size: var(--fs-12);
  }

  .plan-actions {
    /* flex-direction: column; */
    gap: var(--space-16);
  }

  .plan-action-logo {
    padding: var(--space-10);
  }

  .plan-action-logo img {
    width: 35px;
  }

  .plan-action-button a {
    padding: var(--space-12) var(--space-20);
    font-size: var(--fs-12);
  }
}

.path-section {
  position: relative;
  top: -320px;
  z-index: 5;
  padding-top: 120px;
  /* background: url('../../images/pages/game/dazn/bg-path.png') no-repeat; */
  background-size: cover;
  height: 1850px;
}
.path-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../../images/pages/game/dazn/bg-path.png") no-repeat;
  background-size: cover;
  clip-path: polygon(0 100px, 100% 0, 100% calc(100% - 100px), 0 100%);
  z-index: -1;
}

.path-section-inner {
  position: relative;
  z-index: 10;
  margin-top: -300px;
}

.dazn-path-image {
  margin-top: calc(var(--space-60) * 2);
}

.dazn-path-image img {
  display: block;
}

.dazn-guide {
  padding: var(--space-50) var(--space-80);
  background: var(--color-white);
}

.dazn-guide-title {
  position: relative;
  z-index: 1;
  width: fit-content;
  margin: 0 auto;
  font-size: var(--fs-24);
  font-weight: 900;
  text-align: center;
}
.dazn-guide-title.marker::after {
  bottom: 0;
}

.dazn-guide-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-20);
  margin-top: var(--space-30);
}

.dazn-guide-step {
  display: flex;
  align-items: center;
  gap: var(--space-30);
}

.step-number {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 0 0 var(--space-80);
  width: 80px;
  height: 80px;
  background: var(--color-black);
  color: var(--color-yellow);
}

.step-label {
  font-family: var(--ff_roboto);
  font-size: var(--fs-18);
  font-weight: 900;
}

.step-count {
  font-family: var(--ff_roboto);
  font-size: var(--fs-44);
  font-weight: 900;
}

.step-content {
  display: flex;
  font-size: var(--fs-18);
  font-weight: 900;
  flex-wrap: wrap;
}

.step-content a,
.info-help-link a {
  display: flex;
  gap: 5px;
  align-items: center;
}

.step-content a span,
.info-help-link a span {
  font-size: var(--fs-14);
}

.dazn-guide-info {
  margin-top: var(--space-50);
  padding: var(--space-30) clamp(20px, 3vw, 50px);
  border: 2px solid var(--color-black);
}

.info-deadline {
  display: flex;
  align-items: center;
  gap: var(--space-20);
  padding-bottom: var(--space-30);
  font-weight: 900;
  border-bottom: 2px dashed var(--color-black);
}

.info-deadline-label {
  padding: 5px var(--space-20);
  font-size: clamp(12px, 1vw, 18px);
  border: 2px solid var(--color-black);
  border-radius: 100px;
}

.info-deadline-text,
.info-help-text {
  font-size: clamp(14px, 1vw, 20px);
  font-weight: 900;
}

.info-help {
  display: flex;
  gap: var(--space-20);
  margin-top: var(--space-24);
}

.info-help-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 2px solid var(--color-black);
  border-radius: 50%;
}

.info-help-icon img {
  width: auto;
  height: 30px;
}

.info-help-link {
  font-size: var(--fs-18);
}

.faq-section {
  position: relative;
  z-index: 5;
}
.faq-section::before {
  content: "";
  position: absolute;
  top: calc(var(--space-100) * 3);
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-gray-snow);
  background-size: cover;
  clip-path: polygon(0 100px, 100% 0, 100% 100%, 0 100%);
  z-index: -1;
}

.faq-section-inner {
  margin-top: -800px;
  padding-top: var(--space-50);
  background: var(--color-white);
  font-weight: 900;
}

.faq-list {
  margin-top: var(--space-40);
  padding-bottom: var(--space-80);
}

.faq-text {
  position: relative;
  font-size: var(--fs-28);
  z-index: 1;
}
.faq-text.marker::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 14px;
  background: linear-gradient(transparent 0%, rgba(255, 241, 0, 1) 0%);
  z-index: -1;
}

.faq-question {
  display: flex;
  gap: var(--space-20);
  align-items: center;
  padding: var(--space-20);
  border-top: 2px dashed var(--color-black);
  border-bottom: 2px dashed var(--color-black);
}

.faq-question:hover {
  opacity: 0.7;
}

.faq-question-content {
  display: flex;
  align-items: center;
  gap: var(--space-20);
}

.faq-answer {
  display: flex;
  gap: var(--space-20);
  padding: 0 var(--space-20);
}

.faq-answer {
  padding: var(--space-20);
}

/* .faq-item:first-child .faq-question {
  border-top: 1px dashed var(--color-black);
} */
.faq-item:last-child .faq-answer {
  border-bottom: 0;
}

.faq-icon {
  font-family: var(--ff_roboto);
  font-size: var(--fs-50);
  font-weight: 900;
}

.faq-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
  padding-top: var(--space-20);
}

.faq-feature {
  display: flex;
  align-items: start;
  gap: var(--space-16);
  font-size: var(--fs-18);
}

.faq-feature.no-icon {
  margin-left: var(--space-30);
}

.faq-feature img {
  width: 20px;
  height: 20px;
}

.faq-feature a {
  display: inline-block;
}

.faq-feature a span {
  font-size: var(--fs-14);
}

.footer-light {
  z-index: 10;
}

.footer-light .container {
  display: flex;
  flex-direction: column;
  gap: var(--space-30);
}

@media screen and (max-width: 1080px) {
  .path-section {
    height: 1600px;
  }
  .feature-container::before {
    top: 30px;
    clip-path: polygon(0 80px, 100% 0, 100% 100%, 0 100%);
  }
}
@media screen and (max-width: 768px) {
  /* Header */
  .header-light .header-content {
    justify-content: space-between;
    gap: var(--space-20);
    padding: var(--space-8);
  }

  .header-light .header-logo {
    gap: var(--space-10);
    margin-left: 0;
    font-size: var(--fs-18);
  }

  .header-light .header-logo img {
    width: 50px;
  }

  .contents-light {
    margin-top: -60px;
  }

  .media-content {
    padding: 0 var(--space-16);
    gap: var(--space-10);
  }

  .media-content img {
    width: 30px;
    height: 30px;
  }

  .media-content a {
    width: 160px;
    font-size: var(--fs-12);
  }

  /* Hero Section */
  .hero-image img:first-child {
    width: 100%;
    height: auto;
  }

  .feature-image {
    bottom: 12px;
    right: 14px;
    width: 80px;
    height: 80px;
  }

  .feature-container::before,
  .path-section::before {
    top: 0;
    clip-path: polygon(0 50px, 100% 0, 100% calc(100% - 50px), 0 100%);
  }
  .faq-section::before {
    clip-path: polygon(0 50px, 100% 0, 100% 100%, 0 100%);
  }

  /* Feature Section */
  .feature-container {
    top: -55px;
    height: auto;
    padding-top: var(--space-80);
    padding-bottom: var(--space-80);
  }

  .feature-container-inner {
    flex-direction: column;
    gap: var(--space-20);
    padding: 0 var(--space-16);
  }

  .feature-item {
    padding: var(--space-30) var(--space-20);
  }

  .feature-icon img {
    height: 50px;
  }

  .feature-title {
    font-size: var(--fs-24);
  }

  .feature-text {
    font-size: var(--fs-14);
    line-height: 1.6;
  }

  /* Path Section */
  .path-section {
    height: auto;
    padding-bottom: calc(var(--space-50) * 4);
  }

  .dazn-path-image {
    margin-top: var(--space-30);
  }

  .dazn-path-image img {
    width: 100%;
    height: auto;
  }

  .dazn-guide {
    padding: var(--space-30) var(--space-16);
  }

  .dazn-guide-title {
    font-size: var(--fs-18);
  }

  .dazn-guide-steps {
    gap: var(--space-16);
    margin-top: var(--space-20);
  }

  .dazn-guide-step {
    gap: var(--space-16);
  }

  .step-number {
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
  }

  .step-label {
    font-size: var(--fs-14);
  }

  .step-count {
    font-size: var(--fs-30);
  }

  .step-content {
    font-size: var(--fs-14);
  }

  .dazn-guide-info {
    margin-top: var(--space-30);
    padding: var(--space-20);
  }

  .info-deadline {
    flex-direction: column;
    gap: var(--space-10);
    align-items: flex-start;
  }

  .info-deadline-label {
    font-size: var(--fs-14);
  }

  .info-deadline-text,
  .info-help-text {
    font-size: var(--fs-16);
  }

  .info-help {
    gap: var(--space-16);
  }

  .info-help-icon {
    width: 40px;
    height: 40px;
  }

  .info-help-icon img {
    height: 24px;
  }

  .info-help-link {
    font-size: var(--fs-14);
  }

  /* FAQ Section */
  .faq-section-inner {
    margin-top: -400px;
  }

  .faq-list {
    padding-bottom: var(--space-40);
  }

  .faq-text {
    font-size: var(--fs-18);
  }

  .faq-question,
  .faq-answer {
    padding: var(--space-20) var(--space-16);
    gap: var(--space-16);
  }

  .faq-icon {
    font-size: var(--fs-30);
  }

  .faq-content {
    gap: var(--space-12);
    padding-top: var(--space-16);
  }

  .faq-feature {
    gap: var(--space-12);
    font-size: var(--fs-14);
  }

  .faq-feature.no-icon {
    margin-left: var(--space-20);
  }

  /* Footer Light */
  .footer-light .container {
    gap: var(--space-20);
    padding: var(--space-20) var(--space-16);
  }
}

@media screen and (max-width: 600px) {
  .plan-actions {
    flex-direction: column;
  }
}

@media screen and (max-width: 390px) {
  .feature-container::before {
    top: 20px;
    clip-path: polygon(0 30px, 100% 0, 100% calc(100% - 50px), 0 100%);
  }
  .header-light .header-logo {
    margin-right: auto;
  }
  .feature-title {
    font-size: clamp(16px, 2vw, 24px);
  }
  .feature-image {
    width: 60px;
    height: 60px;
    right: 8px;
  }
  .header-media {
    margin-left: auto;
  }
  .header-media .media-content {
    padding-right: 0;
    border-left: none;
  }
  .header-media .media-content a::after {
    font-size: 10px;
  }
  .media-content img {
    width: 20px;
    height: 20px;
  }
  .faq-feature img {
    width: 14px;
    height: 14px;
  }
  .dazn-guide-title {
    font-size: clamp(12px, 1vw, 14px);
  }
  .dazn-guide-step .step-number {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
  }
  .dazn-guide-step .step-number .step-count {
    font-size: clamp(16px, 1vw, 20px);
  }
  .info-help {
    gap: var(--space-4);
  }
  .info-help-icon {
    width: 20px;
    height: 20px;
  }
  .info-help-icon img {
    height: 10px;
  }
  .plan-section {
    height: 1100px;
  }
  .plan-table tbody td:first-child,
  .plan-table tbody td {
    padding: 16px 8px;
  }
  .price-main,
  .price-sub {
    font-size: clamp(12px, 1vw, 14px);
  }
  .price-main .number {
    font-size: clamp(20px, 2vw, 40px);
  }
  .price-sub .number {
    font-size: clamp(20px, 2vw, 40px);
  }
}

/*
* 試合・観戦 - ガイド
-------------------------------------------------- */
.section-light .section-title {
  font-size: var(--fs-50);
  font-weight: 900;
  text-align: center;
}
.section-light .section-title::before {
  content: attr(data-label);
  display: block;
  color: #c5a80c;
  font-family: var(--ff_monoton);
  font-size: var(--fs-40);
  font-weight: 400;
}

.section-light .section-subtitle {
  margin: var(--space-70) auto 0;
  padding-bottom: var(--space-10);
  width: fit-content;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  color: #c5a80c;
  border-bottom: 5px solid #c5a80c;
}

.header-light.v2 {
  position: relative;
}

.header-light-fv {
  width: 100%;
  height: auto;
  padding: var(--space-30);
  background: url("../../images/pages/game/guide/bg.png") no-repeat;
  background-size: cover;
}

.header-light.v2 .header-content {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.header-light.v2 .header-content h1 {
  margin-left: 0;
}

.step-section {
  padding: calc(var(--space-40) * 3) 0 var(--space-100);
  background: url("../../images/pages/game/guide/bg-sec.png") no-repeat;
  background-size: cover;
}

.step-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-100);
  padding-left: var(--page-contents);
  padding-right: var(--page-contents);
}

.step-item {
  position: relative;
  display: flex;
  gap: var(--space-30);
  padding: var(--space-50) var(--space-70);
  background: var(--color-white);
  border-radius: 10px;
}

.step-section .step-number {
  position: absolute;
  top: -70px;
  left: -10%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: clamp(120px, 15vw, 180px);
  height: clamp(120px, 15vw, 180px);
  background: var(--color-black);
  color: #c5a80c;
  border-radius: 50%;
}

.step-section .step-number .label {
  font-family: var(--ff_monoton);
  font-size: var(--fs-30);
  font-weight: 900;
}

.step-section .step-number .number {
  font-family: var(--ff_monoton);
  font-size: clamp(50px, 5vw, 72px);
  font-weight: 900;
  line-height: 1;
}

.step-content {
  display: flex;
  flex-direction: column;
}

.step-content h3 {
  color: #c5a80c;
  font-size: clamp(30px, 3vw, 50px);
  font-weight: 900;
  margin-bottom: var(--space-20);
}

.step-content p {
  font-size: var(--fs-16);
  font-weight: 400;
  line-height: 1.8;
}

.step-content p span {
  font-weight: 900;
}

.step-buttons {
  display: flex;
  gap: var(--space-30);
  margin-top: var(--space-30);
}

.step-buttons a {
  justify-content: center;
  max-width: 320px;
  font-size: clamp(10px, 1vw, 14px);
}

.step-content .purchase-section {
  margin-top: var(--space-30);
  padding: clamp(20px, 4vw, 50px);
}

.step-content .purchase-section .purchase-options {
  gap: var(--space-20);
}

.purchase-section .purchase-type::after {
  font-size: var(--fs-12);
  position: absolute;
  right: 5px;
}

.step-info:nth-child(n + 2) {
  margin-top: clamp(40px, 5vw, 70px);
}

.step-info-title {
  margin-bottom: var(--space-30);
  padding: var(--space-12) var(--space-14);
  background: var(--color-black);
  font-size: clamp(20px, 2vw, 30px);
  color: #c5a80c;
}

.step-info-image {
  margin-top: var(--space-30);
}

.step-info-recommend {
  display: flex;
  gap: var(--space-10);
  margin-top: var(--space-50);
}

.step-info-recommend-content {
  flex-basis: 25%;
  padding: var(--space-30) var(--space-10);
  border: 3px solid var(--color-black);
  border-radius: 10px;
  text-align: center;
}

.step-info-recommend-text {
  font-size: var(--fs-24);
}

.step-info-recommend-icon {
  margin-top: var(--space-20);
  width: auto;
  height: 80px;
}

.step-info-recommend-arrow {
  margin-top: var(--space-10);
}

/* How To Section */
.how-to-section {
  padding: var(--space-80) 0;
  background: var(--color-gray-snow);
}

.how-to-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(16px, 2vw, 30px);
  margin-top: var(--space-36);
}

.how-to-item:nth-child(-n + 3) {
  grid-column: span 2;
}

.how-to-item:nth-last-child(-n + 2) {
  grid-column: span 3;
}

.how-to-item {
  position: relative;
  padding: var(--space-30);
  background: var(--color-white);
  border-radius: 30px;
}

.how-to-icon {
  position: absolute;
  left: -10px;
}

.how-to-icon img {
  width: 80px;
  height: auto;
}

.how-to-item h4 {
  font-size: var(--fs-24);
  font-weight: 900;
  text-align: center;
}

.how-to-item p {
  margin-top: var(--space-20);
  font-size: var(--fs-16);
  line-height: 1.8;
}

.how-to-section .section-description {
  margin: var(--space-30) auto 0;
  font-size: clamp(14px, 1vw, 16px);
}

.time-section {
  display: flex;
  gap: clamp(80px, 8vw, 140px);
  margin-top: var(--space-100);
}

.time-section .section-subtitle {
  margin: 0;
}

.time-images {
  max-width: 480px;
  /* width: 100%; */
  width: 50%;
}

.time-images img,
.kids-item img {
  border-radius: 30px;
}

.time-images img:first-child {
  position: relative;
  z-index: 1;
  margin-left: calc(var(--space-70) * -1);
  margin-bottom: calc(var(--space-36) * -1);
}

.kids-section .section-description {
  font-size: clamp(14px, 1vw, 16px);
  text-align: center;
}

.kids-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 4vw, 60px);
  margin-top: var(--space-50);
}

.kids-label {
  position: relative;
  z-index: 1;
  margin: -20px auto 0;
  padding: var(--space-8) 0;
  width: 180px;
  background: var(--color-yellow);
  font-size: clamp(12px, 1vw, 16px);
  font-weight: 900;
  border-radius: 100px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .kids-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-16);
    padding: 0 var(--space-16);
  }
  .time-images img,
  .kids-item img {
    border-radius: 20px;
  }
}

/* Player Section */
.section-light.player-section {
  padding: var(--space-80) 0;
  background: url("../../images/pages/game/guide/bg-dark.png") no-repeat;
  background-size: cover;
}

.section-light.player-section .section-title {
  color: var(--color-white);
}
.section-light.player-section .section-title::before {
  color: var(--color-white);
}

.section-light.player-section .section-description {
  margin-top: var(--space-30);
  color: var(--color-white);
  font-size: clamp(14px, 1vw, 16px);
  text-align: center;
}

.section-light.player-section .step-buttons {
  justify-content: center;
}
.section-light.player-section .step-buttons a {
  border: 1px solid #c5a80c;
  background: #c5a80c;
  color: var(--color-white);
}
.section-light.player-section .step-buttons a:hover {
  background: var(--color-white);
  color: #c5a80c;
}

.player-list {
  display: flex;
  gap: var(--space-30);
  margin-top: var(--space-50);
}

.player-item {
  color: var(--color-white);
  text-align: center;
}

.player-item .position {
  font-size: var(--fs-24);
  font-weight: 900;
}

.player-item .player-name {
  font-size: var(--fs-16);
  font-weight: 400;
}

.player-item img {
  width: 100%;
  height: auto;
}

.section-light .player-section .step-buttons,
.how-to-section .step-buttons {
  margin-top: var(--space-60);
  justify-content: center;
}

.section-light .player-section .step-buttons a {
  background: #c5a80c;
  color: var(--color-white);
}

/* QA Section */
.qa-section {
  padding: var(--space-80) 0;
  background: var(--color-gray-snow);
}

.qa-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-20);
  margin-top: var(--space-50);
}

.qa-item {
  padding: var(--space-30);
  background: var(--color-white);
  border-radius: 30px;
}

.qa-question,
.qa-answer {
  display: flex;
  gap: var(--space-20);
  align-items: center;
}

.qa-question {
  position: relative;
  cursor: pointer;
}

.qa-question::after {
  content: "\e145";
  font-family: var(--ff_material);
  position: absolute;
  right: 0;
  top: 35%;
  font-size: var(--fs-16);
}
.qa-question.is-open::after {
  content: "\e15b";
}

.qa-answer {
  display: none;
  margin-top: var(--space-50);
}
.qa-answer.is-open {
  display: flex;
}

.qa-icon {
  flex: 0 0 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(40px, 8vw, 60px);
  height: clamp(40px, 8vw, 60px);
  background: #c5a80c;
  color: var(--color-white);
  font-size: var(--fs-30);
  border-radius: 50%;
}
.qa-icon.black {
  background: var(--color-black);
}

.qa-text {
  flex: 1;
  font-size: clamp(12px, 1vw, 16px);
}

@media screen and (max-width: 1080px) {
  .header-light-fv {
    padding-top: 60px;
  }

  .step-section.section-light .purchase-options {
    flex-direction: column;
  }

  .step-info-recommend {
    justify-content: center;
    flex-wrap: wrap;
  }

  .step-info-recommend-content {
    flex-basis: calc(45%);
  }
}
@media screen and (max-width: 768px) {
  /* Header */
  .header-light-fv {
    padding: var(--space-50) var(--space-16);
  }

  .header-light.v2 .header-content h1 {
    margin-left: var(--space-16);
  }

  /* Common Section Styles */
  .section-light .section-title {
    font-size: var(--fs-30);
  }

  .section-light .section-title::before {
    font-size: var(--fs-24);
  }

  .section-light .section-subtitle {
    margin: var(--space-40) auto 0;
    font-size: var(--fs-24);
  }

  .step-section.section-light .step-content {
    margin-top: -30px;
  }

  .step-section.section-light .step-info:first-of-type {
    margin-top: 0;
  }

  /* Step Section */
  .step-section {
    padding: var(--space-50) 0;
  }

  .step-list {
    gap: var(--space-50);
    padding-left: var(--space-16);
    padding-right: var(--space-16);
  }

  .step-item {
    flex-direction: column;
    padding: var(--space-20);
    gap: var(--space-20);
  }

  .step-section .step-number {
    flex: 0 0 100px;
    position: relative;
    top: -40px;
    left: 0;
    width: 100px;
    height: 100px;
    margin: 0 auto;
  }

  .step-section .step-number .label {
    font-size: var(--fs-16);
  }

  .step-section .step-number .number {
    font-size: var(--fs-30);
  }

  .step-content h3 {
    font-size: var(--fs-20);
    text-align: center;
  }

  .step-content p {
    font-size: var(--fs-14);
  }

  .step-buttons {
    flex-direction: column;
  }

  .step-buttons a {
    max-width: 100%;
  }

  .step-info-title {
    font-size: var(--fs-20);
    padding: var(--space-8) var(--space-12);
  }

  .step-info-recommend {
    flex-direction: column;
    gap: var(--space-20);
  }

  .step-info-recommend-content {
    flex-basis: 100%;
  }

  .step-info-recommend-text {
    font-size: var(--fs-18);
  }

  .step-info-recommend-icon {
    height: 60px;
  }

  .step-info:first-child {
    margin-top: 0;
  }

  .step-info:nth-child(n + 2) {
    margin-top: var(--space-50);
  }
  /* How To Section */
  .how-to-section {
    padding: var(--space-50) 0;
  }

  .how-to-list {
    grid-template-columns: 1fr;
    gap: var(--space-30);
    padding: 0 var(--space-16);
    margin-top: var(--space-30);
  }

  .how-to-item:nth-child(-n + 3),
  .how-to-item:nth-last-child(-n + 2) {
    grid-column: span 1;
  }

  .how-to-item {
    padding: var(--space-40) var(--space-20) var(--space-20);
  }

  .how-to-icon {
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
  }

  .how-to-icon img {
    width: 60px;
  }

  .how-to-item h4 {
    font-size: var(--fs-18);
    margin-top: var(--space-10);
  }

  .how-to-item p {
    font-size: var(--fs-14);
    margin-top: var(--space-16);
  }

  .time-section {
    flex-direction: column;
    gap: var(--space-30);
    margin-top: var(--space-50);
    padding: 0 var(--space-16);
  }

  .time-section .section-subtitle {
    text-align: center;
  }

  .time-section .section-description {
    text-align: center;
    font-size: var(--fs-14);
  }

  .time-images {
    display: flex;
    gap: 10px;
    max-width: 100%;
  }

  .time-images img:first-child {
    margin-left: 0;
    margin-bottom: 0;
  }

  .kids-section .section-description {
    font-size: var(--fs-14);
    padding: 0 var(--space-16);
  }

  .kids-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-20);
  }

  /* Player Section */
  .section-light .player-section {
    padding: var(--space-50) 0;
  }

  .section-light .player-section .section-description {
    font-size: var(--fs-14);
    padding: 0 var(--space-16);
  }

  .player-list {
    flex-direction: column;
    gap: var(--space-20);
    padding: 0 var(--space-16);
  }

  .player-item {
    width: 100%;
  }

  .section-light .player-section .step-buttons {
    padding: 0 var(--space-16);
  }

  /* QA Section */
  .qa-section {
    padding: var(--space-50) 0;
  }

  .qa-list {
    gap: var(--space-20);
    padding: 0 var(--space-16);
  }

  .qa-item {
    padding: var(--space-20);
  }

  .qa-question {
    align-items: flex-start;
  }

  .qa-icon {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    font-size: var(--fs-20);
  }

  .qa-text {
    flex: 0 0 65%;
    font-size: var(--fs-14);
  }

  .qa-answer {
    margin-top: var(--space-30);
  }
}

@media screen and (max-width: 420px) {
  .player-list {
    flex-direction: column;
  }

  .player-item img {
    width: 50%;
  }

  .time-images {
    flex-direction: column;
    width: 100%;
  }

  .kids-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: var(--space-20);
  }
}

/*
* チケットトップ
-------------------------------------------------- */
section#ticket::after {
  background: url("../../images/pages/ticket/bg.png") no-repeat;
  background-size: cover;
}

.ticket-hero img {
  width: 100%;
  height: auto;
}

.ticket-content {
  padding: var(--space-80) calc(var(--space-20) + var(--page-contents))
    var(--space-100);
}

.ticket-title {
  font-size: var(--fs-24);
  font-weight: 900;
  text-align: center;
}

.ticket-purchase-methods {
  display: flex;
  flex-direction: column;
  gap: var(--space-40);
  margin-top: var(--space-40);
  padding: 0 40px;
}

.purchase-section {
  display: flex;
  flex-direction: column;
  gap: var(--space-20);
  position: relative;
  padding: var(--fs-50);
  border: 2px solid var(--color-gold-dark);
  border-radius: 20px;
}

.purchase-section.black {
  border: 2px solid var(--color-black);
}

.purchase-category {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 var(--space-20);
  background: var(--color-white);
  color: var(--color-gold-dark);
  font-size: var(--fs-26);
  font-weight: 900;
  text-align: center;
}
.purchase-category.black {
  color: var(--color-black);
}

.purchase-options {
  display: flex;
  gap: clamp(10px, 3vw, 50px);
}

.purchase-option {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
  padding: clamp(10px, 1vw, 20px);
  border-radius: 10px;
}
.purchase-option.yellow {
  background: linear-gradient(45deg, #cabf00 0%, var(--color-yellow) 100%);
  color: var(--color-black);
}
.purchase-option.black {
  background: var(--color-black);
  color: var(--color-white);
}

.purchase-type {
  font-size: clamp(12px, 1vw, 20px);
  font-weight: 900;
  text-align: center;
  display: block;
  width: 100%;
}
.yellow .purchase-type {
  color: #000 !important;
}
.purchase-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-40) var(--fs-24);
  height: 120px;
  background: var(--color-white);
  width: 100%;
}

.purchase-logo img {
  max-width: 100%;
  max-height: 60px;
  width: auto;
  height: 100%;
  object-fit: contain;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: 0.2s ease-in;
  transition: 0.2s ease-in;
}
.purchase-logo img.o-ticket {
  max-height: 88px;
}
a:hover .purchase-logo img {
  opacity: 0.7;
}

@media screen and (max-width: 768px) {
  .ticket-content {
    padding: var(--space-40) var(--space-16) var(--space-60);
  }

  .ticket-title {
    font-size: var(--fs-20);
  }

  .ticket-purchase-methods {
    gap: var(--space-30);
    margin-top: var(--space-30);
    padding: 0 30px;
  }

  .purchase-section {
    gap: var(--space-16);
    padding: var(--space-30) var(--space-16) var(--space-20);
  }

  .purchase-category {
    top: -15px;
    font-size: clamp(12px, 1vw, 18px);
    padding: 0 var(--space-8);
  }

  .purchase-options {
    flex-direction: column;
    gap: var(--space-16);
  }

  .purchase-option {
    padding: var(--space-16);
  }

  .purchase-type {
    font-size: var(--fs-16);
  }

  .purchase-logo {
    padding: var(--space-20) var(--space-16);
    height: 80px;
  }

  .purchase-logo img {
    max-height: 40px;
  }
}

/*  */
.ticket-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 50px 0;
  margin-top: var(--space-60);
  background: #f2f2f2;
}

.ticket-menu-item {
  width: calc((100% - 20px) / 3);
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-16) var(--space-24);
  background: linear-gradient(45deg, #cabf00 0%, var(--color-yellow) 100%);
  color: var(--color-black);
  font-size: var(--fs-16);
  font-weight: 900;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.ticket-menu-item:hover {
  opacity: 0.7;
}

/* Ticket News */
.ticket-news-list {
  display: flex;
  flex-direction: column;
  border-top: 2px solid #d5d5d5;
  border-bottom: 2px solid #d5d5d5;
}

.ticket-news-item {
  padding: var(--space-20);
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  text-decoration: none;
  color: var(--color-black);
  transition: opacity 0.3s ease;
  border-bottom: 2px solid #d5d5d5;
}

.ticket-news-item:last-child {
  border-bottom: none;
}

.ticket-news-item:hover {
  opacity: 0.7;
}

.ticket-news-meta {
  display: flex;
  align-items: center;
  gap: var(--space-16);
}

.ticket-news-date {
  font-size: var(--fs-12);
  color: var(--color-gray-dark);
}

.ticket-news-category {
  font-size: var(--fs-10);
  padding: 6px var(--space-20);
  background: #ebebeb;
  border-radius: 100px;
}

.ticket-news-title {
  font-size: var(--fs-16);
  font-weight: 900;
  line-height: 1.5;
}

.ticket-news-more {
  margin-top: var(--space-40);
  text-align: center;
}

.ticket-news-more .button {
  background: var(--color-black);
  color: var(--color-white);
}
.ticket-news-more .button:hover {
  background: #fff;
  color: #000;
}

@media screen and (max-width: 768px) {
  .ticket-menu {
    flex-direction: column;
    padding: var(--space-30) var(--space-16);
    margin-top: var(--space-40);
  }

  .ticket-menu-item {
    width: 100%;
    padding: var(--space-12) var(--space-16);
    font-size: var(--fs-14);
  }
}

/*
* チケット - 観戦シート
-------------------------------------------------- */
section#ticket-seat::after {
  background: url("../../images/pages/ticket/seat/bg.png") no-repeat;
  background-size: cover;
}

.seat-map-coverer {
  padding: var(--space-50) var(--space-100) var(--space-20);
  background: #efecd6;
  text-align: center;
}

.seat-map-notice {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
  padding: var(--space-10) var(--space-28);
  background: var(--color-white);
  font-size: var(--fs-16);
  font-weight: 900;
}
.seat-map-notice img {
  width: 26px;
  height: auto;
}

@media screen and (max-width: 768px) {
  .seat-tab-buttons {
    margin-top: var(--space-30);
  }

  .seat-tab-button {
    padding: var(--space-8) var(--space-16);
    font-size: var(--fs-14);
  }
}

#seat-detail .contents .menu li {
  padding: var(--space-16) 0 var(--space-30);
  height: 60px;
  background: rgba(0, 0, 0, 0.8);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
}
#seat-detail .contents .menu li.is-active {
  background: #ff88bc;
}

#seat-detail .contents .menu li::after {
  bottom: 0;
  color: var(--color-white);
  font-size: var(--fs-20);
}

#seat-detail .contents .menu li a {
  font-size: var(--fs-14);
  font-weight: 900;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/*  */
/* Seat Tab Contents */
.seat-tab-contents {
  position: relative;
}

.stadium-name {
  position: absolute;
  top: 0;
  left: var(--space-100);
  transform: translateY(-50%) rotate(90deg);
  transform-origin: left center;
  font-family: var(--ff_roboto);
  font-size: calc(var(--fs-80) * 2);
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--ff_roboto);
  font-weight: 900;
  white-space: nowrap;
  z-index: 10;
}

.seat-tab-content {
  display: none;
  background: var(--color-white);
}

.seat-tab-content.is-active {
  display: block;
}

.seat-content {
  position: relative;
  padding-left: calc(var(--space-100) * 2);
  padding-right: calc(var(--space-100) * 2);
  background: var(--color-gray-snow);
  z-index: 1;
}
.seat-content::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: url("../../images/pages/ticket/seat/bg02.png") no-repeat;
  background-size: cover;
}

.seat-content-inner .fv {
  height: 450px;
  background: url("../../images/pages/ticket/seat/fv.png") no-repeat;
  background-position: center;
  background-size: cover;
}

.seat-title {
  padding: var(--space-16) 0;
  background: #ff88bc;
  color: var(--color-white);
  font-size: var(--fs-24);
  font-weight: 900;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .seat-tab-contents {
    margin-top: var(--space-30);
  }

  .seat-tab-content {
    padding: var(--space-20) 0;
  }

  .seat-content-inner {
    padding: var(--space-16) 0;
  }

  .seat-title {
    font-size: var(--fs-20);
  }
}

.seat-details {
  position: relative;
  z-index: 1;
  padding: var(--space-60) var(--space-80) var(--space-50);
  background: var(--color-white);
}

.seat-details-title {
  padding: var(--space-8) 0;
  background: var(--color-white);
  color: var(--color-black);
  font-size: var(--fs-16);
  font-weight: 900;
  border: 2px solid var(--color-black);
  text-align: center;
}

.seat-map {
  margin: var(--space-30) 0 var(--space-50);
  text-align: center;
}

.seat-map img {
  max-width: 100%;
  height: auto;
  margin-bottom: var(--space-16);
}

.seat-map-zoom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  font-size: var(--fs-14);
}

.seat-map-zoom img {
  width: 20px;
  height: 20px;
  margin-bottom: 0;
}

.seat-price-table {
  margin-top: var(--space-30);
  margin-bottom: var(--space-50);
}

.seat-price-table table {
  width: 100%;
  border-collapse: collapse;
}

.seat-price-table th {
  padding: var(--space-16);
  background: var(--color-black);
  color: var(--color-white);
  font-weight: 900;
  border-left: 2px solid #dcdcdc;
  text-align: center;
}

.seat-price-table td {
  padding: var(--space-16);
  border-left: 2px solid #dcdcdc;
  border-bottom: 2px solid #dcdcdc;
  font-weight: 900;
  text-align: center;
}
.seat-price-table th:first-child,
.seat-price-table td:first-child {
  border-left: none;
}

.seat-price-table td:first-child {
  text-align: left;
}

.seat-content .ticket-content {
  padding: var(--space-50) 0;
}

@media screen and (max-width: 768px) {
  .seat-title {
    font-size: var(--fs-20);
    padding: var(--space-12) 0;
  }

  .seat-details {
    padding: var(--space-20);
  }

  .seat-details-title {
    font-size: var(--fs-14);
  }

  .seat-map {
    margin: var(--space-20) 0 var(--space-30);
  }

  .seat-price-table th,
  .seat-price-table td {
    padding: var(--space-8);
    font-size: var(--fs-12);
  }

  /* Menu List */
  #seat-detail .contents .menu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
  }

  #seat-detail .contents .menu li {
    height: auto;
    min-height: 60px;
    padding: var(--space-8) var(--space-4);
  }

  #seat-detail .contents .menu li a {
    font-size: var(--fs-12);
    padding: var(--space-4);
    line-height: 1.3;
  }

  /* Stadium Name */
  .stadium-name {
    display: none;
  }

  /* Seat Content */
  .seat-content {
    padding-left: var(--space-16);
    padding-right: var(--space-16);
  }
}

/* Check point section */
div#check-point {
  background: var(--color-gray-snow);
  padding-top: 80px;
}

.check-point-wrapper {
  position: relative;
  padding: 0 var(--space-80) var(--space-80);
  background: var(--color-white);
}
.check-point-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 160px;
  background: url("../../images/pages/ticket/seat/bg-mesh.png") no-repeat;
  background-size: contain;
  background-repeat: repeat-x;
}
@media screen and (min-width: 1620px) {
  .check-point-wrapper::before {
    height: 12vw;
  }
}

@media screen and (max-width: 1080px) {
  .check-point-wrapper::before {
    height: 26vw;
    background-repeat: repeat;
  }
}
@media screen and (max-width: 900px) {
  .check-point-wrapper::before {
    height: 230px;
  }
}
@media screen and (max-width: 768px) {
  .check-point-wrapper::before {
    height: 210px;
  }
}

.check-point-header {
  display: flex;
  align-items: center;
  gap: var(--space-20);
  position: relative;
  z-index: 1;
  padding: 0 var(--space-20);
}

.check-point-header img {
  flex-basis: 20%;
  margin-top: calc(var(--fs-24) * -1);
  width: auto;
  height: 185px;
}

.check-point-header .title-wrapper {
  flex: 1;
  margin-left: calc(var(--space-100) * -1.5);
  text-align: center;
}

.check-point-header h3 {
  font-family: var(--ff_roboto);
  font-size: var(--space-80);
  line-height: 1.2;
}

.check-point-header p {
  position: relative;
  font-size: clamp(12px, 1vw, 18px);
  font-weight: 900;
  text-align: center;
  padding: 0 var(--space-20);
  display: inline-block;
}

.check-point-header p::before,
.check-point-header p::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 20%;
  height: 5px;
  border-top: 2px solid var(--color-black);
  border-bottom: 2px solid var(--color-black);
}

.check-point-header p::before {
  right: 100%;
}

.check-point-header p::after {
  left: 100%;
}

.check-point-content {
  margin-top: var(--space-50);
  font-size: var(--fs-16);
  font-weight: 900;
}

.check-point-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-20);
}

.check-point-list li {
  position: relative;
  padding-left: 1.5em;
  font-size: var(--fs-16);
  line-height: 1.6;
}

.check-point-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-black);
}

.check-point-images {
  display: flex;
  gap: var(--space-40);
  margin-top: var(--space-60);
}

.check-point-images img {
  width: 100%;
  height: auto;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
  .check-point-header {
    flex-direction: column;
    text-align: center;
  }

  .check-point-header .character {
    width: 100px;
  }

  .check-point-header h3 {
    font-size: var(--fs-30);
  }

  .check-point-list li {
    font-size: var(--fs-14);
  }

  .check-point-images {
    flex-direction: column;
  }

  .seat-content-inner .fv {
    height: 200px;
  }

  /* Check Point Section */
  .check-point-wrapper {
    padding: 0 var(--space-16) var(--space-40);
  }

  .check-point-header {
    padding: 0;
  }

  .check-point-header img {
    height: 120px;
  }

  .check-point-header .title-wrapper {
    margin-left: 0;
  }

  .check-point-content {
    margin-top: var(--space-30);
  }

  .check-point-list {
    gap: var(--space-16);
  }

  .check-point-images {
    margin-top: var(--space-30);
    gap: var(--space-20);
  }

  .check-point-header p::before,
  .check-point-header p::after {
    width: 5%;
  }
}

/*
* 選手
-------------------------------------------------- */
#players {
  background: url("../../images/pages/team/players/bg02.png");
  background-size: 100% auto;
  background-repeat: repeat-y;
}

#players::after {
  background: url("../../images/pages/team/players/bg.png");
  background-size: cover;
  width: 100%;
  max-height: 720px;
  height: 100%;
}

#players .item {
  position: relative;
  z-index: 1;
  padding-left: var(--fs-80);
  padding-right: var(--fs-80);
  color: var(--color-white);
  text-align: center;
}

#players .item h3 {
  border-color: var(--color-white);
}

#players .contents {
  background: rgba(0, 0, 0, 0.8);
  color: var(--color-white);
}
#players .contents .menu li {
  border-color: var(--color-white);
}
@media screen and (max-width: 768px) {
  #players .item {
    padding-left: 0;
    padding-right: 0;
  }
}

/* Player Section Styles */
.player-section-inner:nth-child(n + 2) {
  margin-top: var(--space-50);
}

.player-section-header {
  display: flex;
  align-items: center;
  justify-content: start;
  margin-top: var(--space-50);
}

.player-section-label {
  padding-right: var(--space-30);
  font-family: var(--ff_roboto);
  font-size: clamp(60px, 1vw, 80px);
  font-weight: 900;
}

.player-section-title {
  padding-left: var(--space-30);
  font-size: var(--fs-28);
  font-weight: 900;
  border-left: 2px solid var(--color-white);
}
.player-section-title.left {
  padding-left: 0;
  padding-right: var(--space-30);
  border-left: none;
}

/* Archive Years */
.archive-years {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-20);
  margin-top: var(--space-30);
}

.archive-year a {
  display: block;
  width: 100%;
  padding: var(--space-8) var(--space-14);
  color: var(--color-white);
  border: 2px solid var(--color-white);
}
.archive-year a:hover {
  background: var(--color-yellow);
  color: var(--color-black);
}

@media screen and (max-width: 768px) {
  .archive-years {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-10);
    padding: 0 var(--space-16);
  }

  .archive-year a {
    padding: 6px var(--space-10);
    font-size: var(--fs-14);
  }
}

.player-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-40);
}
.player-link {
  border: 1px solid #444;
  position: relative;
}
.player-image {
  width: 100%;
  height: auto;
  background-image: url("../../images/pages/team/players/bg_photo.png");
  background-size: cover;
}
.player-image img {
  width: 70%;
  margin: 0 auto;
  padding-top: 20px;
  vertical-align: top;
}
a:hover .player-image img {
  opacity: 0.85;
}
.player-txt {
  width: 100%;
  height: auto;
  padding: 20px 8px;
  background-image: url("../../images/pages/team/players/bg_name.png");
  background-size: cover;
}
.player-txt span {
  position: absolute;
  top: 16px;
  left: 20px;
  font-family: var(--ff_roboto);
  font-weight: 900;
}

@media screen and (max-width: 768px) {
  .player-section-label {
    padding-right: var(--space-8);
    font-size: var(--fs-36);
  }

  .player-section-title {
    padding-left: var(--space-8);
    font-size: var(--fs-18);
  }

  .player-section-title.left {
    padding-right: var(--space-8);
  }

  .archive-years {
    padding: 0;
  }

  .player-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-20);
  }
  .player-txt {
    padding: 14px 8px;
  }
}

/*
* トップチーム - 選手プロフィール
-------------------------------------------------- */
#player-profile {
  background: url("../../images/pages/team/player-profile/bg02.png") no-repeat
    top;
  background-size: 100% auto;
  background-repeat: repeat-y;
}
#player-profile::after {
  width: 100%;
  height: 1200px;
  background: url("../../images/pages/team/player-profile/bg.png") no-repeat top;
  background-size: cover;
}

#player-profile .contents {
  margin-top: 0;
}

#player-profile .contents .item:nth-child(n + 2) {
  margin-top: 0;
}

/* Player Profile Styles */
.player-profile-wrapper {
  display: flex;
  align-items: flex-end;
  gap: var(--space-20);
  position: relative;
  z-index: 1;
  color: var(--color-white);
}

.player-profile-images {
  position: relative;
  flex-basis: 60%;
}

.player-profile-images img.player-sign {
  position: absolute;
  top: 0;
  left: -8vw;
  max-width: 380px;
  width: 50%;
  height: auto;
  z-index: 2;
}

.player-profile-images img:last-child {
  position: relative;
  z-index: 1;
  display: block;
  margin-left: auto;
  max-width: 430px;
  width: 100%;
  height: auto;
}

.player-profile-info {
  flex-basis: 40%;
  display: flex;
  flex-direction: column;
  padding-bottom: var(--space-50);
}

.player-position {
  width: fit-content;
  color: var(--color-yellow);
  font-family: var(--ff_roboto);
  font-size: var(--fs-50);
  font-weight: 900;
  border-bottom: 2px solid var(--color-yellow);
}

.player-number {
  color: var(--color-yellow);
  font-family: var(--ff_roboto);
  font-size: calc(var(--fs-50) * 2);
  font-weight: 900;
}

.player-name-ja {
  font-size: var(--fs-40);
  font-weight: 900;
}

.player-name-en {
  font-family: var(--ff_roboto);
  font-size: var(--fs-32);
  font-weight: 900;
}

.player-sns {
  display: flex;
  gap: var(--space-16);
  margin-top: var(--space-20);
}

.player-sns img {
  width: 30px;
  height: 30px;
  transition: opacity 0.3s ease;
}

.player-txt span {
  font-size: 54px;
}
.staff .player-txt span {
  font-size: 24px;
}
.player-txt .player-name-ja {
  font-size: var(--fs-32);
}
.player-txt .player-name-en {
  font-size: var(--fs-24);
}
@media screen and (max-width: 1280px) {
  .player-txt span {
    font-size: 48px;
  }
  .staff .player-txt span {
    font-size: 20px;
  }
  .player-txt .player-name-ja {
    font-size: var(--fs-28);
  }
  .player-txt .player-name-en {
    font-size: var(--fs-20);
  }
}
@media screen and (max-width: 1080px) {
  .player-txt span {
    font-size: 42px;
  }
  .player-txt .player-name-ja {
    font-size: var(--fs-24);
  }
  .player-txt .player-name-en {
    font-size: var(--fs-18);
  }
}
@media screen and (max-width: 960px) {
  .player-txt span {
    font-size: 36px;
    top: 10px;
    left: 16px;
  }
  .staff .player-txt span {
    font-size: 16px;
  }
  .player-txt .player-name-ja {
    font-size: var(--fs-22);
  }
  .player-txt .player-name-en {
    font-size: var(--fs-16);
  }
}
@media screen and (max-width: 560px) {
  .player-txt span {
    font-size: 32px;
    top: 8px;
    left: 12px;
  }
  .staff .player-txt span {
    font-size: 14px;
  }
  .player-txt .player-name-ja {
    font-size: 3.2vw;
  }
  .player-txt .player-name-en {
    font-size: 2.8vw;
  }
}

@media screen and (max-width: 768px) {
  .player-profile-wrapper {
    align-items: center;
    gap: clamp(10px, 1vw, 30px);
    padding: var(--space-40) var(--space-16) 0;
    text-align: center;
  }

  .player-profile-images {
    flex-basis: 100%;
    margin-top: auto;
    width: 100%;
  }

  .player-profile-images img.player-sign {
    top: -40px;
    left: -20px;
    max-width: 200px;
  }
  .player-profile-images img:last-child {
    margin-left: 0;
    width: 100%;
  }

  .player-profile-info {
    flex-basis: 100%;
    gap: var(--space-8);
    padding-bottom: 0;
    text-align: start;
  }

  .player-position {
    width: fit-content;
    font-size: clamp(20px, 4vw, 40px);
  }

  .player-number {
    font-size: clamp(40px, 8vw, 80px);
  }

  .player-name-ja {
    font-size: clamp(20px, 3vw, 36px);
  }

  .player-name-en {
    font-size: clamp(14px, 2vw, 20px);
  }

  .player-sns {
    justify-content: start;
    margin-top: var(--space-12);
  }
  .player-sns img {
    width: clamp(20px, 1vw, 30px);
    height: clamp(20px, 1vw, 30px);
  }
}

#player-profile .contents .item h3 {
  display: flex;
  align-items: center;
}

#player-profile .contents .item h3 div {
  display: flex;
  align-items: center;
  padding-left: var(--space-20);
  padding-right: var(--space-20);
}

#player-profile .contents .item h3 div:first-child {
  border-right: 2px solid var(--color-black);
}

#player-profile .contents .item h3 div img {
  height: 35px;
}

.profile-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 2px solid #dcdcdc;
}

.profile-table th,
.profile-table td {
  font-size: var(--fs-16);
  padding: var(--space-20);
  vertical-align: middle;
}

/* 基本のth */
.profile-table th {
  font-weight: bold;
  background: var(--color-gold-dark);
  color: var(--color-white);
  border-bottom: 2px solid #dcdcdc;
  border-right: 2px solid #dcdcdc;
  white-space: nowrap;
}
.profile-table th:last-child {
  border-right: none;
}

/* 経歴以外の行のth */
.profile-table tr:not(.career-row) th {
  width: 300px;
}

/* 経歴行の1列目のth */
.profile-table .career-row th:first-child {
  width: 180px;
}

/* 経歴行の2列目のth */
.profile-table .career-row th:nth-child(2) {
  width: 120px;
}

.profile-table td {
  background: var(--color-white);
  border-bottom: 2px solid #dcdcdc;
  width: 75%;
}

.profile-table.career-stats-table td {
  border-right: 2px solid #dcdcdc;
}
.profile-table.career-stats-table td:last-child {
  border-right: none;
}
.profile-table.career-stats-table thead tr:nth-child(2) th:nth-child(2n + 1) {
  border-right: 2px dashed #dcdcdc;
}
.profile-table.career-stats-table tbody td:nth-child(5),
.profile-table.career-stats-table tbody td:nth-child(7),
.profile-table.career-stats-table tbody td:nth-child(9),
.profile-table.career-stats-table tbody td:nth-child(11),
.profile-table.career-stats-table tbody td:nth-child(13),
.profile-table.career-stats-table
  tbody
  tr:nth-last-child(-n + 3)
  td:nth-child(3) {
  border-right: 2px dashed #dcdcdc;
}

@media screen and (max-width: 768px) {
  .profile-table {
    display: block;
    margin-bottom: var(--space-30);
    overflow-x: auto;
    white-space: nowrap;
  }

  .profile-table tr:not(.career-row) th {
    width: 220px;
  }

  .profile-table .career-row th:first-child {
    width: 120px;
  }

  .profile-table .career-row th:nth-child(2) {
    width: 100px;
  }

  .profile-table th,
  .profile-table td {
    padding: var(--space-10);
    font-size: var(--fs-14);
  }
}

/* Career Stats Table */
.career-stats-table {
  margin-top: var(--space-50);
}

.career-stats-table th {
  padding: var(--space-8) var(--space-4);
  font-size: var(--fs-14);
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  text-align: center;
}

.career-stats-table td {
  padding: var(--space-8) var(--space-4);
  font-size: var(--fs-14);
  text-align: center;
}

.career-stats-table td:nth-child(2) {
  min-width: 120px;
}

@media screen and (max-width: 768px) {
  .career-stats-table {
    display: block;
    margin-top: var(--space-30);
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .career-stats-table th {
    padding: var(--space-4) var(--space-2);
    font-size: var(--fs-12);
  }

  .career-stats-table td {
    padding: var(--space-4) var(--space-2);
    font-size: var(--fs-12);
  }

  .career-stats-table td:nth-child(2) {
    min-width: 90px;
  }
}

.back-to-list {
  margin-top: var(--space-50);
  text-align: center;
}
.back-to-list a {
  background: var(--color-black);
  border: 1px solid var(--color-black);
  color: var(--color-white);
}
.back-to-list a:hover {
  background: var(--color-white);
  color: var(--color-black);
}
@media screen and (max-width: 768px) {
  .back-to-list {
    margin-top: var(--space-30);
  }

  .back-to-list a {
    padding: var(--space-12) var(--space-24);
    font-size: var(--fs-14);
  }
}

/*
* トップチーム - 練習見学
-------------------------------------------------- */
#fanservice::after {
  background: url("../../images/pages/team/fanservice/bg.png") no-repeat;
  background-size: cover;
  max-height: 720px;
}

.fanservice-content {
  margin-top: var(--space-100);
}

.fanservice-intro {
  text-align: center;
}

.fanservice-intro-text {
  font-size: var(--fs-18);
  font-weight: 900px;
}

#fanservice .border-section {
  margin-top: var(--fs-80);
}

.fanservice-schedule {
  margin-top: var(--space-50);
  text-align: center;
}

.fanservice-schedule a {
  max-width: 300px;
}

#fanservice .item {
  margin-top: var(--space-100);
}

#fanservice .item .item-content .item-content-title {
  margin-bottom: var(--space-30);
}

#fanservice ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-10);
}

#fanservice ul li {
  list-style: none;
  padding-left: 1.2rem;
  position: relative;
}
#fanservice ul li::before {
  content: "・";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
}
#fanservice ul li a {
  display: inline-block;
  font-weight: 900;
  text-decoration: 1px underline var(--color-black);
}

#fanservice .highlight {
  background: var(--color-gold-dark);
  color: var(--color-white);
}

.fanservice-route-image {
  margin-top: var(--space-60);
  padding-left: calc(var(--space-50) * 3);
  padding-right: calc(var(--space-50) * 3);
}

.fanservice-area-image {
  margin: var(--space-60) var(--space-80);
  padding: var(--space-50) var(--space-100);
  background: var(--color-gray-snow);
}

.fanservice-rules-list {
  padding: var(--space-50);
  background: var(--color-gray-snow);
}

.fanservice-basic-rules {
  margin-top: var(--space-50);
}

.modal-content.root-guide {
  max-width: 720px;
}

@media screen and (max-width: 768px) {
  #fanservice::after {
    max-height: 360px;
  }

  .fanservice-content {
    margin-top: var(--space-50);
  }

  .fanservice-intro-text {
    font-size: var(--fs-14);
    padding: 0 var(--space-16);
  }

  #fanservice .border-section {
    margin-top: var(--space-40);
    padding: var(--space-30) var(--space-16) var(--space-20);
  }

  .fanservice-schedule {
    margin-top: var(--space-30);
  }

  .fanservice-schedule a {
    max-width: 100%;
    font-size: var(--fs-14);
    padding: var(--space-12) var(--space-16);
  }

  #fanservice .item {
    margin-top: var(--space-50);
  }

  #fanservice .item .item-content .item-content-title {
    margin-bottom: var(--space-20);
    font-size: var(--fs-16);
  }

  #fanservice ul {
    gap: var(--space-8);
  }

  #fanservice ul li {
    font-size: var(--fs-14);
    line-height: 1.6;
    padding-left: 14px;
  }

  .fanservice-route-image {
    margin-top: var(--space-30);
    padding-left: var(--space-16);
    padding-right: var(--space-16);
  }

  .fanservice-area-image {
    margin: var(--space-30) var(--space-16);
    padding: var(--space-20);
  }

  .fanservice-rules-list {
    padding: var(--space-20);
  }

  .fanservice-basic-rules {
    margin-top: var(--space-30);
  }

  .fanservice-route-image img,
  .fanservice-area-image img {
    width: 100%;
    height: auto;
  }

  .border-section-title {
    font-size: var(--fs-16);
    padding: 0 var(--space-12);
    white-space: nowrap;
  }

  .modal-content.root-guide {
    width: 80%;
  }
}

/*
* ファンクラブ
-------------------------------------------------- */
section#fan::after {
  background: url("../../images/pages/fan/bg.png") no-repeat;
  background-size: cover;
}
section#fan .tab-buttons {
  display: flex;
  gap: var(--space-10);
  align-items: center;
  justify-content: center;
  padding: 0 var(--space-16);
}
section#fan .tab-button {
  flex: 1;
  padding: var(--space-12) 0;
  text-align: center;
  background: var(--color-white);
  border: 2px solid var(--color-black);
  border-bottom: none;
  border-radius: 10px 10px 0 0;
  font-size: var(--fs-16);
  font-weight: 900;
  color: var(--color-black);
  cursor: pointer;
  transition: all 0.3s ease;
}
section#fan .tab-button.active {
  background: var(--color-yellow-bright);
  border: 2px solid var(--color-yellow-bright);
}
section#fan .tab-button:nth-child(2).active {
  background: #dfb812;
  border: 2px solid #dfb812;
}
section#fan .tab-button:nth-child(3).active {
  background: #c5a80c;
  border: 2px solid #c5a80c;
}
section#fan .tab-contents {
}
section#fan .tab-content {
  display: none;
  padding: 30px clamp(10px, 5vw, 50px) 50px;
  background: #fbfad9;
  border: 5px solid var(--color-yellow-bright);
  border-radius: 10px;
}
section#fan .tab-content#associates-plus {
  background: #faf5dc;
  border: 5px solid #dfb812;
}
section#fan .tab-content#big-associates {
  background: #f7f2db;
  border: 5px solid #c5a80c;
}
#associates-plus .membership-right h4 {
  background: #faf5dc;
}
#big-associates .membership-right h4 {
  background: #f7f2db;
}

section#fan .tab-content.active {
  display: block;
}
section#fan .tab-content .tab-content-item {
  display: flex;
  align-items: center;
  gap: var(--space-40);
}
section#fan .tab-content .tab-content-item > div {
  width: 50%;
  flex-basis: calc((100% - var(--space-40)) / 2);
}

.membership-hero,
.membership-details > div {
  display: flex;
}
.membership-hero {
  gap: var(--space-40);
  padding-left: var(--space-40);
}
.membership-hero img {
  max-width: 150px;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.membership-hero .membership-catchphrase {
  padding-top: var(--space-50);
  font-size: var(--fs-22);
  font-weight: 900;
}
.membership-details {
  position: relative;
  z-index: 10;
  margin-top: -100px;
  padding-top: var(--space-30);
  background: var(--color-white);
  border-radius: 10px;
}
.membership-header,
.membership-fees,
.membership-period {
  padding-left: var(--space-20);
  padding-right: var(--space-20);
}
.membership-header {
  align-items: center;
}
.membership-header img {
  max-width: 135px;
  padding-right: var(--space-30);
  width: 100%;
  height: auto;
}
.membership-header .membership-type {
  padding-left: var(--space-30);
  font-weight: 900;
  font-size: var(--fs-30);
}
.membership-header .membership-type .membership-category {
  font-size: var(--fs-20);
}
.membership-fees {
  margin-top: var(--space-20);
  gap: var(--space-24);
  font-weight: 900;
}
.membership-fees .fee-label {
  margin-bottom: var(--space-10);
  padding: 4px var(--space-14);
  background: var(--color-yellow-bright);
  font-size: var(--fs-14);
  border-radius: 100px;
}
#associates-plus .membership-fees .fee-label {
  background: #dfb812;
}
#big-associates .membership-fees .fee-label {
  background: #c5a80c;
}

.membership-fees .fee-amount {
  font-family: var(--ff_roboto);
  font-size: var(--fs-50);
}
.membership-fees .fee-currency {
  font-size: var(--fs-20);
}
.membership-period {
  margin-top: var(--space-20);
  font-size: var(--fs-14);
}
.membership-cta {
  justify-content: center;
  margin-top: var(--space-40);
  padding-top: var(--space-30);
  padding-bottom: var(--space-30);
  background: var(--color-yellow-bright);
  border-radius: 0 0 10px 10px;
}
#associates-plus .membership-cta {
  background: #dfb812;
}
#big-associates .membership-cta {
  background: #c5a80c;
}

.membership-cta .button {
  padding-left: var(--space-20);
  padding-right: var(--space-20);
  max-width: 300px;
  background: var(--color-white);
  font-size: var(--fs-16);
  font-weight: 900;
  border: none;
  color: #000;
}
.membership-cta .button:hover {
  opacity: 0.85;
}

.membership-right {
  position: relative;
  padding: var(--space-60) var(--space-20) var(--space-40);
  border: 2px solid var(--color-black);
  border-radius: 10px;
  text-align: center;
}
.membership-right h4 {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  padding: var(--space-4) var(--space-12);
  background: #fbfad9;
  font-size: var(--fs-20);
  border-top: 3px double var(--color-black);
  border-bottom: 3px double var(--color-black);
}
.membership-right .list-example-wrapper {
  display: flex;
  gap: var(--space-30);
  flex-wrap: wrap;
}
.membership-right .list-example-wrapper .list-example {
  position: relative;
  flex-basis: calc(50% - var(--space-30) / 2);
}
.membership-right .list-example-wrapper .list-example .list-example-title {
  position: relative;
  z-index: 10;
  margin: 0 auto -15px;
  padding: var(--space-10) 0;
  max-width: 170px;
  width: 100%;
  background: var(--color-yellow-bright);
  font-size: clamp(10px, 1vw, 14px);
  border-radius: 30px;
}
#associates-plus
  .membership-right
  .list-example-wrapper
  .list-example
  .list-example-title {
  background: #dfb812;
}
#big-associates
  .membership-right
  .list-example-wrapper
  .list-example
  .list-example-title {
  background: #c5a80c;
}

.membership-right
  .list-example-wrapper
  .list-example
  .list-example-image-wrapper {
  display: flex;
  align-items: center;
  justify-content: end;
  margin: 0 auto;
  padding: var(--space-30);
  width: clamp(120px, 10vw, 170px);
  height: clamp(120px, 10vw, 170px);
  background: var(--color-white);
  border-radius: 100px;
}

/* Benefits Table */
.benefits-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 2px;
  font-size: var(--fs-18);
  font-weight: 900;
}

.benefits-table thead tr th:first-child {
  background: var(--color-gray-neutral);
}
.benefits-table thead tr th:nth-child(2) {
  background: var(--color-gray-soft);
}
.benefits-table thead tr th:nth-child(3) {
  background: var(--color-yellow-bright);
}
.benefits-table thead tr th:nth-child(4) {
  background: var(--color-gold-bright);
}
.benefits-table thead tr th:nth-child(5) {
  background: var(--color-gold-dark);
}

.benefits-table th,
.benefits-table td {
  padding: var(--space-12) var(--space-10);
  text-align: center;
  vertical-align: middle;
}

/* Add margin to first column cells */
.benefits-table td.col-1 {
  background: var(--color-gray-light-alt);
  position: relative;
  padding-top: calc(var(--space-12) + 2.5px);
  padding-bottom: calc(var(--space-12) + 2.5px);
}

.benefits-table .col-2 {
  background: var(--color-gray-bright);
  text-align: start;
}

.benefits-table .col-3 {
  background: color-mix(in srgb, var(--color-yellow-bright) 15%, transparent);
  text-align: center;
}
.benefits-table .col-3.maru {
  color: var(--color-yellow-bright);
}

.benefits-table .col-4 {
  background: color-mix(in srgb, var(--color-gold-bright) 15%, transparent);
  text-align: center;
}
.benefits-table .col-4.maru {
  color: var(--color-gold-bright);
}

.benefits-table .col-5 {
  background: color-mix(in srgb, var(--color-gold-dark) 15%, transparent);
  text-align: center;
}
.benefits-table .col-5.maru {
  color: var(--color-gold-dark);
}

/* Continuation Guide */
.guide-content {
  display: flex;
  gap: var(--space-60);
}
@media screen and (max-width: 768px) {
  .guide-content {
    flex-direction: column;
  }
}

.guide-header {
  max-width: 300px;
  width: 100%;
}
.guide-header img {
  max-width: 300px;
  width: 100%;
}
.guide-header a.button {
  margin-top: var(--space-30);
  max-width: 300px;
  background: var(--color-black);
  color: var(--color-white);
}
.guide-header a.button:hover {
  background: #fff;
  color: #000;
}
.guide-details a {
  display: inline-block;
  text-decoration: 1px underline var(--color-black);
}
.guide-subtitle {
  padding-left: var(--space-20);
  font-size: var(--fs-20);
  font-weight: 900;
  background-image: linear-gradient(
    to bottom,
    var(--color-gold-dark) 50%,
    var(--color-black) 50%
  );
  background-position: left;
  background-repeat: no-repeat;
  background-size: 2px 100%;
  border-left: none;
}
.guide-list {
  margin-top: var(--space-30);
  font-size: var(--fs-16);
}
.guide-list li {
  margin-top: var(--space-30);
  list-style: none;
  position: relative;
  padding-left: 20px;
}
.guide-list li::before {
  content: "・";
  font-weight: 900;
  position: absolute;
  left: 0;
}
.guide-notes {
  position: relative;
  margin-top: var(--fs-40);
  padding: var(--space-30) var(--space-20);
  border: 2px solid var(--color-gold-dark);
  border-radius: 16px;
}
.guide-notes-title {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding-left: var(--space-20);
  padding-right: var(--space-20);
  font-size: var(--fs-20);
  font-weight: 900;
  background: var(--color-white);
  color: var(--color-gold-dark);
}
.guide-notes-list li {
  list-style: none;
  position: relative;
  padding-left: 18px;
  margin-bottom: 6px;
  font-size: var(--fs-16);
}
.guide-notes-list li::before {
  content: "・";
  font-weight: 900;
  position: absolute;
  left: 0;
}
.guide-notes-list li:last-child {
  margin-bottom: 0;
}

/* Contact */
.contact-title {
  padding-left: var(--space-20);
  font-size: var(--fs-18);
  font-weight: 900;
  background-image: linear-gradient(
    to bottom,
    var(--color-gold-dark) 50%,
    var(--color-black) 50%
  );
  background-position: left;
  background-repeat: no-repeat;
  background-size: 2px 100%;
  border-left: none;
}
.contact-method {
  display: flex;
  gap: var(--fs-20);
  align-items: center;
  margin-top: var(--space-30);
}
.contact-method img {
  width: var(--space-40);
  height: auto;
}
.contact-note {
  margin-top: var(--space-24);
}
.contact-text.tel {
  font-family: var(--ff_roboto);
  font-size: var(--fs-30);
}
.contact-text.email {
  font-size: var(--fs-20);
}
.contact-note {
  font-size: var(--fs-16);
}
.guide-link {
  display: inline;
  text-decoration: 1px underline var(--color-black);
}
.guide-link:hover {
  background-color: var(--color-yellow);
}

@media screen and (max-width: 1200px) {
  /* Benefits Table Font Size */
  .benefits-table {
    font-size: var(--fs-14);
  }
  .benefits-table th {
    font-size: var(--fs-12);
  }

  /* Continuation Guide Font Size */
  .guide-subtitle {
    font-size: var(--fs-18);
  }
  .guide-list {
    font-size: var(--fs-14);
  }
  .guide-text {
    font-size: var(--fs-14);
  }
  .guide-notes {
    padding: var(--space-20);
    border-radius: 12px;
  }
  .guide-notes-title {
    font-size: var(--fs-18);
  }
  .guide-notes-list {
    font-size: var(--fs-14);
  }
  .guide-header a.button {
    font-size: var(--fs-14);
  }

  section#fan .tab-content {
    padding: var(--space-40) var(--space-16);
  }

  section#fan .tab-content .tab-content-item {
    /* flex-direction: column; */
    gap: var(--space-20);
  }
  section#fan .tab-content .tab-content-item > div {
    width: 100%;
    flex-basis: 100%;
  }

  .membership-hero {
    padding-left: 0;
    justify-content: center;
    gap: var(--space-20);
  }
  .membership-hero img {
    max-width: 120px;
  }
  .membership-hero .membership-catchphrase {
    padding-top: var(--space-30);
    font-size: var(--fs-18);
  }

  .membership-details {
    margin-top: -60px;
  }
  .membership-header {
    flex-direction: column;
    justify-content: center;
  }
  .membership-header img {
    max-width: 100px;
    padding-right: 0;
  }
  .membership-header .membership-type {
    padding-left: 0;
    font-size: var(--fs-24);
  }
  .membership-header .membership-type .membership-category {
    font-size: var(--fs-16);
  }

  .membership-fees {
    justify-content: center;
    flex-direction: column;
  }
  .membership-fees .fee-amount {
    font-size: var(--fs-36);
  }
  .membership-fees .fee-currency {
    font-size: var(--fs-16);
  }

  .membership-period {
    text-align: center;
  }
  .membership-cta {
    padding-left: var(--space-10);
    padding-right: var(--space-10);
  }
  .membership-cta .button {
    max-width: 230px;
    font-size: var(--fs-14);
  }

  .membership-right {
    padding: var(--space-40) var(--space-16) var(--space-30);
  }
  .membership-right h4 {
    font-size: var(--fs-18);
  }
  .membership-right .list-example-wrapper {
    gap: var(--space-20);
  }
  .membership-right .list-example-wrapper .list-example {
    flex-basis: 100%;
  }
  .membership-right
    .list-example-wrapper
    .list-example
    .list-example-image-wrapper {
    width: 140px;
    height: 140px;
  }
}
@media screen and (max-width: 768px) {
  /* Font Size Adjustments */
  .page-section {
    padding-top: var(--space-50);
  }
  .page-title {
    font-size: var(--fs-30);
  }
  .page-title::before {
    font-size: var(--fs-16);
  }
  .page-section .contents {
    margin-top: var(--space-50);
    padding: var(--space-30) var(--page-contents) var(--space-50);
  }
  .page-section .contents .item h3 {
    margin-top: var(--space-30);
    padding: var(--space-16) var(--space-10);
    font-size: var(--fs-18);
  }
  .contents .menu li {
    padding-bottom: var(--space-20);
  }
  .contents .menu li::after {
    bottom: 10px;
  }
  .contents .menu li a {
    font-size: var(--fs-14);
  }
  /* Benefits Table Font Size */
  .benefits-table {
    font-size: var(--fs-14);
  }
  .benefits-table th {
    font-size: var(--fs-12);
  }

  /* Continuation Guide Font Size */
  .guide-subtitle {
    font-size: var(--fs-18);
  }
  .guide-list {
    font-size: var(--fs-16);
  }
  .guide-text {
    font-size: var(--fs-16);
  }
  .guide-notes-title {
    top: -10px;
    font-size: var(--fs-16);
  }
  .guide-notes-list {
    font-size: var(--fs-16);
  }
  .guide-header a.button {
    font-size: var(--fs-16);
  }

  /* Contact Section Font Size */
  .contact-title {
    font-size: var(--fs-16);
  }
  .contact-text.tel {
    font-size: var(--fs-26);
  }
  .contact-text.email {
    font-size: var(--fs-18);
  }
  .contact-note {
    font-size: var(--fs-14);
  }
  .contact-hours {
    font-size: var(--fs-16);
  }

  /* Breadcrumb Font Size */
  .breadcrumb-list {
    font-size: var(--fs-12);
  }

  /* Existing mobile styles... */
  .table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .benefits-table {
    min-width: 800px;
  }

  /* Menu */
  .contents .menu {
    flex-direction: column;
    gap: var(--space-4);
  }
  .contents .menu li {
    flex-basis: 100%;
    width: 100%;
    border-left: none;
    border-bottom: 2px dashed var(--color-black);
  }
  .contents .menu li:last-child {
    border-right: none;
  }
  .contents .menu li a {
    display: block;
    width: 100%;
    padding: var(--space-12) var(--space-10);
  }

  /* Course Introduction */
  .page-section .contents .item .item-content {
    margin-top: var(--space-20);
  }

  section#fan .tab-button {
    flex: 1 1 auto;
    flex-basis: 33%;
    padding: var(--space-10) var(--space-20);
    font-size: var(--fs-14);
    text-align: center;
  }

  section#fan .tab-content {
    padding: var(--space-20) var(--space-16);
  }

  section#fan .tab-content .tab-content-item {
    flex-direction: column;
    gap: var(--space-30);
  }
  section#fan .tab-content .tab-content-item > div {
    width: 100%;
    flex-basis: 100%;
  }

  .membership-hero {
    padding-left: 0;
    justify-content: center;
    gap: var(--space-20);
  }
  .membership-hero img {
    max-width: 120px;
  }
  .membership-hero .membership-catchphrase {
    padding-top: var(--space-30);
    font-size: var(--fs-18);
  }

  .membership-details {
    margin-top: -60px;
  }
  .membership-header {
    flex-direction: column;
    justify-content: center;
  }
  .membership-header img {
    max-width: 100px;
    padding-right: 0;
  }
  .membership-header .membership-type {
    padding-left: 0;
    font-size: var(--fs-24);
  }
  .membership-header .membership-type .membership-category {
    font-size: var(--fs-16);
  }

  .membership-fees {
    justify-content: center;
    flex-direction: column;
  }
  .membership-fees .fee-amount {
    font-size: var(--fs-36);
  }
  .membership-fees .fee-currency {
    font-size: var(--fs-16);
  }

  .membership-period {
    text-align: center;
  }
  .membership-cta .button {
    max-width: 230px;
    font-size: var(--fs-14);
  }

  .membership-right {
    padding: var(--space-40) var(--space-16) var(--space-30);
    margin-top: 40px;
  }
  .membership-right h4 {
    font-size: var(--fs-18);
  }
  .membership-right .list-example-wrapper {
    gap: var(--space-20);
  }
  .membership-right .list-example-wrapper .list-example {
    flex-basis: 100%;
  }
  .membership-right
    .list-example-wrapper
    .list-example
    .list-example-image-wrapper {
    width: 140px;
    height: 140px;
  }
  .guide-header {
    margin-right: auto;
    margin-left: auto;
  }
  .guide-notes-list li {
    padding-left: 12px;
  }
  .guide-list li {
    padding-left: 15px;
  }
}

@media screen and (max-width: 560px) {
  section#fan .tab-button {
    padding: var(--space-10) var(--space-10);
    font-size: 1.8vw;
  }
}

/* Benefits Page */
.bf-box-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.bf-title0 {
  padding: var(--space-20) var(--space-10);
  font-size: var(--fs-22);
  font-weight: 900;
  background-color: var(--color-yellow-bright);
  margin-bottom: 30px;
  margin-top: 50px;
}
.box-sL {
  width: 32%;
}
.box-sR {
  width: 65%;
}
.box-sR p {
  margin-bottom: 4px;
}
.bq-wrap {
  position: relative;
}
.bq-wrap::before,
.bq-wrap::after {
  content: "";
  width: 23.5%;
}
.bq-wrap::before {
  order: 1;
}
.box-quarter {
  width: 23.5%;
  margin-bottom: 30px;
}
.box-quarter p,
.new-guide p {
  margin-top: 8px;
  font-size: 90%;
}

.box-quarter p.txt-s,
.new-guide p.txt-s {
  font-size: 80%;
}
.box-quarter img,
.box-sL img {
  border-radius: 10px;
}
.bf-title1 {
  font-size: 120%;
  font-weight: 700;
  margin-bottom: 20px !important;
}
.new-guide p.bf-title1 {
  font-size: 120%;
  font-weight: 700;
  margin-bottom: 10px !important;
  margin-top: 40px;
}
.box-quarter p.bf-title2 {
  font-size: 105%;
  font-weight: 700;
}

.number-list {
  margin: 16px 0;
}
.number-list li {
  padding-left: 20px;
  font-size: 90%;
  margin-bottom: 15px;
  position: relative;
}
.number-list li::before {
  position: absolute;
  left: 0;
}
.number-list li:nth-child(1)::before {
  content: "1．";
}
.number-list li:nth-child(2)::before {
  content: "2．";
}
.number-list li:nth-child(3)::before {
  content: "3．";
}
.number-list li:nth-child(4)::before {
  content: "4．";
}
.number-list li:nth-child(5)::before {
  content: "5．";
}
.number-list li:nth-child(6)::before {
  content: "6．";
}
.number-list li:nth-child(7)::before {
  content: "7．";
}
.number-list li:nth-child(8)::before {
  content: "8．";
}
.number-list li:nth-child(9)::before {
  content: "9．";
}

.new-guide .guide-subtitle {
  margin: 20px 0;
}

@media screen and (max-width: 768px) {
  .bq-wrap::before,
  .bq-wrap::after {
    display: none;
  }
  .box-sL,
  .box-sR {
    width: 100%;
  }
  .box-sL {
    text-align: center;
    margin-bottom: 15px;
  }
  .box-sL img {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }
  .box-sR p {
    font-size: var(--fs-16);
  }
  .box-quarter {
    width: 48.2%;
    margin-bottom: 25px;
  }
  .bf-title0 {
    font-size: var(--fs-18);
    padding: var(--space-12) var(--space-10);
    margin-bottom: 20px;
    margin-top: 40px;
  }
  .bf-title1,
  .new-guide p.bf-title1 {
    font-size: var(--fs-18) !important;
    margin-bottom: 10px !important;
  }
  .box-quarter p,
  .box-quarter p.bf-title2,
  .new-guide p {
    font-size: var(--fs-16);
  }
  .box-quarter p.txt-s {
    font-size: var(--fs-14);
  }
}
.txt-red {
  color: #ff0000;
}

/* Breadcrumb */
.breadcrumb-wrapper {
  position: relative;
  z-index: 10;
  margin-top: var(--space-100);
  padding: var(--space-20) var(--space-80);
  background: var(--color-white);
  color: var(--color-black);
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-8);
  font-size: var(--fs-14);
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  color: var(--color-gray-dark);
}

.breadcrumb-item:not(:last-child)::after {
  content: ">";
  margin-left: var(--space-8);
}

.breadcrumb-link {
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.breadcrumb-link:hover {
  opacity: 0.7;
}

@media screen and (max-width: 768px) {
  .breadcrumb-wrapper {
    margin-top: var(--space-30);
    padding: var(--space-12) 0;
  }

  .breadcrumb-list {
    font-size: var(--fs-12);
  }
}

/* ==================================================
* Utilities
* ================================================== */
.page-contents-x {
  padding-left: var(--page-contents);
  padding-right: var(--page-contents);
}
@media screen and (max-width: 768px) {
  .page-contents-x {
    padding-left: var(--space-16);
    padding-right: var(--space-16);
  }
}

.seat-content-x {
  padding-left: calc(var(--space-100) * 2);
  padding-right: calc(var(--space-100) * 2);
}
@media screen and (max-width: 768px) {
  .seat-content-x {
    padding-left: var(--space-16);
    padding-right: var(--space-16);
  }
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.accordion-content.is-open {
  max-height: 500px;
  transition: max-height 0.5s ease-in;
}

.qa-question.is-open {
  opacity: 0.7;
}

/* 試合結果コンテンツのスタイル */
.game-result-content {
  padding: var(--space-30) 0;
  width: 100%;
}

.team-info-container {
  display: flex;
  justify-content: center;
}

.team-info-item {
  flex-basis: 50%;
  text-align: center;
}

.team-info-name {
  font-size: var(--fs-20);
  font-weight: 900;
}

.team-info-logo {
  width: auto;
  height: 78px;
}

@media screen and (min-width: 769px) {
  .item.bg-half {
    background: linear-gradient(
      to right,
      var(--color-yellow) 50%,
      transparent 50%
    );
  }
  .item.bg-half.away {
    background: linear-gradient(
      to right,
      transparent 50%,
      var(--color-yellow) 50%
    );
  }
}

.table-wrapper {
  display: flex;
  gap: var(--space-40);
  align-items: flex-start;
}

@media screen and (max-width: 768px) {
  .table-wrapper {
    flex-direction: column;
  }
}

.table-wrapper p {
  font-size: var(--fs-12);
}

#game-result .section-title {
  background: var(--color-white);
}

#game-result table th,
#game-result table td {
  font-size: var(--fs-14);
  background: var(--color-white);
}

#game-result table.home th {
  background: #c5a80c;
  vertical-align: middle;
  text-align: start;
}

#game-result table.away th {
  background: #777777;
  vertical-align: middle;
  text-align: start;
}

/* 得点セクション */
.score-section {
  width: 100%;
}

.score-section .section-title {
  padding: 10px;
  background: var(--color-white);
  border: 2px solid var(--color-black);
  text-align: center;
  font-weight: bold;
}

.score-table {
  margin-top: var(--space-20);
  width: 100%;
}

.score-table table {
  width: 100%;
  border-collapse: collapse;
}

.score-table th {
  padding: 10px;
  background: #c5a80c;
  color: #fff;
  font-weight: bold;
  border-left: 2px solid #dcdcdc;
}

.score-table td {
  padding: 10px;
  border-left: 2px solid #dcdcdc;
  border-bottom: 2px solid #dcdcdc;
  background: #fff;
}

.score-table th:first-child,
.score-table td:first-child {
  border-left: none;
}

.score-table tr:nth-child(odd) td {
  background: #fff;
}

.score-table tr:nth-child(even) td {
  background: #fff;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .score-table {
    overflow-x: auto;
    white-space: nowrap;
  }

  .score-table th,
  .score-table td {
    padding: 8px;
    font-size: 14px;
  }
}

/* メンバーセクション */
.member-section {
  margin-top: 30px;
}

.member-section .section-title {
  padding: 10px;
  border: 2px solid var(--color-black);
  text-align: center;
  font-weight: bold;
}

.sub-section-title {
  margin-top: 20px;
  padding: 10px;
  background: #000;
  color: #fff;
  text-align: center;
  font-weight: bold;
}

.member-section .sub-section-title:first-child {
  margin-top: 0;
}

/* 監督リスト */
.manager-list {
  display: flex;
  gap: var(--space-40);
  margin-top: 20px;
}

.team-column {
  flex: 1;
  padding: 15px;
  background: var(--color-white);
}

.team-column {
  border-top: 2px solid #dcdcdc;
  border-bottom: 2px solid #dcdcdc;
}

.manager-name {
  text-align: center;
  font-weight: bold;
}

/* メンバーテーブル */
.member-table {
  width: 100%;
  margin-top: 20px;
  overflow-x: auto;
}

.member-table table {
  width: 100%;
  border-collapse: collapse;
}

.member-table th {
  padding: 10px;
  background: #daa520;
  color: #fff;
  font-weight: bold;
  text-align: center;
  border-left: 2px solid #dcdcdc;
}

.member-table tr:first-child th:nth-child(4) {
  border-bottom: 2px solid #dcdcdc;
}

.member-table td {
  padding: 10px;
  border-left: 2px solid #dcdcdc;
  border-bottom: 2px solid #dcdcdc;
  text-align: left;
}

.member-table th:first-child,
.member-table td:first-child {
  border-left: none;
}

.member-table tr:nth-child(2) th:first-child {
  border-left: 2px solid #dcdcdc;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .member-table {
    overflow-x: auto;
    white-space: nowrap;
  }

  .member-table th,
  .member-table td {
    padding: 8px;
    font-size: 14px;
  }
}

/* 警告・退場セクション */
.caution-section {
  margin-top: 30px;
}

.caution-section .section-title {
  padding: 10px;
  background: #fff;
  border: 2px solid #000;
  text-align: center;
  font-weight: bold;
}

.caution-table {
  width: 100%;
  margin-top: 20px;
  overflow-x: auto;
}

.caution-table table {
  width: 100%;
  border-collapse: collapse;
}

.caution-table th {
  padding: 10px;
  background: #daa520;
  color: #fff;
  font-weight: bold;
  text-align: center;
  border-left: 2px solid #dcdcdc;
}

.caution-table td {
  padding: 10px;
  border-left: 2px solid #dcdcdc;
  border-bottom: 2px solid #dcdcdc;
  text-align: left;
}

.caution-table th:first-child,
.caution-table td:first-child {
  border-left: none;
}

.c_red {
  color: var(--color-red-dark);
  padding-right: 3px;
}
.c_yel {
  color: var(--color-yellow);
  padding-right: 3px;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .caution-table {
    overflow-x: auto;
    white-space: nowrap;
  }

  .caution-table th,
  .caution-table td {
    padding: 8px;
    font-size: 14px;
  }
}

/* 交代セクション */
.substitution-section {
  margin-top: 30px;
}

.substitution-section .section-title {
  padding: 10px;
  background: #fff;
  border: 2px solid #000;
  text-align: center;
  font-weight: bold;
}

.substitution-table {
  width: 100%;
  margin-top: 20px;
  overflow-x: auto;
}

.substitution-table table {
  width: 100%;
  border-collapse: collapse;
}

.substitution-table th {
  padding: 10px;
  background: #daa520;
  color: #fff;
  font-weight: bold;
  text-align: center;
  border-left: 2px solid #dcdcdc;
}

.substitution-table td {
  padding: 10px;
  border-left: 2px solid #dcdcdc;
  border-bottom: 2px solid #dcdcdc;
  text-align: left;
}

.substitution-table th:first-child,
.substitution-table td:first-child {
  border-left: none;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .substitution-table {
    overflow-x: auto;
    white-space: nowrap;
  }

  .substitution-table th,
  .substitution-table td {
    padding: 8px;
    font-size: 14px;
  }
}

/* 試合統計情報セクション */
.stats-section {
  margin-top: 30px;
}

.stats-section .section-title {
  padding: 10px;
  background: #fff;
  border: 2px solid #000;
  text-align: center;
  font-weight: bold;
}

.stats-table {
  width: 100%;
  margin-top: 20px;
  overflow-x: auto;
}

.stats-table table {
  width: 100%;
  border-collapse: collapse;
}

.stats-table th {
  padding: 10px;
  background: #daa520;
  color: #fff;
  font-weight: bold;
  text-align: center;
  border-left: 2px solid #dcdcdc;
}

.stats-table td {
  padding: 10px;
  border-left: 2px solid #dcdcdc;
  border-bottom: 2px solid #dcdcdc;
  text-align: left;
}

.stats-table th:first-child,
.stats-table td:first-child {
  border-left: none;
}

.stats-table td:first-child {
  text-align: left;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .stats-table {
    overflow-x: auto;
    white-space: nowrap;
  }

  .stats-table th,
  .stats-table td {
    padding: 8px;
    font-size: 14px;
  }
}

/* データボックスセクション */
.databox-section {
  margin-top: 30px;
}

.databox-section .section-title {
  padding: 10px;
  background: #fff;
  border: 2px solid #000;
  text-align: center;
  font-weight: bold;
}

.databox-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 var(--space-40);
  margin-top: 20px;
  font-size: clamp(12px, 1vw, 16px);
}

.databox-item {
  background: #fff;
  display: flex;
}

.databox-item:first-child {
  border-top: 2px solid #dcdcdc;
}
@media screen and (min-width: 769px) {
  .databox-item:nth-child(2),
  .databox-item:nth-child(3) {
    border-top: 2px solid #dcdcdc;
  }
}

.databox-label {
  padding: 10px;
  width: 40%;
  background: var(--color-black);
  color: var(--color-white);
  border-bottom: 2px solid #dcdcdc;
  font-weight: bold;
}

.databox-value {
  padding: 10px;
  width: 60%;
  background: var(--color-white);
  border-bottom: 2px solid #dcdcdc;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .databox-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .databox-label,
  .databox-value {
    padding: 8px;
    font-size: 14px;
  }
}

/* ==================================================
* 追記箇所
* ================================================== */
/* DAZN */
.plan-table,
.plan-table,
.plan-actions {
  max-width: 900px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.path-section-inner {
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
}
.faq-section-inner {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}

/* トップチーム練習見学 */
.fanservice-route-image {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  max-width: 800px;
  width: 100%;
}
.number-markers {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.number-marker {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 42px;
  height: 42px;
}
.number-marker[data-point="1"] {
  bottom: 2.8%;
  left: 53%;
}
.number-marker[data-point="2"] {
  bottom: 31%;
  left: 58.7%;
}
.number-marker[data-point="3"] {
  bottom: 21.3%;
  left: 51.8%;
}
.number-marker[data-point="4"] {
  top: 52.5%;
  left: 46.5%;
}
.number-marker[data-point="5"] {
  top: 23%;
  left: 10.2%;
}
.number-marker[data-point="6"] {
  top: 42%;
  left: 17%;
}
.number-marker[data-point="7"] {
  top: 13%;
  left: 9%;
}
@media all and (max-width: 980px) {
  .number-marker {
    width: 36px;
    height: 36px;
  }
}
@media all and (max-width: 640px) {
  .number-marker {
    width: 5vw;
    height: 5vw;
  }
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
  position: relative;
  padding: 0;
  width: 100%;
  max-width: 600px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.modal-swiper {
  position: relative;
  width: 100%;
}

.modal-swiper .swiper-wrapper {
  display: flex;
  width: 100%;
}

.modal-swiper .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  flex-shrink: 0;
}

.modal-swiper img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 30px;
}

.modal-text {
  margin-top: 20px;
  text-align: start;
  width: 100%;
  color: #fff;
}
.modal-text > p {
  margin-bottom: 10px;
  font-size: 16px;
}
.modal-text p.txt-notice {
  color: #fff100;
  font-size: var(--fs-14);
}
.modal-num {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -30px;
  left: -30px;
  width: 60px;
  height: 60px;
  background: #fff100;
  font-family: var(--ff_roboto);
  font-size: var(--fs-40);
  font-weight: 900;
  border-radius: 100px;
}

.close-modal {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 60px;
  height: 60px;
  cursor: pointer;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-modal::before,
.close-modal::after {
  content: "";
  position: absolute;
  width: 42px;
  height: 2px;
  background-color: white;
  top: 50%;
  left: 50%;
}

.close-modal::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.close-modal::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.modal-swiper .swiper-button-next,
.modal-swiper .swiper-button-prev {
  color: #fff;
  background: none;
  width: 40px;
  height: 20px;
  margin-top: 0;
  cursor: pointer;
}

.modal-swiper .swiper-button-next {
  top: 40%;
  right: -8%;
}

.modal-swiper .swiper-button-prev {
  top: 40%;
  left: -8%;
}

.modal-swiper .swiper-button-next::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 1px;
  background-color: #fff;
  top: 3px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
}

.modal-swiper .swiper-button-next::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 1px;
  background-color: #fff;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%) rotate(-45deg);
}

.modal-swiper .swiper-button-prev::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 1px;
  background-color: #fff;
  top: 3px;
  left: 50%;
  transform: translateX(-50%) rotate(-45deg);
}

.modal-swiper .swiper-button-prev::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 1px;
  background-color: #fff;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
}

@media (max-width: 768px) {
  .modal-content {
    width: 90%;
    padding: 0 20px;
  }

  .close-modal {
    width: 40px;
    height: 40px;
    top: 130px;
  }

  .modal-num {
    width: 40px;
    height: 40px;
    top: -20px;
    left: -20px;
    font-size: var(--fs-24);
  }

  .modal-text > p {
    font-size: var(--fs-16);
  }
}
@media (max-width: 390px) {
  .modal-swiper .swiper-button-next {
    top: 30%;
    right: -35px;
  }

  .modal-swiper .swiper-button-prev {
    top: 30%;
    left: -35px;
  }
}

/* チケット観戦シート */
#seat-detail .contents .menu li:first-child {
  border-left: none;
}
#seat-detail .contents .menu li {
  border-left: 2px solid var(--color-white);
}

#seat-detail .contents .menu li.menu-ss.is-active {
  background: #ff88bc;
}
#seat-detail .contents .menu li.menu-sd.is-active {
  background: #f36f5d;
}
#seat-detail .contents .menu li.menu-sf.is-active {
  background: #6cbb5a;
}
#seat-detail .contents .menu li.menu-yonex.is-active {
  background: #41579a;
}
#seat-detail .contents .menu li.menu-mr.is-active {
  background: #f58004;
}
#seat-detail .contents .menu li.menu-ar.is-active {
  background: #7fcef4;
}
#seat-detail .contents .menu li.menu-al.is-active {
  background: #7fcef4;
}
#seat-detail .contents .menu li.menu-sunrise.is-active {
  background: #eee100;
}
#seat-detail .contents .menu li.menu-visitor.is-active {
  background: #d0562d;
}
#seat-detail .contents .menu li.menu-visitor-goal.is-active {
  background: #c1a16c;
}

.seat-tab-content[data-tab="ss"] h3.seat-title {
  background: #ff88bc;
}
.seat-tab-content[data-tab="sd"] h3.seat-title {
  background: #f36f5d;
}
.seat-tab-content[data-tab="sf"] h3.seat-title {
  background: #6cbb5a;
}
.seat-tab-content[data-tab="yonex"] h3.seat-title {
  background: #41579a;
}
.seat-tab-content[data-tab="mr"] h3.seat-title {
  background: #f58004;
}
.seat-tab-content[data-tab="ar"] h3.seat-title {
  background: #7fcef4;
}
.seat-tab-content[data-tab="al"] h3.seat-title {
  background: #7fcef4;
}
.seat-tab-content[data-tab="sunrise"] h3.seat-title {
  background: #eee100;
}
.seat-tab-content[data-tab="visitor"] h3.seat-title {
  background: #d0562d;
}
.seat-tab-content[data-tab="visitor-goal"] h3.seat-title {
  background: #c1a16c;
}

.stadium-name {
  left: 50px;
}
.seat-ticket-inner {
  padding: 0 var(--space-80) var(--space-50);
  background: var(--color-white);
}
.seat-content::after {
  z-index: -1;
}
.seat-title {
  position: relative;
  padding: var(--space-30) 0;
}
.seat-check-point {
  position: relative;
}
.seat-title,
.seat-details,
.seat-ticket {
  top: -40px;
}
.seat-ticket {
  position: relative;
  top: -41px;
  z-index: 1;
}
.seat-check-point {
  top: 20px;
}
.ticket-content {
  padding: var(--space-80) 0 0;
}
.seat-ticket .ticket-content .ticket-title {
  position: relative;
  margin: 0 auto;
  width: fit-content;
  font-size: var(--fs-30);
}
.seat-ticket .ticket-content .ticket-title::before,
.seat-ticket .ticket-content .ticket-title::after {
  content: "";
  position: absolute;
  top: 55%;
  width: 40px;
  height: 1px;
  border-top: 1px dashed;
}
.seat-ticket .ticket-content .ticket-title::before {
  left: -40px;
  transform: rotate(45deg);
}
.seat-ticket .ticket-content .ticket-title::after {
  right: -40px;
  transform: rotate(-45deg);
}
.ticket-buttons {
  text-align: center;
}
.ticket-buttons a.button.black {
  border: 1px solid #000;
}
.ticket-buttons a.button.black:hover {
  background-color: #fff;
  color: #000;
}
.check-point-header .title-wrapper {
  margin-left: 0;
  text-align: start;
}
.check-point-header img {
  margin-top: -3.25%;
  width: 21.25%;
  height: auto;
}
.check-point-header p {
  top: -16px;
  left: 10%;
}
@media (max-width: 1280px) {
  .check-point-header h3 {
    font-size: 60px;
  }
}
@media (max-width: 1080px) {
  .stadium-name {
    font-size: calc(var(--fs-80) * 1.5);
  }
  .seat-content {
    padding-left: calc(var(--space-100));
    padding-right: calc(var(--space-100));
  }
  .seat-content-x {
    padding-left: calc(var(--space-100));
    padding-right: calc(var(--space-100));
  }
  .seat-ticket-inner {
    padding: var(--space-20);
  }
  .seat-ticket .ticket-content .ticket-title {
    font-size: var(--fs-24);
  }
  .seat-ticket .ticket-content .ticket-title::before {
    left: -50px;
  }
  .seat-ticket .ticket-content .ticket-title::after {
    right: -50px;
  }
  .seat-price-table th {
    padding: var(--space-16) 0;
    font-size: var(--fs-16);
  }
  .purchase-category {
    font-size: var(--fs-24);
  }
  .purchase-options {
    flex-direction: column;
  }
  .check-point-wrapper {
    padding: var(--space-20) !important;
  }
  .check-point-header {
    flex-direction: column;
  }
  .check-point-header .title-wrapper {
    text-align: center;
  }
  .check-point-header h3 {
    font-size: var(--fs-50);
  }
  .check-point-header p {
    top: 0;
    left: 0;
    padding: 0 4px;
  }
  .check-point-header p::before,
  .check-point-header p::after {
    width: 16px;
  }
  .check-point-images {
    flex-direction: column;
  }
  .seat-details {
    padding: var(--space-20);
  }
}
@media screen and (max-width: 768px) {
  .seat-content {
    padding: 0 var(--space-20);
  }
  .seat-tab-contents {
    margin-top: 0;
  }
  .seat-tab-content {
    padding: 0;
  }
  .seat-content-inner {
    padding: 0;
  }
  .seat-content-x {
    padding-left: var(--space-20);
    padding-right: var(--space-20);
  }
  .ticket-content {
    padding: var(--space-40) 0;
  }
  .purchase-category {
    font-size: var(--fs-22);
    white-space: nowrap;
  }
  .ticket-title {
    padding: 0 20px;
  }
}

.zoomable-image {
  cursor: pointer;
}

.zoom-image-container {
  width: 100%;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.zoom-image-container img {
  max-width: 95%;
  max-height: 90%;
  object-fit: contain;
  transition: transform 0.3s ease;
  cursor: pointer;
}

@media (max-width: 768px) {
  .zoom-image-container {
    height: 70vh;
  }
}

body.modal-open {
  overflow: hidden;
}

body.modal-open .stadium-name,
body.modal-open .seat-ticket {
  z-index: 0 !important;
}

.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  overflow: hidden;
  box-sizing: border-box;
  transform: translateZ(0);
  will-change: transform;
}

.modal-content {
  position: relative;
  padding: 0;
  width: 100%;
  max-width: 90%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
}

.zoomable-image {
  cursor: pointer;
}

.zoom-image-container {
  width: 100%;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.zoom-image-container img {
  max-width: 95%;
  max-height: 90%;
  object-fit: contain;
  transition: transform 0.3s ease;
  cursor: pointer;
}

@media (max-width: 768px) {
  .zoom-image-container {
    height: 70vh;
  }
}

.seat-map-interactive {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
.seat-map-interactive img {
  width: 100%;
  height: auto;
}

.seat-areas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.seat-area {
  position: absolute;
  background: transparent;
  border: none;
  cursor: pointer;
}

/* 各座席エリアの位置指定 */
.seat-area[data-seat="ss"] {
  top: 68.6%;
  left: 41.4%;
  width: 24.9%;
  height: 10%;
  transform: translateX(-50%);
}

.seat-area[data-seat="sd"] {
  top: 16.72%;
  right: 50.3%;
  width: 16.4%;
  height: 3.5%;
}

.seat-area[data-seat="sf"] {
  top: 9.775%;
  left: 32.3%;
  width: 17.2%;
  height: 6.56%;
}

.seat-area[data-seat="yonex"] {
  top: 71%;
  right: 25.2%;
  width: 6.8%;
  height: 7.7%;
}

.seat-area[data-seat="mr"] {
  top: 64.64%;
  right: 32.65%;
  width: 12.6%;
  height: 18.8%;
}

.seat-area[data-seat="ar"] {
  top: 9.775%;
  right: 36.5%;
  width: 13.62%;
  height: 10.4%;
}

.seat-area-handy {
  top: 18.5%;
  right: 37%;
  width: 8%;
  height: 2%;
  display: block;
  position: absolute;
}

.seat-area-handy.handy2 {
  top: 78.3%;
  left: 29.1%;
  right: auto;
  width: 6%;
  height: 2%;
  display: block;
  position: absolute;
}

.seat-area[data-seat="al"] {
  top: 9.775%;
  left: 18.4%;
  width: 14.8%;
  height: 10.4%;
}

.seat-area[data-seat="sunrise"] {
  top: 17.3%;
  right: 22.5%;
  width: 11.6%;
  height: 50%;
}

.seat-area[data-seat="visitor"] {
  bottom: 26%;
  left: 15.2%;
  width: 12.6%;
  height: 9.4%;
}

.seat-area[data-seat="visitor-goal"] {
  top: 17.72%;
  left: 12.88%;
  width: 3.34%;
  height: 44.8%;
}

.seat-area:hover,
.seat-area-handy:hover {
  background: rgba(255, 0, 0, 0.2);
}

@media (max-width: 768px) {
  #seat-detail .contents .menu li {
    border-left: none;
    border-bottom: none;
  }
  #seat-detail .contents .menu li::after {
    bottom: 2px;
  }
}

/* ==================================================
* game_info_home
* ================================================== */
.game-info-fv {
  background: url("../../images/pages/game/info/fv-home.png") no-repeat;
  background-size: cover;
}
.game-info-fv.away {
  background: url("../../images/pages/game/info/fv-away.png") no-repeat;
}

.game-info-label.home {
  background: #fff100;
}
.game-info-label.away {
  background: #fff;
}
.info-block {
  flex-wrap: wrap;
}
.link-container {
  flex: 0 0 calc(50% - var(--space-10));
  width: 50%;
}
@media (max-width: 768px) {
  .link-container {
    width: 100%;
  }
}

.page-section .contents .item h3.content-title .content-title-icon {
  padding-left: 0;
  padding-right: var(--space-10);
  width: 70px;
  text-align: center;
}

.item-event .link-container {
  display: flex;
  gap: var(--space-10);
  padding: 0 var(--space-14) 0 0;
}
.item-event .link-container img {
  max-width: 150px;
  width: 100%;
}
.item-event .link-container a {
  flex-grow: 1;
  padding-right: var(--space-30);
}

.item-time .info-block {
  display: block;
}
.item-time .schedule-container {
  display: flex;
  gap: var(--space-30);
  padding: var(--space-20) var(--space-30);
  background: #fff;
  border-bottom: 2px solid #d5d5d5;
}
.item-time .schedule-container:last-of-type {
  border-bottom: none;
}
.item-time .schedule-container .schedule-time {
  font-weight: 900;
}

.item-notice {
  margin: 20px 0 10px;
}

.seat-status-container {
  display: flex;
  align-items: center;
  margin: var(--space-44) 0 var(--space-24);
  padding: var(--space-10) 0;
  width: fit-content;
  border: 2px solid #000;
}
.seat-status-container div {
  padding: 0 var(--space-10);
  font-size: var(--fs-16);
  font-weight: 900;
}
.seat-status-container .seat-status-date {
  border-right: 2px solid #000;
}
.seat-availability {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}
.seat-availability th,
.seat-availability td {
  padding: 0.5rem;
  text-align: center;
}
.seat-availability th {
  font-weight: 900;
}
.seat-availability thead th {
  background-color: #000;
  color: #fff;
  font-weight: 900;
  border-right: 2px solid #fff;
}
.seat-availability tbody tr > * {
  border-right: 2px solid #dcdcdc;
  border-bottom: 2px solid #dcdcdc;
}
.seat-availability tbody tr > td:last-of-type {
  border-right: none;
}
.seat-availability .member {
  background-color: #fff100;
}
.seat-availability .general {
  background-color: #fff;
}
.seat-availability td:empty::before {
  content: "\00a0";
}
.seat-availability-legend p {
  font-size: var(--fs-16);
}
@media (max-width: 768px) {
  .seat-status-container {
    margin: var(--space-30) 0 var(--space-20);
  }

  .seat-status-container div {
    font-size: var(--fs-14);
  }

  .seat-availability-wrapper {
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    margin-bottom: var(--space-20);
  }

  .seat-availability {
    min-width: 600px;
  }

  .seat-availability th,
  .seat-availability td {
    padding: var(--space-8);
    font-size: var(--fs-14);
  }

  .seat-availability-legend p {
    font-size: var(--fs-14);
  }
}
.info-block .link-container:hover {
  background-color: var(--color-yellow);
}

/*---------------------------------------------------

NEWS

---------------------------------------------------*/
#news::after {
  background: url("../../images/pages/news/bg.png") no-repeat;
  background-size: cover;
  max-height: 720px;
}
#item_archive {
  background: var(--color-gray-snow);
  padding: 15px 30px;
}
#item_archive ul li {
  display: inline;
  margin-right: 13px;
}
#item_archive ul li.right_list {
  margin-right: 0;
}
#item_archive ul li a {
  background: url(../../images/common/icon_arrow_b.png) no-repeat 0 0.5em;
  padding-left: 1em;
  line-height: 1.4;
  text-decoration: none;
  color: #000000;
  display: inline !important;
}
#item_archive p a {
  background: url(../../images/common/icon_arrow_b.png) no-repeat 0 0.5em;
  padding-left: 1em;
  line-height: 1.4;
  text-decoration: none;
}

#item_archive ul li a:hover,
#item_archive p a:hover {
  color: #0085cd;
}

#item_archive ul li.current a {
  font-weight: bold;
  color: #0085cd;
}

/* Add */
.ticket-news-item {
  position: relative;
  font-size: clamp(12px, 2vw, 24px);
}
/* .ticket-news-item::after, */
.ticket-news-item::before {
  content: "\e5cc";
  position: absolute;
  top: 50%;
  right: var(--space-20);
  transform: translateY(-50%);
  font-family: var(--ff_material);
  font-size: clamp(20px, 1vw, 30px);
}
@media (max-width: 768px) {
  .ticket-news-title {
    width: 90%;
  }
}

.material-icon.txt-icon {
  padding-right: 20px;
}
.material-icon.txt-icon::after {
  right: 4px;
  font-size: 12px;
}

.contents h3:first-child {
  margin-top: 0 !important;
}
.mgT10 {
  margin-top: 10px !important;
}
.mgT20 {
  margin-top: 20px !important;
}
.mgT30 {
  margin-top: 30px !important;
}
.mgT40 {
  margin-top: 40px !important;
}
.mgT50 {
  margin-top: 50px !important;
}
.mgT60 {
  margin-top: 60px !important;
}
.mgT80 {
  margin-top: 80px !important;
}
.mgT100 {
  margin-top: 100px !important;
}
.mgB10 {
  margin-bottom: 10px !important;
}
.mgB20 {
  margin-bottom: 20px !important;
}
.mgB30 {
  margin-bottom: 30px !important;
}
.mgB40 {
  margin-bottom: 40px !important;
}
.mgB50 {
  margin-bottom: 50px !important;
}
.mgB60 {
  margin-bottom: 60px !important;
}
.pdT60_s {
  padding-top: 60px;
}
.txt-s {
  font-size: 85%;
}
.indent01 {
  padding-left: 0.85rem;
  text-indent: -0.85rem;
}
.link-arrow {
  text-decoration: underline;
  padding-left: 16px;
  position: relative;
  display: inline;
}
.link-arrow:hover {
  background-color: var(--color-yellow);
}
.link-arrow::before {
  content: "\e5cc";
  font-family: var(--ff_material);
  top: 4px;
  position: absolute;
  left: 0;
}
@media all and (max-width: 768px) {
  .link-arrow {
    padding-left: 12px;
  }
  .pdT60_s {
    padding-top: 30px;
  }
}

.item {
  margin-bottom: 80px;
}
.item:last-child {
  margin-bottom: 0;
}
.social_hateb a,
#pagenav a,
#pagenav_num a {
  display: inline !important;
}
#pagenav,
#pagenav_num {
  display: flex;
  justify-content: center;
  padding-bottom: 20px;
}
#pagenav div,
#pagenav_num div {
  padding: 0 5px;
}
#pagenav_num ul {
  display: flex;
  justify-content: center;
}
#pagenav_num ul li {
  margin: 5px;
}
#pagenav_num ul li span,
#pagenav_num ul li a {
  border: 1px solid #000;
  padding: 3px 8px;
}
#pagenav_num ul li span {
  background-color: #000;
  color: #fff;
}
#pagenav_num ul li a:hover {
  background-color: var(--color-gray-snow);
}
.page_next li,
.page_back li {
  list-style: none;
  margin-top: 5px;
}
.item.news_item {
  margin-bottom: 0;
}
#news #item_data {
  padding-bottom: 5px;
  border-bottom: none;
  margin-bottom: 15px;
}
#item_data p.news_date {
  font-size: 12px;
  text-align: right;
  display: block;
  color: #838383;
}
.news_item h3 {
  margin-bottom: 40px;
}

.new_sub_menu {
  gap: var(--space-10);
  padding: var(--space-10);
  background: var(--color-gray-snow);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 30px !important;
}
.new_sub_menu li {
  background: var(--color-white);
  width: 15.6%;
  border: 2px solid #fff;
}
.new_sub_menu a {
  color: var(--color-black);
  padding: 8px 10px;
  position: relative;
  display: block;
  background-color: #fff;
  font-size: 80%;
}
.new_sub_menu a:hover {
  background-color: var(--color-yellow);
}
.new_sub_menu a::after {
  position: absolute;
  font-family: var(--ff_material);
  content: "\e5cc";
  top: 50%;
  right: 12px;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
}
@media (min-width: 1081px) {
  .new_sub_menu::after {
    content: "";
    width: 15.6%;
  }
}
@media (max-width: 1080px) and (min-width: 641px) {
  .new_sub_menu li {
    width: 23.7%;
  }
  .new_sub_menu a {
    padding: 4px 7px;
    font-size: 10px;
  }
  .new_sub_menu a::after {
    right: 6px;
  }
  .new_sub_menu::after {
    content: "";
    width: 23.7%;
  }
  .new_sub_menu::before {
    order: 1;
  }
}
@media (max-width: 640px) {
  .new_sub_menu li {
    width: 31.7%;
  }
  .new_sub_menu a::after {
    right: 4px;
  }
  .new_sub_menu::after {
    content: "";
    width: 31.7%;
  }
}
@media (max-width: 450px) {
  .new_sub_menu a {
    font-size: 2.5vw;
  }
  .new_sub_menu li {
    width: 31.3%;
  }
}

/* blog top */
#nblog .box_HR,
#nblog .box_HL {
  padding: 0 !important;
  margin: 0 0 40px !important;
  float: none;
  display: flex;
  align-content: stretch;
}
#nblog #blog_TOP {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#nblog h3.sub_title2 {
  border: none !important;
  font-size: 135%;
}
#nblog h3.sub_title2 a:hover {
  opacity: 0.7;
}
@media (max-width: 900px) {
  #nblog .box_HR,
  #nblog .box_HL,
  #nblog .box_HR section,
  #nblog .box_HL section {
    width: 100% !important;
  }
}

/* スケジュール */
.nsp {
  display: none;
}
.attention {
  text-align: center;
  font-size: 105%;
  font-weight: 700;
  line-height: 2 !important;
}
.schedule-attention {
  margin: 60px 0 40px !important;
}
.googleCalendar iframe {
  width: 100%;
  height: 400px;
}
@media all and (max-width: 768px) {
  .nsp {
    display: inherit;
  }
  .attention {
    text-align: left;
    font-size: 85%;
    line-height: 1.75 !important;
  }
}
@media all and (min-width: 769px) {
  .schedule-attention {
    margin: 100px 0 80px !important;
  }
  .googleCalendar iframe {
    height: 600px;
  }
}

#fanservice::after,
#team::after {
  background: url("../../images/pages/team/players/bg.png");
  background-size: cover;
  width: 100%;
  max-height: 720px;
  height: 100%;
}
#academy::after,
.academy #ticket-seat::after,
.academy #players::after {
  background: url("../../images/pages/academy/bg.png");
  background-size: cover;
  width: 100%;
  max-height: 720px;
  height: 100%;
}
.fan section#ticket-seat::after {
  background: url("../../images/pages/fan/bg.png") no-repeat;
  background-size: cover;
}
.club section.page-section::after,
.club #club::after,
.club #ticket-seat::after {
  background: url("../../images/pages/club/bg.png");
  background-size: cover;
  width: 100%;
  max-height: 720px;
  height: 100%;
}

/* add 20250401 */
#entry_box a {
  display: inline;
  text-decoration: underline;
}
#entry_box a:hover,
#item_archive a:hover,
#pagenav a:hover,
.page_next a:hover,
.page_back a:hover {
  color: #c29f0a !important;
}
#news th,
#news td {
  padding: 5px;
  border-left: 1px solid #aaa;
  border-bottom: 1px solid #aaa;
}
#news table {
  border-top: 1px solid #aaa;
  border-right: 1px solid #aaa;
}
#news th {
  background: #eee;
  font-weight: bold;
}

/* add 20250903 */

.weekly-new {
}

.weekly-sub-title {
  padding: 0 20px 30px 20px !important;
  text-align: center;
  width: 100%;
  display: block;
  color: #000000;
  line-height: 125%;
  font-size: 200% !important;
  font-weight: bold !important;
  border: none !important;
}

.weekly-sub-title span,
.weekly-item span,
.weekly-text span,
.weekly-text-2 span {
  border-bottom: 2px solid;
  padding-bottom: 2px;
}

.weekly-new a {
  display: contents;
  color: #664402 !important;
  text-decoration: none;
}

.weekly-new-main-img {
  text-align: center;
}

.weekly-new-main-img img {
  width: 700px;
  margin: 0 auto 30px auto;
}

.weekly-flex {
  display: flex;
  gap: 40px;
}

.weekly-item,
.weekly-text {
  font-size: 135%;
  line-height: 1.4;
}

.weekly-text-2 {
  font-size: 100%;
  line-height: 1.6;
}

.weekly-box {
  background-color: #fff100;
  padding: 20px;
  border: 2px solid;
  border-radius: 10px;
  margin: 15px 0 15px 0;
  cursor: pointer;
}

.weekly-box p {
  text-align: center;
  font-size: 135%;
  line-height: 1.4;
}

.weekly-box a {
  color: #000 !important;
  display: block;
}

.weekly-box a:hover {
  opacity: 0.5;
  transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
  .weekly-sub-title {
    font-size: 130% !important;
  }
  .weekly-item,
  .weekly-text,
  .weekly-box p {
    font-size: 100%;
  }
}
