@charset "utf-8";


/* ======================================================
   common
====================================================== */
[data-device="pc"]{
  display: none;
}
* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  line-height: 1.6;
  font-weight: 700;
  color: #000000;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}

body.fixed {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

.wrapper {
  width: 100%;
  margin: 0 auto;
  padding: 0 4vw;
}

img {
  max-width: 100%;
  width: 100%;
  vertical-align: bottom;
  object-fit: cover;
}

li {
  list-style-type: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.5s;
}

a:hover {
  opacity: 0.7;
}

.section {
  /* margin-top: 50px; */
  margin-top: 6.6666666vw;
}

.section__title {
  font-size: clamp(1.9rem, 5.0666666vw, 3.8rem);
  font-weight: 500;
}

button {
  color: #000 !important;
}

/* ボタン */
.btn {
  /* margin-top: 30px; */
  margin-top: 4vw;
  /* border-radius: 50px; */
  border-radius: 6.666666vw;
  /* padding: 8px 12px; */
  padding: 1.066666vw 1.6vw;
  background-color: #fcfa34;
  display: block;
  /* height: 100px; */
  /* height: 13.333333vw; */
}

.btn span {
  /* border-radius: 50px; */
  border-radius: 6.6666vw;
  /* padding: 21px 60px; */
  padding: 2.8vw 8vw;
  border: 0.4vw solid #000;
  display: block;
  font-size: clamp(1.8rem, 4.8vw, 3.6rem);
  font-weight: 500;
  text-align: center;
  line-height: 1;
  white-space: nowrap;
}

/* ======================================================
   ヘッダー
====================================================== */
.header {
  /* height: 80px; */
  height: 10.66666vw;
  /* padding: 15px 30px; */
  padding: 2vw 4vw;
  box-shadow: 2px 2px 5px rgba(56, 46, 20, 0.5);
  position: relative;
}

.header.is-fixed {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: #fff;
}

.header__inner {
  display: flex;
  align-items: center;
  /* gap: 10px; */
  gap: 1.33333vw;
}

.header__logo {
  line-height: 1;

}

.header__logo img {
  /* height: 50px; */
  height: 6.666666vw;
  object-fit: contain;
}

.header p {
  /* font-size: 2.4rem; */
  font-size: 3.2vw;
  font-size: clamp(1.2rem, 3.2vw, 2.4rem);
  font-weight: 700;
}

.header__nav {
  display: none;
}

/* 追従ナビ */
.fixed-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  z-index: 100;
  background: #fff;
  /* background-color: #fff; */
  /* padding-top: 20px; */
  padding-top: 2.6666vw;
  /* padding-bottom: 20px; */
  padding-bottom: 2.66666vw;
  box-shadow: 0 -8px 20px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  /* gap: 30px; */
  gap: 4.347826%;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  height: 140px;
  height: 18.666666vw;
}

/* 表示状態 */
.fixed-nav.is-show {
  transform: translateY(0);
  opacity: 1;
}

.fixed-nav__btn .btn {
  margin-top: 0;
}

/* ハンバーガー */
.fixed__hamburger {
  /* width: 100px; */
  width: 13.3333333vw;
  /* height: 100px; */
  height: 13.3333333vw;
  background: #000;
  border: none;
  /* border-radius: 10px; */
  border-radius: 1.33333vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  gap: 1.6vw;
  cursor: pointer;
}

.fixed__hamburger span {
  display: block;
  /* width: 54px; */
  width: 7.2vw;
  /* height: 6px; */
  height: 0.8vw;
  /* border-radius: 3.4px; */
  border-radius: 0.4533333vw;
  margin: 0 auto;
  background: #fff;
}

