@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: top/contain repeat url(../img/bg.webp);
  font-size: 1.6rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  color: #222;
}

a {
  text-decoration: none;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* ----------
common
---------- */
@media screen and (768px <= width) {
  .__s {
    display: none;
  }
}
@media screen and (width < 768px) {
  .__l {
    display: none;
  }
}

.rounded {
  border-radius: clamp(10px, 2.6vw, 20px);
}

.shadow {
  box-shadow: 2px 5px 5px 0px rgb(17 17 17 / 10%);
}

.border {
  border: 3px solid #fff;
}

.linkBtn {
  width: 220px;
  height: 50px;
  border-radius: calc(1px / 0);
  background: rgb(39, 174, 206);
  background: linear-gradient(98deg, rgba(39, 174, 206, 1) 0%, rgba(173, 225, 75, 1) 100%);
  box-shadow: 2px 5px 5px 0px rgb(17 17 17 / 10%);
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.3;
  text-align: center;
  font-size: 1.4rem;
  color: #fff;
  transition: translate 0.2s, box-shadow 0.2s;
}
@media (hover: hover) {
  .linkBtn:hover {
    translate: 2px 5px;
    box-shadow: 1px 3px 5px 0px rgb(17 17 17 / 10%);
  }
}

.arrowLink {
  position: relative;
  cursor: pointer;
}
.arrowLink::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  translate: 0 -50%;
  width: calc(16px / 2);
  height: auto;
  aspect-ratio: 16 / 26;
  background: center/contain no-repeat url(../img/arrow_next.webp);
  transition: translate 0.3s;
}
@media (hover: hover) {
  .arrowLink:hover::after {
    translate: 8px -50%;
  }
}

@media screen and (768px <= width) {
  .rounded {
    border-radius: 16px;
  }

  .shadow {
    box-shadow: 2px 10px 5px 0px rgb(17 17 17 / 10%);
  }

  .border {
    border-width: 4px;
  }

  .linkBtn {
    width: 280px;
    height: 60px;
    box-shadow: 2px 10px 5px 0px rgb(17 17 17 / 10%);
    font-size: 1.6rem;
  }

  .arrowLink::after {
    width: 12px;
  }
}

/* ----------
header
---------- */
.header {
  position: fixed;
  z-index: 12;
  width: 100%;
}

.language {
  position: absolute;
  top: 25px;
  right: 90px;
}
.language-btn {
  position: relative;
  width: 130px;
  height: 40px;
  padding: 10px;
  background-color: rgb(255 255 255 / 94%);
  border-radius: calc(1px / 0);
  box-shadow: 2px 2px 5px 2px rgb(0 0 0 / 0.12);
  display: flex;
  align-items: center;
  gap: 5px;
  opacity: 1;
  pointer-events: all;
  cursor: pointer;
  transition: opacity 0.2s;
}
.language-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 12px;
  translate: 0 -10%;
  display: block;
  width: 9px;
  height: auto;
  aspect-ratio: 18 / 10;
  background: center/contain no-repeat url(../img/arrow_down-black.webp);
}
@media (hover: hover) {
  .language-btn:hover {
    opacity: 0.8;
  }
}
.language-icon {
  width: 17px;
  aspect-ratio: 34 / 34;
}
.language-txt {
  font-size: 1.3rem;
  font-weight: bold;
}
.language-list {
  margin-top: 6px;
  display: none;
  width: 130px;
  padding: 6px;
  background-color: rgb(255 255 255 / 94%);
  border-radius: 10px;
}
.language-list .language-txt {
  display: block;
  padding: 0.25em;
  line-height: 1.5;
  text-align: center;
  color: initial;
}
.language-list .language-txt span {
  padding: 0 0.5em;
}
.language-list p.language-txt span {
  border-bottom: 2px solid #222;
}
@media (hover: hover) {
  .language-list a.language-txt:hover span {
    border-bottom: 2px solid #222;
  }
}
@media screen and (min-width: 768px) {
  .language {
    top: 50px;
    right: 170px;
  }
  .language-btn {
    width: 200px;
    height: 58px;
    padding: 16px;
    gap: 8px;
  }
  .language-btn::after {
    right: 16px;
    width: 14px;
  }
  .language-icon {
    width: 24px;
  }
  .language-txt {
    font-size: 2rem;
  }
  .language-list {
    margin-top: 10px;
    width: 200px;
    padding: 16px;
    border-radius: 16px;
  }
  .language-list p.language-txt span {
    border-bottom-width: 3px;
  }
  @media (hover: hover) {
    .language-list a.language-txt:hover span {
      border-bottom-width: 3px;
    }
  }
}

