@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%;
  scroll-behavior: smooth;
}

body {
  background-color: #f5f5f0;
  font-size: clamp(1rem, 2.6vw, 2rem);
  font-weight: 500;
  color: #333;
  scroll-behavior: smooth;
}

@media screen and (751px <=width) {
  body {
    font-size: 1.3rem;
  }
}

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

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

/* ----- common ----- */
.clickBtn {
  position: relative;
  width: min(17vw, 128px);
  height: auto;
  aspect-ratio: 128 / 129;
  display: flex;
  align-items: center;
  justify-content: center;
}

.clickBtn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: center/contain no-repeat url(../img/btn-click.webp);
  animation: rotateRight 10s linear infinite;
}

@keyframes rotateRight {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.clickBtn-arrow {
  margin-right: 0.3em;
  width: min(5.5vw, 41px);
  height: auto;
  aspect-ratio: 41 / 24;
}

@media screen and (751px <=width) {
  .clickBtn {
    width: calc(128px / 1.3);
  }

  .clickBtn-arrow {
    width: calc(41px / 1.3);
  }
}

.ticketBtn {
  position: relative;
  width: min(53.3vw, 400px);
  height: min(12vw, 90px);
  padding-inline: min(6.4vw, 48px) min(13.3vw, 100px);
  border-radius: calc(1px / 0);
  display: flex;
  align-items: center;
  column-gap: min(2vw, 15px);
  font-size: 1.4em;
  font-weight: 500;
  transition: filter 0.3s;
}

.ticketBtn::before {
  content: '';
  margin-block-start: 0.1em;
  width: min(6.8vw, 51px);
  height: auto;
  aspect-ratio: 51 / 35;
  background: center/contain no-repeat url(../img/icon-ticket.webp);
}

.ticketBtn::after {
  content: '';
  position: absolute;
  top: 50%;
  right: min(3.6vw, 27.5px);
  translate: 0 -50%;
  width: min(6vw, 45px);
  height: auto;
  aspect-ratio: 1 / 1;
  background: center/contain no-repeat;
  transition: transform 0.3s;
}

@media (hover: hover) {
  .ticketBtn:hover {
    filter: brightness(1.1);
  }

  .ticketBtn:hover:after {
    transform: translateX(20%);
  }
}

@media screen and (751px <=width) {
  .ticketBtn {
    width: calc(400px / 1.5);
    height: calc(90px / 1.5);
    padding-inline: calc(48px / 1.5) calc(100px / 1.5);
    column-gap: 10px;
    font-size: 1.5em;
  }

  .ticketBtn::before {
    width: calc(51px / 1.5);
  }

  .ticketBtn::after {
    right: calc(27.5px / 1.5);
    width: calc(45px / 1.5);
  }
}

/* sec */
.sec {
  position: relative;
  z-index: 1;
  padding: min(4vw, 30px) min(4%, 30px) min(18.6vw, 140px);
}

@media screen and (751px <=width) {
  .sec {
    padding-block: 60px 100px;
  }
}

.sec-inner {
  position: relative;
  margin-inline: auto;
  max-width: 1055px;
}

.sec-inner::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  display: block;
  height: auto;
  background: center/contain no-repeat;
}

.sec._01 .sec-inner::before {
  left: 0;
  width: min(25.3vw, 190px);
  aspect-ratio: 190 / 148;
  background-image: url(../img/sec-number01.webp);
}

.sec._02 .sec-inner::before {
  right: 0;
  width: min(28.4vw, 213px);
  aspect-ratio: 213 / 148;
  background-image: url(../img/sec-number02.webp);
}

.sec._03 .sec-inner::before {
  left: 0;
  width: min(29vw, 218px);
  aspect-ratio: 218 / 148;
  background-image: url(../img/sec-number03.webp);
}

@media screen and (751px <=width) {
  .sec._01 .sec-inner::before {
    left: auto;
    right: 0;
    width: 374px;
    aspect-ratio: 374 / 286;
  }

  .sec._02 .sec-inner::before {
    left: 0;
    right: auto;
    width: 424px;
    aspect-ratio: 424 / 286;
  }

  .sec._03 .sec-inner::before {
    left: auto;
    right: 0;
    width: 424px;
    aspect-ratio: 424 / 286;
  }
}

