@charset "UTF-8";
/* -------------------------------------
    Foundation
------------------------------------- */
/* -------------------------------------
    Reset
------------------------------------- */
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  min-height: 0;
}

body {
  max-width: 100vw;
  margin: 0;
  overflow-x: hidden;
}

main {
  overflow-x: hidden;
}

ul,
ol,
li,
dl,
dt,
dd {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: var(--font-weight-default);
  margin: 0;
}

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

button {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

:root {
  /* ---------------------------------------
      color
  ---------------------------------------- */
  --color-background: #ffffff;
  --color-background-subtle: #ECECEC;
  --color-gray: #B6B6B6;
  --color-foreground-subtle: #555555;
  --color-foreground: #000000;
  --color-theme: #CE0000;
  --color-link: #1F00EA;
  --color-alert: #C23838;
  --color-press: #B886E0;
  --color-news: #7097DA;
  --color-feature: #4CB4A2;
  --color-game: #E97476;
  --color-event: #B7A45B;
  /* ---------------------------------------
      font-size
  ---------------------------------------- */
  /* window幅が767pxの時に最小値になるように設定 */
  --font-size-lv1: clamp(40px, 5.22vw, 48px);
  --font-size-lv2: clamp(32px, 4.69vw, 40px);
  --font-size-lv3: clamp(24px, 3.13vw, 32px);
  --font-size-lv4: clamp(20px, 2.61vw, 24px);
  --font-size-lv5: clamp(16px, 2.09vw, 20px);
  --font-size-base: clamp(14px, 1.83vw, 16px);
  --font-size-lv6: clamp(12px, 1.56vw, 14px);
  --font-size-lv7: clamp(10px, 1.3vw, 12px);
  --font-size-lv8: 10px;
  /* ---------------------------------------
      font-family
  ---------------------------------------- */
  --font-family-jp: "Noto Sans JP", sans-serif;
  --font-family-en: "Reem Kufi", sans-serif;
  --font-family-num: "Bebas Neue", sans-serif;
  /* ---------------------------------------
      font-weight
  ---------------------------------------- */
  --font-weight-default: 500;
  --font-weight-bold: bold;
  --font-weight-light: 300;
  /* ---------------------------------------
      letter-spacing
  ---------------------------------------- */
  --letter-spacing-default: calc(var(--font-size-base) * 0.05);
  --letter-spacing-wide: 0.1em;
  /* ---------------------------------------
      border-radius
  ---------------------------------------- */
  --border-radius-default: 10px;
  --border-radius-full: 999px;
  --border-radius-button: 99px;
  /* ---------------------------------------
      transition
  ---------------------------------------- */
  --transition-default: all 0.2s ease-in-out;
  /* ---------------------------------------
      header-height
  ---------------------------------------- */
  --header-height: 180px;
  --header-height-sp: 90px;
}

/* -------------------------------------
    breakpoint定義

    pc-L: 1800-
    default: 1280-1799
    pc-S: 1024-1279
    tab: 768-1023
    sp: -767

------------------------------------- */
/* -------------------------------------
    Basic Style
------------------------------------- */
body {
  background: var(--color-background);
  color: var(--color-foreground);
  font-size: var(--font-size-base);
  font-family: var(--font-family-jp);
  font-weight: var(--font-weight-default);
  letter-spacing: var(--letter-spacing-default);
  position: relative;
  -webkit-font-smoothing: antialiased;
}

a,
button {
  cursor: pointer;
  transition: var(--transition-default);
}

img {
  width: 100%;
  max-width: 600px;
  display: block;
  margin: auto;
  margin-top: 40px;
}

/* -------------------------------------
    Layout
------------------------------------- */
.l-main {
  padding-top: var(--header-height);
  min-height: calc(100svh - var(--header-height));
}
@media (max-width: 1023px) {
  .l-main {
    padding-top: var(--header-height-sp);
  }
}
.l-main.subpage {
  padding-bottom: 30px;
}

.l-section {
  padding: 40px 0;
}
@media (max-width: 1023px) {
  .l-section {
    padding: 30px 0;
  }
}

.l-container {
  width: 100%;
  margin: auto;
  max-width: 1160px;
  padding: 0 20px;
}
@media (max-width: 1023px) {
  .l-container {
    width: 90%;
  }
}
@media (max-width: 767px) {
  .l-container {
    width: 100%;
    max-width: 500px;
  }
}

.page-index .l-container {
  max-width: 1240px;
}

.l-title {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .l-title {
    margin-bottom: 20px;
  }
}
.l-title.flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.l-button {
  margin-top: 20px;
}
.l-button.right {
  display: flex;
  justify-content: flex-end;
}
.l-button.center {
  display: flex;
  justify-content: center;
}
.l-button.flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.l-breadcrumb {
  padding-top: 20px;
}

.l-filter {
  padding-top: 40px;
}
@media (max-width: 1023px) {
  .l-filter {
    padding-top: 20px;
  }
}

.l-tab {
  margin-top: 60px;
}
@media (max-width: 1023px) {
  .l-tab {
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .l-tab {
    margin-top: 30px;
  }
}

.l-pager {
  margin-top: 40px;
}

/* -------------------------------------
    Component
------------------------------------- */
.o-article .data,
.o-article-detail .data {
  display: flex;
  align-items: center;
}
.o-article .data .category,
.o-article-detail .data .category {
  width: 130px;
  padding: 5px;
  text-align: center;
  color: var(--color-background);
  font-size: var(--font-size-lv7);
  line-height: 1;
  white-space: nowrap;
}
@media (max-width: 1023px) {
  .o-article .data .category,
  .o-article-detail .data .category {
    width: clamp(6.875rem, 3.125rem + 7.81vw, 8.125rem);
  }
}
.o-article .data .category.press,
.o-article-detail .data .category.press {
  background: var(--color-press);
}
.o-article .data .category.news,
.o-article-detail .data .category.news {
  background: var(--color-news);
}
.o-article .data .category.feature,
.o-article-detail .data .category.feature {
  background: var(--color-feature);
}
.o-article .data .category.game,
.o-article-detail .data .category.game {
  background: var(--color-game);
}
.o-article .data .category.event,
.o-article-detail .data .category.event {
  background: var(--color-event);
}
.o-article .data time,
.o-article-detail .data time {
  font-family: var(--font-family-num);
}

/* ---------------------------------------
    TOP, 一覧
---------------------------------------- */
.o-article {
  color: var(--color-foreground-subtle);
}
.o-article .title {
  font-size: var(--font-size-lv6);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  overflow: hidden;
}
.o-article.index-news.under3 {
  display: flex;
  gap: 20px;
}
@media (max-width: 767px) {
  .o-article.index-news.under3 {
    flex-direction: column;
  }
}
.o-article.index-news.under3 .m-article {
  width: calc((100% - 40px) / 3);
}
@media (max-width: 767px) {
  .o-article.index-news.under3 .m-article {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .o-article.index-news.under3 .m-article article {
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }
}
.o-article.index-news.under3 .m-article article .thumbnail img {
  display: block;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: var(--border-radius-default) var(--border-radius-default) 0px 0px;
}
@media (max-width: 767px) {
  .o-article.index-news.under3 .m-article article .thumbnail img {
    border-radius: var(--border-radius-default);
    max-width: 150px;
  }
}
.o-article.index-news.under3 .m-article article .text-group {
  background: var(--color-background);
  padding: 10px;
}
@media (max-width: 767px) {
  .o-article.index-news.under3 .m-article article .text-group {
    padding: 0;
    width: calc(100% - 10px - 150px);
    min-width: 175px;
    height: 100px;
  }
}
.o-article.index-news.under3 .m-article article .text-group .data,
.o-article.index-news.under3 .m-article article .text-group .title {
  max-width: 240px;
  width: 100%;
  margin: auto;
}
@media (max-width: 767px) {
  .o-article.index-news.under3 .m-article article .text-group .data,
  .o-article.index-news.under3 .m-article article .text-group .title {
    max-width: unset;
  }
}
.o-article.index-news.under3 .m-article article .text-group .data {
  justify-content: space-between;
}
@media (max-width: 767px) {
  .o-article.index-news.under3 .m-article article .text-group .data {
    gap: 5px;
  }
}
.o-article.index-news.under3 .m-article article .text-group .data time {
  font-size: var(--font-size-lv5);
  letter-spacing: calc(var(--font-size-lv5) * 0.05);
  font-weight: lighter;
}
.o-article.index-news.under3 .m-article article .text-group .title {
  height: calc(var(--font-size-lv6) * 1.5 * 2);
  box-sizing: content-box;
  margin-top: 10px;
  border-top: 1px solid silver;
  padding-top: 10px;
}
@media (max-width: 767px) {
  .o-article.index-news.under3 .m-article article .text-group .title {
    -webkit-line-clamp: 3;
  }
}
.o-article.index-news.under3 .m-article article .text-group:has(.category.press) {
  border-bottom: 2px solid var(--color-press);
}
.o-article.index-news.under3 .m-article article .text-group:has(.category.news) {
  border-bottom: 2px solid var(--color-news);
}
.o-article.index-news.under3 .m-article article .text-group:has(.category.feature) {
  border-bottom: 2px solid var(--color-feature);
}
.o-article.index-news.under3 .m-article article .text-group:has(.category.game) {
  border-bottom: 2px solid var(--color-game);
}
.o-article.index-news.under3 .m-article article .text-group:has(.category.event) {
  border-bottom: 2px solid var(--color-event);
}
.o-article.index-news.over4 {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .o-article.index-news.over4 {
    display: none;
  }
}
.o-article.index-news.over4, .o-article.list-page {
  border-bottom: 1px solid var(--color-foreground-subtle);
}
.o-article.index-news.over4 .m-article, .o-article.list-page .m-article {
  border-top: 1px solid var(--color-foreground-subtle);
}
.o-article.index-news.over4 .m-article article, .o-article.list-page .m-article article {
  padding: 15px 0px;
  display: flex;
  gap: 10px;
}
@media (max-width: 767px) {
  .o-article.index-news.over4 .m-article article, .o-article.list-page .m-article article {
    flex-direction: column;
  }
}
.o-article.index-news.over4 .m-article article .data, .o-article.list-page .m-article article .data {
  gap: 10px;
}
.o-article.index-news.over4 .m-article article .title, .o-article.list-page .m-article article .title {
  -webkit-line-clamp: 1;
}

/* ---------------------------------------
    詳細
---------------------------------------- */
.o-article-detail .title-area:has(.category.press) {
  border-bottom: 3px solid var(--color-press);
}
.o-article-detail .title-area:has(.category.news) {
  border-bottom: 3px solid var(--color-news);
}
.o-article-detail .title-area:has(.category.feature) {
  border-bottom: 3px solid var(--color-feature);
}
.o-article-detail .title-area:has(.category.game) {
  border-bottom: 3px solid var(--color-game);
}
.o-article-detail .title-area:has(.category.event) {
  border-bottom: 3px solid var(--color-event);
}
.o-article-detail .title-area .data {
  gap: 10px;
}
.o-article-detail .title-area .data time {
  font-size: var(--font-size-lv4);
  letter-spacing: calc(var(--font-size-lv4) * 0.05);
  color: var(--color-foreground-subtle);
}
.o-article-detail .title-area .title {
  padding: 15px 0;
  font-size: var(--font-size-lv4);
  font-weight: var(--font-weight-light);
}
.o-article-detail .thumbnail {
  max-width: 900px;
  width: 100%;
  margin: 40px auto 0;
}
@media (max-width: 1023px) {
  .o-article-detail .thumbnail {
    margin-top: 20px;
  }
}
.o-article-detail .contents {
  margin-bottom: 60px;
}
.o-article-detail .contents p {
  margin-top: 20px;
  font-size: var(--font-size-lv6);
  font-weight: var(--font-weight-light);
}
.o-article-detail .contents h1 {
  margin-top: 40px;
  padding: 10px 0;
  border-bottom: 1px solid var(--color-foreground);
  font-size: var(--font-size-lv4);
}
.o-article-detail .contents h2 {
  margin-top: 30px;
  font-size: var(--font-size-lv5);
  color: var(--color-theme);
  font-weight: 500;
}
.o-article-detail .contents h3 {
  margin-top: 40px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--color-gray);
}
.o-article-detail .contents h4, .o-article-detail .contents h5, .o-article-detail .contents h6 {
  margin-top: 20px;
}
.o-article-detail .contents img {
  max-width: 600px;
  width: 100%;
  display: block;
  margin: auto;
  margin-top: 40px;
}
.o-article-detail .contents a {
  color: var(--color-link);
}
.o-article-detail .contents blockquote {
  margin-top: 20px;
  padding: 20px;
  background: rgba(206, 0, 0, 0.05);
}
.o-article-detail .contents blockquote p {
  margin-top: 0;
  padding-left: 30px;
  border-left: 3px solid var(--color-gray);
}
.o-article-detail .contents strong {
  font-weight: var(--font-weight-bold);
}
.o-article-detail .contents em {
  font-style: italic;
}
.o-article-detail .contents table {
  margin-top: 40px;
}
.o-article-detail .contents table td {
  border: 1px solid var(--color-gray);
  padding: 5px 10px;
}
.o-article-detail .sns-share {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .o-article-detail .a-button {
    min-width: unset;
  }
  .o-article-detail .a-button.arrow {
    padding: 0 25px 0 10px;
  }
  .o-article-detail .a-button.arrow.back {
    padding: 0 10px 0 25px;
  }
}

.a-button {
  min-width: 130px;
  min-height: 36px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 20px;
  box-sizing: border-box;
  border-radius: var(--border-radius-button);
  font-size: var(--font-size-lv6);
  line-height: 1;
  letter-spacing: 0.8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  /* ---------------------------------------
      icon
  ---------------------------------------- */
  /* ---------------------------------------
      color
  ---------------------------------------- */
  /* ---------------------------------------
      outline
  ---------------------------------------- */
  /* ---------------------------------------
      square
  ---------------------------------------- */
}
.a-button.ex::after {
  content: url(../img/common/icon-ex.svg);
}
.a-button.arrow::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  transform: rotate(45deg);
  border-top: 2px solid var(--color-background);
  border-right: 2px solid var(--color-background);
}
.a-button.primary {
  background: var(--color-theme);
  color: var(--color-background);
}
.a-button.primary:hover {
  background: var(--color-foreground);
}
.a-button.secondary {
  background: var(--color-foreground-subtle);
  color: var(--color-background);
}
.a-button.secondary:hover {
  background: rgba(85, 85, 85, 0.6);
}
.a-button.outline {
  background: var(--color-background);
}
.a-button.outline.primary {
  border: solid 1px var(--color-theme);
  color: var(--color-theme);
}
.a-button.outline.primary:hover {
  background: #FAE5E5;
}
.a-button.outline.primary.ex::after {
  content: url(../img/common/icon-ex-red.svg);
}
.a-button.outline.secondary {
  border: solid 1px var(--color-foreground-subtle);
  color: var(--color-foreground-subtle);
}
.a-button.outline.secondary:hover {
  background: #EEEEEE;
}
.a-button.outline.secondary.ex::after {
  content: url(../img/common/icon-ex-gray.svg);
}
.a-button.outline.secondary.arrow {
  position: relative;
  justify-content: left;
}
.a-button.outline.secondary.arrow::after {
  border-top: 2px solid var(--color-theme);
  border-right: 2px solid var(--color-theme);
  position: absolute;
  right: 15px;
}
.a-button.outline.secondary.arrow.back {
  justify-content: center;
}
.a-button.outline.secondary.arrow.back::after {
  transform: rotate(-135deg);
  position: absolute;
  left: 15px;
}
.a-button.square {
  border-radius: 0;
  padding: 0 15px;
  justify-content: left;
  font-size: var(--font-size-lv7);
  position: relative;
}
.a-button.square.primary:hover {
  background: rgba(206, 0, 0, 0.5019607843);
}
.a-button.square.secondary {
  background: var(--color-foreground);
}
.a-button.square.secondary:hover {
  background: rgba(0, 0, 0, 0.5019607843);
}
.a-button.square.arrow::after {
  position: absolute;
  right: 15px;
}
.a-button.square.ex::after {
  position: absolute;
  right: 15px;
}

.breadcrumbs-links .breadcrumbs-list {
  display: flex;
}
.breadcrumbs-links .breadcrumbs-list .breadcrumb-item {
  font-size: var(--font-size-lv7);
}
.breadcrumbs-links .breadcrumbs-list .breadcrumb-item:not(:first-child)::before {
  content: url(../img/common/arrow-breadcrumbs.svg);
  padding: 0 10px;
}
.breadcrumbs-links .breadcrumbs-list .breadcrumb-item a {
  text-decoration: underline;
}
.breadcrumbs-links .breadcrumbs-list .breadcrumb-item a, .breadcrumbs-links .breadcrumbs-list .breadcrumb-item span {
  display: inline-block;
  max-width: 34em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.o-carousel {
  /* ---------------------------------------
      dates
  ---------------------------------------- */
  /* ---------------------------------------
      games
  ---------------------------------------- */
  /* ---------------------------------------
      kv
  ---------------------------------------- */
  /* ---------------------------------------
      highlight
  ---------------------------------------- */
}
.o-carousel.dates {
  color: var(--color-background);
  border-bottom: 1px solid var(--color-background);
  display: flex;
  justify-content: center;
  align-items: center;
}
.o-carousel.dates .swiper {
  max-width: 800px;
  margin-left: 0;
  margin-right: 0;
  width: 90%;
}
.o-carousel.dates .nav-prev,
.o-carousel.dates .nav-next {
  width: 16px;
  height: 16px;
  background-image: url(../img/common/carousel-arrow.svg);
  background-size: cover;
}
.o-carousel.dates .nav-prev {
  transform: rotate(180deg);
}
.o-carousel.dates .date-tab {
  text-align: center;
  font-size: var(--font-size-lv6);
  padding: 3px;
  cursor: pointer;
}
.o-carousel.dates .swiper-slide-active {
  background-image: url(../img/page/index-score-date-bg.svg);
  background-size: 100% 100%;
  background-position: center;
}
.o-carousel.games {
  padding: 20px 0;
  position: relative;
}
@media (max-width: 1279px) {
  .o-carousel.games {
    padding: 20px 30px;
  }
}
@media (max-width: 1023px) {
  .o-carousel.games {
    padding: 20px 0;
    overflow-x: scroll;
  }
  .o-carousel.games .swiper {
    overflow: visible;
  }
  .o-carousel.games .swiper .swiper-wrapper {
    width: -moz-fit-content;
    width: fit-content;
  }
}
.o-carousel.games .contents-wrapper {
  position: relative;
}
.o-carousel.games .nav-prev,
.o-carousel.games .nav-next {
  position: absolute;
  top: 45%;
}
@media (max-width: 1023px) {
  .o-carousel.games .nav-prev,
  .o-carousel.games .nav-next {
    display: none;
  }
}
.o-carousel.games .nav-prev::before,
.o-carousel.games .nav-next::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--color-gray);
}
.o-carousel.games .nav-prev {
  left: -10px;
}
.o-carousel.games .nav-prev::before {
  transform: rotate(-45deg);
  border-left: 2px solid var(--color-gray);
  margin-right: -2px;
}
.o-carousel.games .nav-next {
  right: -10px;
}
.o-carousel.games .nav-next::before {
  transform: rotate(45deg);
  border-right: 2px solid var(--color-gray);
  margin-left: -2px;
}
.o-carousel.kv {
  overflow: hidden;
  position: relative;
}
.o-carousel.kv .swiper {
  max-width: 850px;
  margin: auto;
  overflow: visible;
}
.o-carousel.kv .swiper .swiper-slide {
  opacity: 0.5;
}
.o-carousel.kv .swiper .swiper-slide img {
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}
.o-carousel.kv .swiper .swiper-slide-active {
  opacity: 1;
}
.o-carousel.kv .controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 15px;
  margin-top: 15px;
}
.o-carousel.kv .controls .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
}
.o-carousel.kv .controls .pagination .swiper-pagination-bullet {
  width: 5px;
  height: 5px;
  margin: 0 6px;
  opacity: 1;
  background-color: var(--color-foreground-subtle);
}
.o-carousel.kv .controls .pagination .swiper-pagination-bullet-active {
  background-color: var(--color-theme);
}
.o-carousel.kv .controls .pause {
  display: flex;
  align-items: center;
  gap: 2px;
}
.o-carousel.kv .controls .pause:before, .o-carousel.kv .controls .pause::after {
  content: "";
  display: block;
  width: 3px;
  height: 10px;
  border-radius: 2px;
  background: var(--color-theme);
}
.o-carousel.kv .controls .pause:hover::before, .o-carousel.kv .controls .pause:hover::after {
  background: var(--color-theme);
}
.o-carousel.kv .controls .pause.is-playing::before, .o-carousel.kv .controls .pause.is-playing::after {
  background: var(--color-foreground-subtle);
}
.o-carousel.kv .controls .nav-prev,
.o-carousel.kv .controls .nav-next {
  width: 16px;
  height: 16px;
  background-image: url(../img/common/carousel-arrow.svg);
  background-size: cover;
}
.o-carousel.kv .controls .nav-prev {
  transform: rotate(180deg);
}
.o-carousel.highlight {
  position: relative;
}
@media (max-width: 1023px) {
  .o-carousel.highlight {
    overflow-x: scroll;
  }
  .o-carousel.highlight .swiper {
    overflow: visible;
  }
  .o-carousel.highlight .swiper .swiper-wrapper {
    width: -moz-fit-content;
    width: fit-content;
  }
}
.o-carousel.highlight .contents-wrapper {
  position: relative;
}
.o-carousel.highlight .nav-prev,
.o-carousel.highlight .nav-next {
  position: absolute;
  z-index: 5;
  top: 40%;
  width: 40px;
  height: 40px;
  background: var(--color-background);
  border: 1px solid var(--color-gray);
  border-radius: var(--border-radius-full);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1023px) {
  .o-carousel.highlight .nav-prev,
  .o-carousel.highlight .nav-next {
    display: none;
  }
}
.o-carousel.highlight .nav-prev::before,
.o-carousel.highlight .nav-next::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--color-gray);
}
.o-carousel.highlight .nav-prev {
  left: -40px;
}
@media (max-width: 1360px) {
  .o-carousel.highlight .nav-prev {
    left: 0px;
  }
}
.o-carousel.highlight .nav-prev::before {
  transform: rotate(-45deg);
  border-left: 2px solid var(--color-gray);
  margin-right: -4px;
}
.o-carousel.highlight .nav-next {
  right: -40px;
}
@media (max-width: 1360px) {
  .o-carousel.highlight .nav-next {
    right: 0px;
  }
}
.o-carousel.highlight .nav-next::before {
  transform: rotate(45deg);
  border-right: 2px solid var(--color-gray);
  margin-left: -4px;
}

