@charset "utf-8";
:root {
  --COLOR_BASE_LIGHT: #FFFFFF;
  --COLOR_FONT: #1C1C1C;
  --COLOR_FONT_SECONDARY: #F3EAC2;
  --COLOR_PRIMARY: #8F7215;
  --COLOR_SECONDARY: #0A1931;
  --COLOR_BACKGROUND: #FFFCF6;
  --COLOR_BORDER: #CFC6AE;
  --FONT_FAMILY_DEFAULT: "Noto Sans JP", sans-serif;
  --FONT_FAMILY_EMPHASIS: "Noto Serif JP", serif;
  --FONT_FAMILY_COPYRIGHT: "Hiragino Kaku Gothic ProN", sans-serif;
  --FONT_SIZE: 1.4rem;
  --FONT_WEIGHT: 400;
  --FONT_WEIGHT_MEDIUM: 500;
  --FONT_WEIGHT_SEMIBOLD: 600;
  --FONT_WEIGHT_BOLD: 700;
  --LINE_HEIGHT: 1.8;
  --LINE_HEIGHT_NARROW: 1.4;
  --EASING: ease-out;
  --DURATION: .3s;
  --TRANSITION: var(--EASING) var(--DURATION);
  --Z_INDEX_LOWER_LAYER: -1;
  --Z_INDEX_UPPER_LAYER: 1;
  --Z_INDEX_MIDDLE_LAYER: 10;
  --Z_INDEX_HEADER: 100;
}

@media screen and (min-width: 768px) {
  :root {
    --FONT_SIZE: 1.6rem;
    --LINE_HEIGHT: 1.8;
  }
}

body {
  color: var(--COLOR_FONT);
  font-family: var(--FONT_FAMILY_DEFAULT);
  font-size: var(--FONT_SIZE);
  font-weight: var(--FONT_WEIGHT);
  line-height: var(--LINE_HEIGHT);
  overflow-wrap: anywhere;
}

/*----------------------------------- ページ共通 --------------------------------------*/
.u-100th-game-br {
  display: block;
}

.u-100th-game-br-sp {
  display: block;
}

.u-100th-game-display-none-sp {
  display: none;
}

.u-100th-game-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}

/*----------- 見出し ------------*/
.u-100th-game-heading-level2 {
  align-items: center;
  display: flex;
  flex-direction: column;
  font-family: var(--FONT_FAMILY_EMPHASIS);
  row-gap: 12px;
  margin-top: 56px;
}

.u-100th-game-heading-level2__title {
  color: var(--COLOR_SECONDARY);
  font-size: 2.4rem;
  font-weight: var(--FONT_WEIGHT_BOLD);
  line-height: 1.35;
  position: relative;
  text-align: center;
}

.u-100th-game-heading-level2__title::before,
.u-100th-game-heading-level2__title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40px;
  height: 1px;
  background-color: var(--COLOR_PRIMARY);
  transform: translateY(-50%);
}
.u-100th-game-heading-level2__title::before {
  right: 100%;
  margin-right: 16px;
}
.u-100th-game-heading-level2__title::after {
  left: 100%;
  margin-left: 16px;
}

.u-100th-game-heading-level2__subtitle {
  color: var(--COLOR_PRIMARY);
  font-size: 1.4rem;
  font-weight: var(--FONT_WEIGHT_MEDIUM);
  line-height: 1.35;
  text-transform: uppercase;
}

.u-100th-game-heading-level3 {
  align-items: center;
  display: flex;
  flex-direction: column;
  font-family: var(--FONT_FAMILY_EMPHASIS);
  row-gap: 8px;
  margin-top: 32px;
}

.u-100th-game-heading-level3__title {
  color: var(--COLOR_SECONDARY);
  font-size: 2rem;
  font-weight: var(--FONT_WEIGHT_BOLD);
  line-height: 1.35;
  text-transform: uppercase;
}

.u-100th-game-heading-level3__subtitle {
  color: var(--COLOR_SECONDARY);
  font-size: 1.6rem;
  font-weight: var(--FONT_WEIGHT_BOLD);
  line-height: 1.35;
}

/*----------- テーブル ------------*/
.u-100th-game-table {
  border-radius: 8px;
  border: 1px solid var(--COLOR_BORDER);
  margin-top: 24px;
  overflow: hidden;
}

.u-100th-game-table__table {
  position: relative;
  width: 100%;
  background-color: var(--COLOR_BASE_LIGHT);
  border-collapse: collapse;
  table-layout: fixed;
}

