@charset "utf-8";

/* ======================================================
   common
====================================================== */
* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 62.5%;
  line-height: 1.6;
  font-weight: 500;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
}

body.fixed {
  overflow: hidden;
  position: fixed;
  width: 100%;
}
main {
  overflow: hidden;
}
.wrapper {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  padding: 30px 0 50px;
}

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;
}

.font-n {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
}

.font-b {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
}

.heading,
.price,
.date,
.number {
  font-family: "Barlow Condensed", sans-serif;
}

.section {
  padding: 0 40px;
  overflow: visible;
}
.section:nth-of-type(-n + 6) {
  background: linear-gradient(
    to bottom,
    rgba(203, 187, 151, 0.3) 0%,
    /* rgba(203, 187, 151, 0.3) 2%, */ rgba(255, 255, 255, 0.3) 30%,
    rgba(255, 255, 255, 0.3) 100%
  );
}
.section:nth-of-type(n + 8) {
  position: relative;
  background-color: rgba(244, 241, 234, 0.5);
}
.section:nth-of-type(n + 9) {
  padding-top: 20px;
}
.section:nth-of-type(n + 8) .wrapper {
  background-color: #fff;
  padding: 30px 60px 50px;
}
.section__content {
  position: relative;
  z-index: 1;
}
.section:nth-of-type(n + 8) h3 {
  background-color: #967823;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 4rem;
  height: 40px;
  width: calc(100% + 100px);
  padding-right: 100px;
  padding-bottom: 3px;
  clip-path: polygon(40px 0%, 100% 0%, 100% 100%, 0% 100%);
  position: relative;
  overflow: hidden;
}
.section:nth-of-type(n + 8) h3::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -80%;
  width: 40%;
  height: 200%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.55) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  animation: h3-shine 3.5s ease-in-out infinite;
}
@keyframes h3-shine {
  0% {
    left: -80%;
  }
  35% {
    left: 120%;
  }
  100% {
    left: 120%;
  }
}
.section:nth-of-type(n + 8) h3 span {
  color: #000;
  padding-left: 10px;
}
.section:nth-of-type(n + 8) h4 {
  font-size: 1.7rem;
  font-weight: 700;
  padding: 6px 0;
  border-bottom: 1px solid #000;
  text-align: center;
}
.section__title {
  margin: 0 auto;
  text-align: center;
  font-weight: bold;
  width: fit-content;
}
.section__title .en {
  color: #967823;
  font-family: "Barlow Condensed", sans-serif;
  display: block;
  font-size: 7.4rem;
  white-space: nowrap;
  margin: 0 auto;
  line-height: 1;
  text-align: left;
}
.section:nth-of-type(n + 8) .section__title .en {
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
}
.section:nth-of-type(n + 8) .section__title .en::before {
  content: "";
  position: absolute;
  left: -42px;
  top: 50%;
  transform: translateY(-50%);
  width: 27px;
  height: 30px;
  background-image: url("../images/common_icon01.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;

  display: block;
}
.section:nth-of-type(n + 8) .section__title .en::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100vw;
  height: 6px;
  background-color: #967823;
}

.section__title .ja {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  margin: 8px auto 0;
  font-size: 1.7rem;
  line-height: 1;
}
.section:nth-of-type(n + 8) .section__title .ja {
  margin: 16px auto 0;
}
.section__bg {
  top: 30px;
  width: 509px;
  position: absolute;
  left: 22px;
}

/* ======================================================
   PC 左右固定画像
====================================================== */
.left {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: calc((100% - 750px) / 2);
}

.right {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: calc((100% - 750px) / 2);
}

.left img,
.right img {
  height: 100%;
  object-fit: cover;
}

.right__nav-lists {
  width: 450px;
  position: absolute;
  top: 50%;
  transform: translatey(-50%);
  left: 3.33854vw;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;

  max-width: 450px;
  width: calc(380/1600*100vw);
  min-width: 380px;
}