.sec-ttl {
  margin-bottom: 1em;
}

.sec._01 .sec-ttl,
.sec._03 .sec-ttl {
  padding-top: min(14.6vw, 110px);
}

.sec._02 .sec-ttl {
  margin-left: auto;
  padding-top: min(7.3vw, 55px);
}

@media screen and (751px <=width) {
  .sec-ttl {
    margin-bottom: 30px;
  }

  .sec._01 .sec-ttl {
    padding-top: 60px;
  }

  .sec._03 .sec-ttl {
    padding-top: 70px;
  }

  .sec._02 .sec-ttl {
    padding-top: 90px;
  }
}

.sec-lead {
  margin-bottom: min(8vw, 60px);
  padding-block: 0.25em;
  line-height: 2;
  font-size: 1.4em;
}

.sec._01 .sec-lead,
.sec._03 .sec-lead {
  padding-inline: 0.7em 1em;
  clip-path: polygon(0 0, 100% 0, 98% 100%, 0% 100%);
}

.sec._02 .sec-lead {
  padding-inline: 0.9em 0.7em;
  clip-path: polygon(2% 0, 100% 0, 100% 100%, 0% 100%);
}

@media screen and (751px <=width) {
  .sec-lead {
    margin-bottom: min(6.25vw, 90px);
    padding-block: 0.4em;
    font-size: 1.5em;
  }

  .sec._01 .sec-lead,
  .sec._03 .sec-lead {
    width: 690px;
    padding-inline: 24px 32px;
    clip-path: polygon(0 0, 100% 0, 96% 100%, 0% 100%);
  }

  .sec._02 .sec-lead {
    margin-left: auto;
    width: 660px;
    padding-inline: 32px 24px;
    clip-path: polygon(4% 0, 100% 0, 100% 100%, 0% 100%);
    text-align: right;
  }
}

.sec-player {
  position: absolute;
  z-index: -1;
}

.sec-band-container {
  padding-block: 0.8em;
  background: rgb(0, 159, 233);
  background: linear-gradient(90deg, rgba(0, 159, 233, 1) 0%, rgba(0, 110, 241, 1) 60%);
}

.sec-band-img {
  aspect-ratio: 941 / 25;
}

/* ----- mv ----- */
.mv {
  aspect-ratio: 750 / 1059;
}

@media screen and (751px <=width) {
  .mv {
    aspect-ratio: 1440 / 687;
  }
}

/* ----- opening ----- */
.opening {
  position: relative;
  /* padding-top: min(5.3vw, 40px); */
}

.opening-ttl {
  position: absolute;
  top: min(4vw, 30px);
  left: 0;
  line-height: 1.6;
  font-size: min(7.4vw, 5.6em);
  font-weight: 700;
  color: #fff;
}

.opening-ttl_bg {
  display: block;
  width: fit-content;
  padding-inline: min(4vw, 30px);
  background: rgb(0, 159, 233);
  background: linear-gradient(90deg, rgba(0, 159, 233, 1) 0%, rgba(0, 110, 241, 1) 60%);
}

.opening-ttl_bg:nth-of-type(1) {
  width: 100vw;
}

.opening-bg {
  padding: min(32vw, 240px) 4% min(13.3vw, 100px);
  background: center/cover url(../img/opening-bg.webp);
}

.opening-movie {
  --matched-radius-padding: min(0.5vw, 4px);
  --matched-radius-inner-size: min(2.6vw, 20px);

  margin: 0 auto min(6vw, 45px);
  max-width: 1055px;
  padding: var(--matched-radius-padding);
  border-radius: calc(var(--matched-radius-inner-size) + var(--matched-radius-padding));
  background-color: #fff;
}

.opening-movie>iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--matched-radius-inner-size);
}

.opening-txt {
  line-height: 1.75;
  text-align: center;
  font-size: 1.4em;
  font-weight: 700;
  color: #fff;
  text-shadow: 0em 0em 1.5em rgb(9 50 40 / 0.5);
}

.opening-slider-img {
  aspect-ratio: 200 / 137;
}

@media screen and (751px <=width) {
  .opening-ttl {
    top: 40px;
    font-size: 4em;
  }

  .opening-ttl_bg:nth-of-type(1) {
    width: fit-content;
  }

  .opening-bg {
    padding-inline: 30px;
  }

  .opening-txt {
    font-size: 1.8em;
  }
}