/* モーダルナビ */
/* ===== モーダルナビ ===== */
.fixed-menu {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.fixed-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.fixed-menu__inner {
  position: relative;
  width: 100%;
  height: 100%;
  background: #fff;
  background-color: #fdffdd;
  /* padding: 120px 80px; */
  padding: 16vw 10.66666vw;
}

.fixed-menu__list {
  list-style: none;
  /* text-align: center; */
  padding: 0;
  margin: 0;
}

.fixed-menu__list li {
  /* margin-bottom: 40px; */
  margin-bottom: 5.33333vw;
  /* padding-bottom: 20px; */
  padding-bottom: 2.66666vw;
  /* padding-left: 20px; */
  padding-left: 2.666666vw;
  border-bottom: 2px solid #000;
}

.fixed-menu__list a {
  /* font-size: 24px; */
  font-size: 3.2vw;
  font-weight: 700;
  color: #000;
  text-decoration: none;
}

/* 閉じるボタン */
.fixed-menu__close {
  position: absolute;
  /* top: 20px; */
  top: 2.66666vw;
  /* right: 20px; */
  right: 2.66666vw;
  /* font-size: 6rem; */
  font-size: 8vw;
  background: none;
  border: none;
  cursor: pointer;
}

/* ======================================================
   メインビジュアル
====================================================== */

/* ======================================================
   リード文
====================================================== */
.lead {
  /* margin-top: 50px; */
  margin-top: 6.6666666vw;
}

.lead__title {
  text-align: center;
  /* font-size: 3.8rem; */
  font-size: 5.0666666vw;
  font-weight: 500;
}

.lead__text {
  /* margin-top: 40px; */
  margin-top: 5.3333vw;
  /* font-size: 1.6rem; */
  /* font-size: 2.1333333vw; */
  font-size: clamp(0.8rem, 2.1333333vw, 1.6rem);
  font-weight: 500;
  text-align: center;
}

/* ======================================================
   開催スケジュール
====================================================== */
.schedule.section {
  /* margin-top: 100px; */
  /* margin-top: 13.3333333vw; */
  margin-top: 0;
  padding-top: 12.3333333333333vw;
}

.schedule__content {
  text-align: center;
  background-color: #fdffdd;
  position: relative;
  /* padding: 70px 50px 60px; */
  padding: 9.3333vw 6.66666vw 8vw;
  /* border-radius: 12px; */
  border-radius: 1.6vw;
  z-index: 10;
}

.schedule__title {
  /* font-size: 3.8rem;
  font-size: 5.066666vw; */
  font-size: clamp(1.9rem, 5.0666666vw, 3.8rem);
  top: 0;
  left: 50%;

  /* width: 430px; */
  width: 57.3333vw;
  /* height: 82px; */
  height: 10.933333vw;
  position: relative;
  background-color: #fcfa34;
  /* padding: 16px 48px; */
  /* padding: 10px 0; */
  padding: 1.33333vw 0;
  text-align: center;
  line-height: 1;
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;

  /* 修正箇所 */
  clip-path: polygon(0 0,
      /* 左上 */
      100% 0,
      /* 右上（右端まで広げる） */
      calc(100% - 2.9333333vw) 50%,
      /* 右中央（内側にへこませる） */
      100% 100%,
      /* 右下（右端まで広げる） */
      0 100%,
      /* 左下 */
      2.9333333vw 50%
      /* 左中央（ここは元のまま） */
    );
}

.schedule__title p {
  /* padding: 8px 0; */
  padding: 1.06666vw;
  border-top: 0.266666666666666666666vw solid #fff;
  border-bottom: 0.266666666666666666666vw solid #fff;
  width: 100%;
}

.schedule__item {
  /* padding: 10px 0; */
  padding: 1.3333vw 0;
}

.schedule__item:nth-of-type(2) {
  border-top: 0.4vw dotted #000000;
}

.schedule__item-title {
  margin: 0 auto;
  width: fit-content;
  background-color: #000000;
  line-height: 1;
  color: #ffffff;
  /* padding: 7px 30px 9px; */
  padding: 0.933333vw 4vw 1.2vw;
  /* font-size: 2.5rem; */
  /* font-size: 3.333333vw; */
  font-size: clamp(1.25rem, 3.3333333vw, 2.5rem);
  border-radius: 999px;
}

.schedule__item-sub-title {
  /* font-size: 4vw; */
  font-size: clamp(1.5rem, 4vw, 3rem);
  margin-top: 1.333333vw;
}

.schedule__item-text {
  /* font-size: 2rem; */
  /* font-size: 2.666666vw; */
  font-size: clamp(1rem, 2.6666666666666vw, 2rem);
  /* margin-top: 10px; */
  margin-top: 1.333333vw;
}

/* ======================================================
   選手一覧
====================================================== */
.players-list .section__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  letter-spacing: 0.05em;
}

