@charset "utf-8";

:root {
  --container-magnification: 0.63; /* 475 / 750 */
}

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

html {
  font-size: 62.5%;
}

body {
  font-size: clamp(1rem, 2.6vw, 2rem);
  color: #333333;
}
@media screen and (min-width: 750.02px) {
  body {
    font-size: calc(2rem * var(--container-magnification));
  }
}

a {
  -webkit-text-decoration: none;
  text-decoration: none;
  color: #333;
}

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

/* ========== common ========== */
.sec {
  padding: min(13.3vw, 100px) min(4vw, 30px);
  overflow: hidden;
}
.sec-ttl {
  margin-bottom: min(6.6vw, 50px);
}
.sec-ttl > img {
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 750.02px) {
  .sec {
    padding: calc(100px * var(--container-magnification))
      calc(30px * var(--container-magnification));
  }
  .sec-ttl {
    margin-bottom: calc(50px * var(--container-magnification));
  }
}

/* ========== part ========== */
.btn {
  position: relative;
  width: min(56vw, 420px);
  height: min(16vw, 120px);
  padding-left: 8%;
  padding-right: 8%;
  background-color: #010101;
  border-radius: calc(1px / 0);
  box-shadow: min(0.8vw, 6px) min(0.8vw, 6px) min(1.3vw, 10px) 0 rgb(0 0 0 / 24%);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  text-align: center;
  font-size: 1.6em;
  font-weight: 600;
  color: #fff;
  transition: filter 0.3s;
}
.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 6%;
  translate: 0 -50%;
  display: block;
  width: 0;
  height: 0;
  border-top: min(0.8vw, 6px) solid transparent;
  border-bottom: min(0.8vw, 6px) solid transparent;
  border-left: min(3.2vw, 24px) solid #fff;
  transition: right 0.3s;
}
@media (hover: hover) {
  .btn:hover {
    filter: brightness(0.8);
  }
  .btn:hover::after {
    right: 4%;
  }
}
@media screen and (min-width: 750.02px) {
  .btn {
    width: calc(420px * var(--container-magnification));
    height: calc(120px * var(--container-magnification));
    box-shadow: calc(6px * var(--container-magnification))
      calc(6px * var(--container-magnification)) calc(10px * var(--container-magnification)) 0
      rgb(0 0 0 / 24%);
  }
  .btn::after {
    border-top-width: calc(6px * var(--container-magnification));
    border-bottom-width: calc(6px * var(--container-magnification));
    border-left-width: calc(24px * var(--container-magnification));
  }
}

.scrollUpBtn {
  position: fixed;
  z-index: 11;
  bottom: min(8vw, 60px);
  left: min(4vw, 30px);
  display: block;
  width: min(10.6vw, 80px);
  height: min(10.6vw, 80px);
  background-color: #000;
  border: 2px solid #fff;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s, translate 0.3s;
}
.scrollUpBtn::after {
  content: '';
  position: absolute;
  top: 45%;
  left: 50%;
  translate: -50% -50%;
  display: block;
  width: 0;
  height: 0;
  border-left: min(0.8vw, 6px) solid transparent;
  border-right: min(0.8vw, 6px) solid transparent;
  border-bottom: min(3.2vw, 24px) solid #fff;
}
.scrollUpBtn.is-view {
  pointer-events: all;
  opacity: 1;
}
@media (hover: hover) {
  .scrollUpBtn:hover {
    translate: 0 -10%;
  }
}
@media screen and (min-width: 750.02px) {
  .scrollUpBtn {
    bottom: 20px;
    left: calc(50% - 495px / 2 - 80px * var(--container-magnification) - 20px);
    width: calc(80px * var(--container-magnification));
    height: calc(80px * var(--container-magnification));
  }
  .scrollUpBtn::after {
    border-left-width: calc(6px * var(--container-magnification));
    border-right-width: calc(6px * var(--container-magnification));
    border-bottom-width: calc(24px * var(--container-magnification));
  }
}