.right__nav-list {
   border-bottom: 1px solid #000;
  /* padding: 15px 20px; */
  max-width: 218px;
  height: 96px;
  display: flex;
  align-items: center;
  width: 49%;
}
.right__nav-link {
  display: flex;
  align-self: center;
  gap: 30px;
}

.right__nav-number {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.15em;
}
.right__nav-en {
  font-size: 2.9rem;
  line-height: 1;
}
.right__nav-ja {
  font-size: 1.1rem;
  line-height: 1;
  margin-top: 10px;
}

@media (max-width: 1600px){
  .right__nav-list{
    height: 70px;
  }

  .right__nav-list:nth-child(1){order: 1;}
  .right__nav-list:nth-child(2){order: 6;}
  .right__nav-list:nth-child(3){order: 2;}
  .right__nav-list:nth-child(4){order: 7;}
  .right__nav-list:nth-child(5){order: 3;}
  .right__nav-list:nth-child(6){order: 8;}
  .right__nav-list:nth-child(7){order: 4;}
  .right__nav-list:nth-child(8){order: 9;}
  .right__nav-list:nth-child(9){order: 5;}
  .right__nav-list:nth-child(10){order: 10;}

  .right__nav-ja{
    margin-top: 5px;
  }
  .right__nav-lists{
    flex-direction: column;
  }

  .right__nav-lists ul:nth-child(1) .right__nav-list,
  .right__nav-lists ul:nth-child(2) .right__nav-list{
    height: auto;
  }

  .right__nav-lists ul .right__nav-list a{
    padding: 6px 0;
  }

  .right__nav-en{
    font-size: 2.4rem;
  }
}

@media (max-width: 1200px){
  .right__nav-lists{
    display: none;
  }
}

/* JS */
.js-fade {
  opacity: 0;
  transform: translateY(60px);
  transition:
    opacity 1s ease,
    transform 1s ease;
}
.js-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.section__special-titles {
  opacity: 0;
  transform: translateX(-60px);
  transition:
    opacity 1s ease,
    transform 1s ease;
}
.section__special-titles.is-visible {
  opacity: 1;
  transform: translateX(0);
}
.js-fade:nth-child(2) {
  transition-delay: 0.3s;
}
.js-fade-x {
  opacity: 0;
  transform: translateX(100%);
  transition:
    opacity 1s ease,
    transform 1s ease;
}
.js-fade-x.is-visible {
  opacity: 1;
  transform: translateX(0);
}
/* ======================================================
   メインコンテンツ
====================================================== */
.middle {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}

/*-------------------------------------------
  ヘッダー
-------------------------------------------*/
.header {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 750px;
  padding: 0 40px;
  height: 140px;
  z-index: 1000;
  display: flex;
  align-items: center;
}

.header__logo {
  width: 535px;
  margin: 0;
}

.logo--white {
  display: none;
}

.header__nav {
  display: none;
}
/*-------------------------------------------
  メインビジュアル
-------------------------------------------*/
.mainvisual {
  position: relative;
  margin-top: 140px;
}
.mainvisual img {
  width: 100%;
}
/*-------------------------------------------
  サブビジュアル
-------------------------------------------*/
.subvisual .swiper-wrapper {
  transition-timing-function: linear;
}
/*-------------------------------------------
  リード文
-------------------------------------------*/
.lead {
  padding: 30px 0;
  text-align: center;
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.7;
}
.lead p:last-of-type {
  margin-top: 30px;
}
/*-------------------------------------------
  TITLE PARTNER
-------------------------------------------*/
.title-partner__content {
  margin-top: 30px;
}
.title-partner__img {
  width: 406px;
  margin: 0 auto;
}

/*-------------------------------------------
  DATE
-------------------------------------------*/
.date__content {
  margin-top: 30px;
  font-size: 3.2rem;
  font-weight: 700;
  text-align: center;
}

/*-------------------------------------------
  NEWS
-------------------------------------------*/

.news__content {
  color: #967823;
  font-size: 2.2rem;
  font-weight: 500;
  padding: 50px 20px;
  margin-top: 30px;
  max-height: 586px;
  overflow-y: auto;
  padding-right: 30px;
}
/* スクロールバー全体 */
.news__content::-webkit-scrollbar {
  width: 30px;
}