@media screen and (1115px <=width) {

  /* = 1055px + 30px * 2 */
  .opening-ttl {
    left: calc(50% - (1055px / 2));
  }
}

/* ----- topics ----- */
.topics {
  padding: min(13.3vw, 100px) min(4%, 30px) min(16vw, 120px);
}

.topics-inner {
  margin-inline: auto;
  max-width: calc(1200px + 30px * 2);
}

.topics-ttl {
  margin: 0 auto min(8vw, 60px);
  width: min(40.2vw, 302px);
}

.topics-ttl>img {
  aspect-ratio: 302 / 94;
}

@media screen and (751px <=width) {
  .topics {
    padding-inline: 30px;
  }
}

.topicsBnrs {
  display: flex;
  flex-direction: column;
  row-gap: min(2.6vw, 20px);
}

.topicsBnrs-item {
  border-radius: min(3.2vw, 24px);
  box-shadow: 0px 0px 15px 5px rgb(51 51 51 / 0.2);
}

.topicsBnrs-link {
  position: relative;
  display: block;
  border-radius: min(3.2vw, 24px);
  overflow: hidden;
}

.topicsBnrs-link:after {
  content: '';
  position: absolute;
  bottom: -5%;
  right: -1%;
  display: block;
  width: 25%;
  height: auto;
  aspect-ratio: 1 / 1;
  background: center/contain no-repeat url(../img/topics-go.webp);
  scale: 0;
  transform-origin: 100% 100%;
  transition: scale 0.3s;
}

.topicsBnrs-img {
  aspect-ratio: 16 / 9;
  transition: filter 0.1s;
}

@media (hover: hover) {
  .topicsBnrs-link:hover::after {
    scale: 1;
  }

  .topicsBnrs-link:hover .topicsBnrs-img {
    filter: brightness(0.7);
  }
}

@media screen and (751px <=width) {
  .topicsBnrs {
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 30px;
  }

  .topicsBnrs-item {
    width: calc(((1200px + 30px * 2) - 30px * 2) / 3);
  }
}

/* ----- gourmet ----- */
#gourmet {
  --accent-color: #4caeeb;
}

.gourmet-ttl {
  width: min(79.3vw, 595px);
}

.gourmet-ttl>img {
  aspect-ratio: 595 / 156;
}

.gourmet-lead {
  background-color: var(--accent-color);
  color: #fff;
}

.gourmet-player {
  top: -10vw;
  right: min(1.3vw, 10px);
  width: min(42.3vw, 317px);
  aspect-ratio: 282 / 398;
}

.gourmet-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: min(5.3vw, 40px);
}

@media screen and (751px <=width) {
  .gourmet-ttl {
    width: 457px;
  }

  .gourmet-ttl>img {
    aspect-ratio: 457 / 136;
  }

  .gourmet-player {
    top: -30px;
    left: 480px;
    right: auto;
    width: calc(317px / 1.3);
  }

  .gourmet-list {
    row-gap: 30px;
  }
}

.gourmetCard {
  position: relative;
  width: 94.2%;
  padding-block-start: min(4vw, 30px);
}

.gourmetCard-bubble {
  position: absolute;
  z-index: 1;
  top: 0;
}

.gourmetCard._01 .gourmetCard-bubble {
  right: max(-4vw, -30px);
  width: min(22vw, 165px);
  aspect-ratio: 165 / 252;
}

.gourmetCard._02 .gourmetCard-bubble {
  left: max(-2.2vw, -17px);
  width: min(22vw, 165px);
  aspect-ratio: 165 / 255;
}

.gourmetCard-inner {
  position: relative;
  display: block;
  background-color: #fff;
  border-radius: 1em;
  box-shadow: -3px 5px 0 3px rgb(200 197 192 / 0.8);
  overflow: hidden;
  transition: opacity 0.3s;
}

.gourmetCard-inner::after {
  content: '';
  position: absolute;
  bottom: 2em;
  right: 2em;
  display: block;
  width: min(9vw, 68px);
  height: auto;
  aspect-ratio: 68 / 17;
  background: center/contain no-repeat url(../img/gourmet-arrow.webp);
  transition: translate 0.3s;
}