.floatBtn {
  position: fixed;
  z-index: 10;
  bottom: min(8vw, 60px);
  right: min(4vw, 30px);
  display: block;
  width: min(27.7vw, 208px);
  height: min(27.7vw, 208px);
  border-radius: 50%;
  box-shadow: 0 0 min(1.6vw, 12px) min(0.8vw, 6px) rgb(213 245 255 / 40%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s, scale 0.2s;
}
.floatBtn.is-view {
  pointer-events: all;
  opacity: 1;
}
@media (hover: hover) {
  .floatBtn:hover {
    scale: 0.95;
  }
}
@media screen and (min-width: 750.02px) {
  .floatBtn {
    bottom: 20px;
    left: calc(50% + 495px / 2 + 20px);
    right: auto;
    width: 12vw;
    height: 12vw;
    max-width: calc(208px * var(--container-magnification));
    max-height: calc(208px * var(--container-magnification));
    box-shadow: 0 0 calc(12px * var(--container-magnification))
      calc(6px * var(--container-magnification)) rgb(213 245 255 / 40%);
  }
}

.hover {
  opacity: 1;
  transition: opacity 0.2s;
}
@media (hover: hover) {
  .hover:hover {
    opacity: 0.8;
  }
}

/* ========== mv ========== */
.mv {
  position: relative;
  z-index: 2;
  aspect-ratio: 750 / 1454;
}
@media screen and (min-width: 750.02px) {
  .mv {
    aspect-ratio: 1440 / 809;
  }
}

/* ========== pc layout ========== */
@media screen and (min-width: 750.02px) {
  .wrapper {
    position: relative;
    z-index: 1;
  }
  .pcBg {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: bottom center/cover url(../img/bg-main__l.webp);
    overflow: hidden;
  }
  .pcBg::before {
    content: '';
    position: absolute;
    top: 50%;
    left: calc((50% - 495px / 2) / 2);
    translate: -50% -50%;
    display: block;
    width: 644px;
    height: auto;
    aspect-ratio: 644 / 652;
    background: center/contain no-repeat url(../img/bg-left__l.webp);
  }
  .pcBg::after {
    content: '';
    position: absolute;
    top: 50%;
    right: calc((50% - 495px / 2) / 2);
    translate: 50% -50%;
    display: block;
    width: 551px;
    height: auto;
    aspect-ratio: 551 / 596;
    background: center/contain no-repeat url(../img/bg-right__l.webp);
  }
  .container {
    position: relative;
    z-index: 2;
    margin: -100vh auto 0;
    width: 495px;
    background-color: #fff;
    border-left: 10px solid #fff;
    border-right: 10px solid #fff;
    box-shadow: 2px 4px 10px 3px rgb(0 25 39 / 40%);
  }
}

/* ========== lead ========== */
#lead {
  padding: min(42vw, 315px) min(16vw, 120px) 0;
  aspect-ratio: 750 / 1391;
  background: bottom/cover url(../img/lead-bg.webp);
}
.lead-ttl > img {
  margin-left: auto;
  margin-right: auto;
  width: min(64.5vw, 484px);
  aspect-ratio: 484 / 162;
}
.lead-logo {
  margin: min(5.3vw, 40px) auto 0;
  width: min(44.8vw, 336px);
  aspect-ratio: 336 / 317;
}
.lead-txt {
  margin-top: min(6.6vw, 50px);
  line-height: 1.75;
  text-align: center;
  font-size: 1.5em;
  font-weight: 500;
  color: #3e3a39;
}

@media screen and (min-width: 750.02px) {
  #lead {
    padding: calc(315px * var(--container-magnification))
      calc(120px * var(--container-magnification)) 0;
  }
  .lead-ttl > img {
    width: calc(484px * var(--container-magnification));
  }
  .lead-logo {
    margin-top: calc(40px * var(--container-magnification));
    width: calc(336px * var(--container-magnification));
  }
  .lead-txt {
    margin-top: 20px;
    font-size: 1.3em;
  }
}

/* ========== favBnr ========== */
.favBnr {
  padding: min(8vw, 60px) min(4vw, 30px) 0;
  background-color: #10a7d5;
}
@media screen and (min-width: 750.02px) {
  .favBnr {
    padding: calc(60px * var(--container-magnification)) calc(30px * var(--container-magnification))
      0;
  }
}

/* ========== special ========== */
#special {
  background-color: #10a7d5;
}
#special .sec-ttl > img {
  width: min(70.1vw, 526px);
  aspect-ratio: 526 / 153;
}
.special-bnr {
  display: block;
  border-radius: min(1.3vw, 10px);
  overflow: hidden;
}
.special-subttl {
  position: relative;
  margin-top: min(4vw, 30px);
  padding-bottom: calc(5px + 2px);
  line-height: 1.25;
  font-size: 2.4em;
  font-weight: 600;
  color: #fff;
}
/* .special-subttl::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #333;
  border-radius: calc(1px / 0);
} */
.special-txt {
  margin-top: min(1.3vw, 10px);
  line-height: 1.5;
  font-size: 1.6em;
  font-weight: 400;
  color: #fff;
}

.special-slider {
  margin-top: min(4vw, 30px);
}
.special-slider .splide__slide img {
  aspect-ratio: 3 / 2;
  border-radius: min(1.3vw, 10px);
}
.special-slider .splide__slide p {
  line-height: 1.5;
  text-align: center;
  font-size: 1.6em;
  font-weight: 600;
  color: #fff;
}

.special-slider .splide__arrow {
  width: 3em;
  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;
}
.special-slider .splide__arrow:hover:not(:disabled) {
  background-color: #fff;
}
.special-slider .splide__arrow--prev {
  left: max(-2.6vw, -20px);
}
.special-slider .splide__arrow--next {
  right: max(-2.6vw, -20px);
}
.special-slider .splide__arrow::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 0.5em;
  height: 0.5em;
  border-top: 0.2em solid #000;
  border-right: 0.2em solid #000;
}
.special-slider .splide__arrow--prev::before {
  transform: translate(-40%, -40%) rotate(225deg);
}
.special-slider .splide__arrow--next::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.special-video {
  margin-top: min(8vw, 60px);
  border-radius: min(1.3vw, 10px);
  overflow: hidden;
}
.special-video iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}


@media screen and (min-width: 750.02px) {
  #special .sec-ttl > img {
    width: calc(526px * var(--container-magnification));
  }
  .special-subttl {
    margin-top: calc(30px * var(--container-magnification));
  }
  .special-txt {
    margin-top: calc(10px * var(--container-magnification));
  }
  
  .special-slider {
    margin-top: calc(30px * var(--container-magnification));
  }

  .special-slider .splide__arrow--prev {
    left: calc(-20px * var(--container-magnification));
  }
  .special-slider .splide__arrow--next {
    right: calc(-20px * var(--container-magnification));
  }

  .special-video {
    margin-top: calc(60px * var(--container-magnification));
    border-radius: calc(10px * var(--container-magnification));
  }
}



