@charset "utf-8";

* {
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  background-color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--font-color);
}

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

img {
  display: block;
  width: 100%;
  height: auto;
}

/* ----------
    color
---------- */
:root {
  --font-color: #0f203d;
  --accent-color-1: #e60012;
  --accent-color-2: #0074bf;
  --border-color: #5c5c5c;
}

/* ----------
    common
---------- */
._color1 {
  color: var(--accent-color-1);
}

._color2 {
  color: var(--accent-color-2);
}

/* ----- sec ----- */
.sec-inner {
  padding: min(10.7vw, 80px) min(4vw, 30px) min(16vw, 120px);
}

.sec-contents {
  margin-inline: auto;
  max-width: 1000px;
}

/* _bg */
.sec._bg {
  position: relative;
  padding-block-start: min(5.6vw, 42px);
}

.sec._bg::before,
.sec._bg::after {
  content: '';
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 750 / 42;
}

.sec._bg::before {
  top: 0;
  background: bottom/contain no-repeat url(../img/bg_top.webp);
}

.sec._bg::after {
  bottom: 0;
  background: bottom/contain no-repeat url(../img/bg_bottom.webp);
}

.sec._bg .sec-inner {
  background: top/100% url(../img/bg_main.webp);
}

/* _last */
.sec._bg._last::after {
  content: none;
}

.sec._last .sec-inner {
  /* padding-block-end: min(21.3vw, 160px); */
  padding-block-end: min(12vw, 90px);
}

.sec-ttl {
  position: relative;
  margin-inline: auto;
  padding-bottom: min(4vw, 30px);
}

.sec-ttl img {
  position: relative;
  z-index: 1000;
  width: auto;
  margin: 0 auto;
  max-width: 100%;
}

.sec-ttl::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
  display: block;
  width: min(16vw, 120px);
  height: auto;
  aspect-ratio: 120 / 16;
  background: var(--accent-color-1);
  background: linear-gradient(0deg,
      var(--accent-color-2) 0%,
      var(--accent-color-2) 50%,
      var(--accent-color-1) 50%,
      var(--accent-color-1) 100%);
}

.sec-subTtl {
  position: relative;
  margin-bottom: min(2vw, 15px);
  padding-bottom: min(2vw, 15px);
  text-align: center;
  line-height: 1.25;
  font-size: clamp(1.8rem, 4.8vw, 3.6rem);
  font-weight: 700;
}

.sec-subTtl::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
  display: block;
  width: min(16vw, 120px);
  height: auto;
  aspect-ratio: 120 / 4;
  background-color: var(--font-color);
}

.sec-txt {
  text-align: center;
  line-height: 1.75;
  font-size: clamp(1.4rem, 3.7vw, 2.8rem);
}

/* ----- btn ----- */
.btn {
  width: calc(442px / 2);
  height: auto;
  aspect-ratio: 442 / 90;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #173c7d;
  background: linear-gradient(270deg,
      rgba(0, 116, 191, 1) 0%,
      rgba(0, 116, 191, 1) 2%,
      rgba(23, 60, 125, 1) 2%,
      rgba(23, 60, 125, 1) 98%,
      rgba(230, 0, 18, 1) 98%,
      rgba(230, 0, 18, 1) 100%);
  box-shadow: 3px 6px 5px 0 rgb(0 0 0 / 0.3);
  font-weight: 700;
  color: #fff;
  transition: translate 0.3s, box-shadow 0.3s;
}

@media (hover: hover) {
  .btn:hover {
    translate: 3px 3px;
    box-shadow: 0 3px 5px 0 rgb(0 0 0 / 0.3);
  }
}

.linkHover {
  display: block;
  position: relative;
  overflow: hidden;
  margin-top: 50px;
}

.linkHover::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  background-color: rgb(255 255 255 / 0.1);
  width: 130%;
  height: 100%;
  transform: skewX(25deg);
}

@media (hover: hover) {
  .linkHover:hover::before {
    animation: skewanime 0.4s forwards;
  }
}

@keyframes skewanime {
  100% {
    left: -15%;
  }
}