.hamburgerBtn {
  position: absolute;
  top: 15px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #008fdb;
  border-radius: 50%;
  box-shadow: 3px 3px 5px 0 rgb(0 98 152 / 30%);
  cursor: pointer;
}
.hamburgerBtn > span {
  position: absolute;
  left: 50%;
  translate: -50% -50%;
  display: block;
  width: 46%;
  height: 3px;
  background-color: #fff;
  border-radius: 99px;
  transition: rotate 0.2s 0s, top 0.2s 0.2s;
}
.hamburgerBtn > span:first-child {
  top: calc(50% - 9px);
}
.hamburgerBtn > span:nth-child(2) {
  top: 50%;
}
.hamburgerBtn > span:last-child {
  top: calc(50% + 9px);
}
/* is-open */
.hamburgerBtn.is-open {
  background-color: #fff;
}
.hamburgerBtn.is-open > span {
  top: 50%;
  background-color: #008fdb;
  transition: rotate 0.2s 0.2s, top 0.2s 0s;
}
.hamburgerBtn.is-open > span:first-child {
  rotate: 45deg;
}
.hamburgerBtn.is-open > span:nth-child(2) {
  opacity: 0;
}
.hamburgerBtn.is-open > span:last-child {
  rotate: -45deg;
}
@media screen and (768px <= width) {
  .hamburgerBtn {
    top: 40px;
    right: 70px;
    width: 80px;
    height: 80px;
  }
  .hamburgerBtn > span {
    height: 4px;
  }
  .hamburgerBtn > span:first-child {
    top: calc(50% - 12px);
  }
  .hamburgerBtn > span:last-child {
    top: calc(50% + 12px);
  }
  /* is-open */
  .hamburgerBtn.is-open > span {
    top: 50%;
  }
}

/* --- hamburgerMenu --- */
.hamburgerMenu {
  position: fixed;
  z-index: 11;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: top/100% 100% repeat url(../img/bg3.webp);
  overflow: auto;
  transition: left 0.3s;
}
/* is-open */
body:has(.hamburgerMenu.is-open) {
  overflow: hidden;
}
.hamburgerMenu.is-open {
  left: 0;
  right: 0;
}
.hamburgerMenu-inner {
  position: relative;
  width: 100%;
  padding: 90px 7%;
  overflow: hidden;
}
.hamburgerMenu-inner::before,
.hamburgerMenu-inner::after {
  content: '';
  position: absolute;
  display: block;
  width: calc(491px / 2);
  aspect-ratio: 491 / 108;
  background: center/contain no-repeat url(../img/hamburger-deco.webp);
}
.hamburgerMenu-inner::before {
  top: -2px;
  left: -10px;
}
.hamburgerMenu-inner::after {
  bottom: -2px;
  right: -10px;
}
@media screen and (768px <= width) {
  .hamburgerMenu-inner {
    padding: 140px 8% 120px;
  }
  .hamburgerMenu-inner::before,
  .hamburgerMenu-inner::after {
    width: 491px;
  }
  .hamburgerMenu-inner::before {
    top: -4px;
    left: -20px;
  }
  .hamburgerMenu-inner::after {
    bottom: -4px;
    right: -20px;
  }
}

.hamburgerMenu-list {
  margin-bottom: 40px;
}
.hamburgerMenu-list > li {
  margin-bottom: 40px;
}
.hamburgerMenu-list > li:last-child {
  margin-bottom: 0;
}
.hamburgerMenu-list > li > a {
  display: block;
  width: fit-content;
  padding-inline-end: 25px;
}
.hamburgerMenu-list > li:nth-child(1) > a {
  width: calc((451px / 2) + 25px);
}
.hamburgerMenu-list > li:nth-child(1) > a img {
  aspect-ratio: 451 / 104;
}
.hamburgerMenu-list > li:nth-child(2) > a {
  width: calc((352px / 2) + 25px);
}
.hamburgerMenu-list > li:nth-child(2) > a img {
  aspect-ratio: 352 / 40;
}
.hamburgerMenu-list > li:nth-child(3) > a {
  width: calc((360px / 2) + 25px);
}
.hamburgerMenu-list > li:nth-child(3) > a img {
  aspect-ratio: 360 / 40;
}
.hamburgerMenu-list > li:nth-child(4) > a {
  width: calc((307px / 2) + 25px);
}
.hamburgerMenu-list > li:nth-child(4) > a img {
  aspect-ratio: 307 / 47;
}
@media screen and (768px <= width) {
  .hamburgerMenu-list {
    margin-bottom: 60px;
  }
  .hamburgerMenu-list > li {
    margin-bottom: 50px;
  }
  .hamburgerMenu-list > li > a {
    padding-inline-end: 50px;
  }
  .hamburgerMenu-list > li:nth-child(1) > a {
    width: calc(697px + 50px);
  }
  .hamburgerMenu-list > li:nth-child(1) > a img {
    aspect-ratio: 697 / 35;
  }
  .hamburgerMenu-list > li:nth-child(2) > a {
    width: calc((352px / 1.2) + 50px);
  }
  .hamburgerMenu-list > li:nth-child(3) > a {
    width: calc((360px / 1.2) + 50px);
  }
  .hamburgerMenu-list > li:nth-child(4) > a {
    width: calc((307px / 1.2) + 50px);
  }
}

.hamburgerMenu-sub > li {
  margin-top: 15px;
}
.hamburgerMenu-sub > li a {
  width: 100%;
  max-width: 350px;
  height: 70px;
  padding: 15px;
  background-color: #005f8f;
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 900;
  color: #fff;
}
.hamburgerMenu-sub > li a::after {
  right: 15px;
}
@media screen and (768px <= width) {
  .hamburgerMenu-sub {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0 30px;
  }
  .hamburgerMenu-sub > li {
    width: 350px;
  }
  .hamburgerMenu-sub > li a {
    padding: 25px;
    border-radius: 6px;
    font-size: 1.8rem;
  }
  .hamburgerMenu-sub > li a::after {
    right: 25px;
  }
}