/* ========== event ========== */
#event {
  background-color: #10a7d5;
}
.event-ttl > img {
  width: min(90.9vw, 682px);
  aspect-ratio: 682 / 146;
}

@media screen and (min-width: 751px) {
  .event-ttl > img {
    width: calc(682px * var(--container-magnification));
  }
}

/* ----- eventBox ----- */
.eventBox {
  margin-top: min(8vw, 60px);
}
.eventBox + .eventBox {
  margin-top: min(10.6vw, 80px);
}
.eventBox._topline {
  position: relative;
  margin-top: min(24vw, 180px);
}
.eventBox._topline::before {
  content: '';
  position: absolute;
  top: max(-5.3vw, -40px);
  left: 0;
  right: 0;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: calc(1px / 0);
}

.eventBox-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}
.eventBox-dateBox {
  display: grid;
  grid-template-columns: auto auto;
  column-gap: 0.4em;
  font-weight: 700;
}
.eventBox-date {
  grid-row: 1 / 3;
  position: relative;
  display: flex;
  align-items: center;
  line-height: 0.8;
  font-size: 8em;
}
.eventBox-date ._slash {
  font-size: 0.9em;
}
.eventBox-date._sat ._day,
.eventBox-date._sat + .eventBox-timeBox .eventBox-week {
  color: #005a99;
}
.eventBox-date._sun ._day,
.eventBox-date._sun + .eventBox-timeBox .eventBox-week {
  color: #e25f9e;
}
.eventBox-timeBox {
  grid-row: 2 / 3;
}
.eventBox-week {
  font-size: 3em;
}
.eventBox-time {
  margin-bottom: 0.2em;
  align-self: flex-start;
  display: flex;
  align-items: center;
  font-size: 2.4em;
}

.eventBox-vsBox {
  display: flex;
  align-items: center;
  column-gap: min(1.3vw, 10px);
}
.eventBox-vs {
  font-size: 1.6em;
  font-weight: 800;
}
.eventBox-logo {
  width: min(10vw, 75px);
  aspect-ratio: 1 / 1;
}
.eventBox-list {
  margin-top: min(2.6vw, 20px);
}
.eventBox-list > li:has(+ li) {
  margin-bottom: min(5.3vw, 40px);
}
.eventBox-btn {
  margin: min(4vw, 30px) auto 0;
  width: min(70.6vw, 530px);
}

@media screen and (min-width: 750.02px) {
  .eventBox {
    margin-top: calc(60px * var(--container-magnification));
  }
  .eventBox + .eventBox {
    margin-top: calc(80px * var(--container-magnification));
  }
  .eventBox._topline {
    margin-top: calc(180px * var(--container-magnification));
  }
  .eventBox._topline::before {
    top: calc(-40px * var(--container-magnification));
  }
  .eventBox-vsBox {
    column-gap: calc(10px * var(--container-magnification));
  }
  .eventBox-logo {
    width: calc(75px * var(--container-magnification));
  }
  .eventBox-list {
    margin-top: calc(20px * var(--container-magnification));
  }
  .eventBox-list > li:has(+ li) {
    margin-bottom: calc(40px * var(--container-magnification));
  }
  .eventBox-btn {
    margin-top: calc(30px * var(--container-magnification));
    width: calc(530px * var(--container-magnification));
  }
}

/* _period */
.eventBox-head._period .eventBox-date {
  font-size: 6em;
}
.eventBox-head._period .eventBox-week {
  font-size: 2.2em;
}
.eventBox-period {
  font-size: 2em;
  font-weight: 700;
}

/* ----- eventCard ----- */
.eventCard {
  position: relative;
  display: block;
  padding: min(8vw, 60px) min(5.3vw, 40px);
  background-color: #fff;
  border-radius: min(2.1vw, 16px);
  box-shadow: min(0.8vw, 6px) min(0.8vw, 6px) min(1.6vw, 12px) 0 rgb(0 0 0 / 24%);
  overflow: hidden;
}
.eventCard-link {
  margin-bottom: min(4vw, 30px);
  display: block;
}
.eventCard-img > img {
  border: 2px solid transparent;
  border-radius: min(1.3vw, 10px);
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
  transition: filter 0.2s, border-color 0.2s;
}
.eventCard-img > img._16x9 {
  aspect-ratio: 16 / 9;
}
.eventCard-img > figcaption {
  line-height: 1.5;
  text-align: right;
  font-size: 1.2em;
}
.eventCard-img > figcaption::before {
  content: '※';
}
@media (hover: hover) {
  a.eventCard-link:hover .eventCard-img > img {
    border-color: #fff;
    filter: brightness(0.8);
  }
}
.eventCard-ttl {
  margin-bottom: min(0.6vw, 5px);
  line-height: 1.5;
  font-size: 2.4em;
  font-weight: 600;
}
.eventCard-txt {
  line-height: 1.5;
  font-size: 1.6em;
  font-weight: 400;
}
.eventCard-txt + .eventCard-txt {
  margin-top: 1em;
}
.eventCard-btn {
  margin: min(8vw, 60px) auto 0;
  width: min(70.6vw, 530px);
  background-color: #10a7d5;
}
@media screen and (min-width: 750.02px) {
  .eventCard {
    padding: calc(60px * var(--container-magnification)) calc(40px * var(--container-magnification));
    border-radius: calc(16px * var(--container-magnification));
    box-shadow: calc(6px * var(--container-magnification))
      calc(6px * var(--container-magnification)) calc(12px * var(--container-magnification)) 0
      rgb(0 0 0 / 24%);
  }
  .eventCard-img {
    margin-bottom: calc(30px * var(--container-magnification));
  }
  .eventCard-img > img {
    border-radius: calc(10px * var(--container-magnification));
  }
  .eventCard-ttl {
    margin-bottom: calc(5px * var(--container-magnification));
  }
  .eventCard-btn {
    margin-top: calc(60px * var(--container-magnification));
    width: calc(530px * var(--container-magnification));
  }
}