.u-100th-game-table__col--w20 {
  width: 20%;
}
.u-100th-game-table__col--w25 {
  width: 25%;
}
.u-100th-game-table__col--w30 {
  width: 30%;
}
.u-100th-game-table__col--w33 {
  width: 33.333%;
}

.u-100th-game-table__col--w36 {
  width: 36%;
}

.u-100th-game-table__col--w40 {
  width: 40%;
}
.u-100th-game-table__col--w50 {
  width: 50%;
}

.u-100th-game-table__head {
  color: var(--COLOR_FONT_SECONDARY);
  background-color: var(--COLOR_SECONDARY);
}

.u-100th-game-table__cell {
  padding: 12px;
  border-right: 1px solid var(--COLOR_BORDER);
  border-bottom: 1px solid var(--COLOR_BORDER);
}
.u-100th-game-table__cell:last-child {
  border-right: 0;
}
.u-100th-game-table__row:last-child .u-100th-game-table__cell {
  border-bottom: 0;
}

.u-100th-game-table__cell > :first-child {
  margin-top: 0;
}
.u-100th-game-table__cell > :last-child {
  margin-bottom: 0;
}
.u-100th-game-table__cell--head {
  background-color: var(--COLOR_SECONDARY);
  color: var(--COLOR_FONT_SECONDARY);
  font-weight: var(--FONT_WEIGHT_BOLD);
  text-align: center;
  vertical-align: top;
}

.u-100th-game-table__cell--align-left {
  text-align: left;
}

/*----------- テキスト ------------*/
.u-100th-game-text {
  display: flex;
  flex-direction: column;
  margin-top: 24px;
}

.u-100th-game-text__item {
  flex: 0 0 auto;
}

/*----------- メディア ------------*/

.u-100th-game-media {
  margin-top: 32px;
}

.u-100th-game-media__wrap {
  display: table;
  margin: auto;
  vertical-align: top;
}

.u-100th-game-media__caption {
  display: table-caption;
  margin: 6px auto 0;
  font-size: 1.4rem;
  text-align: center;
  caption-side: bottom;
}

.u-100th-game-media__img {
  display: block;
  height: auto;
  max-width: 100%;
}

/* 画像を幅100% */
.u-100th-game-media--full .u-100th-game-media__wrap {
  width: 100%;
}

.u-100th-game-media--full .u-100th-game-media__img {
  width: 100%;
}

/*----------- リンク ------------*/
.u-100th-game-link {
  color: #0052CC;
  text-decoration: underline;
}

.u-100th-game-link:hover,
.u-100th-game-link:focus-visible {
  text-decoration: none;
}

/*----------- ボタン ------------*/

.u-100th-game-button-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}


.u-100th-game-button {
  height: 100%;
  min-width: 280px;
}

.u-100th-game-button__link {
  align-items: center;
  background-color: var(--COLOR_PRIMARY);
  border-radius: 4px;
  column-gap: 20px;
  color: var(--COLOR_BASE_LIGHT);
  display: flex;
  font-weight: var(--FONT_WEIGHT_BOLD);
  font-size: 1.6rem;
  min-width: 0;
  padding: 16px;
  position: relative; 
  justify-content: center;
  transition: opacity var(--TRANSITION);
}