.o-filter {
  max-width: 1120px;
  width: 100%;
  margin: auto;
  padding: 15px 30px;
  background: var(--color-foreground-subtle);
  display: flex;
  gap: 60px;
}
@media (max-width: 1023px) {
  .o-filter {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .o-filter {
    padding: 15px;
    flex-direction: column;
  }
}
.o-filter.award {
  max-width: unset;
  background: var(--color-foreground);
  justify-content: flex-end;
}
.o-filter .filter-item {
  display: flex;
  align-items: center;
  gap: 5px;
}
@media (max-width: 1023px) {
  .o-filter .filter-item {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 767px) {
  .o-filter .filter-item {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.o-filter .filter-item label {
  color: var(--color-background);
  white-space: nowrap;
}
.o-filter .filter-item .select-wrap {
  position: relative;
}
.o-filter .filter-item .select-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  width: 8px;
  height: 8px;
  border: solid 2px var(--color-gray);
  border-width: 0 1px 1px 0;
  transform: translateY(-75%) rotate(45deg);
}
.o-filter .filter-item .select-wrap select {
  width: 240px;
  padding: 10px 40px 10px 20px;
  border-radius: 5px;
  appearance: none; /* Chrome, Safari用 */
  -webkit-appearance: none; /* Safari用 */
  -moz-appearance: none; /* Firefox用 */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  text-overflow: ellipsis;
  overflow: hidden;
}
.o-filter input[type=text] {
  width: 150px;
  padding: 10px 20px;
  border-radius: 5px;
  border: 1px solid var(--color-gray);
}
@media (max-width: 767px) {
  .o-filter input[type=text] {
    width: 240px;
  }
}
.o-filter .submit {
  width: -webkit-fill-available;
  width: -moz-available;
  width: stretch;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  position: relative;
}
.o-filter .submit::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  transform: rotate(45deg);
  border-top: 2px solid var(--color-theme);
  border-right: 2px solid var(--color-theme);
  position: absolute;
  right: 15px;
  bottom: 14px;
  transform: rotate(45deg);
}
.o-filter .submit input[type=submit] {
  text-align: left;
}
.o-filter.player, .o-filter.news {
  gap: 20px;
}
@media (max-width: 1023px) {
  .o-filter.player, .o-filter.news {
    flex-wrap: wrap;
  }
}
.o-filter.player .filter-item, .o-filter.news .filter-item {
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .o-filter.player .filter-item, .o-filter.news .filter-item {
    flex-direction: row;
  }
}
.o-filter.player .filter-item .select-wrap select, .o-filter.news .filter-item .select-wrap select {
  width: 150px;
}
@media (max-width: 767px) {
  .o-filter.player .filter-item .select-wrap select, .o-filter.news .filter-item .select-wrap select {
    width: 240px;
  }
}

.o-footer {
  background: var(--color-foreground);
  padding-bottom: 40px;
}
@media (max-width: 1023px) {
  .o-footer {
    padding-bottom: 140px;
  }
}
.o-footer .teams {
  background: var(--color-background-subtle);
  padding: 20px;
}
.o-footer .teams .links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}
@media (max-width: 1279px) {
  .o-footer .teams .links {
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .o-footer .teams .links {
    gap: 20px;
  }
}
.o-footer .teams .links img {
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}
.o-footer nav {
  padding-top: 40px;
}
.o-footer nav .links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  color: var(--color-background);
}
@media (max-width: 767px) {
  .o-footer nav .links {
    flex-wrap: wrap;
    padding: 0 40px;
    gap: 20px 15px;
  }
}
.o-footer nav .links li {
  font-size: var(--font-size-lv7);
  line-height: 1;
}
@media (max-width: 767px) {
  .o-footer nav .links li {
    width: calc((100% - 15px) / 2);
  }
}
.o-footer nav .links li:not(:first-child) {
  padding-left: 15px;
  border-left: 1px solid var(--color-background);
}
@media (max-width: 767px) {
  .o-footer nav .links li:not(:first-child) {
    padding-left: 0;
    border: none;
  }
}
.o-footer .copyright {
  font-size: var(--font-size-lv8);
  color: var(--color-gray);
  text-align: center;
  padding-top: 40px;
}
.o-footer .scroll-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}
@media (max-width: 1023px) {
  .o-footer .scroll-top {
    bottom: 80px;
  }
}
.o-footer .scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.o-footer .scroll-top button {
  width: 36px;
  height: 36px;
  border-radius: var(--border-radius-full);
  border: 1px solid var(--color-foreground-subtle);
  background: var(--color-background);
  position: relative;
}
.o-footer .scroll-top button::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-right: 2px solid var(--color-theme);
  border-top: 2px solid var(--color-theme);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.o-form #form_name .title_lv1,
.o-form .title_lv2 {
  display: none;
}
.o-form form,
.o-form .submit-list {
  border-top: 1px solid var(--color-gray);
}
.o-form .form-item {
  border-bottom: 1px solid var(--color-gray);
  padding: 20px 0;
  display: flex;
}
@media (max-width: 1023px) {
  .o-form .form-item {
    flex-direction: column;
  }
}
.o-form .form-item .form-title {
  flex-basis: 30%;
  padding: 0 40px;
  display: flex;
  align-items: center;
  font-weight: var(--font-weight-light);
}
@media (max-width: 1023px) {
  .o-form .form-item .form-title {
    padding: 0 20px;
    margin-bottom: 10px;
  }
}
.o-form .form-item .form-title .icon-required {
  padding: 2px 5px;
  background: var(--color-alert);
  color: var(--color-background);
  font-size: var(--font-size-lv8);
  white-space: nowrap;
  margin-left: 10px;
}
.o-form .form-item .form-content {
  flex-basis: 70%;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  flex-direction: column-reverse;
}
.o-form .form-item .form-content:has(.form-content) {
  flex-direction: column;
}
.o-form .form-item .form-content span {
  display: block;
}
.o-form .form-item .form-content .form-cap {
  margin-bottom: 5px;
  font-size: var(--font-size-lv6);
  font-weight: var(--font-weight-light);
}
.o-form .form-item .form-content .caution {
  color: var(--color-alert);
  font-size: var(--font-size-lv6);
  font-weight: var(--font-weight-light);
}
.o-form .form-item .form-content input[type=text],
.o-form .form-item .form-content input[type=email],
.o-form .form-item .form-content input[type=tel],
.o-form .form-item .form-content input[type=date],
.o-form .form-item .form-content textarea,
.o-form .form-item .form-content select {
  border: 1px solid var(--color-gray);
  border-radius: 5px;
  padding: 10px 15px;
  width: 100%;
  font-size: var(--font-size-base);
}
.o-form .form-item .form-content input[type=text]::-moz-placeholder, .o-form .form-item .form-content input[type=email]::-moz-placeholder, .o-form .form-item .form-content input[type=tel]::-moz-placeholder, .o-form .form-item .form-content input[type=date]::-moz-placeholder, .o-form .form-item .form-content textarea::-moz-placeholder, .o-form .form-item .form-content select::-moz-placeholder {
  color: var(--color-foreground-subtle);
}
.o-form .form-item .form-content input[type=text]::placeholder,
.o-form .form-item .form-content input[type=email]::placeholder,
.o-form .form-item .form-content input[type=tel]::placeholder,
.o-form .form-item .form-content input[type=date]::placeholder,
.o-form .form-item .form-content textarea::placeholder,
.o-form .form-item .form-content select::placeholder {
  color: var(--color-foreground-subtle);
}
.o-form .form-item .form-content select {
  -webkit-appearance: none;
  background: url(../img/common/arrow-form-select.svg) no-repeat;
  background-position: right 20px center;
}
.o-form .form-item .form-content .cols {
  display: flex;
  gap: 10px;
}
.o-form .form-item .form-content .name-group li {
  max-width: 300px;
}
.o-form .form-item .form-content .name-group li span {
  font-size: var(--font-size-lv6);
  font-weight: var(--font-weight-light);
  margin-bottom: 5px;
}
.o-form .form-item .form-content .phone-group,
.o-form .form-item .form-content .zipcode-group {
  gap: 0;
}
.o-form .form-item .form-content .phone-group li,
.o-form .form-item .form-content .zipcode-group li {
  display: flex;
  align-items: center;
}
.o-form .form-item .form-content .phone-group li input[type=tel],
.o-form .form-item .form-content .zipcode-group li input[type=tel] {
  max-width: 100px;
}
.o-form .form-item .form-content .phone-group li:not(:last-child)::after,
.o-form .form-item .form-content .zipcode-group li:not(:last-child)::after {
  content: "　";
}
.o-form .form-item .form-content .zipcode-group button {
  background: var(--color-foreground-subtle);
  color: var(--color-background);
  padding: 5px 10px;
  font-size: var(--font-size-lv6);
}
.o-form .form-item .form-content .form-item:last-child {
  border-bottom: none;
}
.o-form .form-item .form-content .form-item .form-content input[type=text],
.o-form .form-item .form-content .form-item .form-content select {
  max-width: 350px;
}
.o-form .button-set {
  margin: 40px 0;
  display: flex;
  justify-content: center;
}
.o-form .button-set button[type=submit],
.o-form .button-set .btn_back {
  min-width: 130px;
  min-height: 36px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 20px;
  box-sizing: border-box;
  border-radius: var(--border-radius-button);
  text-align: center;
  font-size: var(--font-size-lv6);
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  border: solid 1px var(--color-foreground-subtle);
  color: var(--color-foreground-subtle);
}
.o-form .button-set button[type=submit]:hover,
.o-form .button-set .btn_back:hover {
  background: #EEEEEE;
}
.o-form .button-set button[type=submit] em,
.o-form .button-set .btn_back em {
  font-style: normal;
}
.o-form .button-set .btn_back {
  margin-right: 10px;
}