/* ----- eventPresent ----- */
.eventPresent {
  position: relative;
  display: block;
  padding: min(8vw, 60px) min(5.3vw, 40px);
  background-color: #fff;
  border-radius: min(2.1vw, 16px);
  box-shadow: min(0.8vw, 6px) min(0.8vw, 6px) min(1.6vw, 12px) 0 rgb(0 0 0 / 24%);
  overflow: hidden;
}
.eventPresent-target {
  position: relative;
  margin-bottom: min(4vw, 30px);
  padding-bottom: min(4.3vw, 32px);
  text-align: right;
  font-size: 1.6em;
  color: #10a7d5;
}
.eventPresent-target::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  width: 100%;
  height: min(1.6vw, 12px);
  background-color: #10a7d5;
  border-radius: calc(1px / 0);
}
.eventPresent-target ._fsL {
  padding-left: 0.1em;
  padding-right: 0.1em;
  font-size: 2em;
  font-weight: 700;
}
.eventPresent-link {
  margin-bottom: min(4vw, 30px);
  display: block;
}
.eventPresent-img > img {
  border-radius: min(1.3vw, 10px);
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
  transition: filter 0.2s;
}
.eventPresent-img._16x9 > img {
  aspect-ratio: 16 / 9;
}
.eventPresent-img > figcaption {
  line-height: 1.5;
  text-align: right;
  font-size: 1em;
}
.eventPresent-img > figcaption::before {
  content: '※';
}
@media (hover: hover) {
  .eventPresent-link:hover .eventPresent-img > img {
    filter: brightness(0.8);
  }
}
.eventPresent-ttl {
  margin-bottom: min(0.6vw, 5px);
  line-height: 1.25;
  font-size: 2.4em;
  font-weight: 600;
}
.eventPresent-arrow {
  margin-top: 0.5em;
  margin-left: auto;
  width: fit-content;
  display: flex;
  align-items: center;
  column-gap: 0.5em;
  line-height: 1.5;
  font-size: 1.6em;
  transition: opacity 0.2s;
}
.eventPresent-arrow::after {
  content: '>';
  transition: translate 0.3s;
}
@media (hover: hover) {
  .eventPresent-arrow {
    opacity: 0.8;
  }
  .eventPresent-arrow:hover::after {
    translate: 50% 0;
  }
}
.eventPresent-txt {
  line-height: 1.5;
  font-size: 1.6em;
  font-weight: 400;
}
.eventPresent-btn {
  margin: min(8vw, 60px) auto 0;
  width: min(70.6vw, 530px);
  background-color: #10a7d5;
}
@media screen and (min-width: 750.02px) {
  .eventPresent {
    padding: calc(60px * var(--container-magnification)) calc(40px * var(--container-magnification));
    border-radius: calc(16px * var(--container-magnification));
    box-shadow: calc(6px * var(--container-magnification))
      calc(6px * var(--container-magnification)) calc(12px * var(--container-magnification)) 0
      rgb(0 0 0 / 24%);
  }
  .eventPresent-target {
    margin-bottom: calc(30px * var(--container-magnification));
    padding-bottom: calc(32px * var(--container-magnification));
  }
  .eventPresent-target::after {
    height: calc(12px * var(--container-magnification));
  }
  .eventPresent-img {
    margin-bottom: calc(30px * var(--container-magnification));
  }
  .eventPresent-img > img {
    border-radius: calc(10px * var(--container-magnification));
  }
  .eventPresent-ttl {
    margin-bottom: calc(5px * var(--container-magnification));
  }
  .eventPresent-btn {
    margin-top: calc(60px * var(--container-magnification));
    width: calc(530px * var(--container-magnification));
  }
}

.eventPresent-arrow + .eventCard-link {
  margin-top: min(8vw, 60px);
}
@media screen and (min-width: 751px) {
  .eventPresent-arrow + .eventCard-link {
    margin-top: calc(60px * var(--container-magnification));
  }
}

/* ========== sameday ========== */
#sameday {
  background-color: #c5ebee;
}

#sameday .sec-ttl img {
  width: min(82.9vw, 622px);
  aspect-ratio: 622 / 146;
}

.sameday-series {
  margin-top: min(4vw, 30px);
  display: block;
}

