/* 共通 */
.c-sec-txt {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
.c-sec-txt div {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  padding: 4% 3.5% 12%;
  width: 90%;
  margin: 0 auto;
}
.c-sec-txt div p {
  font-size: var(--text-md-2);
  letter-spacing: -0.5px;
}
.c-section .c-button-main {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.c-section .c-button-main__text {
  color: #fff;
}
.c-section .c-button-main__icon {
  fill: #fff;
}
.c-section {
  position: relative;
}

li {
  list-style: none;
}
.p-footer:before {
  display: none;
}

/* PC・SP切替用 */
.pc {
  display: none;
}
.sp {
  display: block;
}

/* mv */
.mv {
  position: relative;
}
.mv div {
  position: absolute;
  top: 163vw;
  left: 20px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  color: #0085ff;
  max-width: 1200px;
  margin: 0 auto;
}
.mv div h2 {
  margin-bottom: 0;
  font-size: var(--text-4xl-3);
}
.mv div p {
  margin-top: 0;
  font-size: var(--text-lg);
}
.mv video {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 148vw;
  z-index: -1;
}

/* sec01 */
.sec01-slider {
  margin-top: -10%;
}
.sec01-slider .splide__slide p {
  margin-top: 13px;
  text-align: center;
}

/* スライダー矢印 */
.splide__arrow {
  width: 18.5vw;
  height: 18.5vw;
  background-color: #0cabeb;
  opacity: 1;
  transform: translateY(-80%);
}
.splide__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 60%;
  transform: translate(-50%, -50%);
  width: 5.5vw;
  height: 4vw;
  background-image: url("/assets/images/waterpark/icon_arrow.webp");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.splide__arrow--prev {
  left: -7%;
}
.splide__arrow--next {
  right: -7%;
  transform: translateY(-80%) rotate(180deg);
}

/* ページネーション */
.splide__pagination {
  column-gap: 10px;
  bottom: -13%;
}
.splide__pagination__page {
  background-color: #e5e5e5;
  width: 10px;
  height: 10px;
  margin: 0;
}
.splide__pagination__page.is-active {
  background: #b2b2b2;
  transform: scale(1.5);
}

/* sec02 */
.sec02 {
  margin-top: 16.5%;
}
.sec02 .c-sec-txt {
  top: 40%;
  top: 115vw;
}
.sec02 .c-button-main {
  background-color: #00b0f0;
  bottom: -9%;
}

/* sec03 */
.sec03 {
  margin-top: -17%;
}
.sec03 .c-sec-txt {
  top: 105vw;
}
.sec03 .c-button-main {
  background-color: #149676;
  bottom: -15%;
}

/* sec04 */
.sec04 {
  margin-top: -33%;
}
.sec04 .c-sec-txt {
  top: 117vw;
}
.sec04 .c-button-main {
  background-color: #1e76e3;
  bottom: -15%;
}

/* sec05 */
.sec05 {
  margin-top: -20%;
}
.sec05 .c-sec-txt {
  top: 115vw;
}
.sec05 .c-button-main {
  background-color: #a6b500;
  bottom: -15%;
}

/* sec06 */
.sec06 {
  margin-top: -28%;
}
.sec06 .c-sec-txt {
  top: 116vw;
}
.sec06 .c-button-main {
  background-color: #5736c2;
  bottom: -15%;
}
.sec06-slider {
  display: flex;
  justify-content: flex-start;
  /* overflow: hidden; */
  height: 34vw;
  margin: 10px 0;
}
.sec06-slider._bottom {
  margin: 20px 0 0;
}
.sec06-sliderList {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  column-gap: 10px;
  width: auto;
  height: 100%;
  flex: 0 0 auto;
  padding: 0 5px;
  margin: 0;
}
.sec06-sliderList li {
  height: 100%;
  filter: drop-shadow(0px 5px 10px rgba(0, 0, 0, 0.3));
}
.sec06-sliderList li img {
  width: auto;
  height: 100%;
}
/* アルバムスライダーアニメーション */
._top .sec06-sliderList._active:nth-child(1) {
  animation: roop1 70s -35s infinite linear;
}
._top .sec06-sliderList._active:nth-child(2) {
  animation: roop2 70s infinite linear;
}
._bottom .sec06-sliderList._active:nth-child(1) {
  animation: roop1 70s -40s infinite linear;
}
._bottom .sec06-sliderList._active:nth-child(2) {
  animation: roop2 70s -5s infinite linear;
}

@keyframes roop1 {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes roop2 {
  0% {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-200%);
  }
}

/* sec07 */
.sec07 {
  margin-top: 7.5%;
  border-bottom: 1px solid #d7d7d7;
}
.sec07-bg {
  display: none;
}
.sec07-wrapper {
  margin: 20px 20px 0;
}
.sec07-wrapper h2 {
  font-size: var(--text-3xl-2);
  padding-bottom: 15px;
  color: #c61217;
  text-align: center;
  margin-bottom: 0;
}

@media only screen and (min-width: 768px) {
  /* 共通 */
  .c-section .c-button-main {
    padding: var(--space-4) var(--space-9);
    min-width: min(250px, 100%) !important;
  }
  .c-sec-txt {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
  }
  .c-sec-txt div {
    border-radius: 20px;
    padding: 3% 3% 5%;
    width: 55%;
  }
  .c-sec-txt div p {
    font-size: var(--text-md-2);
    letter-spacing: -1.1px;
  }
  .c-section .c-button-main {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .c-section .c-button-main__text {
    color: #fff;
  }
  .c-section .c-button-main__icon {
    fill: #fff;
  }
  .c-section {
    position: relative;
  }
  /* PC・SP切替用 */
  .pc {
    min-width: 247px;
    display: block;
  }
  .sp {
    display: none;
  }

  /* mv */
  .mv div {
    position: relative;
    top: -40vw;
    left: 0;
    padding-left: 20px;
  }
  .mv video {
    top: -15vw;
    height: auto;
    width: 100%;
  }
  .mv div h2 {
    font-size: 36px;
  }

  /* sec01 */
  .sec01 {
    margin-top: max(-17.5vw, -252px);
  }
  .sec01-wrapper {
    max-width: 1440px;
    margin: 0 auto;
  }
  .sec01-slider {
    margin-top: max(-25%, -360px);
  }
  .sec01-slider .splide__slide p {
    margin-top: 4.5%;
  }

  /* スライダー矢印 */
  .splide__arrow {
    width: min(7vw, 100px);
    height: min(7vw, 100px);
  }
  .splide__arrow::before {
    left: 50%;
    width: min(2.7vw, 38px);
    height: min(2.2vw, 31px);
  }
  .splide__arrow--prev {
    left: 21%;
  }
  .splide__arrow--next {
    right: 21%;
  }

  /* ページネーション */
  .splide__pagination {
    column-gap: 20px;
    bottom: -13%;
  }
  .splide__pagination__page {
    width: 20px;
    height: 20px;
  }

  /* sec02 */
  .sec02 {
    max-width: 1440px;
    margin: 6.5% auto 0;
  }
  .sec02 .c-sec-txt {
    top: 37%;
    left: 70%;
  }
  .sec02 .c-button-main {
    bottom: -13%;
  }

  /* sec03 */
  .sec03 {
    max-width: 1440px;
    margin: max(-17%, -244px) auto 0;
  }
  .sec03 .c-sec-txt {
    top: 44%;
    left: 30%;
  }

  /* sec04 */
  .sec04 {
    max-width: 1440px;
    margin: max(-12.5%, -180px) auto 0;
  }
  .sec04 .c-sec-txt {
    top: 40%;
    left: 70%;
  }

  /* sec05 */
  .sec05 {
    max-width: 1440px;
    margin: max(-9%, -130px) auto 0;
  }
  .sec05 .c-sec-txt {
    top: 40%;
    left: 30%;
  }
  .sec05 .c-button-main {
    background-color: #a6b500;
    bottom: -15%;
  }

  /* sec06 */
  .sec06 {
    margin-top: max(-21.7%, -312px);
  }
  .sec06-wrapper {
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
  }
  .sec06 .c-sec-txt {
    top: 40%;
    left: 69%;
  }
  .sec06 .c-button-main {
    bottom: -18%;
  }
  .sec06-slider {
    height: min(17.5vw, 252px);
    margin: -8px 0 0;
  }
  .sec06-slider._bottom {
    margin: 40px 0 0;
  }
  .sec06-sliderList {
    padding: 0 10px;
    column-gap: 20px;
  }

  /* sec07 */
  .sec07 {
    max-width: 1440px;
    margin: min(4vw, 60px) auto 0;
    position: relative;
  }
  .sec07-wrapper {
    max-width: 1240px;
    margin: 70px auto 0;
    padding: 0 20px;
  }
  .sec07-wrapper h2 {
    font-size: var(--text-4xl-2);
    padding-bottom: 35px;
  }
}

@media only screen and (min-width: 1200px) {
  .c-section .c-button-main {
    padding: var(--space-9) var(--space-16);
    min-width: min(500px, 100%) !important;
  }
  .c-sec-txt div {
    padding: 4.5% 3% 7.7%;
    width: min(46.1%, 650px);
  }
  .sec02 .c-sec-txt {
    top: 42.5%;
  }
  .sec04 .c-sec-txt {
    top: 45%;
  }
  .sec06 .c-sec-txt {
    top: 46%;
  }
  .sec07-bg {
    /* display: block; */
    width: 100vw;
    height: 3vw;
    background-color: #fff;
    border-top: min(0.25vw, 4.5px) #c61217 solid;
    position: absolute;
    top: 13%;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
  }
}