.o-header {
  width: 100%;
  height: var(--header-height);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  /* ---------------------------------------
      area
  ---------------------------------------- */
  /* ---------------------------------------
      elements
  ---------------------------------------- */
}
@media (max-width: 1023px) {
  .o-header {
    height: var(--header-height-sp);
  }
}
.o-header .ticket-button {
  z-index: 20;
  position: absolute;
  top: 0;
  right: clamp(3.75rem, -14.712rem + 28.85vw, 11.25rem);
}
@media (max-width: 1023px) {
  .o-header .ticket-button {
    top: calc(100vh - 48px);
    right: unset;
    left: 0;
  }
}
.o-header .ticket-button .a-button.header {
  border-radius: 0px 0px 15px 15px;
  height: 40px;
  padding: 0 40px;
}
@media (max-width: 1023px) {
  .o-header .ticket-button .a-button.header {
    width: 100vw;
    border-radius: 15px 15px 0px 0px;
    height: 48px;
  }
}
.o-header .bg-white {
  background: var(--color-background);
  height: 110px;
  position: relative;
}
@media (max-width: 1023px) {
  .o-header .bg-white {
    height: 60px;
  }
}
.o-header .bg-nav {
  background: var(--color-background-subtle);
  height: 40px;
}
@media (max-width: 1023px) {
  .o-header .bg-nav {
    display: none;
    background: rgba(255, 255, 255, 0.95);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    padding: 90px 150px;
  }
  .o-header .bg-nav.active {
    display: block;
  }
}
@media (max-width: 767px) {
  .o-header .bg-nav {
    height: 100vh;
    padding: 60px;
  }
}
.o-header .bg-red {
  background: var(--color-theme);
  height: 30px;
}
.o-header .site-title {
  font-size: var(--font-size-lv7);
  color: var(--color-foreground-subtle);
  padding: 20px 30px;
}
@media (max-width: 1023px) {
  .o-header .site-title {
    display: none;
  }
}
.o-header .logo {
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: 0 auto;
}
@media (max-width: 1023px) {
  .o-header .logo {
    left: 10px;
    right: unset;
  }
}
.o-header .logo img {
  width: 200px;
}
@media (max-width: 1023px) {
  .o-header .logo img {
    width: 100px;
  }
}
.o-header .hamburger {
  display: none;
  position: absolute;
  top: 15px;
  right: 15px;
}
@media (max-width: 1023px) {
  .o-header .hamburger {
    display: block;
  }
}
.o-header .hamburger .a-hamburger {
  width: 30px;
  height: 20px;
  position: relative;
}
@media (max-width: 1023px) {
  .o-header .hamburger .a-hamburger {
    display: block;
  }
}
.o-header .hamburger .a-hamburger .line {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--color-foreground-subtle);
  position: absolute;
  left: 0;
}
.o-header .hamburger .a-hamburger .line:nth-child(1) {
  top: 0;
}
.o-header .hamburger .a-hamburger .line:nth-child(2) {
  top: 50%;
}
.o-header .hamburger .a-hamburger .line:nth-child(3) {
  top: 100%;
}
.o-header .hamburger .a-hamburger .label {
  font-size: var(--font-size-lv8);
  font-family: var(--font-family-en);
  color: var(--color-foreground-subtle);
  position: absolute;
  left: 0;
  bottom: -20px;
}
.o-header .hamburger .a-hamburger.active span:nth-child(1) {
  top: 50%;
  transform: rotate(45deg);
}
.o-header .hamburger .a-hamburger.active span:nth-child(2) {
  display: none;
}
.o-header .hamburger .a-hamburger.active span:nth-child(3) {
  top: 50%;
  width: 100%;
  transform: rotate(-45deg);
}
.o-header .hamburger-close {
  display: none;
  color: var(--color-foreground-subtle);
  font-family: var(--font-family-en);
  font-weight: var(--font-weight-bold);
  position: absolute;
  top: 30px;
  right: 30px;
}
@media (max-width: 1023px) {
  .o-header .hamburger-close {
    display: block;
  }
}
.o-header .hamburger-close::before {
  content: "×";
  font-family: var(--font-family-jp);
  font-weight: var(--font-weight-default);
}
.o-header nav {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 240px;
}
@media (max-width: 1279px) {
  .o-header nav {
    gap: 200px;
  }
}
@media (max-width: 1023px) {
  .o-header nav {
    flex-direction: column;
    gap: 30px;
  }
}
.o-header nav .links {
  width: 50%;
  display: flex;
  gap: 50px;
}
@media (max-width: 1279px) {
  .o-header nav .links {
    gap: 30px;
  }
}
@media (max-width: 1023px) {
  .o-header nav .links {
    width: 100%;
    flex-direction: column;
  }
}
.o-header nav .links:first-of-type {
  justify-content: flex-end;
}
.o-header nav .links .item {
  position: relative;
  cursor: pointer;
}
.o-header nav .links .item .en {
  font-family: var(--font-family-en);
  font-weight: var(--font-weight-bold);
}
@media (max-width: 1023px) {
  .o-header nav .links .item .en {
    font-size: var(--font-size-lv4);
  }
}
.o-header nav .links .item .jp {
  font-size: var(--font-size-lv7);
  color: var(--color-background);
  white-space: nowrap;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -30px;
  opacity: 0;
  transition: var(--transition-default);
}
@media (max-width: 1023px) {
  .o-header nav .links .item .jp {
    opacity: 100;
    left: 0;
    bottom: unset;
    top: 30px;
    color: var(--color-foreground-subtle);
    transform: none;
  }
}
.o-header nav .links .item:hover .jp {
  opacity: 100;
}
.o-header nav .links .item.hasSubmenu .en::after {
  content: url(../img/common/arrow-gray.svg);
  position: absolute;
  right: -15px;
}
@media (max-width: 1023px) {
  .o-header nav .links .item.hasSubmenu .en::after {
    display: none;
  }
}
.o-header nav .links .item.hasSubmenu.active .en::after {
  transform: rotate(180deg);
}
.o-header nav .links .item.hasSubmenu .submenu {
  display: none;
  position: absolute;
  top: 40px;
  background: var(--color-background);
  padding: 20px 25px;
}
@media (max-width: 1023px) {
  .o-header nav .links .item.hasSubmenu .submenu {
    display: block;
    position: unset;
    background: none;
  }
}
.o-header nav .links .item.hasSubmenu .submenu .submenu-link {
  font-size: var(--font-size-lv7);
  white-space: nowrap;
  padding-left: 15px;
  position: relative;
}
.o-header nav .links .item.hasSubmenu .submenu .submenu-link:not(:first-child) {
  margin-top: 15px;
}
.o-header nav .links .item.hasSubmenu .submenu .submenu-link::before {
  content: url(../img/common/arrow-submenu.svg);
  position: absolute;
  left: 0px;
}
.o-header nav .links .item.hasSubmenu .submenu::after {
  content: "";
  position: absolute;
  top: -20px;
  left: 10px;
  border: 10px solid transparent;
  border-bottom: 20px solid var(--color-background);
}
@media (max-width: 1023px) {
  .o-header nav .links .item.hasSubmenu .submenu::after {
    display: none;
  }
}
.o-header nav .links .item.hasSubmenu .submenu.active {
  display: block;
}

.o-loading {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.o-loading.hidden {
  display: none;
}
.o-loading .dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.o-loading .dots span {
  display: block;
  width: 30px;
  height: 30px;
  background-image: url(../img/icon/loading-dots.svg);
  background-size: contain;
  animation: bounce 1.2s ease-in-out infinite both;
}
.o-loading .dots span:nth-child(1) {
  animation-delay: -0.2s;
}
.o-loading .dots span:nth-child(2) {
  animation-delay: -0.1s;
}
.o-loading .dots span:nth-child(3) {
  animation-delay: 0s;
}
@keyframes bounce {
  0%, 60%, 100% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-15px);
  }
}
.o-loading .text {
  font-family: var(--font-family-en);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-lv5);
  text-align: center;
  margin-top: 20px;
}

.o-pager ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.o-pager ul a {
  font-size: var(--font-size-lv7);
  color: var(--color-link);
  line-height: 24px;
}
.o-pager ul a.current {
  display: block;
  background-color: var(--color-foreground-subtle);
  color: var(--color-background);
  width: 24px;
  height: 24px;
  text-align: center;
}
.o-pager ul .prev-btn,
.o-pager ul .next-btn {
  width: 16px;
  height: 16px;
  background-image: url(../img/common/carousel-arrow.svg);
  background-size: cover;
}
.o-pager ul .prev-btn {
  transform: rotate(180deg);
}
.o-pager ul .dots {
  color: var(--color-gray);
}

/* ---------------------------------------
    共通
---------------------------------------- */
.o-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--font-size-lv6);
}
.o-table th {
  font-weight: var(--font-weight-default);
}
.o-table th, .o-table td {
  padding: 5px;
}
.o-table td a {
  color: var(--color-link);
}
.o-table td a:hover {
  color: var(--color-theme);
}
.o-table thead {
  background-color: var(--color-theme);
  color: var(--color-background);
}
.o-table thead th {
  text-align: center;
  border: 1px solid var(--color-background);
}
.o-table tbody th, .o-table tbody td {
  border-bottom: 1px solid var(--color-gray);
}

/* ---------------------------------------
    page: schedule
---------------------------------------- */
.p-schedule .overview .o-table {
  text-align: center;
}
@media (max-width: 767px) {
  .p-schedule .overview .o-table {
    display: flex;
  }
  .p-schedule .overview .o-table thead {
    width: 30%;
  }
  .p-schedule .overview .o-table thead th {
    border: none;
    border-top: 1px solid var(--color-background);
  }
  .p-schedule .overview .o-table tbody {
    width: 70%;
    display: flex;
    border-top: 1px solid var(--color-gray);
  }
  .p-schedule .overview .o-table tbody tr {
    width: 50%;
  }
  .p-schedule .overview .o-table tr {
    display: flex;
    flex-direction: column;
  }
  .p-schedule .overview .o-table tr th, .p-schedule .overview .o-table tr td {
    height: 32px;
  }
}
.p-schedule .overview .o-table thead {
  font-weight: var(--font-weight-bold);
  font-family: var(--font-family-en);
  font-size: var(--font-size-base);
}
.p-schedule .overview .o-table tbody td {
  font-family: var(--font-family-num);
  font-size: var(--font-size-lv5);
  letter-spacing: var(--letter-spacing-num);
}
.p-schedule .overview .o-table tbody td.tot {
  color: var(--color-theme);
  font-size: var(--font-size-lv4);
}
.p-schedule .ticket-venue .o-table {
  border-top: 1px solid var(--color-gray);
}
.p-schedule .ticket-venue .o-table th, .p-schedule .ticket-venue .o-table td {
  padding: 8px 20px;
}
.p-schedule .ticket-venue .o-table th {
  background-color: var(--color-theme);
  color: var(--color-background);
  text-align: center;
}
.p-schedule .ticket-venue .o-table td {
  font-weight: var(--font-weight-light);
}
.p-schedule .ticket-venue .o-table td .a-button {
  font-weight: var(--font-weight-default);
}
.p-schedule .ticket-venue .o-table .teams {
  display: flex;
  align-items: center;
  gap: 5px;
}
.p-schedule .ticket-venue .o-table .teams .team-logo {
  width: 30px;
}
.p-schedule .ticket-venue .o-table .teams .vs {
  color: var(--color-gray);
  font-family: var(--font-family-num);
}
.p-schedule .ticket-venue .o-table .a-button {
  margin-top: 10px;
}
.p-schedule .box-score .table .o-table {
  text-align: center;
}
.p-schedule .box-score .table .o-table td {
  font-family: var(--font-family-num);
  font-size: var(--font-size-base);
}
.p-schedule .box-score .table .o-table .number {
  width: 50px;
}
@media (max-width: 1023px) {
  .p-schedule .box-score .table .o-table .number {
    width: 40px;
  }
}
@media (max-width: 767px) {
  .p-schedule .box-score .table .o-table .number {
    width: 30px;
  }
}
.p-schedule .box-score .table .o-table .player-name {
  width: 270px;
  font-family: var(--font-family-default);
  font-size: var(--font-size-lv7);
  text-align: left;
}
@media (max-width: 1023px) {
  .p-schedule .box-score .table .o-table .player-name {
    width: clamp(8.75rem, -2.5rem + 23.44vw, 12.5rem);
  }
}
@media (max-width: 767px) {
  .p-schedule .box-score .table .o-table .player-name {
    width: 130px;
    min-width: 130px;
  }
}
.p-schedule .box-score .table .o-table thead {
  font-family: var(--font-family-en);
}
.p-schedule .box-score .table .o-table thead th {
  white-space: nowrap;
}
.p-schedule .box-score .table .o-table tfoot th {
  background-color: var(--color-foreground-subtle);
  color: var(--color-background);
  border-top: 1px solid var(--color-background);
}
.p-schedule .box-score .table .o-table tfoot td {
  background: var(--color-background-subtle);
  border-bottom: 1px solid var(--color-gray);
}
.p-schedule .box-score .percent .o-table {
  text-align: center;
  border-top: 1px solid var(--color-gray);
}
.p-schedule .box-score .percent .o-table .title {
  background: var(--color-foreground);
  color: var(--color-background);
  width: 320px;
}
@media (max-width: 1023px) {
  .p-schedule .box-score .percent .o-table .title {
    width: clamp(11.25rem, 23.44vw, 15rem);
  }
}
@media (max-width: 767px) {
  .p-schedule .box-score .percent .o-table .title {
    width: 160px;
  }
}
.p-schedule .box-score .percent .o-table th {
  font-family: var(--font-family-en);
  font-weight: var(--font-weight-bold);
}
.p-schedule .box-score .percent .o-table th:not(:first-child) {
  font-size: 14px;
}
.p-schedule .box-score .percent .o-table td {
  background: var(--color-background-subtle);
  font-family: var(--font-family-num);
  min-width: 150px;
  font-size: 16px;
}
.p-schedule .pbyp .o-table.play {
  text-align: center;
}
.p-schedule .pbyp .o-table.play thead th:nth-of-type(1), .p-schedule .pbyp .o-table.play thead th:nth-of-type(3) {
  width: 500px;
}
.p-schedule .pbyp .o-table.play thead th:nth-of-type(2) {
  font-family: var(--font-family-en);
  line-height: 1;
}
.p-schedule .pbyp .o-table.play thead th:nth-of-type(2) br {
  display: none;
}
@media (max-width: 767px) {
  .p-schedule .pbyp .o-table.play thead th:nth-of-type(2) br {
    display: block;
  }
}
.p-schedule .pbyp .o-table.play tbody tr {
  height: 40px;
}
.p-schedule .pbyp .o-table.play tbody tr td:nth-of-type(2) {
  background: var(--color-background-subtle);
  font-family: var(--font-family-num);
}
.p-schedule .pbyp .o-table.play tbody tr td:nth-of-type(2) .score {
  font-size: var(--font-size-lv5);
  display: flex;
  justify-content: center;
}
.p-schedule .pbyp .o-table.play tbody tr td:nth-of-type(2) .score .win {
  color: var(--color-theme);
}
.p-schedule .pbyp .o-table.team-stats, .p-schedule .pbyp .o-table.indiv-stats {
  text-align: center;
}
.p-schedule .pbyp .o-table.team-stats thead th, .p-schedule .pbyp .o-table.indiv-stats thead th {
  width: 33.3333333333%;
}
@media (max-width: 767px) {
  .p-schedule .pbyp .o-table.team-stats thead th, .p-schedule .pbyp .o-table.indiv-stats thead th {
    min-width: 180px;
  }
}
.p-schedule .pbyp .o-table.team-stats tbody th, .p-schedule .pbyp .o-table.indiv-stats tbody th {
  background: var(--color-background-subtle);
  font-weight: var(--font-weight-bold);
}
.p-schedule .pbyp .o-table.team-stats tbody td, .p-schedule .pbyp .o-table.indiv-stats tbody td {
  font-family: var(--font-family-num);
  font-size: var(--font-size-base);
}
.p-schedule .pbyp .o-table.indiv-stats td.player-name {
  text-align: left;
  padding-left: 20px;
}