/* ----- youtube ----- */
.youtube iframe {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}

/* ----- deco ----- */
.decoCorner {
  position: relative;
}

.decoCorner::before,
.decoCorner::after {
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border: min(4vw, 30px) solid transparent;
}

.decoCorner::before {
  top: 0;
  left: 0;
  border-top-color: var(--accent-color-1);
  border-left-color: var(--accent-color-1);
}

.decoCorner::after {
  bottom: 0;
  right: 0;
  border-right-color: var(--accent-color-2);
  border-bottom-color: var(--accent-color-2);
}

/* ----------
    mv
---------- */
.mv {}

.mv.pc {
  display: block;
  padding-top: 80px;
}

.mv.mobile {
  display: none;
  padding-top: 50px;
}


/* ----------
    lead
---------- */
.lead {
  position: relative;
  margin-bottom: max(-12vw, -90px);
  padding-block: 0 min(60vw, 450px);
}

.lead::after {
  content: '';
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
  display: block;
  width: min(100%, 1000px);
  height: auto;
  aspect-ratio: 750 / 517;
  background: bottom/cover url(../img/lead-bg.webp);
}

.lead-inner {
  padding-block: 0;
}

.lead-ttl {
  width: min(57.8vw, 434px);
}



.lead-txt {
  margin-top: min(6.7vw, 50px);
}

/* ----------
  highlights
---------- */
.highlights-ttl {
  width: min(34.3vw, 257px);
}

/* .highlights-ttl img {
  aspect-ratio: 257 / 58;
} */

.highlights-movieContainer {
  margin-block: min(6.7vw, 50px);
  padding: min(8vw, 60px) min(4.8vw, 36px);
  background-color: #fff;
  display: flex;
  flex-direction: column;
  row-gap: min(6.7vw, 50px);
}

.highlights-movie {
  width: 100%;
}

.highlights-img {
  aspect-ratio: 3 / 2;
}

.highlights-txt {
  margin-top: min(5.3vw, 40px);
  padding: min(4vw, 30px);
  line-height: 1.5;
  font-size: clamp(1.4rem, 3.7vw, 2.8rem);
}

@media screen and (768px <=width) {
  .highlights-movieContainer {
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    column-gap: 28px;
  }

  .highlights-movie {
    /* max-width: 450px; */
    max-width: 800px;
  }
}

/* ----------
    player
---------- */
.player-ttl {
  width: min(28vw, 210px);
}

/* .player-ttl img {
  aspect-ratio: 210 / 60;
} */

.player-chart {
  margin: min(6.7vw, 50px) auto min(4vw, 30px);
  border: 2px solid var(--border-color);
  aspect-ratio: 1000 / 711;
}

.player-btn {
  /* margin: 0 auto min(8vw, 60px); */
  margin-inline: auto;
  gap: 0.5em;
}

.player-btn::before {
  content: '';
  width: calc(38px / 2);
  height: auto;
  aspect-ratio: 1 / 1;
  background: center/contain no-repeat url(../img/icon-search.webp);
}

/* ----------
    result
---------- */
.result-ttl {
  width: min(28vw, 210px);
}

/* .result-ttl img {
  aspect-ratio: 210 / 60;
} */

.result-score {
  margin-block: min(6.7vw, 50px);
  width: 100%;
  border-collapse: collapse;
}

.result-score thead {
  background-color: var(--font-color);
  color: #fff;
}

.result-score tbody {
  background-color: #fff;
}

.result-score td {
  border: 2px solid var(--border-color);
  text-align: center;
  line-height: 2;
  font-size: clamp(1.6rem, 4.2vw, 3.2rem);
  font-weight: 700;
}

.result-score td:first-child {
  width: 15%;
}

.result-score td:nth-child(n + 2) {
  width: 10%;
}

.result-score td:last-child {
  width: 15%;
}

.result-bnr {
  display: block;
}

.result-bnr img {
  aspect-ratio: 16 / 9;
}

/* ----------
    event
---------- */
.event {
  background: center 62% /100% no-repeat url(../img/event-bg.webp);
}