.hamburgerMenu-useful {
  margin-bottom: 40px;
}
.hamburgerMenu-useful > h3 {
  margin-bottom: 15px;
}
.hamburgerMenu-usefulTtl {
  width: calc(307px / 2);
}
.hamburgerMenu-usefulTtl img {
  aspect-ratio: 307 / 41;
}
.hamburgerMenu-usefulTtl {
  width: calc(307px / 2);
}
.hamburgerMenu-usefulList {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 20px;
}
.hamburgerMenu-usefulList > li > a {
  width: 150px;
  height: 100px;
  background-color: #fff;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  line-height: 1.5;
  font-weight: 900;
  color: #008fdb;
  transition: translate 0.3s, box-shadow 0.3s;
}
@media (hover: hover) {
  .hamburgerMenu-usefulList > li > a:hover {
    box-shadow: 0px 5px 5px 0px rgb(17 17 17 / 10%);
    translate: 2px 5px;
  }
}
@media screen and (768px <= width) {
  .hamburgerMenu-useful {
    margin-bottom: 60px;
  }
  .hamburgerMenu-usefulTtl {
    width: calc(307px / 1.2);
  }
  .hamburgerMenu-usefulList {
    max-width: calc(240px * 4 + 30px * 3);
    gap: 30px;
  }
  .hamburgerMenu-usefulList > li > a {
    width: 240px;
    border-radius: 6px;
    font-size: 1.8rem;
  }
}

.hamburgerMenu-site {
  width: 100%;
  max-width: 350px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hamburgerMenu-site img {
  width: calc(79px / 2);
  aspect-ratio: 167 / 150;
}
.hamburgerMenu-site p {
  font-weight: 900;
  color: #fff;
}
@media screen and (768px <= width) {
  .hamburgerMenu-site {
    max-width: 490px;
    gap: 20px;
  }
  .hamburgerMenu-site img {
    width: 60px;
  }
  .hamburgerMenu-site p {
    font-size: 2.4rem;
  }
}

/* ----------
mv
---------- */
.mv {
  margin-bottom: 50px;
}
.mv-kv {
  display: block;
  aspect-ratio: 750 / 1276;
}
@media screen and (768px <= width) {
  .mv {
    margin-bottom: 80px;
  }
  .mv-kv {
    aspect-ratio: 1440 / 833;
  }
}

/* ----------
introduction
---------- */
.introduction {
  margin-bottom: 40px;
  overflow: hidden;
}
.introduction-ttl {
  position: relative;
  left: 50%;
  translate: -50% 0;
  margin-bottom: 30px;
  width: calc(775px / 2);
}
.introduction-ttl img {
  aspect-ratio: 775 / 279;
}
.introduction-inner {
  margin-inline: auto;
  padding-inline: min(4%, 30px);
}
.introduction-mv {
  margin: 0 auto 10px;
  max-width: 800px;
  overflow: hidden;
}
.introduction-mv iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}
.introduction-txt {
  line-height: 2;
  text-align: center;
  font-size: 1.4rem;
}
@media screen and (768px <= width) {
  .introduction {
    margin-bottom: 70px;
  }
  .introduction-ttl {
    margin-bottom: 60px;
    width: 100%;
    max-width: 731px;
  }
  .introduction-ttl img {
    aspect-ratio: 731 / 236;
  }
  .introduction-inner {
    max-width: calc(800px + 30px * 2);
  }
  .introduction-mv {
    margin-bottom: 20px;
  }
  .introduction-txt {
    font-size: 1.8rem;
  }
}

/* ----------
pickup
---------- */
.pickup {
  margin-bottom: 70px;
}
.pickup::before,
.pickup::after {
  content: '';
  display: block;
  width: 100%;
  height: 70px;
  background: top/contain repeat url(../img/bg2.webp);
}
.pickup::before {
  clip-path: ellipse(50% 100% at 50% 100%);
}
.pickup::after {
  clip-path: ellipse(50% 100% at 50% 0%);
}
.pickup-inner {
  padding-top: 10px;
  background: top/contain repeat url(../img/bg2.webp);
}
.pickup-ttl {
  margin: 0 auto 15px;
  width: calc(613px / 2);
}
.pickup-ttl img {
  aspect-ratio: 613 / 132;
}
.pickup-txt {
  margin-bottom: 20px;
  line-height: 1.75;
  text-align: center;
  font-size: 1.4rem;
}
@media screen and (768px <= width) {
  .pickup {
    margin-bottom: 100px;
  }
  .pickup::before,
  .pickup::after {
    width: 100%;
    height: 100px;
    clip-path: none;
  }
  .pickup::before {
    background: bottom/100% 100% no-repeat url(../img/pickup-bg-top__l.webp);
  }
  .pickup::after {
    background: top/100% 100% no-repeat url(../img/pickup-bg-bottom__l.webp);
  }
  .pickup-ttl {
    margin-bottom: 20px;
    width: calc(688px / 1.5);
  }
  .pickup-txt {
    margin-bottom: 50px;
    font-size: 1.8rem;
  }
}