@media (hover: hover) {
  .gourmetCard-inner:hover {
    opacity: 0.7;
  }

  .gourmetCard-inner:hover::after {
    translate: 15%;
  }
}

.gourmet-head {
  position: relative;
}

.gourmetCard-img {
  aspect-ratio: 650 / 416;
}

.gourmetCard-btn {
  position: absolute;
}

.gourmetCard._01 .gourmetCard-btn {
  left: 1.5em;
  bottom: 1em;
}

.gourmetCard._02 .gourmetCard-btn {
  right: 0.7em;
  bottom: 0.7em;
}

.gourmetCard-body {
  padding: 1.5em 1.5em 4em;
}

.gourmetCard-ttl {
  margin-bottom: 0.5em;
  line-height: 1.3;
  font-size: 2em;
  font-weight: 600;
  color: var(--accent-color);
}

.gourmetCard-txt {
  line-height: 1.8;
  font-size: 1.4em;
}

@media screen and (751px <=width) {
  .gourmetCard {
    width: 100%;
    padding-block-start: min(2.1vw, 30px);
  }

  .gourmetCard._01 .gourmetCard-bubble {
    left: max(-1.6vw, -24px);
    right: auto;
    width: min(9.4vw, 135px);
  }

  .gourmetCard._02 .gourmetCard-bubble {
    left: auto;
    right: max(-1.4vw, -20px);
    width: min(9.4vw, 135px);
  }

  .gourmetCard-inner {
    display: flex;
    border-radius: 20px;
    box-shadow: -8px 9px 0 3px rgb(200 197 192 / 0.8);
  }

  .gourmetCard._02 .gourmetCard-inner {
    flex-direction: row-reverse;
  }

  .gourmetCard-inner::after {
    width: min(4.7vw, 68px);
  }

  .gourmetCard._01 .gourmetCard-inner::after {
    bottom: min(3.5vw, 50px);
    right: 6%;
  }

  .gourmetCard._02 .gourmetCard-inner::after {
    bottom: min(3.5vw, 50px);
    left: 4%;
    right: auto;
  }

  .gourmet-head {
    width: 48%;
  }

  .gourmetCard-btn {
    width: min(6.8vw, 98px);
  }

  .gourmetCard._01 .gourmetCard-btn {
    left: auto;
    right: 20px;
    bottom: 20px;
  }

  .gourmetCard._02 .gourmetCard-btn {
    left: 20px;
    right: auto;
    bottom: 20px;
  }

  .gourmetCard-btn .clickBtn-arrow {
    width: min(2.2vw, 32px);
  }

  .gourmetCard-body {
    width: 52%;
    padding: min(2vw, 30px) min(6.9vw, 100px) min(2vw, 30px) min(3.1vw, 45px);
  }

  .gourmetCard-ttl {
    margin-bottom: min(0.7vw, 10px);
    line-height: 1.5;
    font-size: min(2.6vw, 2.5em);
  }

  .gourmetCard-txt {
    font-size: min(1.6vw, 1.3em);
  }
}

/* ----- tour ----- */
#tour {
  background: rgb(76, 174, 235);
  background: linear-gradient(180deg, rgba(76, 174, 235, 1) 0%, rgba(32, 134, 242, 1) 60%);
}

.tour-ttl {
  width: min(70.9vw, 532px);
}

.tour-ttl>img {
  aspect-ratio: 532 / 165;
}

.tour-lead {
  background-color: #fff;
}

.tour-player {
  top: -4vw;
  left: max(1.1vw, 8px);
  width: min(50.6vw, 380px);
  aspect-ratio: 380 / 373;
}

.tour-list {
  margin-inline: auto;
  max-width: calc(750px - 30px * 2);
}

@media screen and (751px <=width) {
  .tour-ttl {
    width: 423px;
  }

  .tour-ttl>img {
    aspect-ratio: 423 / 115;
  }

  .tour-player {
    top: 15px;
    left: auto;
    right: 325px;
    width: calc(380px / 1.2);
  }
}

.tourCard {
  position: relative;
}

.tourCard:nth-of-type(1) {
  margin-bottom: min(13.3vw, 100px);
}

.tourCard:nth-of-type(2) {
  margin-bottom: min(8.6vw, 65px);
}