/* バーの背景部分 */
.news__content::-webkit-scrollbar-track {
  background: #9c7a1a;
  border-radius: 999px;
}

/* 動くつまみ部分 */
.news__content::-webkit-scrollbar-thumb {
  background: #000;
  border-radius: 999px;
}
/* 上下の矢印ボタンを消す */
.news__content::-webkit-scrollbar-button {
  display: none;
}
.news__item {
  border-top: 1px dashed #967823;
  padding: 30px 20px;
  position: relative;
}
.news__badge {
  display: block;
  background-color: #897824;
  color: #fff;
  width: 80px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  position: absolute;
  top: -10px;
  left: 20px;
}
.news__title {
  line-height: 1.8;
  font-weight: 500;
}
.news__date {
  margin-top: 10px;
}
/*-------------------------------------------
  TICKETS
-------------------------------------------*/
.tickets__content {
  text-align: center;
  margin-top: 30px;
}
.tickets__title {
  font-size: 3.2rem;
  font-weight: 700;
}
.tickets__description {
  font-size: 2.2rem;
  margin-top: 50px;
}
.tickets__img {
  width: 420px;
  margin: 10px auto 0;
}

/*-------------------------------------------
  LIVE STREAMING
-------------------------------------------*/
.live-streaming__content {
  margin-top: 30px;
}
.live-streaming__items {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.live-streaming__item {
  flex: 1 1 calc(50% - 10px);
  background-color: #fff;
}
.live-streaming__item-img {
  border: 1px solid #967823;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.youtube-img {
  width: 220px;
}
.j-sport {
  width: 200px;
}
.live-streaming__item-text {
  margin-top: 20px;
  font-size: 1.9rem;
}
/*-------------------------------------------
  YOUTUBE LIVE
-------------------------------------------*/
.youtube-live__content {
  margin-top: 30px;
  text-align: center;
}
.youtube-live__img {
  margin-top: 10px;
}
.youtube-live__img iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
}
.youtube-live__text {
  font-size: 1.7rem;
  font-weight: 700;
}
/*-------------------------------------------
  AWARDS
-------------------------------------------*/
.section.awards {
  position: relative;
  background-color: rgba(244, 241, 234, 0.5);
}
.section.awards .wrapper {
  padding-top: 100px;
}
.awards__bg-img{
  background-image: url('../images/awards_bg-img01.png');
  background-size: cover;
  background-position: bottom;
  height: calc(100% + 280px);
}
.awards__bg-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.awards__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 30px;
  position: relative;
  /* z-index: -10; */
  padding: 0 40px;
}
.awards__item {
  /* background-color: #fff; */
  display: flex;
  align-items: center;
  justify-content: center;
}
.awards__item:hover img {
  filter: brightness(0.5);
  transition: filter 0.5s ease;
}
.awards__item:nth-child(1) {
  grid-column: 1 / -1;
  justify-self: center;
  width: calc(50% - 10px);
}
/*-------------------------------------------
  CLUB AWARDS
-------------------------------------------*/
.club-awards {
  z-index: -2;
  text-align: center;
  position: relative;
}

.club-awards .section__bg {
  top: 210px;
}
.section.club-awards .wrapper {
  padding-top: 280px;
}

.club-awards__block {
  margin-top: 40px;
}

