@charset "utf-8";

@media screen and (min-width: 767px) {

  [data-device="pc"]{
    display: block!important;
  }

  [data-device="sp"]{
    display: none!important;
  }

  /* ======================================================
   common
====================================================== */
  .wrapper {
    max-width: 1240px;
    padding: 0 20px;
  }

  /* ボタン */
  .btn {
    margin-top: 30px;
    border-radius: 50px;
    padding: 8px 12px;
    height: 100px;
  }

  .btn span {
    border-radius: 50px;
    padding: 21px 60px;
    border: 3px solid #000;
  }

  .section {
    /* scroll-margin-top: 30px; / */
  }

  /* ======================================================
   ヘッダー
====================================================== */
  .header {
    height: 100px;
    padding: 20px 40px;
  }

  .header__inner {
    gap: 20px;
  }

  .header__logo img {
    height: 60px;
  }

  .header p {
    font-size: 2vw;
  }

  .header__nav {
    display: block;
  }

  .header__nav ul {
    margin-left: 5vw;
    /* font-size: 1.6rem; */
    font-size: clamp(0.8rem, 1.1333333vw, 1.6rem);
    display: flex;
    gap: 3.2vw;
  }

  /* 追従ナビ */
  .fixed-nav {
    height: 200px;
    box-shadow: none;
    justify-content: flex-end;
    background: transparent;
  }

  .fixed-nav__btn .btn{
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-right: 20px;
    margin-bottom: 20px;
  }

  .fixed-nav__btn .btn span{
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1.2;
    font-weight: 600;
    font-size: 30px;
  }

  /* ハンバーガー */
  .fixed__hamburger {
    display: none;
  }

  .schedule.section,
  .players-list.section,
  .voting-overview.section,
  .limited-goods.section{
    padding-top: 150px;
    margin-top: -50px;
  }

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

  .lead__title {
    font-size: 3.8rem;
  }

  .lead__text {
    margin-top: 40px;
  }

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

  .schedule__content {
    padding: 70px 50px 60px;
    border-radius: 24px;
  }

  .schedule__title {
    width: 430px;
    height: 82px;
    padding: 10px 0;
    /* 修正箇所 */
    clip-path: polygon(0 0,
        /* 左上 */
        100% 0,
        /* 右上（右端まで広げる） */
        calc(100% - 22px) 50%,
        /* 右中央（内側にへこませる） */
        100% 100%,
        /* 右下（右端まで広げる） */
        0 100%,
        /* 左下 */
        22px 50%
        /* 左中央（ここは元のまま） */
      );
  }

  .schedule__title p {
    padding: 10px 0;
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
  }

  .schedule__item {
    padding: 20px 0;
  }

  .schedule__item-title {
    padding: 7px 30px 9px;
  }

  .schedule__item-sub-title {
    margin-top: 10px;
  }

  .schedule__item-text {
    margin-top: 10px;
  }

  /* ======================================================
   選手一覧
====================================================== */
  .section__title-en {
    margin-top: 10px;
  }

  .players-list__title {
    height: 54px;
    line-height: 54px;

    margin-top: 40px;
  }

  /* ----------------------------------
         タブ
---------------------------------- */
  .players-list__tabs {
    justify-content: space-between;
    gap: 20px;
    padding: 10px 0;
  }

  .players-list__tab {
    width: 130px;
    height: 150px;
  }

  .players-list__tab-label {
    padding: 0 0 10px;
  }

  .players-list__tab-label--fl {
    padding: 0 0 6px;
    margin-top: -6px;
  }

  /* ----------------------------------
         タブパネル
---------------------------------- */
  .players-list__panels {
    margin-top: 38px;
  }

  .players-list__panel.is-active {
    gap: 2.5%;
    row-gap: 20px;
    justify-content: flex-start;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));

    grid-template-columns: repeat(auto-fill, 270px);
    justify-content: center;
    gap: 20px;

    /* gap: 30px; */
  }

  .playeres-list__panel-item {
    /* width: 22%;
  width: calc((100% / 4 - 30px)); */
    width: auto;
    max-width: 270px;
  }

  .playeres-list__panel-item:before{
    font-size: 30px;
    top: -3.5px;
    right: 13px;
  }
  .playeres-list__panel-item:after{
    width: 30px;
    height: 30px;
    top: 7.5px;
    right: 7.5px;
  }

  .panel-item__texts {
    height: 70px;
    margin-right: 25px;
    font-size: 1.6rem;
  }

  .playeres-list__panel-item-pr {
    max-width: 150px;
    max-height: 150px;
  }

  /* =========================
   Player Modal（スマホファースト）
========================= */
  .player-modal {}

  .player-modal__dialog {
    height: auto;
    max-height: 95%;
    margin: 20px auto;
    max-width: 800px;
    border-radius: 40px;
    /* overflow-y: scroll; */
  }

  /* 閉じるボタン */
  .player-modal__close {
    position: fixed;
    top: 20px;
    right: 20px;

    width: 70px;
    height: 70px;
  }

  .player-modal__body {
    gap: 14px;
  }

  /* 画像 */
  .player-modal__images {
    height: 400px;
    /* height: 530px; */
  }

  .player-modal__images .player-modal__player {
    object-fit: contain;
  }

  .player-modal__info {
    /* margin: 30px 50px 190px; */
    padding: 30px 80px;
  }

  /* 名前 */
  .player-modal__name {
    padding-bottom: 30px;
  }

  .player-modal__name-en {
    margin-top: 14px;
  }

  /* スペック */
  .player-modal__spec {
    padding: 15px 30px;
  }

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

  /* メッセージ */
  .player-modal__desc {
    padding: 30px 20px 0;
  }

  .player-modal__text {
    margin-top: 20px;
  }

  /* ======================================================
   投票概要
====================================================== */
  .voting-overview__item {
    padding: 10px 0 10px 0;
  }

  .voting-overview__item-titles {
    gap: 12px;
    padding: 0 25px 20px 20px;
  }

  .voting-overview__item-titles img {
    width: 50px;
    height: 36px;
  }

  .voting-overview__item-text {
    /* margin-top: 30px; */
    padding: 15px 25px 0 20px;
  }

  .voting-overview__item--2 {
    margin-top: 40px;
  }

  .voting-overview__item--2 .voting-overview__item-titles img {
    width: 32px;
  }

  .voting-overview__btn {
    margin: 50px auto 0;
  }

  /* ======================================================
   選手グッズ
====================================================== */
  .limited-goods__title1 {
    width: 260px;
  }

  .limited-goods__title1 p {
    margin-top: 4px;
  }

  .limited-goods__title1 div {
    height: 50px;
    width: 260px;
  }

  .limited-goods__items {
    max-width: 1040px;
    margin: 60px auto 0;
    padding: 0 20px;
    /* margin-top: 30px; */
    row-gap: 50px;
  }

  .limited-goods__item {
    width: 20%;
  }

  .limited-goods__item:nth-child(1),
  .limited-goods__item:nth-child(n+2){
    margin: 0 20px;
  }

  .limited-goods__item:nth-child(n+2){
    margin-top: 0;
  }

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

  .footer__sns-icons {
    margin-top: 50px;
    gap: 25px;
    padding: 30px 0;
  }

  .footer__sns-icons img {
    max-width: 38px;
  }

  .footer__bottom {
    padding: 30px 0 25px;
  }

  .footer__icon-img {
    width: 136px;
  }

  .footer__copy {
    margin-top: 20px;
  }
}


@media screen and (min-width: 1200px) {

  .players-list__tabs-wrapper {
    overflow-x: hidden;
    overflow-y: hidden;
    white-space: nowrap;
  }

  .players-list__tab {
    width: 115px;
    height: 150px;
  }

  .players-list__tab-label {
    font-size: clamp(2.6rem, 6.9333333vw, 4.7rem);
  }

  .players-list__tab-label--fl {
    font-size: clamp(1.8rem, 4.8vw, 3.6rem);
  }
}