.tourCard._01::before {
  content: '';
  position: absolute;
  top: calc(100% + min(1.6vw, 12px));
  left: min(34.7vw, 260px);
  display: block;
  width: min(21.7vw, 163px);
  height: auto;
  aspect-ratio: 163 / 122;
  background: center/contain no-repeat url(../img/tour-dots01.webp);
}

.tourCard._02::before {
  content: '';
  position: absolute;
  top: calc(100% + min(2vw, 15px));
  right: min(36vw, 270px);
  display: block;
  width: min(4.5vw, 34px);
  height: auto;
  aspect-ratio: 34 / 84;
  background: center/contain no-repeat url(../img/tour-dots02.webp);
}

.tourCard-ttl {
  position: absolute;
  z-index: 1;
  top: min(9.3vw, 70px);
}

li:nth-of-type(odd) .tourCard-ttl {
  right: 0;
}

.tourCard._01 .tourCard-ttl {
  width: min(53.2vw, 399px);
}

.tourCard._02 .tourCard-ttl {
  width: min(50.2vw, 377px);
}

.tourCard._03 .tourCard-ttl {
  width: min(66.1vw, 496px);
}

.tourCard-ttl::before {
  content: '';
  position: absolute;
  display: block;
  width: 0.2em;
  height: 0;
  background-color: #c7bb87;
  border-radius: calc(1px / 0);
  transition: height 0.3s 0.3s linear;
}

.tourCard._01 .tourCard-ttl::before {
  bottom: max(-11vw, -90px);
  right: min(12.9vw, 97px);
}

.tourCard._01.is-started .tourCard-ttl::before {
  height: 3.7em;
}

.tourCard._02 .tourCard-ttl::before {
  bottom: max(-18vw, -135px);
  left: min(11.7vw, 88px);
}

.tourCard._02.is-started .tourCard-ttl::before {
  height: 6.3em;
}

.tourCard._03 .tourCard-ttl::before {
  bottom: max(-12vw, -90px);
  right: min(12.8vw, 96px);
}

.tourCard._03.is-started .tourCard-ttl::before {
  height: 3.8em;
}

.tourCard-ttl::after {
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0.2em;
  background-color: #c7bb87;
  border-radius: calc(1px / 0);
  transition: width 0.3s linear;
}

.tourCard.is-started .tourCard-ttl::after {
  width: 5em;
}

.tourCard._01 .tourCard-ttl::after {
  top: calc(100% + min(10.8vw, 81px));
  left: min(27vw, 203px);
}

.tourCard._02 .tourCard-ttl::after {
  top: calc(100% + min(17.5vw, 131px));
  /* right: min(41vw, 308px); */
  right: min(25.1vw, 188px);
}

.tourCard._03 .tourCard-ttl::after {
  top: calc(100% + min(11.5vw, 86px));
  left: min(24vw, 180px);
  left: min(40vw, 300px);
}

.tourCard-ttl-inner {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  translate: -101% 0;
  transition: translate 0.5s 0.6s linear;
}

.tourCard.is-started .tourCard-ttl-inner {
  translate: 0 0;
}

.tourCard-ttl-img {
  translate: 101% 0;
  transition: translate 0.5s 0.6s linear;
}

.tourCard._01 .tourCard-ttl-img {
  aspect-ratio: 399 / 66;
}

.tourCard._02 .tourCard-ttl-img {
  aspect-ratio: 377 / 131;
}

.tourCard._03 .tourCard-ttl-img {
  aspect-ratio: 496 / 66;
}

.tourCard.is-started .tourCard-ttl-img {
  translate: 0 0;
}

.tourCard-link {
  display: block;
  width: calc(min(64vw, 480px) + 0.2em);
  padding: 0.2em;
  border-radius: 50%;
  border: dotted min(0.6vw, 5px) #fff;
}

li:nth-of-type(even) .tourCard-link {
  margin-left: auto;
}

.tourCard-link-box {
  border-radius: 50%;
  box-shadow: 2px 2px 8px 4px rgb(51 51 51 / 0.2);
  overflow: hidden;
}

.tourCard-link-box>img {
  aspect-ratio: 1 / 1;
  transition: scale 0.2s;
}

@media (hover: hover) {
  .tourCard-link:hover .tourCard-link-box>img {
    scale: 1.1;
  }
}