@media screen and (min-width: 751px) {
  #sameday .sec-ttl img {
    width: calc(622px * var(--container-magnification));
  }
  
  .sameday-series {
    margin-top: calc(30px * var(--container-magnification));
  }
}

/* ========== schedule ========== */
#schedule {
  background-color: #82d4da;
}
.schedule-ttl > img {
  width: min(79.2vw, 594px);
  aspect-ratio: 594 / 153;
}
.schedule-list {
  margin-top: min(4vw, 30px);
}
.schedule-list > li:has(+ li) {
  margin-bottom: min(4vw, 30px);
}
@media screen and (min-width: 750.02px) {
  .schedule-ttl > img {
    width: calc(594px * var(--container-magnification));
  }
  .schedule-list {
    margin-top: calc(30px * var(--container-magnification));
  }
  .schedule-list > li:has(+ li) {
    margin-bottom: calc(30px * var(--container-magnification));
  }
}

/* ----- scheduleCard ----- */
.scheduleCard {
  padding: min(5.3vw, 40px);
  background-color: #fff;
  border-radius: min(2vw, 15px);
}
.scheduleCard-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 800;
}
.scheduleCard-date {
  display: grid;
  grid-template-columns: auto auto;
  gap: 0 0.2em;
}
.scheduleCard-date-day {
  grid-row: 1 / 3;
  display: flex;
  align-items: center;
  font-size: 4.8em;
}
.scheduleCard-date-day > ._fsS {
  font-size: 0.9em;
}
.scheduleCard-date-week {
  align-self: flex-end;
  font-size: 1.5em;
}
.scheduleCard-date-time {
  align-self: flex-start;
  font-size: 2em;
}
.scheduleCard-date-time > ._fsS {
  font-size: 0.6em;
}
/* _sat */
.scheduleCard-date._sat .scheduleCard-date-day ._day,
.scheduleCard-date._sat .scheduleCard-date-week {
  color: #005a99;
}
/* _sun */
.scheduleCard-date._sun .scheduleCard-date-day ._day,
.scheduleCard-date._sun .scheduleCard-date-week {
  color: #e25f9e;
}

.scheduleCard-vsBox {
  display: flex;
  align-items: center;
}
.scheduleCard-vs {
  padding-left: 0.6em;
  padding-right: 0.2em;
  font-size: 1.6em;
}
.scheduleCard-logo {
  width: min(10vw, 75px);
  aspect-ratio: 1 / 1;
}
.scheduleCard-btnContainer {
  margin-top: min(2.6vw, 20px);
  display: flex;
  justify-content: center;
  column-gap: min(4vw, 30px);
}
.scheduleCard-btn {
  width: min(30.6vw, 230px);
  height: min(10.6vw, 80px);
  border-radius: calc(1px / 0);
  box-shadow: 2px 2px 10px 0 rgb(0 0 0 / 24%);
  display: grid;
  place-content: center;
  font-size: 1.2em;
  font-weight: 600;
  color: #fff;
}
.scheduleCard-btn._event {
  background-color: #006298;
}
.scheduleCard-btn._ticket {
  background-color: #010101;
}
@media screen and (min-width: 750.02px) {
  .scheduleCard {
    padding: calc(40px * var(--container-magnification));
  }
  .scheduleCard-logo {
    width: calc(75px * var(--container-magnification));
  }
  .scheduleCard-btnContainer {
    margin-top: calc(20px * var(--container-magnification));
    column-gap: calc(30px * var(--container-magnification));
  }
  .scheduleCard-btn {
    width: calc(230px * var(--container-magnification));
    height: calc(80px * var(--container-magnification));
  }
}

/* ========== news ========== */
#news {
  background-color: #10a7d5;
}
.news-ttl > img {
  width: min(42vw, 315px);
  aspect-ratio: 315 / 150;
}
.news-btn {
  margin: min(6.6vw, 50px) auto 0;
}
@media screen and (min-width: 750.02px) {
  .news-ttl > img {
    width: calc(315px * var(--container-magnification));
  }
  .news-btn {
    margin-top: calc(50px * var(--container-magnification));
  }
}