/* --- pickupGourmet --- */
.pickup-gourmet {
  margin-bottom: 25px;
}
.pickupGourmet {
  position: relative;
  padding-block: 35px;
  overflow: hidden;
}
.pickupGourmet-bubble {
  position: absolute;
  z-index: 1;
  top: 0;
  right: calc(50% - 40px);
  display: block;
  width: calc(489px / 2);
  aspect-ratio: 489 / 96;
}
.pickupGourmet-ttlBox {
  position: relative;
  padding: 25px min(4%, 30px);
}
.pickupGourmet-ttl {
  position: absolute;
  z-index: 1;
  top: -25%;
  left: 2%;
  width: calc(258px / 2);
}
.pickupGourmet-ttl img {
  aspect-ratio: 258 / 113;
}
.pickupGourmet-txt {
  line-height: 1.7;
  font-size: 1.7rem;
  font-weight: 700;
  color: #008fdb;
}
.pickupGourmet-btn {
  margin-inline: auto;
}
@media screen and (768px <= width) {
  .pickup-gourmet {
    margin-bottom: 100px;
  }
  .pickupGourmet {
    padding-block: 90px 20px;
  }
  .pickupGourmet-bubble {
    right: 50%;
    translate: 50% 0;
    width: calc(489px / 1.5);
  }
  .pickupGourmet-ttlBox {
    margin: 0 auto 30px;
    padding-block: 0;
    max-width: calc(1000px + 30px * 2);
  }
  .pickupGourmet-ttl {
    position: static;
    margin-inline: auto;
    width: calc(258px / 1.5);
  }
  .pickupGourmet-txt {
    text-align: center;
    line-height: 1.8;
    font-size: 2.4rem;
  }
}

/* --- slider-gourmet --- */
.pickupGourmet-slider .splide__slide img {
  margin-bottom: 10px;
  display: block;
  aspect-ratio: 500 / 450;
}
@media screen and (768px <= width) {
  .pickupGourmet-slider .splide__slide img {
    margin-bottom: 20px;
    aspect-ratio: 370 / 230;
    object-fit: cover;
    object-position: center;
  }
}

/* --- pickupYtSection --- */
.pickupYtSection {
  margin-bottom: 60px;
  padding: 60px 4% 30px;
  background: top/100% repeat url(../img/bg3.webp);
  border-radius: clamp(30px, 8vw, 60px);
}
.pickupYtSection-bubble {
  position: absolute;
  top: -35px;
  left: -35px;
  display: block;
}
.pickupYtSection-youtube {
  position: relative;
  margin-bottom: 10px;
  border: 3px solid #fff;
}
.pickupYtSection-youtube iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}
.pickupYtSection-ttl {
  translate: -2% 0;
}
.pickupYtSection-txt {
  line-height: 1.7;
  font-size: 1.7rem;
  color: #fff;
}
/* _play */
._play .pickupYtSection-bubble {
  width: calc(527px / 2);
  aspect-ratio: 527 / 96;
}
._play .pickupYtSection-ttl {
  width: calc(555px / 2);
}
._play .pickupYtSection-ttl img {
  aspect-ratio: 555 / 116;
}
/* _girl */
/* ._girl .pickupYtSection-bubble {
  width: calc(554px / 2);
  aspect-ratio: 554 / 96;
}
._girl .pickupYtSection-ttl {
  width: calc(684px / 2);
}
._girl .pickupYtSection-ttl img {
  aspect-ratio: 684 / 113;
} */
@media screen and (768px <= width) {
  .pickupYtSection {
    margin: 0 auto 100px;
    max-width: 920px;
    padding: 60px 10% 50px;
    border-radius: 40px;
  }
  .pickupYtSection-bubble {
    position: absolute;
    top: -90px;
    left: 50%;
    translate: -50% 0;
  }
  .pickupYtSection-youtube {
    margin-bottom: 20px;
    border-width: 4px;
  }
  .pickupYtSection-ttl {
    margin-inline: auto;
    translate: 0;
  }
  .pickupYtSection-txt {
    text-align: center;
    line-height: 1.8;
    font-size: 2.4rem;
  }
  /* _play */
  ._play .pickupYtSection-bubble {
    width: calc(527px / 1.5);
  }
  ._play .pickupYtSection-ttl {
    width: calc(555px / 1.5);
  }
  /* _girl */
  /* ._girl .pickupYtSection-bubble {
    width: calc(554px / 1.5);
  }
  ._girl .pickupYtSection-ttl {
    width: calc(684px / 1.5);
  } */
}

/* --- pickupSpot --- */
.pickupSpot {
  position: relative;
  padding-top: 30px;
  overflow: hidden;
}
.pickupSpot-bubble {
  position: absolute;
  z-index: 1;
  top: 0;
  right: calc(50% - 70px);
  display: block;
  width: calc(557px / 2);
  aspect-ratio: 557 / 96;
}
@media screen and (768px <= width) {
  .pickupSpot {
    padding-top: 100px;
  }
  .pickupSpot-bubble {
    right: 50%;
    translate: 50% 0;
    width: calc(557px / 1.5);
  }
}

/* --- slider-spot --- */
#slider-spot .splide__arrow {
  top: 40%;
  background-color: transparent;
}
#slider-spot .splide__arrow--prev::before {
  content: '';
  display: block;
  width: calc(30px / 2);
  height: auto;
  aspect-ratio: 30 / 50;
  background: center/contain no-repeat url(../img/arrow_prev-blue.webp);
}
#slider-spot .splide__arrow--next::before {
  content: '';
  display: block;
  width: calc(30px / 2);
  height: auto;
  aspect-ratio: 30 / 50;
  background: center/contain no-repeat url(../img/arrow_next-blue.webp);
}
@media screen and (768px <= width) {
  #slider-spot .splide__arrow--prev {
    left: calc(50% - 195px);
  }
  #slider-spot .splide__arrow--prev::before {
    width: 30px;
  }
  #slider-spot .splide__arrow--next {
    right: calc(50% - 275px);
  }
  #slider-spot .splide__arrow--next::before {
    width: 30px;
  }
}