.tourCard-txt {
  position: absolute;
  width: auto;
  height: min(12.2vw, 92px);
}

.tourCard._01 .tourCard-txt {
  bottom: min(12vw, 90px);
  right: 0;
  aspect-ratio: 303 / 92;
}

.tourCard._02 .tourCard-txt {
  /* bottom: min(12vw, 90px); */
  bottom: min(4vw, 30px);
  left: 0;
  aspect-ratio: 548 / 92;
}

.tourCard._03 .tourCard-txt {
  bottom: min(9.3vw, 70px);
  right: 0;
  aspect-ratio: 498 / 92;
}

.tourCard-ticketBtn {
  position: absolute;
  bottom: max(-5.3vw, -40px);
  right: max(-5.3vw, -40px);
  background-color: #c7bb87;
  color: #fff;
  scale: 0.8;
}

.tourCard-ticketBtn:after {
  background-image: url(../img/btn-arrow_yellow.webp);
}

.tourCard-clickBtn {
  position: absolute;
}

.tourCard._01 .tourCard-clickBtn {
  left: 1em;
  bottom: 1.5em;
}

.tourCard._02 .tourCard-clickBtn {
  right: 0;
  bottom: 1.5em;
}

.tourCard._03 .tourCard-clickBtn {
  left: 0;
  bottom: 2.5em;
}

@media screen and (751px <=width) {
  .tourCard._01 .tourCard-ttl {
    width: calc(399px / 1.1);
  }

  .tourCard._02 .tourCard-ttl {
    width: calc(377px / 1.1);
  }

  .tourCard._03 .tourCard-ttl {
    width: calc(496px / 1.1);
  }

  .tourCard-ttl::before {
    width: 4px;
  }

  .tourCard._01 .tourCard-ttl::before {
    bottom: -85px;
    right: 88px;
  }

  .tourCard._01.is-started .tourCard-ttl::before {
    height: 75px;
  }

  .tourCard._02.is-started .tourCard-ttl::before {
    height: 124px;
  }

  .tourCard._03 .tourCard-ttl::before {
    right: 87px;
  }

  .tourCard._03.is-started .tourCard-ttl::before {
    height: 74px;
  }

  .tourCard-ttl::after {
    height: 4px;
  }

  .tourCard.is-started .tourCard-ttl::after {
    width: 104px;
  }

  .tourCard._01 .tourCard-ttl::after {
    left: calc(203px / 1.2);
  }

  .tourCard._02 .tourCard-ttl::after {
    right: 148px;
  }

  .tourCard._03 .tourCard-ttl::after {
    left: 258px;
  }

  .tourCard-link {
    width: calc(480px + 4px);
    padding: 4px;
  }

  .tourCard-link-box {
    box-shadow: 3px 3px 10px 10px rgb(51 51 51 / 0.2);
  }

  .tourCard-txt {
    height: calc(92px / 1.1);
  }

  .tourCard-ticketBtn {
    bottom: 0;
    right: 0;
    scale: 1;
  }

  .tourCard._01 .tourCard-clickBtn {
    left: 40px;
    bottom: 50px;
  }

  .tourCard._02 .tourCard-clickBtn {
    right: 50px;
    bottom: 40px;
  }

  .tourCard._03 .tourCard-clickBtn {
    left: 20px;
    bottom: 60px;
  }
}

/* ----- activity ----- */
.activity-ttl {
  width: min(83.8vw, 629px);
}

.activity-ttl>img {
  aspect-ratio: 629 / 159;
}

.activity-lead {
  background-color: #80d13c;
  color: #fff;
}

.activity-player {
  top: -2vw;
  right: max(-4vw, -30px);
  width: min(50.9vw, 382px);
  aspect-ratio: 408 / 354;
}

.activity-list {
  display: flex;
  flex-direction: column;
  row-gap: min(8vw, 60px);
}

@media screen and (751px <=width) {
  .activity-ttl {
    width: 484px;
  }

  .activity-ttl>img {
    aspect-ratio: 484 / 139;
  }

  .activity-player {
    top: -0px;
    left: 360px;
    right: auto;
    width: calc(408px / 1.3);
  }

  .activity-list {
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 30px;
  }
}

.activityCard-main {
  position: relative;
  margin-bottom: min(4vw, 30px);
  display: block;
  border-radius: 1em;
  overflow: hidden;
}