.event-ttl {
  width: min(27.6vw, 207px);
}


.event-txt {
  margin-block: min(5.3vw, 40px) min(6.7vw, 50px);
}

@media screen and (768px <=width) {
  .event {
    background: center/100% no-repeat url(../img/event-bg__l.webp);
  }
}

.event-list>li {
  margin-inline: max(-4vw, -30px);
}

.event-list>li:has(+ li) {
  margin-bottom: min(21.3vw, 160px);
}

.event-list>li:nth-of-type(even) .eventCard-img {
  margin-left: auto;
}

.event-list>li:nth-of-type(even) .eventCard-ttl {
  text-align: left;
}

@media screen and (768px <=width) {
  .event-list>li {
    margin-inline: 0;
    max-width: 750px;
  }

  .event-list>li:has(+ li) {
    margin-bottom: 80px;
  }

  .event-list>li:nth-of-type(even) {
    margin-left: auto;
  }
}

.eventCard {
  position: relative;
  padding-bottom: min(2vw, 15px);
}

.eventCard-img {
  width: 92%;
  aspect-ratio: 670 / 460;
}

.eventCard-ttl {
  position: absolute;
  bottom: min(4.7vw, 35px);
  padding: 0.2em 0.8em;
  background-color: rgb(255 255 255 / 0.9);
  text-align: right;
  line-height: 1.2;
  font-size: clamp(1.8rem, 4.8vw, 3.6rem);
  font-weight: 900;
  font-style: italic;
}

.eventCard-btn {
  position: absolute;
  bottom: 0;
  right: min(4vw, 30px);
  width: min(19.5vw, 146px);
  box-shadow: 3px 3px 5px 0 rgb(0 0 0 / 0.3);
  border-radius: 50%;
  transition: translate 0.3s, box-shadow 0.3s;
  pointer-events: all;
  cursor: pointer;
}

.eventCard-btn img {
  aspect-ratio: 1 / 1;
}

@media (hover: hover) {
  .eventCard-btn:hover {
    translate: 3px 3px;
    box-shadow: 0 3px 5px 0 rgb(0 0 0 / 0.3);
  }
}

.eventCard:nth-of-type(4) .eventCard-ttl::before {
  content: '';
  position: absolute;
  top: -100%;
  left: 6%;
  display: block;
  width: min(18.8vw, 141px);
  height: auto;
  aspect-ratio: 141 / 133;
  background: center/contain no-repeat url(../img/event-04_bubble.webp);
}

.eventModal {
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  padding-inline: min(4vw, 30px);
  background-color: rgb(0 0 0 / 0.7);
  display: none;
  align-items: center;
  justify-content: center;
}

.eventModal.is-view {
  display: flex;
}

.eventModal-inner {
  position: relative;
  max-width: 750px;
  max-height: 100%;
  padding-block: min(13.3vw, 100px) min(8vw, 60px);
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.eventModal-inner::-webkit-scrollbar {
  display: none;
}

.eventModal-closed {
  position: absolute;
  z-index: 1;
  top: min(5vw, 40px);
  right: 0;
  width: min(8vw, 60px);
  height: auto;
  aspect-ratio: 1 / 1;
}

.eventModal-closed::before,
.eventModal-closed::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  display: block;
  width: 80%;
  height: min(0.8vw, 6px);
  background-color: #fff;
}

.eventModal-closed::before {
  rotate: 45deg;
}

.eventModal-closed::after {
  rotate: -45deg;
}

.eventModal-contents {
  padding: min(5.3vw, 40px);
  background-color: #fff;
}

.eventModal-ttl {
  margin: 0 auto min(2.6vw, 20px);
  width: min(67.6vw, 507px);
}

.eventModal-ttl img {
  aspect-ratio: 507 / 45;
}

.eventModal-img {
  margin-bottom: min(4vw, 30px);
  aspect-ratio: 3 / 2;
}

.eventModal-txt {
  line-height: 1.75;
  font-size: clamp(1.4rem, 3.7vw, 2.8rem);
}

/* ----------
    media
---------- */
.media-ttl {
  width: min(47.2vw, 354px);
}