.sliderSpot::before {
  position: absolute;
  top: 10px;
  left: calc(100% - 10px);
  transform-origin: 0 0;
  rotate: 90deg;
  text-shadow: 5px 10px 5px rgb(17 17 17 / 0.2);
  font-family: 'Montserrat', sans-serif;
  font-size: 3.6rem;
  color: #fff;
}
.sliderSpot._01::before {
  content: '#01';
}
.sliderSpot._02::before {
  content: '#02';
}
.sliderSpot._03::before {
  content: '#03';
}
.sliderSpot._04::before {
  content: '#04';
}
.sliderSpot-img {
  margin-bottom: 20px;
  display: block;
  aspect-ratio: 2 / 3;
}
.sliderSpot-ttl {
  position: absolute;
  bottom: calc(100% - 480px);
  left: 0;
  display: block;
}
.sliderSpot-txt {
  padding-left: 10px;
  line-height: 1.7;
  font-size: 1.6rem;
  font-weight: 700;
  color: #008fdb;
}
/* _sauna */
._sauna .sliderSpot-ttl {
  width: calc(260px / 2);
  aspect-ratio: 260 / 103;
}
/* _kidsarea */
._kidsarea .sliderSpot-ttl {
  width: calc(489px / 2);
  aspect-ratio: 489 / 114;
}
/* _hotel */
._hotel .sliderSpot-ttl {
  width: calc(261px / 2);
  aspect-ratio: 261 / 103;
}
/* _virtualbatting */
._virtualbatting .sliderSpot-ttl {
  left: -30px;
  width: calc(715px / 2);
  aspect-ratio: 715 / 180;
}
@media screen and (768px <= width) {
  .sliderSpot::before {
    top: 20px;
    left: calc(100% - 20px);
  }
  .sliderSpot-ttl {
    position: static;
    margin: -5px auto;
  }
  .sliderSpot-txt {
    padding-left: 0;
    text-align: center;
    line-height: 1.8;
    font-size: 2rem;
  }
  /* center */
  .sliderSpot {
    transition: scale 1s;
  }
  .sliderSpot:not(.is-active) {
    scale: 0.8;
  }
}

/* ----------
enjoy
---------- */
.enjoy {
  margin-bottom: 70px;
}
.enjoy-ttl {
  margin: 0 auto 30px;
  width: calc(626px / 2);
}
.enjoy-ttl img {
  aspect-ratio: 626 / 132;
}
@media screen and (768px <= width) {
  .enjoy {
    margin-bottom: 140px;
  }
  .enjoy-ttl {
    margin: 0 auto 30px;
    width: calc(626px / 1.3);
  }
}

/* ----- player ----- */
.player {
  position: relative;
  margin-bottom: calc(60px - 10px);
  padding: 35px 0 10px;
}
.player-inner {
  padding-inline: 4%;
}
.player-bubble {
  position: absolute;
  z-index: 1;
  top: 0;
  right: calc(50% - 100px);
  display: block;
  width: calc(618px / 2);
  aspect-ratio: 618 / 96;
}
.playerMv-kv {
  aspect-ratio: 16 / 9;
}
.player-ttl {
  width: calc(339px / 2);
  translate: -8px 10px;
}
.player-ttl img {
  aspect-ratio: 339 / 106;
}
.player-txt {
  margin-bottom: 25px;
  line-height: 1.7;
  font-size: 1.8rem;
  font-weight: 700;
  color: #008fdb;
}
.player-btn {
  margin-inline: auto;
}
.player-btn + .player-btn {
  margin-top: 20px;
}
@media screen and (768px <= width) {
  .player {
    margin-bottom: calc(100px - 20px);
    padding: 70px 20px 20px;
  }
  .player-inner {
    margin-inline: auto;
    max-width: 920px;
  }
  .player-bubble {
    right: 50%;
    translate: 50% 0;
    width: calc(618px / 1.5);
  }
  .player-ttl {
    margin-inline: auto;
    width: calc(339px / 1.5);
    translate: 0 10px;
  }
  .player-txt {
    text-align: center;
    line-height: 1.8;
    font-size: 2.4rem;
  }
}

/* ----- rules ----- */
.rules {
  position: relative;
  padding-top: 40px;
  overflow: hidden;
}
.rules::before {
  content: '';
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: -20%;
  display: block;
  width: 65%;
  height: 335px;
  background: rgb(112, 195, 212);
  background: linear-gradient(
    135deg,
    rgba(112, 195, 212, 1) 0%,
    rgba(134, 199, 189, 1) 38%,
    rgba(181, 209, 145, 1) 100%
  );
  border-radius: clamp(40px, 10.6vw, 80px);
}
.rules-bubble {
  position: absolute;
  z-index: 1;
  top: 0;
  left: calc(50% - 210px);
  width: calc(714px / 2);
}
.rules-bubble img {
  aspect-ratio: 714 / 96;
}
@media screen and (768px <= width) {
  .rules {
    padding-top: 80px;
  }
  .rules::before {
    left: -50px;
    width: 73%;
    height: 440px;
    border-radius: 60px;
  }
  .rules-bubble {
    left: 50%;
    translate: -50% 0;
    width: calc(714px / 1.5);
  }
}