.u-100th-game-button__link::after {
  content: "";
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  background-color: var(--COLOR_BASE_LIGHT);
  mask-image: url("/common/images/renew/100th-game/ico-open-in-new-window01.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.u-100th-game-button__link:hover,
.u-100th-game-button__link:focus-visible {
  opacity: 0.5;
}

.u-100th-game-button__link:focus-visible {
  outline-offset: 3px;
}

/* 白地・濃色ボタン */
.u-100th-game-button--secondary .u-100th-game-button__link {
  background-color: var(--COLOR_BASE_LIGHT);
  border: 1px solid var(--COLOR_SECONDARY);
  color: var(--COLOR_SECONDARY);
  transition:
    background-color var(--TRANSITION),
    border-color var(--TRANSITION),
    color var(--TRANSITION);
}

.u-100th-game-button--secondary .u-100th-game-button__link::after {
  background-color: var(--COLOR_SECONDARY);
  transition: background-color var(--TRANSITION);
}
/* hover / focus: 反転 */
.u-100th-game-button--secondary .u-100th-game-button__link:hover,
.u-100th-game-button--secondary .u-100th-game-button__link:focus-visible {
  background-color: var(--COLOR_SECONDARY);
  border-color: var(--COLOR_SECONDARY);
  color: var(--COLOR_BASE_LIGHT);
  opacity: 1; /* 既存の opacity: 0.5 を打ち消し */
}

.u-100th-game-button--secondary .u-100th-game-button__link:hover::after,
.u-100th-game-button--secondary .u-100th-game-button__link:focus-visible::after {
  background-color: var(--COLOR_BASE_LIGHT);
}

/*----------- アンカーリンク ------------*/
.u-100th-game-anchor {
  padding: 24px;
  background-color: var(--COLOR_BASE_LIGHT);
  border: 1px solid var(--COLOR_BORDER);
  border-radius: 8px;
}

.u-100th-game-anchor__list {
  column-gap: 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  padding: 0;
  row-gap: 24px;
}

.u-100th-game-anchor__item {
  border-bottom: 1px solid var(--COLOR_BORDER);
  display: flex;
  flex: 0 0 calc((100% - 16px) / 2); /* column-gap分の16px*/
  padding-block: 8px 12px;
}

.u-100th-game-anchor__link {
  position: relative;
  padding-left: 26px; /* アイコン18px + 間隔8px */
  display: flex;
  color: var(--COLOR_SECONDARY);
  transition: color var(--TRANSITION);
  align-items: center;
  justify-content: center;
  width: 100%;
  font-family: var(--FONT_FAMILY_EMPHASIS);
  font-weight: var(--FONT_WEIGHT_BOLD);
  text-align: center;
}

.u-100th-game-anchor__link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 18px;
  height: 18px;
  background-image: url("/common/images/renew/100th-game/ico-anchor-link.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: translateY(-50%);
}

.u-100th-game-anchor__text {
  min-width: 0;
  text-align: center;
  line-height: 1.35;
}

.u-100th-game-anchor__link:hover,
.u-100th-game-anchor__link:focus-visible {
  color: var(--COLOR_PRIMARY);
}

.u-100th-game-anchor__link:focus-visible {
  outline-offset: -2px;
}

/*----------- 注釈テキスト ------------*/

.u-100th-game-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
  margin-top: 24px;
}

.u-100th-game-note--connect {
  margin-top: 16px !important;
}

.u-100th-game-note__item {
  display: contents;
  list-style: none;
}

.u-100th-game-note__mark,
.u-100th-game-note__text {
  font-size: 1.3rem;
}

/*----------- メディアレイアウト ------------*/
.u-100th-game-layout-media {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  margin-top: 32px;
}

.u-100th-game-layout-media__content,
.u-100th-game-layout-media__media {
  direction: ltr;
}

.u-100th-game-layout-media__content > :first-child,
.u-100th-game-layout-media__media > :first-child {
  margin-top: 0;
}

.u-100th-game-layout-media__content > :last-child,
.u-100th-game-layout-media__media > :last-child {
  margin-bottom: 0;
}

/*----------- レイアウト ------------*/
.u-100th-game-layout {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.u-100th-game-layout > * {
  height: 100%;
}

.u-100th-game-layout[data-column-sp='2'] {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}


.u-100th-game-layout[data-column-sp='4'] {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.u-100th-game-layout__item > :first-child {
  margin-top: 0;
}

.u-100th-game-layout__item > :last-child {
  margin-bottom: 0;
}

.u-100th-game-layout__item .u-100th-game-media__img {
  width: 100%;
}

/*----------- 記述リスト ------------*/
.u-100th-game-list-description {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.u-100th-game-list-description__item {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
}


.u-100th-game-list-description__title {
  font-weight: var(--FONT_WEIGHT_BOLD);
}

/*--------------------- SP時（共通） ----------------------*/
@media screen and (max-width: 767px) {

  /*----------- テーブル ------------*/
  .u-100th-game-table--columnSP :where(
    .u-100th-game-table__table,
    .u-100th-game-table__head,
    .u-100th-game-table__body,
    .u-100th-game-table__row,
    .u-100th-game-table__cell
  ) {
    display: block;
    width: 100%;
  }
}

/*--------------------- PC時（共通） ----------------------*/
@media screen and (min-width: 768px) {
  .u-100th-game-br-sp {
    display: inline;
  }

  .u-100th-game-br-pc {
    display: block;
  }

  .u-100th-game-display-none-sp {
    display: inline;
  }

  /*----------- 見出し ------------*/
  .u-100th-game-heading-level2 {
    margin-top: 80px;
  }

  .u-100th-game-heading-level2__title {
    font-size: 3.6rem;
    line-height: 1.4;
  }
  
  .u-100th-game-heading-level2__subtitle {
    font-size: 1.4rem;
    line-height: 1.4;
  }

  .u-100th-game-heading-level3 {
    margin-top: 48px;
  }

  .u-100th-game-heading-level3__title {
    font-size: 2.8rem;
    line-height: 1.4;
  }

  .u-100th-game-heading-level3__subtitle {
    font-size: 2.2rem;
    line-height: 1.4;
  }

  /*----------- テーブル ------------*/
  .u-100th-game-table {
    margin-top: 48px;
  }

  .u-100th-game-table__cell {
    padding: 16px 24px;
  }

  /*----------- テキスト ------------*/
  .u-100th-game-text {
    margin-top: 32px;
  }

  /*----------- メディア ------------*/
  .u-100th-game-media {
    margin-top: 40px;
  }

  .u-100th-game-media--captionWidePC .u-100th-game-media__caption {
    margin: 12px auto 0;
  }

  .u-100th-game-media__caption {
    font-size: 1.6rem;
  }

  /*----------- ボタン ------------*/
  .u-100th-game-button-list {
    gap: 40px;
  }

  .u-100th-game-button-list--single {
    justify-content: flex-start;
  }

  /*----------- アンカーリンク ------------*/

  .u-100th-game-anchor__list {
    gap: 0;
  }
  
  .u-100th-game-anchor__link {
    padding-left: 28px; /* アイコン18px + 間隔10px */
  }

  .u-100th-game-anchor {
    padding: 32px;
  }

  .u-100th-game-anchor__item {
    border-bottom: none;
    flex: 0 1 max(202px, calc(100% / 6));
    padding-block: 24px;
    padding-inline: 22px;
  }

  .u-100th-game-anchor__text{
    line-height: 1.4;
  }

  /*----------- 注釈テキスト ------------*/
  .u-100th-game-note {
    margin-top: 32px;
  }

  /*----------- メディアレイアウト ------------*/
  .u-100th-game-layout-media {
    grid-template-columns: minmax(0, auto) fit-content(50%);
    margin-top: 64px;
  }

  .u-100th-game-layout-media--rowReversePC {
    direction: rtl;
  }

  .u-100th-game-layout-media--gapWidePC {
    gap: 36px;
  }

  /*----------- レイアウト ------------*/
  .u-100th-game-layout {
    gap: 40px;
  }

  .u-100th-game-layout[data-column-pc='2'] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .u-100th-game-layout[data-column-pc='4'] {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/*--------------------- 1000pxより大きい時 ----------------------*/
@media screen and (min-width: 1001px) {
  .u-100th-game-table--single {
    display: none;
  }
}

/*----------------------------------- セクション固有 --------------------------------------*/
/*---------------------------- mv -----------------------------*/
.u-100th-game-mv__img {
  width: 100%;
}

/*-------------------------- message --------------------------*/
.u-100th-game-message {
  display: grid;
  position: relative;
  isolation: isolate;
  grid-template-columns: 1fr minmax(auto, 1280px) 1fr;
  column-gap: 15px;
  background-image: url("/common/images/renew/100th-game/bg-01.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

  .u-100th-game-message::after {
    content: "";
    position: absolute;
    z-index: 0;
    inset: 0;
    background-image: url("/common/images/renew/100th-game/bg-02.png");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: auto 1030px;
    pointer-events: none;
  }

.u-100th-game-message__inner {
  position: relative;
  z-index: var(--Z_INDEX_UPPER_LAYER);
  grid-column: 2/3;
  padding-top: 48px;
  padding-bottom: 40px;
}

.u-100th-game-message-lead {
  color: var(--COLOR_SECONDARY);
  font-family: var(--FONT_FAMILY_EMPHASIS);
  font-size: 2rem;
  font-weight: var(--FONT_WEIGHT_SEMIBOLD);
  line-height: 2;
  text-align: center;
}

.u-100th-game-message-lead__highlight {
  color: var(--COLOR_PRIMARY);
  font-size: 4rem;
  font-weight: var(--FONT_WEIGHT_BOLD);
  line-height: 1;
}

.u-100th-game-message-text {
  margin-top: 24px;
  text-align: center;
}

.u-100th-game-message-text__item {
  font-family: var(--FONT_FAMILY_EMPHASIS);
  font-size: 1.6rem;
  line-height: 2;
}

@media screen and (min-width: 768px) {
  .u-100th-game-message {
    overflow: hidden; /*背景画像の飛び出し防止*/
  }

  .u-100th-game-message::after {
    background-size: 100% auto;
  }

  .u-100th-game-message__inner {
    padding-top: 64px;
    padding-bottom: 80px;
  }

  .u-100th-game-message-lead {
    font-size: 2.4rem;
  }

  .u-100th-game-message-lead__highlight {
    font-size: 4.8rem;
  }

  .u-100th-game-message-text {
    margin-top: 10px;
    padding: 0;
  }

  .u-100th-game-message-text__item {
    font-size: 1.8rem;
    letter-spacing: 0.1em;
  }
  
}

/*------------------------ Ticket Info -----------------------*/
.u-100th-game-ticket {
  display: grid;
  position: relative;
  grid-template-columns: 1fr minmax(auto, 1280px) 1fr;
  column-gap: 15px;
  background-color: var(--COLOR_BACKGROUND);
}

.u-100th-game-ticket__inner {
  position: relative;
  grid-column: 2/3;
  padding-top: 56px;
  padding-bottom: 40px;
}

.u-100th-game-ticket__inner > :first-child {
  margin-top: 0;
}

.u-100th-game-ticket-tables {
  display: none;
}

.u-100th-game-ticket__seat {
  display: flex;
  align-items: center;
  column-gap: 12px;
}

.u-100th-game-ticket__seat-icon {
  display: block;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
}
.u-100th-game-ticket__seat-name {
  min-width: 0;
}

.u-100th-game-ticket-list {
  display: grid;
  margin-top: 24px;
  row-gap: 8px;
}

.u-100th-game-ticket-list > * {
  height: 100%;
}

.u-100th-game-ticket-list__item {
  list-style: none;
  padding-left: 12px;
  position: relative;
}

.u-100th-game-ticket-list__item::before {
  background-color: var(--COLOR_SECONDARY);
  border-radius: 50%;
  content: '';
  display: block;
  height: 4px;
  left: 0;
  position: absolute;
  top: 0.8em;
  width: 4px;
}

@media screen and (min-width: 768px) {
  .u-100th-game-ticket__inner {
    padding-top: 120px;
    padding-bottom: 80px;
  }

  .u-100th-game-ticket-tables > .u-100th-game-table {
    margin-top: 0;
  }

  .u-100th-game-ticket__seat {
    column-gap: 20px;
  }
}

@media screen and (min-width: 1001px) {
  .u-100th-game-ticket-tables {
    align-items: start;
    column-gap: 40px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 48px;
  }
}

/*-------------------------- contents -------------------------*/
.u-100th-game-contents {
  display: grid;
  position: relative;
  grid-template-columns: 1fr minmax(auto, 1280px) 1fr;
  column-gap: 15px;
  background-image: url("/common/images/renew/100th-game/bg-01.jpg");
  background-repeat: repeat-y;
  background-size: 100% auto;
  background-position: center top;
}

.u-100th-game-contents__inner {
  position: relative;
  grid-column: 2/3;
  padding-top: 48px;
  padding-bottom: 40px;
}

@media screen and (min-width: 768px) {
  .u-100th-game-contents__inner {
    padding-top: 80px;
    padding-bottom: 120px;
  }
}

/*--------------------------- players -------------------------*/
.u-100th-game-players__text {
  font-size: 1.3rem;
  text-align: right;
  margin-top: 16px;
}

.u-100th-game-players-team {
  margin-top: 8px;
}

.u-100th-game-players-team--swallows {
  margin-top: 32px;
}

.u-100th-game-players-team__label {
  margin: 0;
  padding: 8px 16px;
  color: var(--COLOR_FONT_SECONDARY);
  background-color: var(--COLOR_SECONDARY);
  font-weight: var(--FONT_WEIGHT_BOLD);
  font-family: var(--FONT_FAMILY_EMPHASIS);
  font-size: 1.8rem;
  line-height: 1.35;
}

.u-100th-game-players-team__head {
  padding-top: 16px;
}

.u-100th-game-players-team__title {
  display: flex;
  align-items: center;
  column-gap: 16px;
  margin: 0;
  color: var(--COLOR_SECONDARY);
  font-family: var(--FONT_FAMILY_EMPHASIS);
  font-size: 3.6rem;
  font-weight: var(--FONT_WEIGHT_BOLD);
  line-height: 1.35;
}

.u-100th-game-players-team__title-swallows {
  font-size: 2.5rem;
}

.u-100th-game-players-team__title-logo {
  display: block;
  flex: 0 0 64px;
  width: 64px;
  height: auto;
  order: -1;
}

.u-100th-game-players-team__title-logo--swallows {
  flex: 0 0 54px;
  width: 54px;
  height: auto;
}

.u-100th-game-players-team__universities {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-content: end;
  gap: 4px;
  margin: 12px 0 0;
  padding: 0;
  width: 100%;
}

.u-100th-game-players-team__university {
  min-width: 0;
}

.u-100th-game-players-team__university-logo {
  display: block;
  width: 100%;
  height: auto;
}

.u-100th-game-players__accordion {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  margin-top: 24px;
}

.u-100th-game-players__accordion-item {
  border: 1px solid var(--COLOR_BORDER);
  overflow: hidden;
}

.u-100th-game-players__accordion-item::details-content {
  display: grid;
  transition:
    grid-template-rows var(--TRANSITION),
    content-visibility var(--TRANSITION) allow-discrete;
}

.u-100th-game-players__accordion-item:not([open])::details-content {
  content-visibility: hidden;
  grid-template-rows: 0fr;
}

.u-100th-game-players__accordion-item[open]::details-content {
  content-visibility: visible;
  grid-template-rows: 1fr;
}

.u-100th-game-players__accordion-summary {
  position: relative;
  display: flex;
  align-items: center;
  column-gap: 16px;
  padding-block: 8px;
  padding-inline: 16px 74px;
  background-color: var(--COLOR_BASE_LIGHT);
  cursor: pointer;
  list-style: none;
}

.u-100th-game-players__accordion-summary::-webkit-details-marker {
  display: none;
}

.u-100th-game-players__accordion-summary::before,
.u-100th-game-players__accordion-summary::after {
  content: "";
  position: absolute;
  inset-block: 0;
  display: block;
  margin-block: auto;
  background-color: var(--COLOR_SECONDARY);
}

.u-100th-game-players__accordion-summary::before {
  right: 15px;
  width: 14px;
  height: 2px;
}

.u-100th-game-players__accordion-summary::after {
  right: 21px;
  width: 2px;
  height: 14px;
  transition: transform var(--TRANSITION);
}

.u-100th-game-players__accordion-item[open] .u-100th-game-players__accordion-summary::after {
  transform: rotate(90deg);
}

.u-100th-game-players__accordion-title {
  font-size: 1.8rem;
  font-weight: var(--FONT_WEIGHT_BOLD);
  font-family: var(--FONT_FAMILY_EMPHASIS);
  line-height: 1.35;
}

.u-100th-game-players__accordion-content {
  overflow: hidden;
}

.u-100th-game-players__accordion-content-wrapper {
  border-top: 1px solid var(--COLOR_BORDER);
  background-color: var(--COLOR_BASE_LIGHT);
  padding-block: 28px;
  padding-inline: 10px;
}

.u-100th-game-players__accordion-content-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px 12px;
  margin: 0;
  padding: 0;
}

.u-100th-game-players__card {
  min-width: 0;
}
.u-100th-game-players__card-img {
  display: block;
  width: 100%;
  height: auto;
}

.u-100th-game-players__card-body {
  margin-top: 8px;
}
.u-100th-game-players__card-name {
  color: var(--COLOR_PRIMARY);
  font-weight: var(--FONT_WEIGHT_BOLD);
  margin-top: 2px;
}

@media screen and (min-width: 768px) {
  .u-100th-game-players__text {
    font-size: 1.5rem;
    margin-top: 24px;
  }

  .u-100th-game-players-team {
    margin-top: 16px;
  }

  
  .u-100th-game-players-team--swallows {
    margin-top: 48px;
  }

  .u-100th-game-players-team__label {
    font-size: 2.2rem;
    padding: 8px 16px;
    line-height: 1.4;
  }

  .u-100th-game-players-team__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 32px;
    padding-top: 24px;
  }

  .u-100th-game-players-team__title {
    flex: 0 0 auto;
    column-gap: 20px;
    font-size: 4.8rem;
    line-height: 1.4;
  }

  .u-100th-game-players-team__title-logo {
    flex-basis: 76px;
    width: 76px;
    height: auto;
  }

  .u-100th-game-players-team__title-logo--swallows {
    flex-basis: 75px;
    width: 75px;
    height: auto;
  }

  .u-100th-game-players-team__universities {
    grid-template-columns: repeat(6, minmax(0, 80px));
    gap: 8px;
    margin-top: 0;
  }

  .u-100th-game-players__accordion {
    margin-top: 40px;
  }

  .u-100th-game-players__accordion-title {
    font-size: 2.2.rem;
    line-height: 1.4;
  }

  .u-100th-game-players__accordion-content-wrapper {
    padding-inline: 28px;
  }

  .u-100th-game-players__accordion-content-inner {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px;
  }
}

/*------------------------- performers ------------------------*/
.u-100th-game-performers {
  background-color: var(--COLOR_BASE_LIGHT);
  border: 1px solid var(--COLOR_BORDER);
  border-radius: 8px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
  padding: 16px 12px;
}

.u-100th-game-performers > .u-100th-game-media {
  min-width: 0;
  margin-top: 0;
}

.u-100th-game-performers .u-100th-game-media__wrap {
  width: 100%;
  table-layout: fixed;
}

.u-100th-game-performers .u-100th-game-media__caption {
  margin-top: 8px;
}

.u-100th-game-performers-schedule {
  display: flex;
  flex-direction: column;
  margin-top: 32px;
  row-gap: 24px;
}

.u-100th-game-performers-schedule__item {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--COLOR_BORDER);
}

.u-100th-game-performers-schedule__time {
  flex: 0 0 auto;
}

.u-100th-game-performers-schedule__time-text {
  background-color: var(--COLOR_PRIMARY);
  color: var(--COLOR_BASE_LIGHT);
  display: inline-block;
  font-family: var(--FONT_FAMILY_EMPHASIS);
  font-weight: var(--FONT_WEIGHT_BOLD);
  min-width: 119px;
  padding: 4px 16px;
  text-align: center;
}

.u-100th-game-performers-schedule__body {
  min-width: 0;
}

.u-100th-game-performers-schedule__title {
  margin: 0;
  color: var(--COLOR_SECONDARY);
  font-family: var(--FONT_FAMILY_EMPHASIS);
  font-size: 1.5rem;
  font-weight: var(--FONT_WEIGHT_BOLD);
}

.u-100th-game-performers-schedule__text {
  margin-top: 5px;
  line-height: 1.8;
}


@media screen and (min-width: 768px) {
  .u-100th-game-performers {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
    margin-top: 32px;
    padding: 32px 36px;
  }

  .u-100th-game-performers-schedule {
    margin-top: 48px;
  }

  .u-100th-game-performers-schedule__item {
    flex-direction: row;
    align-items: flex-start;
    column-gap: clamp(24px, calc(24px + (100vw - 768px) * 96 / 512), 120px);
    padding-bottom: 24px;
  }

  .u-100th-game-performers-schedule__time {
    flex: 0 0 131px;
  }

  .u-100th-game-performers-schedule__time-text {
    display: block;
    width: 100%;
  }

  .u-100th-game-performers-schedule__title {
    font-size: 1.8rem;
  }
}

/*--------------------------- video ---------------------------*/
.u-100th-game-video {
  margin-top: 32px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.u-100th-game-video__inner {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-color: #000;
}
.u-100th-game-video__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media screen and (min-width: 768px) {
  .u-100th-game-video {
    margin-top: 48px;
  }
}

/*-------------------------- archives ------------------------*/
.u-100th-game-archive {
  background-color: var(--COLOR_BASE_LIGHT);
  border: 1px solid var(--COLOR_BORDER);
  border-radius: 8px;
  margin-top: 32px;
  padding: 24px 12px;
}

.u-100th-game-archive__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.u-100th-game-archive__list .u-100th-game-media {
  margin-top: 0;
  min-width: 0;
}

.u-100th-game-archive .u-100th-game-media__wrap {
  width: 100%;
  table-layout: fixed;
}

.u-100th-game-archive .u-100th-game-media__caption {
  margin-top: 8px;
}

.u-100th-game-archive__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 24px;
  row-gap: 32px;
  margin-top: 24px;
  padding: 0;
}

.u-100th-game-archive__link {
  display: flex;
  align-items: center;
  column-gap: 6px;
  color: var(--COLOR_FONT);
  font-weight: var(--FONT_WEIGHT_BOLD);
  font-size: 1.6rem;
  text-decoration: underline;
  transition: color var(--TRANSITION);
}

.u-100th-game-archive__link::after {
  content: "";
  flex: 0 0 15px;
  width: 15px;
  height: 17px;
  background-image: url("/common/images/renew/100th-game/ico-pdf.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.u-100th-game-archive__link:hover,
.u-100th-game-archive__link:focus-visible {
  text-decoration: none;
  color: var(--COLOR_PRIMARY);
}

@media screen and (min-width: 768px) {
  .u-100th-game-archive {
    padding: 32px 36px;
  }

  .u-100th-game-archive__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 36px;
  }

  .u-100th-game-archive__links {
    column-gap: 48px;
  }
}


/*----------------------------------- footer --------------------------------------*/
.u-100th-game-footer {
  position: relative;
}

.u-100th-game-footer__top {
  position: absolute;
  top: -16px;
  right: 15px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  z-index: var(--Z_INDEX_UPPER_LAYER);
}

.u-100th-game-footer__share {
  border-top: 1px solid #D9D9D9;
  display: grid;
  grid-template-columns: 1fr minmax(auto, 1280px) 1fr;
  column-gap: 15px;
  padding: 12px 0;
}

.u-100th-game-footer__share-container {
  grid-column: 2/3;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 12px;
}

.u-100th-game-footer__share-text {
  font-family: var(--FONT_FAMILY_EMPHASIS);
  font-weight: var(--FONT_WEIGHT_BOLD);
}

.u-100th-game-footer__share-icon {
  display: flex;
  column-gap: 8px;
}

.u-100th-game-footer__share-img {
  display: block;
  width: 30px;
  height: auto;
}

.u-100th-game-footer__brand {
  background-color: var(--COLOR_SECONDARY);
  column-gap: 15px;
  display: grid;
  grid-template-columns: 1fr minmax(auto, 1280px) 1fr;
}

.u-100th-game-footer__brand-container {
  grid-column: 2/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 24px;
  padding: 40px 0;
}

.u-100th-game-footer__brand-logo {
  align-items: center;
  column-gap: 10px;
  display: flex;
  flex: 0 0 auto;
  justify-content: center;
  min-width: 0;
}

.u-100th-game-footer__brand-logo::before {
  background-color: var(--COLOR_BASE_LIGHT);
  content: "";
  flex: 0 0 1px;
  height: 38px;
  order: 1;
  width: 1px;
}

.u-100th-game-footer__brand-img {
  display: block;
  width: auto;
  height: 38px;
}

.u-100th-game-footer__brand-img:first-child {
  order: 0;
}
.u-100th-game-footer__brand-img:last-child {
  order: 2;
}

.u-100th-game-footer__brand-copyright {
  color: var(--COLOR_BASE_LIGHT);
  font-family: var(--FONT_FAMILY_COPYRIGHT);
  font-size: 1rem;
  flex: 0 1 auto;
}

@media screen and (min-width: 1024px) {
  .u-100th-game-footer__top {
    top: -20px;
    right: max(15px, calc((100% - 1280px) / 2));
    width: 40px;
    height: 40px;
    transition: opacity var(--TRANSITION);
  }

  .u-100th-game-footer__top:hover {
    opacity: .5;
  }

  .u-100th-game-footer__share {
    padding: 24px 0;
  }

  .u-100th-game-footer__share-container {
    column-gap: 16px;
  }

  .u-100th-game-footer__share-text {
    font-size: 2.4rem;
  }

  .u-100th-game-footer__share-icon {
    column-gap: 16px;
  }

  .u-100th-game-footer__share-img {
    display: block;
    width: 41px;
    height: auto;
  }

  .u-100th-game-footer__brand {
    grid-template-columns: 1fr minmax(auto, 1280px) 1fr;
    column-gap: 40px;
  }

  .u-100th-game-footer__brand-container {
    flex-direction: row;
    justify-content: space-between;
    row-gap: 40px;
    padding: 40px 0;
  }

  .u-100th-game-footer__brand-logo {
    column-gap: 16px;
  }

  .u-100th-game-footer__brand-logo::before {
    height: 40px;
  }

  .u-100th-game-footer__brand-img {
    height: 55px;
  }

  .u-100th-game-footer__brand-copyright {
    font-size: 1.4rem;
    font-weight: var(--FONT_WEIGHT_SEMIBOLD);
  }
}