.media-ttl img {
  aspect-ratio: 354 / 60;
}

.media-txt {
  margin-block: min(5.3vw, 40px);
}

.media-list {
  margin-bottom: min(8vw, 60px);
}

.media-list>li:has(+ li) {
  border-block-end: none;
}

.media-list>li:first-of-type {
  padding-block-start: 0;
  border-block-start: none;
}

.media-list>li:last-of-type {
  padding-block-end: 0;
  border-block-end: none;
}

.mediaCard {
  padding-block: min(4vw, 30px);
  border-block: 1px solid rgb(0 0 0 / 0.2);
}

.mediaCard>a {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 0 min(2.7vw, 20px);
}

.mediaCard-img {
  grid-row: 1 / 3;
}

.mediaCard-ttl {
  line-height: 1.5;
  font-size: clamp(1.4rem, 3.7vw, 2.8rem);
}

.mediaCard-ttl::after {
  content: '';
  margin-inline-start: 0.3em;
  display: inline-block;
  width: 0.7em;
  height: auto;
  aspect-ratio: 1 / 1;
  background: center/contain no-repeat url(../img/icon-window.webp);
}

.mediaCard-time {
  align-self: flex-end;
  text-align: right;
  font-size: clamp(1.2rem, 2.6vw, 2rem);
}

@media (hover: hover) {
  .media-list>li:nth-of-type(odd)>a:hover .mediaCard-ttl {
    text-decoration: underline var(--accent-color-1);
  }

  .media-list>li:nth-of-type(even)>a:hover .mediaCard-ttl {
    text-decoration: underline var(--accent-color-2);
  }
}

/* ----------
    gallery
---------- */
.gallery-ttl {
  width: min(53.5vw, 401px);
}

/* .gallery-ttl img {
  aspect-ratio: 401 / 61;
} */

.gallery-splide {
  margin-block: min(6.7vw, 50px) min(2.7vw, 20px);
}

.gallery-splide .splide__slide img {
  aspect-ratio: 3 / 2;
}

.splide__arrow {
  width: min(9.3vw, 70px);
  height: auto;
  aspect-ratio: 1 / 1;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 3px 3px 5px 0 rgb(0 0 0 / 0.16);
  opacity: 1;
  align-items: center;
}

.splide__arrow:hover:not(:disabled) {
  background-color: #fff;
}

.splide__arrow--prev {
  left: max(-2.6vw, -20px);
}

.splide__arrow--next {
  right: max(-2.6vw, -20px);
}

.splide__arrow::before {
  content: '';
  display: block;
  width: 28%;
  height: auto;
  aspect-ratio: 1 / 1;
  border-top: min(0.7vw, 4px) solid;
  border-right: min(0.7vw, 4px) solid;
}

.splide__arrow--prev::before {
  border-color: var(--accent-color-1);
  rotate: 225deg;
  translate: 2px 0;
}

.splide__arrow--next::before {
  border-color: var(--accent-color-2);
  rotate: 45deg;
  translate: -2px 0;
}

.gallery-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: min(1vw, 10px) 2.5%;
}

.gallery-thumbs>li {
  width: calc((100% - 2.5% * 4) / 5);
  border: min(0.4vw, 3px) solid transparent;
  opacity: 0.5;
}

.gallery-thumbs>li.is-active {
  border-color: #ffbe31;
  opacity: 1;
}

/* ----------
    charm
---------- */
.charm-ttl {
  width: min(78.4vw, 588px);
}

/* .charm-ttl img {
  aspect-ratio: 588 / 60;
} */

.charm-txt {
  margin-block: min(5.3vw, 40px) min(6.7vw, 50px);
}

.charm-bnr img {
  aspect-ratio: 7 / 2;
}

/* ----------
    useful
---------- */
.useful {
  /* padding: min(8vw, 60px) min(4vw, 30px); */
}

.useful-inner {
  margin-inline: auto;
  max-width: 1000px;
}

.useful-ttl {
  margin: 0 auto min(4vw, 30px);
  width: min(41.5vw, 311px);
}