.rulesCard {
  position: relative;
  margin: 0 4px 10px 0;
  height: calc(100% - 10px);
  background-color: #fff;
  overflow: hidden;
}
.rulesCard::before {
  position: absolute;
  top: 10px;
  left: calc(100% - 5px);
  transform-origin: 0 0;
  rotate: 90deg;
  text-shadow: 1px 1px 0 rgb(34 34 34 / 40%), 1px -1px 0 rgb(34 34 34 / 40%),
    -1px 1px 0 rgb(34 34 34 / 40%), -1px -1px 0 rgb(34 34 34 / 40%);
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  color: #fff;
}
.rulesCard._01::before {
  content: '#01';
}
.rulesCard._02::before {
  content: '#02';
}
.rulesCard._03::before {
  content: '#03';
}
.rulesCard._04::before {
  content: '#04';
}
.rulesCard._05::before {
  content: '#05';
}
.rulesCard-img {
  display: block;
  border-bottom: 3px solid #fff;
  aspect-ratio: 600 / 580;
}
.rulesCard-explanation {
  padding: 10px;
  height: 100%;
  background-color: #e5f4fb;
}
.rulesCard-ttl {
  margin-bottom: 5px;
  padding: 5px 10px;
  width: fit-content;
  height: calc(3em + 5px * 2);
  background-color: #008fdb;
  border-radius: calc(1px / 0);
  display: flex;
  align-items: center;
  gap: 0.5em;
  line-height: 1.5;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}
.rulesCard._01 .rulesCard-ttl::before {
  content: '01.';
}
.rulesCard._02 .rulesCard-ttl::before {
  content: '02.';
}
.rulesCard._03 .rulesCard-ttl::before {
  content: '03.';
}
.rulesCard._04 .rulesCard-ttl::before {
  content: '04.';
}
.rulesCard._05 .rulesCard-ttl::before {
  content: '05.';
}
.rulesCard-txt {
  line-height: 1.7;
  font-size: 1.3rem;
  font-weight: 600;
  color: #222;
}
@media screen and (768px <= width) {
  .rulesCard {
    margin: 0 4px 20px 0;
    height: calc(100% - 20px);
  }
  .rulesCard::before {
    font-size: 3.6rem;
  }
  .rulesCard-img {
    border-width: 4px;
  }
  .rulesCard-explanation {
    padding: 20px;
  }
  .rulesCard-ttl {
    margin-bottom: 10px;
    height: calc(3em + 8px * 2);
    padding: 8px 16px;
    font-size: 1.8rem;
  }
  .rulesCard-txt {
    font-size: 1.6rem;
  }
}

/* --- slider-rules --- */
#slider-rules {
  padding-bottom: 60px;
}
#slider-rules .splide__arrows {
  position: absolute;
  bottom: 0;
  right: 10%;
  width: calc(40px * 2 + 20px);
  height: 80px;
}
#slider-rules .splide__arrow {
  width: 40px;
  height: 40px;
  background-color: #fff;
  border: 2px solid #2286c9;
  opacity: 1;
}
#slider-rules .splide__arrow svg {
  fill: #2286c9;
}
#slider-rules .splide__arrow--prev {
  left: 0;
}
#slider-rules .splide__arrow--next {
  right: 0;
}
.sliderRules-progress {
  margin-top: 40px;
  margin-left: 4%;
  width: 40%;
  height: 5px;
  background: rgb(255 255 255 / 30%);
  border-radius: 99px;
}
.sliderRules-progress-bar {
  margin-left: 0;
  width: 0;
  height: 100%;
  background: #fff;
  transition: margin-left 400ms ease;
  border-radius: 99px;
}
@media screen and (768px <= width) {
  #slider-rules .splide__arrows {
    right: 5%;
    width: calc(50px * 2 + 30px);
    height: 100px;
    max-width: calc(920px / 2);
  }
  #slider-rules .splide__arrow {
    width: 50px;
    height: 50px;
    border-width: 3px;
  }
  .sliderRules-progress {
    margin-inline: auto 63%;
    width: 260px;
    height: 10px;
  }
}
@media screen and (1024px <= width) {
  #slider-rules .splide__arrows {
    right: auto;
    left: calc(50% + (920px / 2) - 130px);
  }
}