.news-list > li:has(+ li) {
  margin-bottom: min(4vw, 30px);
}
.newsCard-link {
  display: block;
  padding: min(4vw, 30px) min(4vw, 30px) min(5.3vw, 40px);
  border-radius: min(2vw, 15px);
  box-shadow: 2px 2px 6px 2px rgb(0 51 67 / 16%);
  background-color: #fff;
}
.newsCard-attr {
  margin-bottom: min(2.6vw, 20px);
  display: flex;
  align-items: center;
}
.newsCard-date {
  margin-right: min(2.6vw, 20px);
  display: grid;
  grid-template-columns: auto auto;
  gap: 0 0.2em;
  font-weight: 300;
  color: #666;
}
.newsCard-date-day {
  grid-row: 1 / 3;
  display: flex;
  align-items: center;
  font-size: 2.8em;
}
.newsCard-date-year {
  align-self: flex-end;
  font-size: 1.1em;
}
.newsCard-date-week {
  align-self: flex-start;
  font-size: 1.1em;
}
.newsCard-tagList {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: min(1.3vw, 10px);
}
.newsCard-tag {
  padding: 0.5em 0.7em;
  border-radius: calc(1px / 0);
  font-size: 1em;
  font-weight: 400;
  color: #fff;
}
.newsCard-tag._campaign {
  background-color: #bf6b27;
}
.newsCard-tag._event {
  background-color: #ea3323;
}
.newsCard-tag._goods {
  background-color: #0c9;
}
.newsCard-tag._press {
  background-color: #999933;
}
.newsCard-tag._gourmet {
  background-color: #f7991d;
}
.newsCard-tag._fanclub {
  background-color: #000066;
}
.newsCard-tag._team {
  background-color: #cc9900;
}
.newsCard-tag._community {
  background-color: #ffcc00;
}
.newsCard-ttl {
  line-height: 1.5;
  font-size: 1.4em;
  font-weight: 500;
}
/* new */
.newsCard._new .newsCard-attr::before {
  content: 'New';
  margin-right: min(1.3vw, 10px);
  font-size: 1.3em;
  font-weight: 700;
  color: #c8004c;
}
@media screen and (min-width: 750.02px) {
  .news-list > li:has(+ li) {
    margin-bottom: calc(30px * var(--container-magnification));
  }
  .newsCard-link {
    padding: calc(30px * var(--container-magnification)) calc(30px * var(--container-magnification))
      calc(40px * var(--container-magnification));
  }
  .newsCard-attr {
    margin-bottom: calc(20px * var(--container-magnification));
  }
  .newsCard-date {
    margin-right: calc(20px * var(--container-magnification));
  }
}

/* ========== access ========== */
#access {
  padding-bottom: min(10.6vw, 80px);
  background-color: #c5ebee;
}
.access-ttl > img {
  width: min(50.4vw, 378px);
  aspect-ratio: 378 / 133;
}
.access-note {
  margin-bottom: 1em;
  padding-left: 1em;
  text-indent: -1em;
  line-height: 1.5;
  font-size: 1.2em;
}
.access-note::before {
  content: '※';
}
.access-means > li:has(+ li) {
  margin-bottom: min(8vw, 60px);
}
@media screen and (min-width: 750.02px) {
  #access {
    padding-bottom: calc(80px * var(--container-magnification));
  }
  .access-ttl > img {
    width: calc(378px * var(--container-magnification));
  }
  .access-means > li:has(+ li) {
    margin-bottom: calc(60px * var(--container-magnification));
  }
}

/* ----- accessBox ----- */
.accessBox {
  padding: min(6.6vw, 50px) min(5.3vw, 40px) min(8vw, 60px);
  background-color: #05afe3;
  border-radius: min(2.1vw, 16px);
}
.accessBox-ttl {
  margin: 0 auto min(4vw, 30px);
  width: fit-content;
  height: min(5vw, 38px);
}
.accessBox-ttl > img {
  width: auto;
  height: 100%;
}
._bus .accessBox-ttl > img {
  aspect-ratio: 471 / 38;
}
._car .accessBox-ttl > img {
  aspect-ratio: 312 / 38;
}
._bus .accessBox-img {
  aspect-ratio: 610 / 554;
}
._car .accessBox-img {
  aspect-ratio: 610 / 407;
}
._bus .accessBox-subTtl {
  margin-top: min(10.6vw, 80px);
  margin-bottom: min(4vw, 30px);
}
._bus .accessBox-subTtl > img {
  width: min(44.1vw, 331px);
  aspect-ratio: 331 / 32;
}
.accessBox-list > li:has(+ li) {
  margin-bottom: min(5.3vw, 40px);
}
.accessBox-note {
  margin-top: min(2.6vw, 20px);
  padding-left: 1em;
  text-indent: -1em;
  line-height: 1.5;
  font-size: 1.3em;
  font-weight: 400;
  color: #fff;
}
.accessBox-note::before {
  content: '※';
}
.accessBox-btn {
  margin: min(5.3vw, 40px) auto 0;
  background-color: #fff;
  color: #05afe3;
}
.accessBox-btn::after {
  border-left-color: #05afe3;
}
@media screen and (min-width: 750.02px) {
  .accessBox {
    padding: calc(50px * var(--container-magnification)) calc(40px * var(--container-magnification))
      calc(60px * var(--container-magnification));
    border-radius: calc(16px * var(--container-magnification));
  }
  .accessBox-ttl {
    margin-bottom: calc(30px * var(--container-magnification));
    height: calc(38px * var(--container-magnification));
  }
  ._bus .accessBox-subTtl {
    margin-top: calc(80px * var(--container-magnification));
    margin-bottom: calc(30px * var(--container-magnification));
  }
  ._bus .accessBox-subTtl > img {
    width: calc(331px * var(--container-magnification));
  }
  .accessBox-list > li:has(+ li) {
    margin-bottom: calc(40px * var(--container-magnification));
  }
  .accessBox-note {
    margin-top: calc(20px * var(--container-magnification));
  }
  .accessBox-btn {
    margin-top: calc(40px * var(--container-magnification));
  }
}