/* .useful-ttl img {
  aspect-ratio: 311 / 60;
} */

.useful-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.useful-item {
  position: relative;
  width: 160px;
  height: auto;
  aspect-ratio: 160 / 50;
  background: #173c7d;
  background: linear-gradient(270deg,
      rgba(0, 116, 191, 1) 0%,
      rgba(0, 116, 191, 1) 2%,
      rgba(23, 60, 125, 1) 2%,
      rgba(23, 60, 125, 1) 98%,
      rgba(230, 0, 18, 1) 98%,
      rgba(230, 0, 18, 1) 100%);
  color: #fff;
  cursor: pointer;
}

.useful-item::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 15px;
  translate: 0 -50%;
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  rotate: 45deg;
  transition: right 0.3s;
}

.useful-item a {
  height: 100%;
  display: flex;
  align-items: center;
  padding: 10px 20px;
  line-height: 1.25;
  font-size: 1.4rem;
}

.splide__list {
  height: auto !important;
}

@media (hover: hover) {
  .useful-item:hover:after {
    right: 10px;
  }
}

@media screen and (768px <=width) {
  .useful-item {
    width: calc((100% - 15px * 3) / 4);
    aspect-ratio: auto;
  }

  .useful-item a {
    font-size: 1.6rem;
  }
}

header {
  position: fixed;
  background: #ffffffc4;
  z-index: 3000;
  border-bottom: 1px solid #ddd;
  width: 100%;
  top: 0;
  left: 0;
  height: 80px;
}

header ul {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  gap: 0 100px;
}

header ul li a {
  font-size: 18px;
  font-weight: bold;
}

header ul li.active a {
  color: #e60012;
}

header dl {
  position: absolute;
  right: 100px;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

header dl dd {
  position: relative;
  color: #ddd;
  padding: 0 12px;
}

header dl dd:first-child::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 12px;
  background: #ddd;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}

header dl dd.active {
  color: #101010
}

.top-button {
  border: none;
  background: none;
  position: fixed;
  z-index: 1000;
  bottom: 50px;
  right: 50px;
  cursor: pointer;
}

.top-button img {
  width: 50px;
  height: 50px;
  border-radius: 100px;
  background: #fff;
  overflow: hidden;
}


.hamburger {
  position: fixed;
  right: 10px;
  top: 5px;
  height: 45px;
  display: none;
  grid-template-rows: repeat(3, 1fr);
  justify-items: center;
}

.hamburger div {
  background-color: #3f3f3f;
  position: relative;
  width: 35px;
  height: 3px;
  margin-top: 7px;
  transition: all 0.2s ease-in-out;
  border-radius: 35px;
}

#toggle {
  display: none;
}

#toggle:checked+.hamburger .top {
  transform: rotate(45deg);
  margin-top: 17px;
}

#toggle:checked+.hamburger .middle {
  transform: rotate(-45deg);
  margin-top: -3.5px;
}

#toggle:checked+.hamburger .bottom {
  transform: scale(0);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 50px;
  width: 100%;
  height: calc(100vh - 50px);
  background: #fff;
  z-index: 2000;
}


.mobile-menu li {
  border-bottom: 1px solid #ddd;
}



.mobile-menu li a {
  display: block;
  padding: 20px;
  font-weight: bold;
}

@media(max-width:1600px) {
  header dl {
    right: 0;
  }

  header ul {
    gap: 0 50px;
  }
}

@media(max-width:1024px) {
  header ul {
    gap: 0 25px;
  }
}

@media(max-width:960px) {

  #menu,
  header dl {
    display: none
  }

  header ul {
    height: 50px;
  }



  header {
    border-bottom: none;
    background: none;
    height: 50px;
  }

  header.active {
    background: #fff
  }

  .hamburger {
    display: block
  }

  #menu.mobile-menu.active {
    display: block;
  }

  header dl.active {
    display: flex;
    right: calc(100% - 100px);
  }

  .top-button {
    right: 10px;
  }


  .mv.pc {
    display: none;
  }

  .mv.mobile {
    display: block;
  }
}

.swiper-container {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  display: none !important
}