/* ----------
howto
---------- */
.howto {
  margin-bottom: 50px;
  padding-block: 60px 100px;
  background-color: #0291df;
  background-image: radial-gradient(#128cce 23%, transparent 24.5%),
    radial-gradient(#128cce 23%, transparent 24.5%);
  background-position: 0 0, 19px 19px;
  background-size: 38px 38px;
  border-radius: clamp(30px, 8vw, 60px);
}
.howto-ttl {
  margin: 0 auto 30px;
  width: calc(702px / 2);
}
.howto-ttl img {
  aspect-ratio: 702 / 155;
}
@media screen and (768px <= width) {
  .howto {
    padding-block: 140px 160px;
  }
  .howto-ttl {
    margin-bottom: 60px;
    width: 618px;
  }
  .howto-ttl img {
    aspect-ratio: 618 / 170;
  }
}

.howto-steps {
  padding-inline: 4%;
  counter-reset: steps 0;
}
.howtoStep {
  position: relative;
  padding-bottom: 60px;
  display: flex;
  align-items: flex-start;
  gap: 2%;
  counter-increment: steps 1;
  color: #fff;
}
.howtoStep::before {
  content: counter(steps, decimal-leading-zero);
  position: relative;
  z-index: 2;
  width: 40px;
  height: 40px;
  background-color: #b3a467;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 2;
  font-family: 'Montserrat', sans-serif;
  font-size: 2.1rem;
}
.howtoStep::after {
  content: '';
  position: absolute;
  z-index: 1;
  top: 0;
  left: 20px;
  translate: -50% 20px;
  width: 6px;
  height: 100%;
  background-color: #b3a467;
}
.howtoStep:last-of-type {
  padding-bottom: 0;
}
.howtoStep:last-of-type:after {
  content: none;
}
.howtoStep-content {
  width: calc(100% - 40px - 2%);
}
.howtoStep-ttl {
  height: 40px;
  display: flex;
  align-items: center;
}
.howtoStep-txt {
  margin-bottom: 20px;
  line-height: 1.8;
  font-size: 1.4rem;
}
.howtoStep-notes li {
  padding-inline-start: 1em;
  text-indent: -1em;
  font-size: 0.9em;
}
.howtoStep-notes li::before {
  content: '※';
}
.howtoStep-btnsBox {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.howtoStep-img {
  display: block;
}
.howtoStep-btn {
  margin-inline: auto;
}
.howtoStep-link {
  display: block;
  width: fit-content;
  transition: scale 0.3s;
}
@media (hover: hover) {
  .howtoStep-link:hover {
    scale: 0.95;
  }
}
.howtoStep-imgList {
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.howtoStep-imgList li {
  width: calc((100% - 10px) / 2);
  max-width: 299px;
}
.howtoStep-imgList li img {
  aspect-ratio: 299 / 350;
}
/* _step01 */
._step01 .howtoStep-ttl {
  width: calc(509px / 2);
}
._step01 .howtoStep-ttl img {
  aspect-ratio: 509 / 34;
}
._step01 .howtoStep-img {
  aspect-ratio: 16 / 9;
}
/* _step02 */
._step02 .howtoStep-ttl {
  width: calc(514px / 2);
}
._step02 .howtoStep-ttl img {
  aspect-ratio: 514 / 34;
}
._step02 .howtoStep-img {
  aspect-ratio: 1090 / 706;
}
._step02 .howtoStep-btn {
  margin-top: 20px;
}
/* _step03 */
._step03 .howtoStep-ttl {
  width: calc(447px / 2);
}
._step03 .howtoStep-ttl img {
  aspect-ratio: 447 / 38;
}
/* _step04 */
._step04 .howtoStep-ttl {
  width: calc(284px / 2);
}
._step04 .howtoStep-ttl img {
  aspect-ratio: 284 / 36;
}
/* _step05 */
._step05 .howtoStep-ttl {
  margin-bottom: 10px;
  width: calc(444px / 2);
}
._step05 .howtoStep-ttl img {
  aspect-ratio: 444 / 81;
}
/* _step06 */
._step06 .howtoStep-ttl {
  margin-bottom: 10px;
  width: calc(362px / 2);
}
._step06 .howtoStep-ttl img {
  aspect-ratio: 362 / 88;
}
._step06 .howtoStep-btn {
  margin-top: 20px;
}
._step06 .howtoStep-img {
  aspect-ratio: 16 / 9;
}
@media screen and (768px <= width) {
  .howto-steps {
    margin-inline: auto;
    max-width: 920px;
  }
  .howtoStep::before {
    width: 60px;
    height: 60px;
    font-size: 3rem;
  }
  .howtoStep::after {
    left: 30px;
    translate: -50% 30px;
    width: 12px;
  }
  .howtoStep-content {
    width: calc(100% - 60px - 2%);
  }
  .howtoStep-ttl {
    height: 60px;
  }
  .howtoStep-txt {
    font-size: 2rem;
  }
  .howtoStep-btnsBox {
    gap: 0;
  }
  .howtoStep-img {
    margin-inline: auto;
  }
  .howtoStep-imgList {
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  .howtoStep-imgList li {
    width: calc((100% - 10px * 3) / 4);
    min-width: 150px;
  }
  /* _step01 */
  ._step01 .howtoStep-ttl {
    width: calc(509px / 1.3);
  }
  /* _step02 */
  ._step02 .howtoStep-ttl {
    width: calc(514px / 1.3);
  }
  /* _step03 */
  ._step03 .howtoStep-ttl {
    width: calc(447px / 1.3);
  }
  /* _step04 */
  ._step04 .howtoStep-ttl {
    width: calc(284px / 1.3);
  }
  /* _step05 */
  ._step05 .howtoStep-ttl {
    width: 616px;
  }
  ._step05 .howtoStep-ttl img {
    aspect-ratio: 616 / 25;
  }
  /* _step06 */
  ._step06 .howtoStep-ttl {
    width: 470px;
  }
  ._step06 .howtoStep-ttl img {
    aspect-ratio: 470 / 29;
  }
}

/* ----------
bottomMenu
---------- */
.bottomMenu {
  position: fixed;
  z-index: 9;
  left: 50%;
  right: 0;
  bottom: 20px;
  translate: -50% 0;
  width: 94%;
  max-width: 900px;
  background-color: #019ddf;
  border-radius: calc(1px / 0);
  display: flex;
  justify-content: center;
  overflow: hidden;
}
.bottomMenu li {
  width: calc(100% / 3);
  height: 50px;
}
.bottomMenu li:nth-child(2) {
  position: relative;
}
.bottomMenu li:nth-child(2)::before,
.bottomMenu li:nth-child(2)::after {
  content: '';
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  display: block;
  width: 2px;
  height: 60%;
  background-color: #fff;
}
.bottomMenu li:nth-child(2)::before {
  right: 100%;
}
.bottomMenu li:nth-child(2)::after {
  left: 100%;
}
.bottomMenu li a {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.3;
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;
}
@media (hover: hover) {
  .bottomMenu li:hover a {
    font-size: 1.6rem;
  }
}

.js-bottomMenu-scroll {
  translate: -50% calc(110% + 20px);
  transition: translate 0.3s, width 0.2s;
}
.js-bottomMenu-scroll.is-scrolled {
  translate: -50% 0;
}
.js-bottomMenu-scroll.is-scroll-end {
  position: relative;
  bottom: 0;
  width: 100%;
  border: none;
  border-radius: unset;
  box-shadow: none;
}

@media screen and (768px <= width) {
  .bottomMenu li:nth-child(2)::before,
  .bottomMenu li:nth-child(2)::after {
    width: 4px;
  }
  .bottomMenu li a {
    font-size: 1.8rem;
  }
  @media (hover: hover) {
    .bottomMenu li:hover a {
      font-size: 2rem;
    }
  }

  .js-bottomMenu-scroll.is-scroll-end {
    max-width: none;
  }
  .js-bottomMenu-scroll.is-scroll-end::before,
  .js-bottomMenu-scroll.is-scroll-end::after {
    content: '';
    position: absolute;
    top: 50%;
    translate: 0 -50%;
    display: block;
    width: 4px;
    height: 60%;
    background-color: #fff;
  }
  .js-bottomMenu-scroll.is-scroll-end::before {
    left: calc(50% + 450px);
  }
  .js-bottomMenu-scroll.is-scroll-end::after {
    right: calc(50% + 450px);
  }
  .js-bottomMenu-scroll.is-scroll-end li {
    width: 300px;
  }
}

/* ----------
footer
---------- */
.useful {
  padding: 30px 15px 40px;
  background-color: #e1f1fa;
}
.useful-ttl {
  margin-bottom: 15px;
  font-size: 2rem;
  font-weight: 600;
  color: #333;
}
.useful-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.useful-item {
  position: relative;
  width: 160px;
  height: auto;
  aspect-ratio: 160 / 50;
  border: 1px solid #0291df;
  border-radius: calc(1px / 0);
  box-shadow: 2px 2px 5px 2px rgb(0 0 0 / 0.12);
  background-color: #fff;
  transition: translate 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.useful-item::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 15px;
  translate: 0 -50%;
  display: block;
  width: calc(14px / 2);
  height: auto;
  aspect-ratio: 14 / 21;
  background: center/contain no-repeat url(../img/footer/footer-arrow.webp);
}
.useful-item a {
  height: 100%;
  display: flex;
  align-items: center;
  padding: 10px 20px;
  font-size: 1.4rem;
  font-weight: 600;
  color: #0291df;
}
@media (hover: hover) {
  .useful-item:hover {
    box-shadow: 1px 1px 5px 1px rgb(0 0 0 / 0.12);
    translate: 2px 2px;
  }
}

@media screen and (min-width: 768px) {
  .useful-inner {
    margin-inline: auto;
    max-width: 1000px;
  }
  .useful-ttl {
    margin-bottom: 30px;
    font-size: 3.6rem;
  }
  .useful-item {
    width: calc((100% - 15px * 3) / 4);
    aspect-ratio: auto;
    border-width: 2px;
  }
  .useful-item a {
    font-size: 1.6rem;
  }
}

.footer {
  width: 100%;
  padding: 25px 20px 10px;
  background-color: #0291df;
}
.footer-inner {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}
.footer-logo {
  display: block;
  width: 50%;
  min-width: 200px;
  max-width: 300px;
}
@media (hover: hover) {
  .footer-logo:hover {
    opacity: 0.7;
  }
}
.footer-share h2 {
  margin-bottom: 10px;
  text-align: center;
  font-family: 'Teko', sans-serif;
  font-size: 3.2rem;
  font-weight: 400;
  color: #fff;
}
.footer-share ul {
  display: flex;
  justify-content: center;
  gap: 30px;
}
.footer-share ul li {
  width: 44px;
  height: 44px;
}
.footer-share ul li a {
  display: block;
}
.footer-share ul li._x a {
  padding: 3px;
}
@media (hover: hover) {
  .footer-share ul li a {
    transition: transform 0.3s;
  }
  .footer-share ul li a:hover {
    transform: scale(1.2);
  }
}
.footer-copyright {
  display: block;
  width: 100%;
  line-height: 1.5;
  text-align: center;
  font-size: 1rem;
  color: #fff;
}

@media screen and (min-width: 768px) {
  .footer {
    margin-bottom: 0;
  }
  .footer-share {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
  }
  .footer-share h2 {
    padding-top: 15px;
  }
  .footer-share ul {
    gap: 10px;
  }
  .footer-copyright {
    font-size: 1.4rem;
  }
}