.club-awards__team-name {
  font-size: 2.1rem;
  font-weight: 700;
  color: #967823;
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.club-awards__team-name .img {
  width: 32px;
}
.club-awards__texts {
  margin-top: 14px;
}
.club-awards__text {
  font-size: 1.7rem;
  font-weight: 700;
  padding: 4px 0;
  border-bottom: 1px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.club-awards__text span {
  background-color: #967823;
  display: inline-block;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  /* padding: 0 8px; */
  width: 50px;
  height: 25px;
  margin-right: 12px;
}
.section__flex {
  margin-top: 5px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  position: relative;
}
.section__flex.--center{
  justify-content: center;
}
.flex-item {
  flex: 1;
  padding-top: 10px;
}
.club-awards .flex-item p {
  font-size: 1.5rem;
  font-weight: 700;
  color: #967823;
}
.flex-item .img {
  margin-top: 10px;
}
.section__icon {
  width: 32px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
}

.club-awards__description.--bordernone{
  border: none!important;
}

.club-awards__description {
  font-size: 1.3rem;
  font-weight: 700;
  border-bottom: 1px solid #000;
  padding: 12px 0;
}

.club-awards__description em{
  display: block;
  font-style: normal;
  font-size: 130%;
  font-family: "Barlow Condensed", "Noto Sans JP", sans-serif;
}

.section h3.club-awards__title--small {
  font-size: 3.1rem;
}
/*-------------------------------------------
  LEADERS AWARDS
-------------------------------------------*/
.leaders-awards {
  text-align: center;
}
.leaders-awards__block {
  margin-top: 40px;
}
.flex-item p {
  font-size: 1.7rem;
  /* color: #000; */
  font-weight: 700;
}
/*-------------------------------------------
  INDIVIDUAL AWARDS
-------------------------------------------*/
.individual-awards {
  text-align: center;
}
.individual-awards__block {
  margin-top: 40px;
}
.ranking-lists {
  margin-top: 10px;
}
.ranking-list {
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 5px 0;
  border-bottom: 1px solid #000;
  gap: 1%;
}
.ranking-list span {
  width: 44px;
  height: 40px;
  font-size: 1.4rem;
  color: #fff;
  background-color: #967823;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ranking-list p {
  font-size: 1.2rem;
  white-space: nowrap;
  margin-left: 5px;
  text-align: left;
}

.ranking-list em{
  font-style: normal;
  display: block;
  margin-left: auto;
  margin-right: 0;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.ranking-list em:after{
  content: '票';
}
/*-------------------------------------------
  REGULAR SEASON BEST6
-------------------------------------------*/
.regular-season-best6 {
  text-align: center;
}
.regular-season-best6 .section__title {
  margin-left: -16px;
}
.regular-season-best6 .section__title.js-fade-x {
  transform: translateX(60px);
}
.regular-season-best6 .section__title.js-fade-x.is-visible {
  transform: translateX(0);
}
.regular-season-best6 .section__title .en {
  font-size: 7rem;
}
.section.regular-season-best6 .section__title .en::before {
  width: 22px;
  height: 25px;
  left: -32px;
}
.regular-season-best6__content {
  margin-top: 40px;
}
.regular-season-best6__women {
  margin-top: 40px;
}
.regular-season-best6__men {
  margin-top: 50px;
}
.section__special-titles {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
}
.section.regular-season-best6 h3 span {
  padding-left: 0;
  padding-right: 10px;
}
.section__special__icon {
  width: 32px;
}
.section__special-title {
  padding: 0 40px;
  height: 30px;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  font-weight: bold;
  font-family: "Barlow Condensed", sans-serif;
  clip-path: polygon(40px 0, 100% 0, calc(100% - 40px) 100%, 0 100%);
}
.regular-season-best6 .section__special-title {
  width: 150px;
}
.regular-season-best6__block {
  margin-top: 30px;
}
.regular-season-best6__block:nth-of-type(n + 3) {
  margin-top: 40px;
}
.regular-season-best6__sub-title {
  font-size: 1.7rem;
  font-weight: 700;
  margin-top: 10px;
}

.regular-season-best6__note:before{
  content: '※';
  margin-left: -1em;
}

.regular-season-best6__note{
  font-size: 1.2rem;
  margin-left: 1em;
  text-align: left;
  line-height: 1.2;
  width: fit-content;
  margin: 0 auto;
  margin-top: 5px;
  width: 90%;
}
.regular-season-best6 .ranking-list {
  justify-content: center;
  gap: 10px;
}
.regular-season-best6 .ranking-list span {
  width: 50px;
  height: 25px;
  font-size: 1.7rem;
}
.regular-season-best6 .ranking-list p {
  font-size: 1.4rem;
}
.regular-season-best6 .section__flex {
  margin-top: 10px;
}
.regular-season-best6 .section__flex-column {
  margin-top: 10px;
}

/*-------------------------------------------
  LIBERO・RECEIVER OF THE YEAR
-------------------------------------------*/
.libero-receiver-of-the-year {
  text-align: center;
}
.libero-receiver-of-the-year__content {
  margin-top: 40px;
}
.libero-receiver-of-the-year__block:nth-of-type(n + 2) {
  margin-top: 30px;
}

/*-------------------------------------------
  SPECIAL AWARDS
-------------------------------------------*/
.special-awards {
  text-align: center;
  font-weight: 700;
  font-size: 1.5rem;
}
.special-awards__content {
  margin-top: 40px;
}
.special-awards__sub-block {
  margin-top: 30px;
}
.special-awards .section__special-title {
  padding: 0 30px;
  font-family: "Barlow Condensed", sans-serif;
  /* 平行四辺形 */
  clip-path: polygon(30px 0, 100% 0, calc(100% - 30px) 100%, 0 100%);
}
.special-awards .section__special-title {
  width: 360px;
}
.special-awards__text {
  margin-top: 20px;
}
.special-awards__sub-block:nth-of-type(n + 2) {
  margin-top: 50px;
}
.special-awards .section__flex-column,
.special-awards .section__flex {
  margin-top: 25px;
  flex-wrap: wrap;
}
.special-awards .section__flex .img {
  width: calc(100% / 2 - 5px);
}
.special-awards__block:nth-of-type(n + 2) {
  margin-top: 50px;
}

/*-------------------------------------------
  RECRUIT STAFFING AWARDS
-------------------------------------------*/
.recruit-staffing-awards {
  text-align: center;
}
.recruit-staffing-awards.section .section__title .en::before {
  top: 35px;
}
.recruit-staffing-awards__top-block {
  appearance: none;
  margin-top: 40px;
  border: 1px solid #967823;
  padding: 20px 20px 20px;
  font-weight: 700;
  width: 100%;
}
.recruit-staffing-awards__title-text {
  padding: 0 10px;
  font-size: 1.7rem;
}
.recruit-staffing-awards__text {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
}

.recruit-staffing-awards__text img{
  width: 140px;
  margin-right: 20px;
}

.btn {
  height: 32px;
  max-width: 320px;
  background-color: #967823;
  color: #fff;
  padding: 0 15px;
  border-radius: 16px;
  margin: 30px auto 0;
  display: inline-block;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}
.recruit-staffing-awards__block {
  margin-top: 40px;
}
/*-------------------------------------------
  Instagram
-------------------------------------------*/
.Instagram {
  padding-bottom: 40px;
}
.Instagram__message {
  position: relative;
  text-align: center;
  font-size: 1.7rem;
  font-weight: 700;
  width: fit-content;
  margin: 0 auto;
  padding: 10px 0 5px;
}
.Instagram__message::before,
.Instagram__message::after {
  position: absolute;
  top: 0;
  content: "";
  width: 1px;
  height: 100%;
  background-color: #967823;
  transform-origin: bottom center;
}
.Instagram__message::before {
  left: -20px;
  transform: rotate(-30deg);
}
.Instagram__message::after {
  right: -20px;
  transform: rotate(30deg);
}

/*-------------------------------------------
  PHOTO GALLERY
-------------------------------------------*/
.section.photo-gallery {
  margin: 20px 0 0;
  padding: 0;
  background-color: #fff;
}

.photo-gallery .section__title .en {
  padding-bottom: 0;
}

.photo-gallery .section__title .ja {
  margin: 8px auto 0;
}
.section.photo-gallery .section__title .en::before,
.section.photo-gallery .section__title .en::after {
  display: none;
}
.photo-gallery .wrapper {
  padding: 0 40px;
}
.photo-gallery__content {
  margin-top: 60px;
}
.photo-gallery__images-wrap {
  position: relative;
}
.photo-gallery__images-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to bottom, transparent, #fff);
  pointer-events: none;
  transition: .3s;
}

.photo-gallery__images-wrap.is-open{
  padding-bottom: 90px;
}

.photo-gallery__images-wrap.is-open:after{
  opacity: 0!important;
}
.photo-gallery__images {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.photo-gallery__image {
  width: calc(50% - 7px);
}
.photo-gallery__image--hidden {
  display: none;
}
.photo-gallery__btn {
  font-size: 1.8rem;
  border-radius: 24px;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 176px;
  height: 50px;
  box-shadow:
    inset 0 0 0 2px #967823,
    inset 0 0 0 3px #fff;
  z-index: 1;
}
/*-------------------------------------------
  TITLE SPONSER
-------------------------------------------*/
.section.title-sponsor {
  background-color: #fff;
  margin: 0;
  padding: 0;
}

.title-sponsor .section__title .en {
  padding-bottom: 0;
}

.title-sponsor .section__title .ja {
  margin: 8px auto 0;
}

.section.title-sponsor .section__title .en::before,
.section.title-sponsor .section__title .en::after {
  display: none;
}
.title-sponsor__content {
  margin-top: 60px;
}
/*-------------------------------------------
  フッター
-------------------------------------------*/
footer {
  padding: 100px 40px 40px;
  text-align: center;
}

.footer__sns-icons {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 0 20px;
}
.footer__sns-icon {
  width: 50px;
}
.footer__icons {
  margin: 100px auto 0;
}
.footer__icon-img {
  width: 155px;
  margin: 0 auto;
}

.footer__text {
  margin-top: 60px;
  text-align: center;
  font-weight: 900;
  font-size: 4rem;
}

.footer__copy {
  margin-top: 100px;
  font-weight: 400;
  font-size: 1.7rem;
}


/*-------------------------------------------
  coming soon
-------------------------------------------*/
.ranking-lists .--cs .ranking-list p,
.club-awards__team-name .--cs,
.club-awards__text.--cs,
.flex-item .--cs,
.ranking-lists.--cs .ranking-list p{
  font-family: "Barlow Condensed", sans-serif;
  color: #967823;
}

.--cs .ranking-list p{
  font-size: 1.8rem;
  margin-left: 20px;
}

.ranking-lists.--cs .ranking-list p{
  font-size: 2.2rem;
}

.tickets__schedule ul li:before{
  content: '・';
  margin-left: -1em;
}

.tickets__schedule ul.--note li:before{
  content: '※';
}

.tickets__schedule ul li{
  padding-left: 1em;
}

.tickets__schedule h3{
  background: #fff;
}

.tickets__schedule h3,
.tickets__schedule h4{
  text-align: center;
  font-weight: 700;
}

.tickets__schedule li{
  text-align: left;
}

.tickets.section{
  background: rgba(203, 187, 151, 0.3);
}

.tickets__schedule p a{
  text-decoration: underline;
}

.tickets__schedule h5{
  background: #967823;
  color: #fff;
}

@media screen and (min-width: 751px){
  .tickets__schedule h3,
  .tickets__schedule h4{
    margin-bottom: 10px;
  }

  .tickets__schedule h3,
  .tickets__schedule h4,
  .tickets__schedule h5{
    margin-top: 20px;
  }

  .tickets__schedule h3{
    font-size: 22px;
    padding: 5px 0;
  }

  .tickets__schedule h4{
    font-size: 20px;
  }

  .tickets__schedule h5{
    font-size: 20px;
    padding: 5px 0;
  }

  .tickets__schedule p{
    font-size: 17px;
    margin-top: 10px;
  }

  .tickets__schedule ul{
    margin-top: 20px;
  }

  .tickets__schedule li{
    font-size: 16px;
  }

}

@media screen and (max-width: 750px){
  .tickets__schedule h3,
  .tickets__schedule h4{
    margin-bottom: calc(10/750*100vw);
  }

  .tickets__schedule h3,
  .tickets__schedule h4,
  .tickets__schedule h5{
    margin-top: calc(30/750*100vw);
  }

  .tickets__schedule h3{
    font-size: calc(26/750*100vw);
    padding: calc(5/750*100vw) 0;
  }

  .tickets__schedule p{
    margin-top: calc(10/750*100vw);
  }

  .tickets__schedule h4{
    font-size: calc(24/750*100vw);
  }

  .tickets__schedule h5{
    font-size: calc(24/750*100vw);
    padding: calc(5/750*100vw) 0;
  }

  .tickets__schedule p{
    font-size: calc(20/750*100vw);
    letter-spacing: -.05em;
  }

  .tickets__schedule ul{
    margin-top: calc(20/750*100vw);
  }

  .tickets__schedule li{
    font-size: calc(20/750*100vw);
  }

}

/*-------------------------------------------
  PRESS CONFERENCEE
-------------------------------------------*/
.press-conference {
  background-color: #f4f1ea;
  background-image: url("../images/press-conference-bg.png");
  background-repeat: no-repeat;
  background-position: top left;
  background-size: cover;
  /* background-size: 100% auto; */
}
.press-conference__content {
  margin-top: 40px;
  text-align: center;
}
.press-conference__title {
  font-weight: 700;
  font-size: 1.7rem;
}

.press-conference__items span{
  display: block;
  width: 100px;
  margin-right: 10px;
}

.press-conference__items a{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-weight: 700;
  font-size: 1.7rem;
  padding: 20px 10px;
  position: relative;
}

.press-conference__items a:after{
  content: '';
  position: absolute;
  width: 9px;
  height: 15px;
  background-image: url('../images/arw.png');
  background-size: cover;
  right: 10px;
}

.press-conference__items:nth-child(n+2){
  border-top: 1px solid #000;
}

.press-conference__pct{
  margin-bottom: 20px;
}

.guest__cont{
  display: flex;
  justify-content: center;
  align-items: center;
}

.guest__pct{
  flex-shrink: 0;
}

.guest__txt em{
  font-weight: 700;
  display: block;
  font-style: normal;
}

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

  .guest__cont{
    padding-bottom: 30px;
  }

  .guest__pct{
    width: 220px;
    margin-right: 20px;
  }

  .guest__txt em{
    font-size: 24px;
    margin-bottom: 10px;
  }

  .guest__txt p{
    font-size: 15px;
  }
}
@media screen and (max-width: 750px){
  .guest__cont{
    padding-bottom: calc(50/750*100vw);
  }

  .guest__pct{
    width: calc(220/750*100vw);
    margin-right: calc(20/750*100vw);
  }

  .guest__txt em{
    font-size: calc(26/750*100vw);
    margin-bottom: calc(10/750*100vw);
  }

  .guest__txt p{
    font-size: calc(17/750*100vw);
  }
}


/* --- アニメーション用のCSS --- */

/* 隠しておく外側のラッパー */
.photo-gallery__hidden-wrapper {
  display: grid;
  grid-template-rows: 0fr; /* 高さを0にしておく */
  transition: grid-template-rows 0.5s ease-out; /* 高さが変わるアニメーション */
  overflow: hidden; /* はみ出た分を隠す */
}

/* 開いた状態のクラスが付与されたとき */
.photo-gallery__hidden-wrapper.is-open {
  grid-template-rows: 1fr; /* 高さを中身に合わせて広げる */
}

/* ラッパーの直下の子要素（フェードイン用） */
.photo-gallery__hidden-wrapper > .photo-gallery__images {
  min-height: 0; /* 0frを効かせるための必須設定 */
  opacity: 0; /* 最初は透明 */
  transform: translateY(10px); /* 少し下にずらしておく */
  transition: opacity 0.4s ease-out 0.2s, transform 0.4s ease-out 0.2s; /* 開きながらフワッと出す */
}

/* 開いた状態のとき */
.photo-gallery__hidden-wrapper.is-open > .photo-gallery__images {
  opacity: 1; /* 不透明にする */
  transform: translateY(0); /* 元の位置に戻す */
}

.photo-gallery__hidden-wrapper{
  margin-top: 14px;
}