/* ---------------------------------------
    page: team
---------------------------------------- */
@media (max-width: 1023px) {
  .p-team .team-staff .table:last-of-type .o-table {
    border-top: none;
  }
}
.p-team .team-staff .o-table {
  border-top: 1px solid var(--color-gray);
}
.p-team .team-staff .o-table th {
  width: 40%;
  background: var(--color-foreground-subtle);
  color: var(--color-background);
  text-align: center;
}
@media (max-width: 767px) {
  .p-team .team-staff .o-table th {
    width: 160px;
  }
}
.p-team .team-staff .o-table td {
  padding: 5px 15px;
}
@media (max-width: 1023px) {
  .p-team .team-overview .table:last-of-type .o-table {
    border-top: none;
  }
}
.p-team .team-overview .o-table {
  border-top: 1px solid var(--color-gray);
}
.p-team .team-overview .o-table th {
  width: 30%;
  background-color: var(--color-theme);
  color: var(--color-background);
  text-align: center;
}
.p-team .team-overview .o-table td {
  width: 70%;
  word-break: break-all;
  padding: 5px 15px;
  font-size: var(--font-size-lv7);
}
.p-team .team-overview .slogan .o-table th {
  background: var(--color-foreground-subtle);
}
@media (max-width: 767px) {
  .p-team .team-overview .slogan .o-table th, .p-team .team-overview .slogan .o-table td {
    display: block;
    width: 100%;
  }
}
.p-team .team-stats .o-table thead th {
  white-space: nowrap;
}
.p-team .team-stats .o-table thead th:not(:nth-child(2)) {
  font-family: var(--font-family-en);
  font-weight: var(--font-weight-bold);
}
.p-team .team-stats .o-table td {
  font-family: var(--font-family-num);
  font-size: var(--font-size-base);
  text-align: center;
}
.p-team .team-stats .o-table td.player-name {
  text-align: left;
  font-family: var(--font-family-jp);
  font-size: var(--font-size-lv6);
  min-width: 120px;
}
.p-team .team-stats .o-table td .photo {
  aspect-ratio: 3/4;
  width: 50px;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-team .team-stats .o-table tfoot th {
  background-color: var(--color-foreground-subtle);
  color: var(--color-background);
  border-top: 1px solid var(--color-background);
  text-align: center;
}
.p-team .team-stats .o-table tfoot td {
  background: var(--color-background-subtle);
  border-bottom: 1px solid var(--color-gray);
}

/* ---------------------------------------
    page: standings
---------------------------------------- */
.p-standings .final-ranking .o-table {
  text-align: center;
}
.p-standings .final-ranking .o-table .score {
  font-family: var(--font-family-num);
  font-size: var(--font-size-base);
}
.p-standings .final-ranking .o-table thead .season {
  font-size: var(--font-size-lv7);
}
.p-standings .final-ranking .o-table tbody .team-name,
.p-standings .final-ranking .o-table tbody .remarks {
  text-align: left;
  font-size: var(--font-size-lv7);
  min-width: 120px;
}
.p-standings .final-ranking .o-table tbody th {
  min-width: 50px;
}
.p-standings .final-ranking .o-table tbody td {
  min-width: 90px;
}
.p-standings .ranking .o-table {
  text-align: center;
}
.p-standings .ranking .o-table thead th:nth-child(n+6) {
  font-family: var(--font-family-en);
  font-weight: var(--font-weight-bold);
}
.p-standings .ranking .o-table tbody .team-name {
  text-align: left;
  min-width: 120px;
}
.p-standings .ranking .o-table tbody .team-name a {
  font-size: var(--font-size-lv7);
}
.p-standings .ranking .o-table tbody :not(.team-name) {
  font-family: var(--font-family-num);
  font-size: var(--font-size-base);
}
.p-standings .match-record .o-table thead th {
  min-width: 90px;
}
.p-standings .match-record .o-table tbody tr:nth-of-type(even) {
  background: #f2f2f2;
}
.p-standings .match-record .o-table tbody tr th {
  background: var(--color-foreground-subtle);
  color: var(--color-background);
  text-align: center;
}
.p-standings .match-record .o-table tbody tr td {
  text-align: center;
  font-family: var(--font-family-num);
}
.p-standings .match-record .o-table tbody tr td.blank {
  background: #E3E3E3;
}

/* ---------------------------------------
    page: player
---------------------------------------- */
.p-player.list .o-table {
  position: relative;
}
@media (max-width: 767px) {
  .p-player.list .o-table {
    margin-top: 40px;
  }
  .p-player.list .o-table::before {
    content: "選手";
    width: calc(100% - 20px);
    padding: 10px;
    background: var(--color-theme);
    color: var(--color-background);
    text-align: center;
    position: absolute;
    top: -40px;
    left: 0;
  }
}
@media (max-width: 767px) {
  .p-player.list .o-table thead {
    display: none;
  }
}
@media (max-width: 767px) {
  .p-player.list .o-table tbody tr {
    border-bottom: 1px solid var(--color-gray);
    padding: 25px 0 10px;
    display: flex;
    align-items: center;
    gap: 15px 10px;
    flex-wrap: wrap;
    position: relative;
  }
}
.p-player.list .o-table tbody tr td {
  text-align: center;
}
@media (max-width: 767px) {
  .p-player.list .o-table tbody tr td {
    border-bottom: none;
  }
}
@media (max-width: 767px) {
  .p-player.list .o-table tbody tr td.photo {
    position: absolute;
    top: 5px;
    left: 0;
  }
}
.p-player.list .o-table tbody tr td.photo img {
  aspect-ratio: 3/4;
  width: 50px;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-player.list .o-table tbody tr td.player-name {
  width: 20%;
  text-align: left;
}
@media (max-width: 767px) {
  .p-player.list .o-table tbody tr td.player-name {
    padding: 0 80px;
    width: 100%;
    line-height: 1;
  }
}
.p-player.list .o-table tbody tr td.team {
  width: 80px;
  font-size: var(--font-size-lv8);
}
@media (max-width: 767px) {
  .p-player.list .o-table tbody tr td.team {
    position: absolute;
    top: 5px;
    right: 0;
    width: 60px;
  }
}
.p-player.list .o-table tbody tr td.team .logo {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: auto;
}
@media (max-width: 767px) {
  .p-player.list .o-table tbody tr td.birthday {
    padding-left: 80px;
  }
}
@media (max-width: 1023px) {
  .p-player.list .o-table tbody tr td.from {
    min-width: 80px;
  }
}
@media (max-width: 767px) {
  .p-player.list .o-table tbody tr td.from {
    width: -moz-fit-content;
    width: fit-content;
  }
}
.p-player.list .o-table tbody tr td.career {
  width: 40%;
  text-align: left;
}
@media (max-width: 767px) {
  .p-player.list .o-table tbody tr td.career {
    width: 100%;
    padding-left: 15px;
    position: relative;
    display: flex;
    align-items: center;
    border-left: 5px solid var(--color-theme);
    margin-left: 5px;
  }
}

/* ---------------------------------------
    page: player-detail
---------------------------------------- */
.p-player.profile .o-table,
.p-player .history .o-table {
  border-top: 1px solid var(--color-gray);
}
.p-player.profile .o-table th,
.p-player .history .o-table th {
  width: 30%;
  background: var(--color-foreground-subtle);
  color: var(--color-background);
  text-align: center;
}
.p-player.profile .o-table td,
.p-player .history .o-table td {
  padding: 8px 15px;
  font-size: var(--font-size-lv7);
}
@media (max-width: 767px) {
  .p-player .grades .o-table {
    display: flex;
  }
}
@media (max-width: 767px) {
  .p-player .grades .o-table thead,
  .p-player .grades .o-table tbody {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .p-player .grades .o-table thead tr,
  .p-player .grades .o-table tbody tr {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .p-player .grades .o-table thead tr th,
  .p-player .grades .o-table tbody tr th {
    white-space: nowrap;
    height: 32px;
    line-height: 22px;
    border: none;
    border-bottom: 1px solid var(--color-background);
  }
}
.p-player .grades .o-table thead tr td,
.p-player .grades .o-table tbody tr td {
  text-align: center;
  font-family: var(--font-family-num);
  font-size: var(--font-size-base);
}
@media (max-width: 767px) {
  .p-player .grades .o-table thead tr td,
  .p-player .grades .o-table tbody tr td {
    height: 32px;
    line-height: 22px;
  }
  .p-player .grades .o-table thead tr td:first-of-type,
  .p-player .grades .o-table tbody tr td:first-of-type {
    border-top: 1px solid var(--color-gray);
  }
}
@media (max-width: 767px) {
  .p-player .history .o-table tr {
    display: flex;
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .p-player .history .o-table tr th,
  .p-player .history .o-table tr td {
    width: 100%;
  }
}
.p-player.career-average .o-table, .p-player.career-total .o-table {
  text-align: center;
}
.p-player.career-average .o-table td, .p-player.career-total .o-table td {
  font-family: var(--font-family-num);
  font-size: var(--font-size-base);
}
.p-player.career-average .o-table td:not(.p-player.career-average .o-table td.year, .p-player.career-total .o-table td.year), .p-player.career-total .o-table td:not(.p-player.career-average .o-table td.year, .p-player.career-total .o-table td.year) {
  white-space: nowrap;
}
.p-player.career-average .o-table td.year, .p-player.career-average .o-table td.team, .p-player.career-total .o-table td.year, .p-player.career-total .o-table td.team {
  font-family: var(--font-family-jp);
  font-size: var(--font-size-lv7);
}
.p-player.career-average .o-table td.year, .p-player.career-total .o-table td.year {
  text-align: left;
  width: clamp(15rem, 4.231rem + 16.83vw, 19.375rem);
  min-width: clamp(15rem, 4.231rem + 16.83vw, 19.375rem);
}
@media (max-width: 1023px) {
  .p-player.career-average .o-table td.year, .p-player.career-total .o-table td.year {
    width: 240px;
    min-width: 240px;
  }
}
.p-player.career-average .o-table td.team, .p-player.career-total .o-table td.team {
  width: 100px;
  min-width: 100px;
}
@media (max-width: 1023px) {
  .p-player.career-average .o-table td.team, .p-player.career-total .o-table td.team {
    width: 90px;
    min-width: 90px;
  }
}
.p-player.career-average .o-table thead, .p-player.career-total .o-table thead {
  font-family: var(--font-family-en);
  white-space: nowrap;
}
.p-player.career-average .o-table tfoot th, .p-player.career-total .o-table tfoot th {
  background-color: var(--color-foreground-subtle);
  color: var(--color-background);
}
.p-player.career-average .o-table tfoot td, .p-player.career-total .o-table tfoot td {
  background: var(--color-background-subtle);
  border-bottom: 1px solid var(--color-gray);
}

/* ---------------------------------------
    page: award
---------------------------------------- */
.p-award .o-table {
  background: var(--color-background);
  text-align: center;
}
.p-award .o-table .score {
  font-family: var(--font-family-num);
  font-size: var(--font-size-base);
}
.p-award .o-table thead {
  border: 2px solid var(--color-theme);
}
.p-award .o-table tbody .team-name,
.p-award .o-table tbody .remarks {
  text-align: left;
  font-size: var(--font-size-lv7);
  min-width: 120px;
}
.p-award .o-table tbody th {
  min-width: 50px;
}
.p-award .o-table tbody td {
  min-width: 90px;
}
.p-award.old table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--font-size-lv6);
  margin-bottom: 20px;
}
.p-award.old table tr:nth-child(odd) {
  background-color: #f5f5f5;
}
.p-award.old table th, .p-award.old table td {
  padding: 5px;
}
.p-award.old table th {
  font-weight: var(--font-weight-default);
  background-color: var(--color-theme);
  color: var(--color-background);
  border: 1px solid var(--color-background);
}
.p-award.old table td {
  border: 1px solid var(--color-gray);
}
.p-award.old table td a {
  color: var(--color-link);
}
.p-award.old table td a:hover {
  color: var(--color-theme);
}

/* ---------------------------------------
    page: method
---------------------------------------- */
.p-method .contents_body table tr:nth-child(odd) {
  background-color: #f5f5f5;
}
.p-method table {
  margin-top: 20px;
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid var(--color-gray);
}
.p-method table th, .p-method table td {
  padding: 10px 20px;
}
.p-method table th {
  width: 340px;
  font-weight: var(--font-weight-default);
  background-color: var(--color-foreground-subtle);
  color: var(--color-background);
  text-align: center;
  border-bottom: 1px solid var(--color-background);
}
@media (max-width: 1023px) {
  .p-method table th {
    width: 35%;
    min-width: 100px;
  }
}
.p-method table td {
  border-bottom: 1px solid var(--color-gray);
}
.p-method table td a {
  color: var(--color-link);
}
.p-method table td a:hover {
  color: var(--color-theme);
}
.p-method table td:has(.table-img),
.p-method table td .clearfix {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}
@media (max-width: 1023px) {
  .p-method table td:has(.table-img),
  .p-method table td .clearfix {
    flex-direction: column;
  }
}
.p-method table td:has(.table-img) .table-img,
.p-method table td:has(.table-img) .fr img,
.p-method table td .clearfix .table-img,
.p-method table td .clearfix .fr img {
  max-width: 300px;
}
.p-method table.secondary th {
  min-width: unset;
  font-weight: var(--font-weight-light);
  background-color: var(--color-background-subtle);
  color: var(--color-foreground);
  text-align: left;
  border-bottom: 1px solid var(--color-gray);
}

/* ---------------------------------------
    page: info, 
---------------------------------------- */
.p-text .o-table {
  border-top: 1px solid var(--color-gray);
}
.p-text .o-table th {
  background: var(--color-foreground-subtle);
  color: var(--color-background);
  text-align: center;
}
.p-text .o-table td {
  padding: 10px 20px;
}
@media (max-width: 767px) {
  .p-text .o-table td {
    padding: 5px 15px;
  }
}
.p-text .o-table tbody th {
  width: 340px;
}
@media (max-width: 1023px) {
  .p-text .o-table tbody th {
    width: 240px;
  }
}
@media (max-width: 767px) {
  .p-text .o-table tbody th {
    width: 120px;
  }
}
.p-text .o-table.board-member thead th {
  text-align: left;
  padding: 5px 30px;
  font-size: var(--font-size-base);
}
.p-text .o-table.board-member tbody th {
  background: var(--color-background-subtle);
  color: var(--color-foreground);
  font-weight: var(--font-weight-light);
  text-align: left;
  padding: 5px 30px;
}
@media (max-width: 767px) {
  .p-text .o-table.board-member tbody th {
    padding: 5px 15px;
  }
}
.p-text .o-table.board-member:nth-of-type(2) {
  margin-top: 40px;
}

.o-tab {
  max-width: 1120px;
  width: 100%;
  margin: auto;
  border-bottom: 2px solid var(--color-foreground);
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 767px) {
  .o-tab {
    gap: 10px;
  }
}
.o-tab .tab-button {
  border-radius: 15px 15px 0px 0px;
  background: var(--color-background-subtle);
  width: 200px;
  height: 40px;
  padding: 10px;
  box-sizing: border-box;
  text-align: center;
  font-size: var(--font-size-lv6);
}
@media (max-width: 767px) {
  .o-tab .tab-button {
    padding: 10px 0;
  }
}
.o-tab .tab-button:hover {
  background: rgba(0, 0, 0, 0.3764705882);
}
.o-tab .tab-button.active {
  background: var(--color-foreground);
  color: var(--color-background);
}
.o-tab.league {
  gap: 2%;
}
.o-tab.league .tab-button {
  background: var(--color-gray);
  width: 49%;
  height: 70px;
  padding: 15px;
}
@media (max-width: 767px) {
  .o-tab.league .tab-button {
    height: 50px;
  }
}
.o-tab.league .tab-button img {
  width: 150px;
}
@media (max-width: 767px) {
  .o-tab.league .tab-button img {
    width: 100px;
  }
}
.o-tab.league .tab-button.premier:hover {
  background: rgba(0, 0, 0, 0.3764705882);
}
.o-tab.league .tab-button.premier.active {
  background: var(--color-foreground);
}
.o-tab.league .tab-button.future:hover {
  background: rgba(0, 0, 0, 0.3764705882);
}
.o-tab.league .tab-button.future.active {
  background: var(--color-foreground-subtle);
}
.o-tab.quarter {
  border-bottom: none;
}
.o-tab.quarter .quarter-tab {
  width: 120px;
  height: 40px;
  background: var(--color-gray);
  color: var(--color-background);
  border-radius: var(--border-radius-full);
  font-family: var(--font-family-en);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-lv5);
  line-height: 1;
}
.o-tab.quarter .quarter-tab.active {
  background: var(--color-foreground-subtle);
}
.o-tab.quarter .quarter-tab:hover {
  background: rgba(0, 0, 0, 0.3764705882);
}

/* ---------------------------------------
  section-title
---------------------------------------- */
.a-section-title {
  display: flex;
  gap: 10px;
  align-items: center;
  white-space: nowrap;
}
.a-section-title .en,
.a-section-title .jp {
  color: var(--color-foreground-subtle);
  display: block;
  line-height: 1;
}
.a-section-title .en {
  font-size: var(--font-size-lv4);
  font-family: var(--font-family-en);
  font-weight: var(--font-weight-bold);
  padding-left: 15px;
  border-left: 5px solid var(--color-theme);
}
.a-section-title .jp {
  font-size: var(--font-size-base);
}
.a-section-title .line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-foreground-subtle);
}