/* ----- accessAccordion ----- */
.accessAccordion {
  background-color: #fff;
  border-radius: min(1.3vw, 10px);
  box-shadow: min(0.8vw, 6px) min(0.8vw, 6px) min(1.6vw, 12px) 0 rgb(0 0 0 / 24%);
}
.accessAccordion-head {
  position: relative;
  padding: min(4vw, 30px) min(8.3vw, 62px) min(4vw, 30px) min(5.3vw, 40px);
  display: flex;
  align-items: center;
  column-gap: min(2.6vw, 20px);
  cursor: pointer;
  pointer-events: all;
}
.accessAccordion-head::before,
.accessAccordion-head::after {
  content: '';
  position: absolute;
  top: 50%;
  right: min(5.3vw, 40px);
  translate: 0 -50%;
  display: block;
  width: min(2.9vw, 22px);
  height: min(0.5vw, 4px);
  background-color: #000;
}
.accessAccordion-head::after {
  rotate: 90deg;
  transition: rotate 0.3s;
}
.accessAccordion-icon {
  width: auto;
  height: min(5.3vw, 40px);
}
.accessAccordion-icon._bus {
  aspect-ratio: 33 / 38;
}
.accessAccordion-icon._plane {
  aspect-ratio: 43 / 42;
}
.accessAccordion-ttl {
  display: flex;
  align-items: center;
  column-gap: min(2vw, 15px);
  font-size: 1.6em;
  font-weight: 700;
}
.accessAccordion-ttl-arrow {
  width: min(5.3vw, 40px);
  aspect-ratio: 40 / 19;
}
@media screen and (min-width: 750.02px) {
  .accessAccordion {
    border-radius: calc(10px * var(--container-magnification));
    box-shadow: calc(6px * var(--container-magnification))
      calc(6px * var(--container-magnification)) calc(12px * var(--container-magnification)) 0
      rgb(0 0 0 / 24%);
  }
  .accessAccordion-head {
    padding: calc(30px * var(--container-magnification)) calc(62px * var(--container-magnification))
      calc(30px * var(--container-magnification)) calc(40px * var(--container-magnification));
    column-gap: calc(20px * var(--container-magnification));
  }
  .accessAccordion-head::before,
  .accessAccordion-head::after {
    right: calc(40px * var(--container-magnification));
    width: calc(22px * var(--container-magnification));
    height: calc(4px * var(--container-magnification));
  }
  .accessAccordion-icon {
    height: calc(40px * var(--container-magnification));
  }
  .accessAccordion-ttl {
    column-gap: calc(15px * var(--container-magnification));
  }
  .accessAccordion-ttl-arrow {
    width: calc(40px * var(--container-magnification));
  }
}

.accessAccordion-body {
  margin-left: auto;
  margin-right: auto;
  display: none;
  width: 87%;
  padding-top: min(5.3vw, 40px);
  padding-bottom: min(5.3vw, 40px);
  border-top: 2px solid #ccc;
}
.accessAccordion-list > li:has(+ li) {
  margin-bottom: min(5.3vw, 40px);
}
.accessAccordion-departure {
  display: flex;
  align-items: flex-start;
  column-gap: min(2.6vw, 20px);
}
.accessAccordion-departure-ttl {
  width: min(21.3vw, 160px);
  height: min(21.3vw, 160px);
  background-color: #05afe3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3em;
  font-weight: 600;
  color: #fff;
}
.accessAccordion-departure-list {
  width: calc(100% - min(24vw, 180px));
}
.accessAccordion-departure-list > li:has(+ li) {
  margin-bottom: min(2.6vw, 20px);
}
.accessAccordion-departure-subTtl {
  margin-bottom: min(0.8vw, 6px);
  width: fit-content;
  padding-left: 1em;
  padding-right: 1em;
  border: 1px solid #05afe3;
  border-radius: min(1.1vw, 8px);
  line-height: 2;
  font-size: 1.1em;
  color: #05afe3;
}
.accessAccordion-departure-txt {
  line-height: 1.4;
  font-size: 1.2em;
}
.accessAccordion-map {
  margin-top: min(5.3vw, 40px);
  margin-bottom: min(4vw, 30px);
}
.accessAccordion-info {
  display: flex;
  align-items: flex-start;
  column-gap: 4%;
  font-size: 1.3em;
}
.accessAccordion-list + .accessAccordion-info {
  margin-top: min(3.2vw, 24px);
}
.accessAccordion-info:has(+ .accessAccordion-info) {
  margin-bottom: min(3.2vw, 24px);
}
.accessAccordion-info > dt {
  width: 31%;
  padding-top: min(2.6vw, 20px);
  padding-bottom: min(2.6vw, 20px);
  border: 1px solid #333;
  border-radius: calc(1px / 0);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-align: center;
  font-weight: 600;
}
.accessAccordion-info > dd {
  width: 65%;
  padding-top: 0.6em;
  line-height: 1.5;
  font-weight: 400;
}
.accessAccordion-notes {
  margin-top: min(4vw, 30px);
  line-height: 1.5;
  font-size: 1.2em;
}
.accessAccordion-notes > li {
  padding-left: 1em;
  text-indent: -1em;
}
.accessAccordion-notes > li::before {
  content: '※';
}
@media screen and (min-width: 750.02px) {
  .accessAccordion-body {
    padding-top: calc(40px * var(--container-magnification));
    padding-bottom: calc(40px * var(--container-magnification));
  }
  .accessAccordion-list > li:has(+ li) {
    margin-bottom: calc(40px * var(--container-magnification));
  }
  .accessAccordion-departure {
    column-gap: calc(20px * var(--container-magnification));
  }
  .accessAccordion-departure-ttl {
    width: calc(160px * var(--container-magnification));
    height: calc(160px * var(--container-magnification));
  }
  .accessAccordion-departure-list {
    width: calc(100% - 180px * var(--container-magnification));
  }
  .accessAccordion-departure-list > li:has(+ li) {
    margin-bottom: calc(20px * var(--container-magnification));
  }
  .accessAccordion-departure-subTtl {
    margin-bottom: calc(6px * var(--container-magnification));
    border-radius: calc(8px * var(--container-magnification));
  }
  .accessAccordion-map {
    margin-top: calc(40px * var(--container-magnification));
    margin-bottom: calc(30px * var(--container-magnification));
  }
  .accessAccordion-list + .accessAccordion-info {
    margin-top: calc(24px * var(--container-magnification));
  }
  .accessAccordion-info:has(+ .accessAccordion-info) {
    margin-bottom: calc(24px * var(--container-magnification));
  }
  .accessAccordion-info > dt {
    padding-top: calc(20px * var(--container-magnification));
    padding-bottom: calc(20px * var(--container-magnification));
  }
  .accessAccordion-notes {
    margin-top: calc(30px * var(--container-magnification));
  }
}