.activityCard-img {
  aspect-ratio: 638 / 351;
  transition: filter 0.2s;
}

.activityCard-ttl {
  position: absolute;
  left: min(4vw, 30px);
  bottom: min(2.6vw, 20px);
  height: min(12.2vw, 92px);
}

.activityCard-ttl-img {
  width: auto;
  height: 100%;
}

.activityCard:nth-of-type(1) .activityCard-ttl-img {
  aspect-ratio: 250 / 92;
}

.activityCard:nth-of-type(2) .activityCard-ttl-img {
  aspect-ratio: 368 / 92;
}

.activityCard-btn {
  position: absolute;
  right: min(2.6vw, 20px);
  bottom: min(2.6vw, 20px);
}

.activityCard-btn:after {
  transition: scale 0.2s;
}

@media (hover: hover) {
  .activityCard-main:hover .activityCard-img {
    filter: contrast(0.7);
  }

  .activityCard-main:hover .activityCard-btn:after {
    scale: 0.9;
  }
}

.activityCard-ticketBtn {
  margin-inline: auto;
  background-color: #53b500;
  color: #fff;
}

.activityCard-ticketBtn::after {
  background-image: url(../img/btn-arrow_green.webp);
}

@media (hover: hover) {
  .activityCard-ticketBtn:hover {
    filter: brightness(1.1);
  }

  .activityCard-ticketBtn:hover:after {
    transform: translateX(20%);
  }
}

@media screen and (751px <=width) {
  .activityCard {
    width: calc((1055px - 30px) / 2);
  }

  .activityCard-main {
    border-radius: 20px;
  }

  .activityCard-ttl {
    left: 30px;
    bottom: 15px;
    height: calc(92px / 1.4);
  }

  .activityCard-btn {
    right: 15px;
    bottom: 15px;
  }
}

/* ----- information ----- */
.information {
  padding-block: min(13.3vw, 100px) min(16vw, 120px);
}

.information-inner {
  margin-inline: auto;
  max-width: calc(300px * 4 + 20px * 3);
  padding-inline: min(3.2vw, 24px);
}

.information-ttl {
  margin: 0 auto min(8vw, 60px);
  width: min(53.8vw, 404px);
}

.information-ttl-en {
  margin-bottom: min(2.6vw, 20px);
  display: block;
  text-align: center;
  font-size: 1.4em;
  font-weight: 700;
}

.information-ttl-en::first-letter {
  color: #009fe9;
}

.information-list {
  display: flex;
  flex-wrap: wrap;
  gap: min(4.2vw, 32px);
}

.information-item {
  width: calc((100% - min(4.2vw, 32px)) / 2);
  border-radius: min(1.6vw, 12px);
  background-color: #007bb8;
}

.information-link {
  position: relative;
  height: min(12vw, 90px);
  padding: min(2vw, 15px) min(12vw, 90px) min(2vw, 15px) min(4vw, 30px);
  display: flex;
  align-items: center;
  line-height: 1.1;
  font-size: 1.3em;
  font-weight: 500;
  color: #fff;
  transition: opacity 0.2s;
}

.information-link::after {
  content: '';
  position: absolute;
  top: 50%;
  right: min(3vw, 22.5px);
  translate: 0 -50%;
  display: block;
  width: min(6vw, 45px);
  height: auto;
  aspect-ratio: 1 / 1;
  background: center/contain no-repeat url(../img/btn-arrow.webp);
  transition: transform 0.3s;
}

@media (hover: hover) {
  .information-link:hover {
    opacity: 0.7;
  }

  .information-link:hover::after {
    transform: translateX(15%);
  }
}

@media screen and (751px <=width) {
  .information-inner {
    padding: 0;
  }

  .information-ttl {
    width: calc(404px / 1.3);
  }

  .information-ttl-en {
    margin-bottom: 5px;
    font-size: 2em;
  }

  .information-list {
    justify-content: center;
    gap: 20px;
  }

  .information-item {
    width: calc((100% - 20px * 3) / 4);
    min-width: 240px;
  }

  .information-link {
    height: 75px;
    padding: 10px 60px 10px 30px;
    line-height: 1.2;
    font-size: 1.5em;
  }

  .information-link::after {
    right: 15px;
    width: 30px;
  }
}