.section__title-en {
  color: #8e8e8e;
  font-weight: 700;
  font-size: 2.4vw;
  font-size: clamp(0.9rem, 2.4vw, 1.8rem);
  /* margin-top: 10px; */
  margin-top: 1.3333vw;
}

.players-list__title {
  height: 54px;
  height: 7.2vw;
  line-height: 7.2vw;
  background-color: #fcfa34;
  font-size: clamp(1.4rem, 3.7333333vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  /* margin-top: 40px; */
  margin-top: 5.33333vw;
}

/* ----------------------------------
         タブ
---------------------------------- */
.players-list__tabs-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
}

.players-list__tabs {
  display: flex;
  /* gap: 20px; */
  gap: 2.66666vw;
  /* padding: 10x 0; */
  padding: 1.333333333vw;
}

.players-list__tab {
  position: relative;
  flex-shrink: 0;
  /* width: 130px; */
  width: 17.33333vw;
  /* height: 150px; */
  height: 20vw;
}

.players-list__tab-label-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.players-list__tab-label {
  display: inline-block;
  text-align: center;
  font-size: clamp(2.6rem, 6.9333333vw, 5.2rem);
  line-height: 1;
  /* padding: 0 4px 10px; */
  padding: 1vw 0;
  /* border-bottom: 1px solid #000000; */
  position: relative;

}

.players-list__tab-label::after {
  position: absolute;
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  bottom: 0;
  background-color: #000;
  border-radius: 999px;
}

.players-list__tab-label--fl {
  /* padding: 0 0 6px; */
  padding: 0 0 0.8vw;

  /* font-size: 3.4rem; */
  /* font-size: 4.53333vw; */
  font-size: clamp(1.7rem, 4.53333vw, 3.4rem);
  /* margin-top: -6px; */
  margin-top: -0.8vw;
}

.btn-02 {
  display: none;
}

.players-list__tab--active .btn-01 {
  display: none;
}

.players-list__tab--active .btn-02 {
  display: block;
}


/* ----------------------------------
         スクロールバー
---------------------------------- */
/* ▼ Chrome, Safari, Edge など (Webkit系) */
.players-list__tabs-wrapper::-webkit-scrollbar {
  height: 4px;
  /* 横スクロールバーの太さ（高さ） */
}

/* つまみ部分（動くところ：黄色） */
.players-list__tabs-wrapper::-webkit-scrollbar-thumb {
  background: #fcfa34;
  border-radius: 2px;
  /* 角を少し丸くする */
}

/* 背景部分（レール：グレー） */
.players-list__tabs-wrapper::-webkit-scrollbar-track {
  background: #e0e0e0;
  border-radius: 2px;
}

/* ----------------------------------
         タブパネル
---------------------------------- */
.players-list__panels {
  /* display: flex;
    gap: 20px; */
  /* margin-top: 38px; */
  margin-top: 5.066666vw;
}


.players-list__panel.is-active {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* gap: 30px; */
  gap: 4vw;
  /* justify-content: space-between; */
  /* flex-wrap: wrap; */
}

.playeres-list__panel-item {
  position: relative;
  overflow: hidden;
  border: 2px solid #fcfa34;
  /* width: 47.826086956%; */
}