/* is-open */
.accessAccordion-head.is-open::after {
  rotate: 0deg;
}

/* ========== wrapBg ========== */
.wrapBg {
  background-color: #10a7d5;
}

/* ========== bnrs ========== */
.bnrs {
  padding-top: min(10.6vw, 80px);
  padding-bottom: min(10.6vw, 80px);
  display: flex;
  flex-direction: column;
  row-gap: min(4vw, 30px);
}
.bnrs-item {
  display: block;
  box-shadow: min(0.8vw, 6px) min(0.8vw, 6px) min(1.6vw, 12px) 0 rgb(0 0 0 / 24%);
  transition: translate 0.2s, box-shadow 0.2s;
}
.bnrs-item > img {
  aspect-ratio: 690 / 282;
  object-fit: cover;
  object-position: center;
}
@media (hover: hover) {
  .bnrs-item:hover {
    translate: calc(6px * var(--container-magnification)) calc(6px * var(--container-magnification));
    box-shadow: 0 0 calc(12px * var(--container-magnification)) 0 rgb(0 0 0 / 24%);
  }
}
@media screen and (min-width: 750.02px) {
  .bnrs {
    padding-top: calc(80px * var(--container-magnification));
    padding-bottom: calc(80px * var(--container-magnification));
    row-gap: calc(30px * var(--container-magnification));
  }
  .bnrs-item {
    box-shadow: calc(6px * var(--container-magnification))
      calc(6px * var(--container-magnification)) calc(12px * var(--container-magnification)) 0
      rgb(0 0 0 / 24%);
  }
}

/* ========== sponsor ========== */
#sponsor {
  padding-top: min(2.6vw, 20px);
}
.sponsor-ttl > img {
  width: min(49.7vw, 373px);
  aspect-ratio: 373 / 150;
}
.sponsor-list {
  display: flex;
  flex-direction: column;
  row-gap: min(4vw, 30px);
}
.sponsor-item {
  display: block;
  box-shadow: min(0.8vw, 6px) min(0.8vw, 6px) min(1.6vw, 12px) 0 rgb(0 0 0 / 24%);
  transition: translate 0.2s, box-shadow 0.2s;
}
@media (hover: hover) {
  .sponsor-item:hover {
    translate: calc(6px * var(--container-magnification)) calc(6px * var(--container-magnification));
    box-shadow: 0 0 calc(12px * var(--container-magnification)) 0 rgb(0 0 0 / 24%);
  }
}
@media screen and (min-width: 750.02px) {
  #sponsor {
    padding-top: calc(20px * var(--container-magnification));
  }
  .sponsor-ttl > img {
    width: calc(373px * var(--container-magnification));
  }
  .sponsor-list {
    row-gap: calc(30px * var(--container-magnification));
  }
  .sponsor-item {
    box-shadow: calc(6px * var(--container-magnification))
      calc(6px * var(--container-magnification)) calc(12px * var(--container-magnification)) 0
      rgb(0 0 0 / 24%);
  }
}

/* ========== useful ========== */
#useful {
  background-color: #c5ebee;
}
.useful-ttl > img {
  width: min(64.9vw, 487px);
  aspect-ratio: 487 / 152;
}
.useful-list {
  margin-top: min(2.6vw, 20px);
  display: flex;
  flex-wrap: wrap;
  gap: min(3.2vw, 24px) min(4vw, 30px);
}
.useful-item {
  width: calc((100% - min(4vw, 30px)) / 2);
  max-width: 330px;
}
.useful-item .btn {
  width: 100%;
  padding-left: min(6.6vw, 50px);
  padding-right: min(6.6vw, 50px);
  background-color: #05afe3;
  justify-content: flex-start;
  text-align: left;
  font-size: 1.3em;
}
@media screen and (min-width: 750.02px) {
  .useful-ttl > img {
    width: calc(487px * var(--container-magnification));
  }
  .useful-list {
    margin-top: calc(20px * var(--container-magnification));
    gap: calc(24px * var(--container-magnification)) calc(30px * var(--container-magnification));
  }
  .useful-item {
    width: calc((100% - 30px * var(--container-magnification)) / 2);
  }
  .useful-item .btn {
    padding-left: calc(50px * var(--container-magnification));
    padding-right: calc(50px * var(--container-magnification));
  }
}