/* ---------------------------------------
  subpage-title
---------------------------------------- */
.o-subpage-title {
  width: 100%;
  padding: 30px 0px;
  background: var(--color-foreground);
  color: var(--color-background);
}
.o-subpage-title .en {
  font-size: var(--font-size-lv3);
  font-family: var(--font-family-en);
  font-weight: var(--font-weight-bold);
}
.o-subpage-title .jp {
  font-size: var(--font-size-base);
  margin-left: 15px;
}
@media (max-width: 767px) {
  .o-subpage-title .jp {
    display: block;
    margin-left: 0;
  }
}

/* ---------------------------------------
  contents-title
---------------------------------------- */
.a-contents-title {
  font-size: var(--font-size-lv5);
  font-weight: var(--font-weight-light);
  letter-spacing: var(--letter-spacing-wide);
  padding-left: 15px;
  border-left: 5px solid var(--color-theme);
}
.a-contents-title br.sp {
  display: none;
}
@media (max-width: 767px) {
  .a-contents-title br.sp {
    display: block;
  }
}

.a-contents-subtitle {
  color: var(--color-theme);
  font-size: var(--font-size-lv4);
  padding: 0 10px 5px;
  border-bottom: 4px solid var(--color-theme);
}

/* -------------------------------------
    Page
------------------------------------- */
.p-award {
  position: relative;
  padding: 60px 0 150px;
}
@media (max-width: 767px) {
  .p-award {
    padding: 40px 0 90px;
  }
}
.p-award .fixed-bg {
  background: url(../img/page/award-bg.png) top/cover no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
}
.p-award.fixed .fixed-bg {
  position: fixed;
  top: 180px;
}
@media (max-width: 1023px) {
  .p-award.fixed .fixed-bg {
    top: 90px;
  }
}
.p-award .title-img {
  width: 500px;
  display: block;
  margin: auto;
}
@media (max-width: 767px) {
  .p-award .title-img {
    width: 240px;
  }
}
.p-award .award-group {
  margin-top: 70px;
}
@media (max-width: 767px) {
  .p-award .award-group {
    margin-top: 50px;
  }
}
.p-award .award-group .league-logo {
  width: 150px;
  display: block;
  margin: auto;
}
@media (max-width: 767px) {
  .p-award .award-group .league-logo {
    width: 100px;
  }
}
.p-award .award-group .category-title .en, .p-award .award-group .category-title .jp {
  display: block;
  color: var(--color-background);
}
.p-award .award-group .category-title .en {
  width: 510px;
  margin: auto;
  height: 75px;
  padding: 20px 0 5px;
  line-height: 55px;
  text-align: center;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
  font-family: var(--font-family-en);
  font-size: var(--font-size-lv4);
  font-weight: var(--font-weight-bold);
  background-image: url(../img/page/award-subtitle-bg.png);
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .p-award .award-group .category-title .en {
    width: 300px;
    height: 45px;
    padding: 12px 0 0;
    line-height: 30px;
    font-size: var(--font-size-lv5);
  }
}
.p-award .award-group .category-title .jp {
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  margin-top: 20px;
  padding: 0 30px;
  position: relative;
  font-size: var(--font-size-lv5);
}
@media (max-width: 767px) {
  .p-award .award-group .category-title .jp {
    margin-top: 10px;
    padding: 0 20px;
    font-size: var(--font-size-base);
  }
}
.p-award .award-group .category-title .jp::before, .p-award .award-group .category-title .jp::after {
  content: "";
  display: block;
  width: 18px;
  height: 30px;
  background-image: url(../img/page/award-subtitle-frame.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .p-award .award-group .category-title .jp::before, .p-award .award-group .category-title .jp::after {
    width: 14px;
    height: 24px;
  }
}
.p-award .award-group .category-title .jp::before {
  left: 0;
}
.p-award .award-group .category-title .jp::after {
  right: 0;
  transform: scale(-1, 1);
}
.p-award .award-group .players-list {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}
@media (max-width: 767px) {
  .p-award .award-group .players-list {
    margin-top: 30px;
    gap: 20px;
  }
}
.p-award .award-group .players-list .player {
  width: 340px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}
@media (max-width: 767px) {
  .p-award .award-group .players-list .player {
    width: 280px;
    padding: 20px 30px;
  }
}
.p-award .award-group .players-list .player:has(.sub-category) {
  margin-top: 30px;
}
.p-award .award-group .players-list .player .sub-category {
  position: absolute;
  top: -30px;
  left: 0;
  padding: 5px 20px;
  width: 100%;
  border-bottom: 2px solid var(--color-background);
  color: var(--color-background);
  text-align: center;
}
.p-award .award-group .players-list .player .num-position {
  text-align: center;
}
.p-award .award-group .players-list .player .num-position .num {
  font-size: var(--font-size-lv3);
  letter-spacing: calc(var(--font-size-lv3) * 0.05);
  font-family: var(--font-family-num);
}
@media (max-width: 767px) {
  .p-award .award-group .players-list .player .num-position .num {
    font-size: var(--font-size-lv2);
  }
}
.p-award .award-group .players-list .player .num-position .position {
  display: block;
  font-size: var(--font-size-lv5);
  font-family: var(--font-family-en);
  font-weight: var(--font-weight-bold);
  color: var(--color-background);
  letter-spacing: 0;
}
@media (max-width: 767px) {
  .p-award .award-group .players-list .player .num-position .position {
    font-size: var(--font-size-lv4);
  }
}
@media (max-width: 767px) {
  .p-award .award-group .players-list .player:has(.photo) .num-position {
    position: absolute;
    bottom: 10px;
    left: 30px;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .p-award .award-group .players-list .player:has(.photo) .num-position .num {
    font-size: var(--font-size-lv3);
  }
}
@media (max-width: 767px) {
  .p-award .award-group .players-list .player:has(.photo) .num-position .position {
    display: inline;
  }
  .p-award .award-group .players-list .player:has(.photo) .photo {
    margin-bottom: 30px;
  }
}
.p-award .award-group .players-list .player .photo {
  width: 80px;
  aspect-ratio: 3/4;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .p-award .award-group .players-list .player .photo {
    width: 60px;
  }
}
.p-award .award-group .players-list .player .name {
  font-size: var(--font-size-base);
  display: block;
}
@media (max-width: 767px) {
  .p-award .award-group .players-list .player .name {
    font-size: var(--font-size-lv5);
  }
}
.p-award .award-group .players-list .player a.name {
  color: var(--color-link);
}
.p-award .award-group .players-list .player .team {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.p-award .award-group .players-list .player .team .logo {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-award .award-group .players-list .player .team .team-name {
  font-size: var(--font-size-lv7);
  display: block;
}
.p-award .award-group .players-list .player .remarks {
  display: block;
  margin-top: 15px;
  padding-left: 15px;
  border-left: 3px solid var(--color-background);
  font-size: var(--font-size-lv7);
}
.p-award .award-group.play-off .category-title .en {
  font-size: var(--font-size-lv3);
}
@media (max-width: 767px) {
  .p-award .award-group.play-off .category-title .en {
    font-size: 18px;
  }
}
.p-award .award-group.play-off .players-list .player {
  border-top: 4px solid var(--color-theme);
  border-bottom: 4px solid var(--color-theme);
}
.p-award .award-group.premier .players-list .player {
  border-top: 4px solid #B99400;
  border-bottom: 4px solid #B99400;
}
.p-award .award-group.premier .players-list .player .sub-category {
  background: #B99400;
}
.p-award .award-group.future .players-list .player {
  border-top: 4px solid #768A97;
  border-bottom: 4px solid #768A97;
}
.p-award .award-group.future .players-list .player .sub-category {
  background: #768A97;
}
.p-award .award-group.mvp .players-list .player {
  width: 500px;
  padding: 30px;
}
@media (max-width: 767px) {
  .p-award .award-group.mvp .players-list .player {
    width: 280px;
    padding: 20px;
  }
}
.p-award .award-group.mvp .players-list .player .num-position .num {
  font-size: 64px;
  letter-spacing: 3.2px;
}
@media (max-width: 767px) {
  .p-award .award-group.mvp .players-list .player .num-position .num {
    font-size: var(--font-size-lv2);
  }
}
.p-award .award-group.mvp .players-list .player .num-position .position {
  font-size: var(--font-size-lv3);
}
@media (max-width: 767px) {
  .p-award .award-group.mvp .players-list .player:has(.photo) .num-position {
    left: 20px;
  }
  .p-award .award-group.mvp .players-list .player:has(.photo) .photo {
    margin-bottom: 40px;
  }
}
.p-award .award-group.mvp .players-list .player .photo {
  width: 120px;
}
@media (max-width: 767px) {
  .p-award .award-group.mvp .players-list .player .photo {
    width: 65px;
  }
}
.p-award .award-group.mvp .players-list .player .name {
  font-size: var(--font-size-lv3);
}
@media (max-width: 767px) {
  .p-award .award-group.mvp .players-list .player .name {
    font-size: var(--font-size-lv4);
  }
}
.p-award .award-group.mvp .players-list .player .team .logo {
  height: 30px;
}
.p-award .award-group.mvp .players-list .player .team .team-name {
  font-size: var(--font-size-base);
}
@media (max-width: 767px) {
  .p-award .award-group.mvp .players-list .player .team .team-name {
    font-size: var(--font-size-lv7);
  }
}
.p-award .award-group.mvp .players-list .player .remarks {
  font-size: var(--font-size-lv6);
}
.p-award .award-group.play-off.best5 .players-list .player {
  gap: 10px;
}
@media (max-width: 767px) {
  .p-award .award-group.play-off.best5 .players-list .player {
    gap: 20px;
  }
}
.p-award .award-group.premier.best5 .players-list .player, .p-award .award-group.future.best5 .players-list .player {
  border-bottom: 2px solid var(--color-background);
}
.p-award .award-group.coach .players-list .player {
  padding: 20px 40px;
}
.p-award .award-group.referee .players-list .player {
  padding: 30px 40px;
  border-top: 4px solid var(--color-background);
  border-bottom: 4px solid var(--color-background);
}
.p-award .flex-category {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 1023px) {
  .p-award .flex-category {
    flex-direction: column;
    align-items: center;
  }
}
.p-award .table {
  margin-top: 40px;
}
@media (max-width: 1023px) {
  .p-award .table {
    width: calc(95vw - 20px);
    overflow-x: scroll;
    padding-right: 5vw;
  }
}
@media (max-width: 767px) {
  .p-award .table {
    margin-top: 30px;
    width: calc(100vw - 20px);
    max-width: calc(100vw - (100vw - 500px + 40px) / 2);
    padding-right: 20px;
  }
}
.p-award .note {
  background: rgba(255, 255, 255, 0.8980392157);
}
.p-award.old {
  padding: 60px 0;
}
.p-award.old .contents:not(:first-of-type) {
  margin-top: 90px;
}
.p-award.old .title_lv3 {
  font-size: var(--font-size-lv5);
  font-weight: var(--font-weight-light);
  padding-left: 15px;
  border-left: 5px solid var(--color-theme);
  margin-bottom: 30px;
}
.p-award.old .title_lv3 em {
  font-style: normal;
}
@media (max-width: 767px) {
  .p-award.old .contents_body {
    width: calc(100vw - 20px);
    max-width: calc(100vw - (100vw - 500px + 40px) / 2);
    overflow-x: scroll;
    padding-right: 20px;
  }
  .p-award.old .contents_body table {
    min-width: 500px;
  }
}
.p-award.old p.ar {
  text-align: right;
}
@media (max-width: 767px) {
  .p-award.old p.ar {
    text-align: left;
  }
}

.caption {
  margin-top: 40px;
  background: var(--color-foreground);
  color: var(--color-background);
  font-size: var(--font-size-lv6);
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  padding: 10px 30px;
}
@media (max-width: 767px) {
  .caption {
    padding: 20px 30px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px 0;
  }
}
@media (max-width: 767px) {
  .caption.column-wrap {
    height: 180px;
  }
}
.caption li {
  display: flex;
  align-items: center;
}
.caption li .icon {
  width: 24px;
}

.note {
  margin-top: 40px;
  padding: 20px;
  background: rgba(206, 0, 0, 0.05);
  font-size: var(--font-size-lv6);
  font-weight: 300;
}

.sns-share {
  display: flex;
  align-items: center;
  gap: 20px;
}
.sns-share.right {
  justify-content: flex-end;
}
.sns-share.center {
  justify-content: center;
}
@media (max-width: 767px) {
  .sns-share {
    gap: 10px;
  }
}
.sns-share .share-link {
  border: 1px solid var(--color-foreground);
  background: var(--color-background-subtle);
  font-size: var(--font-size-lv6);
  padding: 5px 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.sns-share .share-link img {
  width: 28px;
  height: 28px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 767px) {
  .sns-share .share-link img {
    width: 20px;
    height: 20px;
  }
}

/* ---------------------------------------
    score
---------------------------------------- */
.p-index-score {
  background: var(--color-foreground-subtle);
}
.p-index-score .game-card {
  background: var(--color-background);
  width: 160px;
  position: relative;
  box-sizing: border-box;
  border: 2px solid var(--color-foreground-subtle);
}
.p-index-score .game-card:hover {
  border-color: var(--color-theme);
}
.p-index-score .game-card:has(.state.cancel) {
  opacity: 0.5;
}
.p-index-score .game-card a {
  display: block;
}
.p-index-score .game-card .league {
  height: 20px;
  background: #000;
  margin-bottom: 10px;
  padding: 4px 10px;
}
.p-index-score .game-card .league img {
  display: block;
  height: 12px;
  width: auto;
}
.p-index-score .game-card .state {
  width: 60px;
  height: 20px;
  position: absolute;
  top: 0;
  right: 0;
  line-height: 20px;
  text-align: center;
  color: var(--color-background);
  font-size: var(--font-size-lv7);
  letter-spacing: 0.8px;
}
.p-index-score .game-card .state::before {
  content: "";
  border-bottom: 20px solid #000;
  position: absolute;
  top: 0;
  right: 60px;
}
.p-index-score .game-card .state.live {
  background: var(--color-theme);
}
.p-index-score .game-card .state.live::before {
  border-right: 10px solid var(--color-theme);
}
.p-index-score .game-card .state.finish {
  background: #7097DA;
}
.p-index-score .game-card .state.finish::before {
  border-right: 10px solid #7097DA;
}
.p-index-score .game-card .state.cancel {
  background: #E97476;
}
.p-index-score .game-card .state.cancel::before {
  border-right: 10px solid #E97476;
}
.p-index-score .game-card .logo-score {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
@media (max-width: 1023px) {
  .p-index-score .game-card .logo-score {
    gap: 2px;
  }
}
.p-index-score .game-card .logo-score .team-logo {
  width: 30px;
}
@media (max-width: 1023px) {
  .p-index-score .game-card .logo-score .team-logo {
    width: 24px;
  }
}
.p-index-score .game-card .logo-score .score {
  position: relative;
  font-size: var(--font-size-lv5);
}
.p-index-score .game-card .logo-score .score .num {
  letter-spacing: calc(var(--font-size-lv5) * 0.05);
  font-family: var(--font-family-num);
}
.p-index-score .game-card .logo-score .score .num.win {
  color: var(--color-theme);
}
.p-index-score .game-card .logo-score .score .hyphen {
  color: #777777;
  font-family: var(--font-family-num);
}
.p-index-score .game-card .logo-score .score .ot {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: var(--font-size-lv8);
  font-family: var(--font-family-num);
}
.p-index-score .game-card .team-names {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: var(--font-size-lv7);
}
.p-index-score .game-card .team-names .name {
  width: 50%;
}
.p-index-score .game-card .team-names .name:first-of-type {
  text-align: right;
}
.p-index-score .game-card .team-names .vs {
  color: #777777;
  font-family: var(--font-family-num);
}
.p-index-score .game-card .date-time {
  margin-top: 5px;
  font-family: var(--font-family-num);
  color: var(--color-foreground-subtle);
  font-size: var(--font-size-lv6);
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid var(--color-gray);
  border-bottom: 1px solid #C0C0C0;
}
.p-index-score .game-card .place {
  height: 40px;
  padding: 4px 8px;
  background: var(--color-background-subtle);
  font-size: var(--font-size-lv8);
  text-align: center;
  display: flex;
  align-items: center;
}
.p-index-score .bg-bottom {
  background: var(--color-foreground);
  padding: 8px 0;
}
.p-index-score .bg-bottom .bottom {
  color: var(--color-background);
  font-size: var(--font-size-lv6);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}

/* ---------------------------------------
    kv
---------------------------------------- */
.p-index-kv {
  padding: 30px 0;
}

/* ---------------------------------------
    news
---------------------------------------- */
.p-index-news {
  background-image: url(../img/page/index-news-bg.png);
  background-size: 2000px;
  background-position: top center;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .p-index-news {
    background-image: none;
  }
}
.p-index-news .flex-contents {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1023px) {
  .p-index-news .flex-contents {
    flex-direction: column;
    gap: 30px;
  }
}
.p-index-news .flex-contents .articles {
  width: 75%;
}
@media (max-width: 1023px) {
  .p-index-news .flex-contents .articles {
    width: 100%;
  }
}
.p-index-news .flex-contents .banners {
  width: 20%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 1023px) {
  .p-index-news .flex-contents .banners {
    width: 100%;
    flex-direction: row;
    gap: 15px;
  }
}
@media (max-width: 767px) {
  .p-index-news .flex-contents .banners {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .p-index-news .flex-contents .banners li {
    width: calc((100% - 15px) / 2);
  }
}
.p-index-news .flex-contents .banners li a {
  display: block;
}
.p-index-news .flex-contents .banners li a img {
  border-radius: var(--border-radius-default);
}

/* ---------------------------------------
    highlight
---------------------------------------- */
.p-index-highlight {
  background: var(--color-background-subtle);
}
.p-index-highlight .video-link {
  background: var(--color-background);
  border-radius: 15px;
  position: relative;
}
.p-index-highlight .video-link a {
  display: block;
}
.p-index-highlight .video-link::after {
  content: url(../img/page/index-highlight-play.svg);
  display: block;
  width: 50px;
  height: 50px;
  position: absolute;
  top: calc(50% - 20px);
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.p-index-highlight .video-link .thumbnail {
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px 15px 0px 0px;
}
.p-index-highlight .video-link .title {
  margin: 10px 20px;
  font-size: var(--font-size-lv6);
  color: var(--color-foreground-subtle);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  overflow: hidden;
}

/* ---------------------------------------
    tournament
---------------------------------------- */
.p-index-tournament {
  background: var(--color-foreground-subtle);
  padding: 20px;
}
@media (max-width: 767px) {
  .p-index-tournament {
    padding: 20px 0;
  }
}
.p-index-tournament .bg {
  background: var(--color-foreground);
}
.p-index-tournament .a-section-title .en,
.p-index-tournament .a-section-title .jp {
  color: var(--color-background);
}
.p-index-tournament .a-section-title .line {
  background: var(--color-background);
}
.p-index-tournament .banners {
  display: flex;
  gap: 20px;
}
@media (max-width: 767px) {
  .p-index-tournament .banners {
    flex-wrap: wrap;
    gap: 15px;
  }
}
@media (max-width: 767px) {
  .p-index-tournament .banners li {
    width: calc((100% - 20px) / 2);
  }
}
.p-index-tournament .banners li a {
  display: block;
}
.p-index-tournament .banners li a img {
  border-radius: var(--border-radius-default);
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-index-tournament .banners li a .title {
  color: var(--color-background);
  text-align: center;
  margin-top: 5px;
}

/* ---------------------------------------
    ticket
---------------------------------------- */
.p-index-ticket {
  background: url(../img/page/index-ticket-bg.png) no-repeat center;
  background-size: cover;
  padding: 30px 0;
  position: relative;
}
@media (max-width: 1023px) {
  .p-index-ticket {
    padding: 30px 0 60px;
  }
}
.p-index-ticket .flex-contents {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.p-index-ticket .flex-contents .copy {
  font-size: var(--font-size-lv5);
}
@media (max-width: 767px) {
  .p-index-ticket .flex-contents .copy {
    font-size: var(--font-size-lv6);
  }
}
.p-index-ticket .flex-contents .copy br {
  display: none;
}
@media (max-width: 767px) {
  .p-index-ticket .flex-contents .copy br {
    display: block;
  }
}
.p-index-ticket .flex-contents .text-group {
  max-width: 450px;
  color: var(--color-background);
}
.p-index-ticket .flex-contents .text-group .section-title {
  font-size: 80px;
  font-family: var(--font-family-en);
  font-weight: var(--font-weight-bold);
  line-height: 1;
}
@media (max-width: 1023px) {
  .p-index-ticket .flex-contents .text-group .section-title {
    font-size: 72px;
  }
}
@media (max-width: 1023px) {
  .p-index-ticket .flex-contents .text-group .section-title {
    font-size: 40px;
  }
}
.p-index-ticket .flex-contents .text-group .text {
  font-size: var(--font-size-lv6);
  text-shadow: 0px 2px 3px rgba(0, 0, 0, 0.4);
}
@media (max-width: 1023px) {
  .p-index-ticket .flex-contents .text-group .text br {
    display: none;
  }
}
.p-index-ticket .flex-contents .logo-button {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
@media (max-width: 767px) {
  .p-index-ticket .flex-contents .logo-button {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    justify-content: space-between;
  }
}
.p-index-ticket .flex-contents .logo-button .logo {
  width: 480px;
}
@media (max-width: 1023px) {
  .p-index-ticket .flex-contents .logo-button .logo {
    width: 320px;
  }
}
@media (max-width: 767px) {
  .p-index-ticket .flex-contents .logo-button .logo {
    width: 160px;
    margin: 15px 15px 0 0;
  }
}
.p-index-ticket .flex-contents .logo-button .a-button {
  border-radius: 0;
  font-size: var(--font-size-lv5);
  height: 44px;
  border: 1px solid #FFF;
}
@media (max-width: 767px) {
  .p-index-ticket .flex-contents .logo-button .a-button {
    width: 100vw;
    border: none;
  }
}

/* ---------------------------------------
    sns
---------------------------------------- */
.p-index-sns {
  background: var(--color-background-subtle);
  padding: 20px;
}
.p-index-sns .links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
@media (max-width: 1023px) {
  .p-index-sns .links {
    gap: 10px;
  }
}
.p-index-sns .links a {
  display: block;
}
.p-index-sns .links img {
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 1023px) {
  .p-index-sns .links img {
    width: 40px;
  }
}

/* ---------------------------------------
    partner
---------------------------------------- */
.p-index-partner .section-title {
  font-size: var(--font-size-lv4);
  font-family: var(--font-family-en);
  font-weight: var(--font-weight-bold);
  text-align: center;
  border-bottom: 1px solid var(--color-gray);
  padding-bottom: 10px;
}
.p-index-partner .group-list .group:not(:first-child) {
  margin-top: 30px;
}
.p-index-partner .group-list .group .logo {
  width: 100px;
}
@media (max-width: 1023px) {
  .p-index-partner .group-list .group .logo {
    width: 80px;
  }
}
.p-index-partner .group-list .group:first-child .logo {
  width: 270px;
}
@media (max-width: 1023px) {
  .p-index-partner .group-list .group:first-child .logo {
    width: 220px;
  }
}
.p-index-partner .group-list .group:nth-child(2) .logo, .p-index-partner .group-list .group:nth-child(3) .logo {
  width: 140px;
}
@media (max-width: 1023px) {
  .p-index-partner .group-list .group:nth-child(2) .logo, .p-index-partner .group-list .group:nth-child(3) .logo {
    width: 110px;
  }
}
.p-index-partner .group-list .group:nth-child(4) .logo-list:not(:first-of-type) {
  margin-top: 20px;
}
.p-index-partner .group-list .group .group-title {
  text-align: center;
  color: var(--color-foreground-subtle);
  font-family: var(--font-family-en);
  font-weight: var(--font-weight-bold);
}
.p-index-partner .group-list .group .logo-list {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px 30px;
  flex-wrap: wrap;
}
@media (max-width: 1023px) {
  .p-index-partner .group-list .group .logo-list {
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .p-index-partner .group-list .group .logo-list li {
    min-width: 40%;
    text-align: center;
  }
}
.p-index-partner .group-list .group .logo-list li a {
  display: block;
}

.p-leaders .rankings {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.p-leaders .rankings .ranking-contents {
  width: calc(50% - 20px);
}
@media (max-width: 1023px) {
  .p-leaders .rankings .ranking-contents {
    width: 100%;
    max-width: 650px;
  }
}
.p-leaders .ranking-title {
  font-size: var(--font-size-lv4);
  color: var(--color-background);
  background-image: url(../img/page/leaders-title-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 10px 30px;
  border-left: 6px solid var(--color-theme);
}
.p-leaders .player-list .player {
  border-bottom: 1px solid var(--color-gray);
  display: flex;
  padding: 20px 10px;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .p-leaders .player-list .player {
    padding: 15px 5px;
  }
}
.p-leaders .player-list .player .rank {
  font-family: var(--font-family-num);
  color: var(--color-foreground-subtle);
  font-size: var(--font-size-lv3);
  width: 60px;
  text-align: center;
}
@media (max-width: 767px) {
  .p-leaders .player-list .player .rank {
    width: 45px;
  }
}
.p-leaders .player-list .player:first-child .rank {
  color: var(--color-theme);
  font-size: clamp(2.5rem, 0.79rem + 3.57vw, 4rem);
  border-bottom: 3px solid var(--color-theme);
  letter-spacing: calc(var(--font-size-lv2) * 0.05);
}
.p-leaders .player-list .player:first-child .rank .suffix {
  font-size: var(--font-size-lv2);
}
.p-leaders .player-list .player:nth-child(2) .rank, .p-leaders .player-list .player:nth-child(3) .rank {
  font-size: var(--font-size-lv1);
  border-bottom: 3px solid var(--color-gray);
  letter-spacing: calc(var(--font-size-lv3) * 0.05);
}
.p-leaders .player-list .player:nth-child(2) .rank .suffix, .p-leaders .player-list .player:nth-child(3) .rank .suffix {
  font-size: var(--font-size-lv3);
}
.p-leaders .player-list .player .flex-contents {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 20px;
}
@media (max-width: 767px) {
  .p-leaders .player-list .player .flex-contents {
    flex-direction: column;
    gap: 5px;
  }
}
.p-leaders .player-list .player .number {
  font-family: var(--font-family-num);
  font-size: var(--font-size-lv2);
  letter-spacing: calc(var(--font-size-lv2) * 0.05);
  line-height: 1;
  display: block;
  text-align: center;
}
@media (max-width: 767px) {
  .p-leaders .player-list .player .number {
    display: inline;
    font-size: var(--font-size-lv3);
  }
}
.p-leaders .player-list .player .position {
  font-family: var(--font-family-en);
  font-weight: var(--font-weight-bold);
  color: var(--color-foreground-subtle);
  font-size: var(--font-size-lv5);
  line-height: 1;
  display: block;
  text-align: center;
}
@media (max-width: 767px) {
  .p-leaders .player-list .player .position {
    display: inline;
  }
}
.p-leaders .player-list .player .photo {
  aspect-ratio: 3/4;
  width: 50px;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-leaders .player-list .player .name {
  display: block;
  width: 190px;
  padding-bottom: 5px;
  border-bottom: 2px solid var(--color-theme);
  margin-bottom: 5px;
  font-size: var(--font-size-lv6);
}
@media (max-width: 767px) {
  .p-leaders .player-list .player .name {
    width: 120px;
  }
}
.p-leaders .player-list .player .team {
  font-size: var(--font-size-lv7);
  font-weight: var(--font-weight-light);
  display: flex;
  align-items: center;
  gap: 5px;
}
@media (max-width: 767px) {
  .p-leaders .player-list .player .team {
    width: 120px;
  }
}
.p-leaders .player-list .player .team .icon {
  width: 20px;
}
.p-leaders .player-list .player .score {
  width: 75px;
  text-align: right;
  font-family: var(--font-family-num);
  color: #888;
  font-size: var(--font-size-lv4);
}
@media (max-width: 767px) {
  .p-leaders .player-list .player .score {
    width: 60px;
  }
}
.p-leaders .player-list .player:first-child .score {
  color: var(--color-theme);
  font-size: var(--font-size-lv2);
  letter-spacing: calc(var(--font-size-lv2) * 0.05);
}
@media (max-width: 767px) {
  .p-leaders .player-list .player:first-child .score {
    font-size: var(--font-size-lv3);
  }
}
.p-leaders .player-list .player:nth-child(2) .score, .p-leaders .player-list .player:nth-child(3) .score {
  font-size: var(--font-size-lv3);
  letter-spacing: calc(var(--font-size-lv3) * 0.05);
}
@media (max-width: 767px) {
  .p-leaders .player-list .player:nth-child(2) .score, .p-leaders .player-list .player:nth-child(3) .score {
    font-size: var(--font-size-lv4);
  }
}
.p-leaders .modal {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  z-index: 999;
  background-color: rgba(85, 85, 85, 0.8);
  padding: 90px 20px;
}
.p-leaders .modal .close-modal {
  position: absolute;
  top: 60px;
  left: calc(50% + 280px);
  color: var(--color-background);
  font-family: var(--font-family-en);
  font-weight: var(--font-weight-bold);
}
@media (max-width: 767px) {
  .p-leaders .modal .close-modal {
    left: unset;
    right: 20px;
    top: 40px;
    font-size: 20px;
  }
}
.p-leaders .modal .close-modal::before {
  content: "×";
  font-family: var(--font-family-jp);
  font-weight: var(--font-weight-default);
}
.p-leaders .modal .modal-contents {
  background: var(--color-background);
  max-width: 540px;
  width: 100%;
  max-height: 100%;
  overflow-y: scroll;
  position: relative;
}
.p-leaders .modal .modal-contents .player {
  padding: 20px;
}
.p-leaders .modal .modal-contents .player .rank {
  width: 30px;
}
@media (max-width: 767px) {
  .p-leaders .modal .modal-contents .player .rank {
    width: 25px;
  }
}

.p-method {
  padding-bottom: 90px;
}
.p-method .title_lv2,
.p-method .title {
  font-size: var(--font-size-lv5);
  font-weight: var(--font-weight-light);
  padding-left: 15px;
  border-left: 5px solid var(--color-theme);
  margin: 60px 0 40px;
}
@media (max-width: 767px) {
  .p-method .title_lv2,
  .p-method .title {
    margin: 40px 0 30px;
  }
}
.p-method .title_lv2 em,
.p-method .title em {
  font-style: normal;
}
.p-method dt {
  margin-top: 60px;
  margin-bottom: 20px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--color-gray);
  color: var(--color-foreground-subtle);
  font-size: clamp(16px, 2.09vw, 18px);
}
.p-method dl:first-of-type dt {
  margin-top: 0;
}
.p-method dd {
  font-weight: var(--font-weight-light);
}
.p-method .league-title {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.p-method .league-title .logo {
  width: 160px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .p-method .league-title .logo {
    width: 120px;
  }
}
.p-method .team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 0;
  padding: 10px 30px;
}
.p-method .team-list li {
  width: 50%;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 767px) {
  .p-method .team-list li {
    width: 100%;
  }
}
.p-method .team-list li .team-logo {
  width: 40px;
}
.p-method .team-list li a {
  color: var(--color-link);
  font-weight: var(--font-weight-light);
}
.p-method .team-list li a:hover {
  color: var(--color-theme);
}

.p-player.profile .flex-contents {
  display: flex;
  align-items: center;
  gap: 50px;
}
@media (max-width: 1023px) {
  .p-player.profile .flex-contents {
    flex-direction: column;
    gap: 30px;
  }
}
.p-player.profile .flex-contents .photo {
  width: 180px;
  aspect-ratio: 3/4;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-player.profile .flex-contents .text-group {
  width: 340px;
}
.p-player.profile .flex-contents .text-group .team {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 3px solid #CE0000;
}
.p-player.profile .flex-contents .text-group .team .logo {
  height: 50px;
  width: auto;
}
.p-player.profile .flex-contents .text-group .team p {
  font-size: var(--font-size-lv5);
  font-weight: var(--font-weight-light);
}
.p-player.profile .flex-contents .text-group .name-group {
  margin-top: 30px;
  display: flex;
  gap: 20px;
}
.p-player.profile .flex-contents .text-group .name-group .num-position {
  text-align: center;
  line-height: 1;
}
.p-player.profile .flex-contents .text-group .name-group .num-position .num {
  font-size: 64px;
  letter-spacing: 3.2px;
  font-family: var(--font-family-num);
}
.p-player.profile .flex-contents .text-group .name-group .num-position .position {
  font-family: var(--font-family-en);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-lv4);
  color: var(--color-foreground-subtle);
}
.p-player.profile .flex-contents .text-group .name-group .name .default {
  font-size: var(--font-size-lv4);
  font-weight: var(--font-weight-light);
}
.p-player.profile .flex-contents .text-group .name-group .name .furigana {
  font-size: var(--font-size-lv6);
  font-weight: var(--font-weight-light);
}
.p-player.profile .flex-contents .text-group .name-group .name .en {
  font-family: var(--font-family-en);
  color: var(--color-foreground-subtle);
  font-weight: var(--font-weight-bold);
  margin-top: 10px;
}
.p-player.profile .flex-contents .table {
  max-width: 500px;
  width: 100%;
}
.p-player.profile .flex-contents .chart-container {
  width: 450px;
  margin: auto;
}
.p-player.chart-stats .flex-contents {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .p-player.chart-stats .flex-contents {
    flex-direction: column;
    gap: 30px;
  }
}
.p-player.chart-stats .flex-contents .chart,
.p-player.chart-stats .flex-contents .stats {
  max-width: 500px;
  width: 100%;
}
@media (max-width: 1023px) {
  .p-player.chart-stats .flex-contents .chart,
  .p-player.chart-stats .flex-contents .stats {
    max-width: 400px;
  }
}
.p-player.chart-stats .flex-contents .chart .chart-container {
  padding: 0 40px;
}
@media (max-width: 1023px) {
  .p-player.chart-stats .flex-contents .chart .chart-container {
    padding: 0 20px;
  }
}
@media (max-width: 767px) {
  .p-player.chart-stats .flex-contents .chart .chart-container {
    padding: 0;
  }
}
.p-player.chart-stats .flex-contents .stats .history {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .p-player.chart-stats .flex-contents .stats .history {
    margin-top: 20px;
  }
}
.p-player.career-total .table, .p-player.career-average .table {
  overflow-x: scroll;
}
@media (max-width: 1023px) {
  .p-player.career-total .table, .p-player.career-average .table {
    width: calc(95vw - 20px);
    padding-right: 5vw;
  }
}
@media (max-width: 767px) {
  .p-player.career-total .table, .p-player.career-average .table {
    max-width: calc(100vw - (100vw - 500px + 40px) / 2);
    width: calc(100vw - 20px);
    padding-right: 20px;
  }
}

.p-record .total-score {
  padding: 100px 0;
  border-top: 3px solid var(--color-theme);
  border-bottom: 3px solid var(--color-theme);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}
@media (max-width: 767px) {
  .p-record .total-score {
    padding: 60px 0;
    gap: 30px;
  }
}
.p-record .total-score .team {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.p-record .total-score .team:first-of-type {
  flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .p-record .total-score .team {
    flex-direction: column;
    gap: 10px;
  }
  .p-record .total-score .team:first-of-type {
    flex-direction: column;
  }
}
.p-record .total-score .team .name {
  font-size: var(--font-size-lv4);
}
@media (max-width: 767px) {
  .p-record .total-score .team .name {
    font-size: var(--font-size-lv6);
  }
}
.p-record .total-score .team .logo {
  width: 60px;
}
@media (max-width: 767px) {
  .p-record .total-score .team .logo {
    width: 40px;
  }
}
.p-record .total-score .score {
  text-align: center;
  font-family: var(--font-family-num);
  line-height: 1;
  font-size: 64px;
  letter-spacing: 3.2px;
}
@media (max-width: 767px) {
  .p-record .total-score .score {
    font-size: 40px;
  }
}
.p-record .total-score .score span {
  font-size: var(--font-size-lv3);
  letter-spacing: calc(var(--font-size-lv3) * 0.05);
  display: block;
  color: var(--color-foreground-subtle);
}
.p-record .game-list .game {
  border-top: 1px solid var(--color-gray);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
@media (max-width: 767px) {
  .p-record .game-list .game {
    gap: 20px;
  }
}
.p-record .game-list .game time {
  display: block;
  width: 100%;
  text-align: center;
  font-family: var(--font-family-num);
  color: var(--color-foreground-subtle);
}
.p-record .game-list .game .team {
  width: calc(50% - 100px);
  display: flex;
  align-items: center;
  gap: 15px;
}
@media (max-width: 767px) {
  .p-record .game-list .game .team {
    flex-direction: column;
    gap: 5px;
  }
  .p-record .game-list .game .team:first-of-type {
    flex-direction: column-reverse;
  }
}
.p-record .game-list .game .team:first-of-type {
  justify-content: flex-end;
}
.p-record .game-list .game .team .logo {
  width: 40px;
}
@media (max-width: 767px) {
  .p-record .game-list .game .team .logo {
    width: 30px;
  }
}
.p-record .game-list .game .score {
  width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: var(--font-size-lv3);
  letter-spacing: calc(var(--font-size-lv3) * 0.05);
  font-family: var(--font-family-num);
}
@media (max-width: 767px) {
  .p-record .game-list .game .score {
    gap: 5px;
  }
}
.p-record .game-list .game .score .num {
  display: block;
  width: 40px;
  text-align: center;
}
.p-record .game-list .game .score .num.win, .p-record .game-list .game .score .num.lose {
  position: relative;
}
.p-record .game-list .game .score .num.win::after, .p-record .game-list .game .score .num.lose::after {
  color: var(--color-foreground);
  font-size: var(--font-size-lv7);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.p-record .game-list .game .score .num:first-of-type.win::after, .p-record .game-list .game .score .num:first-of-type.lose::after {
  left: -20px;
}
.p-record .game-list .game .score .num:last-of-type.win::after, .p-record .game-list .game .score .num:last-of-type.lose::after {
  right: -20px;
}
.p-record .game-list .game .score .num.win {
  color: var(--color-theme);
}
.p-record .game-list .game .score .num.win::after {
  content: "◯";
}
.p-record .game-list .game .score .num.lose::after {
  content: "●";
}
.p-record .game-list .game .score .hyphen {
  color: var(--color-gray);
}
.p-record .season-total {
  color: var(--color-background);
  background: var(--color-foreground-subtle);
  display: flex;
}
.p-record .season-total .team {
  width: 50%;
  padding: 10px 0 5px;
  text-align: center;
  font-family: var(--font-family-num);
  font-size: var(--font-size-lv3);
  letter-spacing: calc(var(--font-size-lv3) * 0.05);
}
.p-record .season-total .team:first-of-type {
  border-right: 1px solid var(--color-background);
}

.p-schedule {
  /* ---------------------------------------
      共通
  ---------------------------------------- */
  /* ---------------------------------------
      schedule list
  ---------------------------------------- */
  /* ---------------------------------------
      schedule detail
  ---------------------------------------- */
}
.p-schedule .date-time .year,
.p-schedule .date-time .month-day,
.p-schedule .date-league .year,
.p-schedule .date-league .month-day {
  font-family: var(--font-family-num);
}
.p-schedule .date-time .year,
.p-schedule .date-league .year {
  color: var(--color-gray);
  font-size: var(--font-size-lv4);
  letter-spacing: calc(var(--font-size-lv4) * 0.05);
  padding-right: 5px;
}
.p-schedule .date-time .month-day,
.p-schedule .date-league .month-day {
  font-size: var(--font-size-lv2);
  letter-spacing: calc(var(--font-size-lv2) * 0.05);
}
.p-schedule .date-time .weekday,
.p-schedule .date-league .weekday {
  font-size: var(--font-size-lv7);
}
.p-schedule .flex-container {
  display: flex;
}
.p-schedule .flex-container .icon,
.p-schedule .flex-container .venue-icon {
  width: 24px;
}
@media (max-width: 1119px) {
  .p-schedule .flex-container .icon,
  .p-schedule .flex-container .venue-icon {
    width: 20px;
  }
}
.p-schedule .team-score .team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.p-schedule .team-score .team .name {
  font-size: var(--font-size-lv7);
}
.p-schedule .team-score .score {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-schedule .team-score .score:has(.num.win) {
  padding-bottom: 20px;
}
.p-schedule .team-score .score .num {
  font-family: var(--font-family-num);
  text-align: center;
}
.p-schedule .team-score .score .num.win, .p-schedule .team-score .score .num.lose {
  position: relative;
}
.p-schedule .team-score .score .num.win::after, .p-schedule .team-score .score .num.lose::after {
  color: var(--color-foreground);
  font-size: var(--font-size-lv7);
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}
.p-schedule .team-score .score .num.win {
  color: var(--color-theme);
}
.p-schedule .team-score .score .num.win::after {
  content: "◯";
}
.p-schedule .team-score .score .num.lose::after {
  content: "●";
}
.p-schedule .team-score .score .hyphen {
  color: var(--color-gray);
  text-align: center;
}
.p-schedule .team-score .score .ot {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: var(--font-size-lv6);
  font-family: var(--font-family-num);
}
.p-schedule .state {
  text-align: center;
  font-size: var(--font-size-lv7);
  color: var(--color-background);
  width: 220px;
  padding: 2px;
  margin-top: 10px;
}
.p-schedule .state.live {
  background: var(--color-theme);
}
.p-schedule .state.finish {
  background: #7097DA;
}
.p-schedule .state.cancel {
  background: #E97476;
}
.p-schedule .stream-links {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1023px) {
  .p-schedule .stream-links {
    justify-content: center;
  }
}
.p-schedule.list .stage-group:not(:first-of-type) {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .p-schedule.list .stage-group .game-list {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.p-schedule.list .stage-group .game-list .game-info {
  border-top: 1px solid var(--color-gray);
  border-bottom: 1px solid var(--color-gray);
  background: rgba(245, 245, 245, 0.5019607843);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.p-schedule.list .stage-group .game-list .game-info:not(:first-of-type) {
  margin-top: 20px;
}
@media (max-width: 1023px) {
  .p-schedule.list .stage-group .game-list .game-info {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .p-schedule.list .stage-group .game-list .game-info {
    width: 100vw;
  }
}
.p-schedule.list .stage-group .game-list .game-info:has(.state.cancel) {
  background: #d5d5d5;
}
.p-schedule.list .stage-group .game-list .game-info:has(.state.cancel) .team-score .a-button.cancel {
  background: #E97476;
}
.p-schedule.list .stage-group .game-list .game-info .date-time .year {
  display: block;
}
@media (max-width: 1023px) {
  .p-schedule.list .stage-group .game-list .game-info .date-time .year {
    display: inline;
  }
}
.p-schedule.list .stage-group .game-list .game-info .date-time .time {
  font-size: var(--font-size-lv6);
}
@media (max-width: 1023px) {
  .p-schedule.list .stage-group .game-list .game-info .date-time .time {
    display: inline;
  }
}
.p-schedule.list .stage-group .game-list .game-info .date-time .time time {
  font-family: var(--font-family-num);
  font-size: var(--font-size-base);
}
.p-schedule.list .stage-group .game-list .game-info .flex-container {
  display: flex;
  justify-content: right;
  gap: 20px;
  width: 264px;
}
@media (max-width: 1119px) {
  .p-schedule.list .stage-group .game-list .game-info .flex-container {
    flex-direction: column;
    width: -moz-fit-content;
    width: fit-content;
    align-items: center;
    gap: 10px;
  }
}
.p-schedule.list .stage-group .game-list .game-info .column-group {
  width: 220px;
  position: relative;
}
.p-schedule.list .stage-group .game-list .game-info .column-group .team-score {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.p-schedule.list .stage-group .game-list .game-info .column-group .team-score .team {
  width: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
@media (max-width: 1023px) {
  .p-schedule.list .stage-group .game-list .game-info .column-group .team-score .team {
    white-space: nowrap;
  }
}
.p-schedule.list .stage-group .game-list .game-info .column-group .team-score .team .team-logo {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-schedule.list .stage-group .game-list .game-info .column-group .team-score .score {
  font-family: var(--font-family-num);
  font-size: 32px;
  letter-spacing: calc(var(--font-size-lv3) * 0.05);
  min-width: 30px;
  padding-top: 5px;
  gap: 5px;
}
.p-schedule.list .stage-group .game-list .game-info .column-group .team-score .score .num {
  width: 40px;
}
.p-schedule.list .stage-group .game-list .game-info .column-group .team-score .hyphen {
  color: var(--color-gray);
}
.p-schedule.list .stage-group .game-list .game-info .column-group .state {
  width: 100%;
}
@media (max-width: 767px) {
  .p-schedule.list .stage-group .game-list .game-info .column-group .state {
    width: 220px;
  }
}
.p-schedule.list .stage-group .game-list .game-info .stream-address {
  width: 290px;
}
@media (max-width: 1279px) {
  .p-schedule.list .stage-group .game-list .game-info .stream-address .stream-links {
    gap: 10px;
  }
}
.p-schedule.list .stage-group .game-list .game-info .stream-address .venue-name {
  margin-top: 20px;
  font-weight: var(--font-weight-light);
  font-size: var(--font-size-lv6);
}
@media (max-width: 1023px) {
  .p-schedule.list .stage-group .game-list .game-info .stream-address .venue-name {
    text-align: center;
  }
}
.p-schedule.list .stage-group .game-list .game-info .stream-address .venue-address {
  margin-top: 10px;
  font-weight: var(--font-weight-light);
  font-size: var(--font-size-lv7);
}
@media (max-width: 1023px) {
  .p-schedule.list .stage-group .game-list .game-info .stream-address .venue-address {
    text-align: center;
  }
}
.p-schedule.list .stage-group .game-list .game-info .buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  width: 275px;
}
@media (max-width: 1023px) {
  .p-schedule.list .stage-group .game-list .game-info .buttons {
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media (max-width: 767px) {
  .p-schedule.list .stage-group .game-list .game-info .buttons {
    width: 275px;
  }
}
.p-schedule.detail .overview {
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media (max-width: 767px) {
  .p-schedule.detail .overview {
    gap: 30px;
  }
}
.p-schedule.detail .overview .date-league {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 767px) {
  .p-schedule.detail .overview .date-league {
    flex-direction: column;
    align-items: flex-start;
  }
}
.p-schedule.detail .overview .flex-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.p-schedule.detail .overview .column-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}
.p-schedule.detail .overview .team-score {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
}
.p-schedule.detail .overview .team-score .team .team-logo {
  width: 60px;
}
@media (max-width: 767px) {
  .p-schedule.detail .overview .team-score .team .team-logo {
    width: 40px;
  }
}
.p-schedule.detail .overview .team-score .score {
  font-size: clamp(2rem, 1.296rem + 3vw, 4rem);
  line-height: 1.2;
}
.p-schedule.detail .overview .team-score .score .num {
  letter-spacing: calc(clamp(2rem, 1.296rem + 3vw, 4rem) * 0.05);
  width: clamp(2.813rem, 1.932rem + 3.76vw, 5.313rem);
}
.p-schedule.detail .overview .team-score .score .num.win::after, .p-schedule.detail .overview .team-score .score .num.lose::after {
  font-size: clamp(0.75rem, 0.662rem + 0.38vw, 1rem);
}
.p-schedule.detail .overview .team-score .score .ot {
  font-size: var(--font-size-lv5);
}
.p-schedule.detail .overview .venue-name {
  padding: 5px 100px;
  background: var(--color-background-subtle);
  font-size: var(--font-size-lv7);
  font-weight: 300;
  text-align: center;
}
@media (max-width: 767px) {
  .p-schedule.detail .overview .venue-name {
    padding: 5px 20px;
    width: 100%;
  }
}
.p-schedule.detail .overview .event-info {
  width: 100%;
  padding: 20px;
  background: rgba(206, 0, 0, 0.05);
  font-size: var(--font-size-lv6);
  font-weight: 300;
}
@media (max-width: 1023px) {
  .p-schedule.detail .overview .stream-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.p-schedule.detail .tab {
  margin-top: 30px;
}
.p-schedule.detail .ticket-venue .l-container {
  position: relative;
}
.p-schedule.detail .ticket-venue .flex-contents {
  display: flex;
  align-items: flex-start;
  gap: 50px;
}
@media (max-width: 1023px) {
  .p-schedule.detail .ticket-venue .flex-contents {
    flex-direction: column;
  }
}
.p-schedule.detail .ticket-venue .flex-contents .table {
  width: calc(100% - 50px - 370px);
}
@media (max-width: 1023px) {
  .p-schedule.detail .ticket-venue .flex-contents .table {
    width: 100%;
  }
}
.p-schedule.detail .ticket-venue .flex-contents .ticket-info {
  width: 370px;
  background: var(--color-background-subtle);
  font-size: var(--font-size-lv6);
}
@media (max-width: 1023px) {
  .p-schedule.detail .ticket-venue .flex-contents .ticket-info {
    width: 100%;
  }
}
.p-schedule.detail .ticket-venue .flex-contents .ticket-info .title {
  background: var(--color-foreground-subtle);
  color: var(--color-background);
  padding: 10px;
  text-align: center;
}
.p-schedule.detail .ticket-venue .flex-contents .ticket-info .textarea,
.p-schedule.detail .ticket-venue .flex-contents .ticket-info .button {
  padding: 20px;
}
.p-schedule.detail .ticket-venue .flex-contents .ticket-info .textarea {
  font-weight: var(--font-weight-light);
}
.p-schedule.detail .ticket-venue .print-btn {
  position: absolute;
  top: 0;
  right: 20px;
}
@media (max-width: 767px) {
  .p-schedule.detail .ticket-venue .print-btn {
    position: static;
    margin-top: 30px;
    display: flex;
    justify-content: flex-end;
  }
}
.p-schedule.detail .box-score .team:not(:first-of-type) {
  margin-top: 60px;
}
.p-schedule.detail .box-score .team .team-name {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: var(--font-size-lv5);
  font-weight: var(--font-weight-light);
  margin-bottom: 10px;
}
.p-schedule.detail .box-score .team .team-name .team-logo {
  width: 50px;
}
@media (max-width: 767px) {
  .p-schedule.detail .box-score .team .table,
  .p-schedule.detail .box-score .team .percent {
    max-width: calc(100vw - (100vw - 500px + 40px) / 2);
    width: calc(100vw - 20px);
    overflow-x: scroll;
    padding-right: 20px;
  }
}
.p-schedule.detail .box-score .team .percent {
  margin-top: 40px;
}
.p-schedule.detail .pbyp .table-group:not(:first-of-type) {
  margin-top: 60px;
}
.p-schedule.detail .pbyp .table-group .quarter-label {
  background: var(--color-foreground-subtle);
  color: var(--color-background);
  font-family: var(--font-family-en);
  font-size: var(--font-size-lv5);
  font-weight: var(--font-weight-bold);
  width: 100%;
  padding: 5px;
  text-align: center;
}
@media (max-width: 767px) {
  .p-schedule.detail .pbyp .table-group .table {
    width: calc(100vw - 20px);
    max-width: calc(100vw - 20px - (100vw - 500px) / 2);
    overflow-x: scroll;
    padding-right: 20px;
  }
}
.p-schedule.detail .back-button {
  padding-bottom: 80px;
}

@media (max-width: 1023px) {
  .p-standings .table {
    width: calc(95vw - 20px);
    overflow-x: scroll;
    padding-right: 5vw;
  }
}
@media (max-width: 767px) {
  .p-standings .table {
    width: calc(100vw - 20px);
    max-width: calc(100vw - (100vw - 500px + 40px) / 2);
    padding-right: 20px;
  }
}

.p-team.list .title-area {
  margin-bottom: 40px;
  max-width: 1120px;
  width: 100%;
  margin: auto;
  border-bottom: 2px solid var(--color-foreground);
}
.p-team.list .title-area:has(.future) {
  border-bottom: 2px solid var(--color-foreground-subtle);
}
.p-team.list .title-area .league-title {
  max-width: 400px;
  width: 70%;
  margin: auto;
  background: var(--color-foreground);
  padding: 15px;
  border-radius: 20px 20px 0px 0px;
  text-align: center;
}
.p-team.list .title-area .league-title.future {
  background: var(--color-foreground-subtle);
}
.p-team.list .title-area .league-title img {
  height: 40px;
  width: auto;
}
.p-team.list .team-list {
  margin: 40px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
@media (max-width: 1023px) {
  .p-team.list .team-list {
    gap: 30px 15px;
  }
}
@media (max-width: 767px) {
  .p-team.list .team-list {
    justify-content: center;
  }
}
.p-team.list .team-list .team-info {
  width: calc((100% - 90px) / 4);
  padding: 3px 0;
  text-align: center;
  transition: var(--transition-default);
  box-sizing: border-box;
  border-left: 3px solid rgba(255, 255, 255, 0.95);
  border-right: 3px solid rgba(255, 255, 255, 0.95);
}
.p-team.list .team-list .team-info:hover {
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
}
@media (max-width: 1023px) {
  .p-team.list .team-list .team-info {
    width: calc((100% - 30px) / 3);
  }
}
@media (max-width: 767px) {
  .p-team.list .team-list .team-info {
    width: 100%;
    max-width: 300px;
  }
}
.p-team.list .team-list .team-info .bg {
  background: rgba(255, 255, 255, 0.95);
  height: 100%;
  margin: auto;
  padding: 20px 15px;
}
.p-team.list .team-list .team-info .logo {
  height: 120px;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-team.list .team-list .team-info .team-name {
  margin-top: 10px;
  font-size: 18px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-team.list .team-list .team-info .ranking {
  max-width: 200px;
  margin: 20px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-image: url(../img/page/team-ranking-bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  color: var(--color-foreground-subtle);
}
.p-team.list .team-list .team-info .ranking .num {
  font-family: var(--font-family-num);
  font-size: 40px;
}
.p-team.list .team-list .team-info:first-child .ranking {
  color: var(--color-theme);
}
.p-team.list .team-list .team-info:nth-child(2) .ranking, .p-team.list .team-list .team-info:nth-child(3) .ranking {
/*  color: #e97476; */
  color: #ce0000;
}
.p-team.list .team-list .team-info .buttons {
  width: 100%;
  max-width: 200px;
  margin: 30px auto 0;
}
.p-team.list .team-list .team-info .buttons .a-button {
  width: 100%;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .p-team.detail .sns-share {
    margin-top: 20px;
  }
}
.p-team.detail .team-title {
  max-width: 1120px;
  width: 100%;
  margin: auto;
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
  background-image: url(../img/page/team-detail-title-bg.png);
  background-size: 580px;
  background-position: top right;
  background-repeat: no-repeat;
  border-bottom: 8px solid var(--team-color);
}
@media (max-width: 1023px) {
  .p-team.detail .team-title {
    flex-direction: column;
    background-image: none;
    margin-top: 30px;
    gap: 20px;
  }
}
.p-team.detail .team-title .team-photo {
  width: 650px;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .p-team.detail .team-title .team-photo {
    width: 100%;
  }
}
.p-team.detail .team-title .logo-name {
  width: calc(100% - 30px - 650px);
}
@media (max-width: 1023px) {
  .p-team.detail .team-title .logo-name {
    width: 90%;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .p-team.detail .team-title .logo-name {
    width: 100%;
    padding: 0 10px;
  }
}
.p-team.detail .team-title .logo-name .logo {
  height: 150px;
  width: auto;
  margin-bottom: 30px;
}
@media (max-width: 1023px) {
  .p-team.detail .team-title .logo-name .logo {
    height: 100px;
    margin-bottom: 0;
  }
}
.p-team.detail .team-title .logo-name .name {
  width: 100%;
}
.p-team.detail .team-title .logo-name .name .en {
  display: block;
  font-family: var(--font-family-en);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-lv4);
  color: var(--team-color);
  border-bottom: 2px solid var(--team-color);
}
.p-team.detail .team-title .logo-name .name .jp {
  display: block;
  margin-top: 15px;
  font-size: var(--font-size-lv4);
  font-weight: 300;
}
.p-team.detail .team-roster .players-list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
@media (max-width: 1023px) {
  .p-team.detail .team-roster .players-list {
    gap: 30px;
  }
}
@media (max-width: 1023px) {
  .p-team.detail .team-roster .players-list {
    gap: 20px 30px;
  }
}
.p-team.detail .team-roster .players-list .player {
  width: calc((100% - 200px) / 6);
  position: relative;
}
@media (max-width: 1023px) {
  .p-team.detail .team-roster .players-list .player {
    width: calc((100% - 90px) / 4);
  }
}
@media (max-width: 767px) {
  .p-team.detail .team-roster .players-list .player {
    width: calc((100% - 30px) / 2);
  }
}
.p-team.detail .team-roster .players-list .player .photo {
  aspect-ratio: 3/4;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-team.detail .team-roster .players-list .player .info-name {
  margin-top: 5px;
  padding: 0 10px;
  display: flex;
  gap: 10px;
}
.p-team.detail .team-roster .players-list .player .info-name .num {
  font-family: var(--font-family-num);
  text-align: center;
  font-size: var(--font-size-lv3);
}
.p-team.detail .team-roster .players-list .player .info-name .position {
  font-family: var(--font-family-en);
  font-weight: var(--font-weight-bold);
  color: var(--color-foreground-subtle);
}
.p-team.detail .team-roster .players-list .player .info-name .name {
  font-size: var(--font-size-lv6);
  color: var(--color-link);
}
.p-team.detail .team-roster .players-list .player .info-name .name:hover {
  color: var(--color-theme);
}
.p-team.detail .team-roster .players-list .player .icons {
  position: absolute;
  top: 0;
  left: 5px;
}
.p-team.detail .team-roster .players-list .player .icons .icon {
  margin-top: 5px;
  width: 24px;
  display: block;
}
.p-team.detail .team-staff .flex-contents {
  display: flex;
  gap: 40px;
}
@media (max-width: 1023px) {
  .p-team.detail .team-staff .flex-contents {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
}
.p-team.detail .team-staff .flex-contents .head-coach {
  text-align: center;
  width: 160px;
  margin: auto;
}
@media (max-width: 1023px) {
  .p-team.detail .team-staff .flex-contents .head-coach {
    margin-bottom: 30px;
  }
}
.p-team.detail .team-staff .flex-contents .head-coach .photo {
  aspect-ratio: 3/4;
  -o-object-fit: cover;
     object-fit: cover;
  width: 160px;
}
.p-team.detail .team-staff .flex-contents .head-coach .title {
  background: var(--color-foreground-subtle);
  color: var(--color-background);
  padding: 5px;
  text-align: center;
  margin-bottom: 10px;
}
.p-team.detail .team-staff .flex-contents .head-coach a {
  color: var(--color-link);
}
.p-team.detail .team-staff .flex-contents .table {
  width: calc((100% - 80px - 160px) / 2);
}
@media (max-width: 1023px) {
  .p-team.detail .team-staff .flex-contents .table {
    width: 100%;
    max-width: 500px;
  }
}
.p-team.detail .team-overview .flex-contents {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1023px) {
  .p-team.detail .team-overview .flex-contents {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
}
.p-team.detail .team-overview .flex-contents .table {
  width: 48%;
}
@media (max-width: 1023px) {
  .p-team.detail .team-overview .flex-contents .table {
    width: 100%;
    max-width: 500px;
  }
}
.p-team.detail .team-overview .slogan {
  margin-top: 30px;
}
.p-team.detail .team-other {
  font-size: var(--font-size-lv7);
}
@media (max-width: 1023px) {
  .p-team.detail .team-stats .table {
    width: calc(95vw - 20px);
    overflow-x: scroll;
    padding-right: 5vw;
  }
}
@media (max-width: 767px) {
  .p-team.detail .team-stats .table {
    width: calc(100vw - 20px);
    max-width: calc(100vw - (100vw - 500px + 40px) / 2);
    padding-right: 20px;
  }
}

.p-text {
  padding-bottom: 40px;
  font-weight: var(--font-weight-light);
}
.p-text ol li {
  list-style: decimal;
  margin-left: 20px;
  padding-left: 5px;
}
.p-text ul li {
  list-style: disc;
  list-style-type: "・ ";
  margin-left: 20px;
}
.p-text .pdf {
  line-height: 30px;
  position: relative;
  padding-right: 30px;
}
.p-text .pdf::after {
  content: url(../img/icon/pdf.png);
  display: block;
  width: 30px;
  height: 30px;
  position: absolute;
  right: 0;
  bottom: -4px;
}
.p-text.annualreport .pdf-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.p-text.annualreport .pdf-list .frame {
  display: block;
  width: calc((100% - 40px) / 3);
  border: 1px solid var(--color-gray);
  padding: 20px 0;
  text-align: center;
}
@media (max-width: 1023px) {
  .p-text.annualreport .pdf-list .frame {
    width: calc((100% - 20px) / 2);
  }
}
@media (max-width: 767px) {
  .p-text.annualreport .pdf-list .frame {
    width: 100%;
  }
}
.p-text.annualreport .pdf-list .frame a {
  font-size: var(--font-size-lv6);
}
.p-text.terms {
  padding-bottom: 90px;
}
.p-text.terms ol, .p-text.terms dl {
  margin-top: 20px;
}
.p-text.terms ol dt, .p-text.terms dl dt {
  font-weight: var(--font-weight-default);
}
.p-text.terms ol .logo-banner, .p-text.terms dl .logo-banner {
  width: auto;
  height: 40px;
  margin: 10px 0;
}
.p-text.privacy {
  padding-bottom: 90px;
}
.p-text.privacy p {
  margin-top: 20px;
}
.p-text.privacy ol, .p-text.privacy dl {
  margin-top: 20px;
}/*# sourceMappingURL=style.css.map */