.playeres-list__panel-item:before,
.playeres-list__panel-item:after{
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

.playeres-list__panel-item:before{
  content: '+';
  font-size: calc(20/375*100vw);
  top: calc(-1.3/375*100vw);
  right: calc(9/375*100vw);
  z-index: 2;
}
.playeres-list__panel-item:after{
  content: '';
  border: 1px solid #000;
  background: #fff;
  border-radius: 50%;
  display: block;
  width: calc(20/375*100vw);
  height: calc(20/375*100vw);
  top: calc(5/375*100vw);
  right: calc(5/375*100vw);
}

.playeres-list__panel-item:hover {
  opacity: 0.7;
}

.playeres-list__panel-item-img {
  position: relative;
}

.player-img {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: contain;
  height: 100%;
}

.panel-item__texts {
  /* height: 70px; */
  height: 9.33333vw;
  display: flex;
  /* margin-right: 50px; */
  margin-right: 30px;
  margin-right: 6.666666vw;
  margin-right: 4vw;
  /* margin-right: 0; */
  /* padding-left: 10px; */
  align-items: center;
  justify-content: flex-end;
  /* font-size: 2rem; */
  font-size: 2.66666vw;
  font-size: clamp(1rem, 2.666666666666666666vw, 2rem);
}

.playeres-list__panel-item-pr {
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translate(-50%, 50%);
  /* width: 180px; */
  width: 24vw;
  /* height: 180px; */
  height: 24vw;
  background-color: #fcfa34;
  border-radius: 50%;
}

.playeres-list__panel-item-pr span {
  position: absolute;
  top: 25%;
  right: 25%;
  /* transform: translateY(-25%); */
  /* font-size: 2rem; */
  /* font-size: 2.666666vw; */
  font-size: clamp(1rem, 2.666666vw, 2rem);
  line-height: 1;
  top: 25%;
  right: 25%;
  transform: translate(25%, -25%);
}

/* =========================
   Player Modal（スマホファースト）
========================= */
.player-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.player-modal.is-open {
  display: block;
}

.player-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

/* スマホは「全画面カード」っぽく */
.player-modal__dialog {
  border-radius: 25px;


  position: relative;
  height: 100dvh;
  width: calc(100% - 8vw);
  /* margin: 12px auto; */
  margin: 1.6vw auto;
  background: #fff;

  border-radius: 3.33333vw;
  overflow-y: auto;
  height: auto;
}

/* 閉じるボタン */
.player-modal__close {
  /* position: sticky; */
  position: fixed;
  /* top: 20px; */
  top: 2.66666vw;
  /* right: 18px; */
  right: 6.4vw;
  border: 2px solid #000;
  background: #fff;
  /* width: 70px;
  height: 70px; */
  width: 9.33333vw;
  height: 9.3333vw;
  border-radius: 999px;
  /* font-size: 4rem; */
  /* font-size: 5.33333vw; */
  font-size: clamp(2rem, 5.33333vw, 4rem);
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.player-modal__body {
  display: grid;
  grid-template-columns: 1fr;
  /* スマホは縦 */
  /* gap: 14px; */
  gap: 1.86666vw;
}

/* 画像 */
.player-modal__images {
  position: relative;
  /* height: 530px; */
  height: 70.66666vw;
  overflow: hidden;
}

.player-modal__images img {
  object-fit: cover;
  object-position: top;
  max-height: 100%;
}

.player-modal__bg {
  width: 100%;
  height: auto;
  display: block;
}

.player-modal__images .player-modal__player {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  max-width: 78%;
  height: auto;
}

.player-modal__info {
  /* margin: 30px 50px 190px; */
  /* margin: 4vw 6.66666vw 25.3333vw; */
  padding: 4vw 12.2666666666vw 4vw;
  font-weight: 700;
  /* font-size: 2rem; */
  /* font-size: 2.6666656vw; */
  font-size: clamp(1rem, 2.6666656vw, 2rem);
}

/* 名前 */
.player-modal__name {
  text-align: center;
  line-height: 1.1;
  /* padding-bottom: 30px; */
  padding-bottom: 4vw;
}

.player-modal__name-ja {
  display: block;
  font-size: clamp(1.8rem, 4.8vw, 3.6rem);
  line-height: 1.2;
}

.player-modal__name-en {
  line-height: 1;
  display: block;
  margin-top: 1.8666666vw;
  font-size: clamp(1.2rem, 3.2vw, 2.4rem);

  color: #9c9111;
}

/* スペック */
.player-modal__spec {
  padding: 4vw 8vw;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}

.player-modal__spec dt {
  width: 40%;
  color: #9c9111;
}

.player-modal__spec dd {
  width: 60%;
}

.player-modal__spec dt,
.player-modal__spec dd {
  line-height: 1;
}

.player-modal__spec dt:nth-of-type(n + 2),
.player-modal__spec dd:nth-of-type(n + 2) {
  margin-top: 3.2vw;
}

/* メッセージ */
.player-modal__desc {
  padding: 4vw 2.66666vw;
}

.player-modal__desc-title {
  color: #9c9111;
  text-align: center;
  line-height: 1;
}

.player-modal__text {
  margin-top: 2.66666vw;
  line-height: 1.7;
}

/* 背景スクロール禁止 */
body.is-modal-open {
  overflow: hidden;
}

/* ======================================================
   投票概要
====================================================== */
.voting-overview__item {
  font-weight: normal;
}

.voting-overview__item {
  position: relative;
  padding: 1.33333vw 0 1.3333vw 0;
}

.voting-overview__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  width: 0.4vw;
  max-width: 3px;
  background: #000;
  border-radius: 999px;/
}

.voting-overview__item-titles {
  position: relative;

  display: flex;
  align-items: center;
  font-size: clamp(1.9rem, 5.06666666vw, 3.8rem);
  line-height: 1;
  gap: 1.6vw;
  padding: 0 3.2vw 1.333333vw 2.66666666vw;
}

.voting-overview__item-titles::after {
  content: "";
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  height: 1px;
  background: #000;
  border-radius: 999px;
}

.voting-overview__item-titles img {
  width: 6.666666vw;
  height: 4.8vw;
}

.voting-overview__item-text {
  font-size: clamp(0.8rem, 2.133333vw, 1.6rem);
  padding: 2vw 3.2vw 0 2.66666666vw;
}

.voting-overview__item--2 {
  margin-top: 5.33333vw;
}

.voting-overview__item--2 .voting-overview__item-titles img {
  width: 4.2667vw;
}

.voting-overview__btn {
  margin: 6.66666vw auto 0;
  max-width: 560px;
  width: 74.66666vw;
}

/* ======================================================
   選手グッズ
====================================================== */
.limited-goods__titles {
  font-weight: 500;
}

.limited-goods__title1 {
  margin: 0 auto;
  position: relative;
  width: 34.66666vw;
}

.limited-goods__title1 p {
  margin-top: 0.533333vw;
  line-height: 1;
  width: 100%;
  text-align: center;
  font-size: clamp(1.1rem, 2.9333333vw, 2.2rem);
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
}

.limited-goods__title1 div {
  height: 6.666666vw;
  width: 34.66666vw;
}

.limited-goods__title2 {
  display: block;
  text-align: center;
  font-size: clamp(1.9rem, 5.06666vw, 3.8rem);
  line-height: 1;
}

.limited-goods__title2 span {
  font-size: clamp(2.8rem, 7.33333vw, 5.5rem);
}

.limited-goods__items {
  padding: 0 2.66666vw;
  margin-top: 4vw;
  display: flex;
  justify-content: space-between;
  justify-content: center;
  flex-wrap: wrap;
  /* row-gap: 6.6666666vw; */
}

.limited-goods__item {
  width: 41.6vw;
  margin: 0 auto;
}

.limited-goods__item:nth-child(1){
  margin: 0 10vw;
}

.limited-goods__item:nth-child(n+2){
  margin-top: calc(-20/480*100vw);
}

.limited-goods__texts {
  font-weight: 500;
  margin-top: 5.33333vw;
  font-size: clamp(0.8rem, 2.133333vw, 1.6rem);
  text-align: center;
}

/* ======================================================
   フッター
====================================================== */
.footer {
  margin-bottom: 18.66666vw;
}

.footer__sns-icons {
  margin-top: 6.6666666vw;
  display: flex;
  justify-content: center;
  background-color: #636363;
  gap: 3.33333vw;
  padding: 4vw 0;
}

.footer__sns-icons img {
  width: auto;
  max-width: 5.066666vw;
}

.footer__bottom {
  padding: 4vw 0 3.33333vw;
  text-align: center;
  background-color: #000000;
}

.footer__icon-img {
  width: 18.1333333vw;
  margin: 0 auto;
}

.footer__icon-img a {
  display: block;
}

.footer__copy {
  color: #fff;
  margin-top: 2.666666vw;
  font-size: clamp(0.8rem, 1.6vw, 1.2rem);
}

.schedule.section,
  .players-list.section,
  .voting-overview.section,
  .limited-goods.section{
    padding-top: calc(200/480*100vw);
    margin-top: calc(-100/480*100vw);
  }