@charset "utf-8";

:root {
  --accent-color: #008fdb;
}

* {
  -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 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  color: #333;
}

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

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

@media screen and (min-width: 768px) {
  .s {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .l {
    display: none;
  }
}

/* ----- header ----- */
.header {
  position: relative;
  background-color: #fff;
  border-top: 1px solid #ccc;
  box-shadow: 0px 5px 3px 0px rgba(0, 0, 0, 0.06);
}
.header-logo {
  margin: auto;
  display: block;
  width: fit-content;
  padding: 15px;
}
.header-logo img {
  display: block;
  width: calc(142px / 2);
  aspect-ratio: 142 / 64;
}

@media screen and (min-width: 768px) {
  .header {
    position: fixed;
    z-index: 102;
    top: 0;
    left: 0;
    height: 80px;
    padding: 0;
    border-top: none;
    box-shadow: none;
  }
  .header-logo {
    height: 100%;
    padding: 20px 40px;
  }
  .header-logo img {
    width: auto;
    height: 100%;
  }
}

/* ----- hamburger ----- */
.hamburger {
  position: fixed;
  z-index: 102;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  cursor: pointer;
}
.hamburger > span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 2px;
  background-color: #52271e;
}
.hamburger > span:first-child {
  translate: -50% -50%;
}
.hamburger > span:nth-child(2) {
  translate: -50% calc(-50% - 7px);
}
.hamburger > span:last-child {
  translate: -50% calc(-50% + 7px);
}

.hamburger_close {
  position: absolute;
  width: 60px;
  height: 60px;
  top: 0;
  right: 0;
  cursor: pointer;
}
.hamburger_close > span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 2px;
  translate: -50% -50%;
  background-color: #fff;
}
.hamburger_close > span:first-child {
  rotate: 35deg;
}
.hamburger_close > span:last-child {
  rotate: -35deg;
}

@media screen and (min-width: 768px) {
  .hamburger {
    width: 80px;
    height: 80px;
  }
  .hamburger > span {
    width: 30px;
  }
  .hamburger > span:nth-child(2) {
    translate: -50% calc(-50% - 8px);
  }
  .hamburger > span:last-child {
    translate: -50% calc(-50% + 8px);
  }

  .hamburger_close {
    width: 80px;
    height: 80px;
  }
  .hamburger_close > span {
    width: 30px;
  }
}

/* ----- gnav ----- */
.gnav-warpper {
  position: fixed;
  z-index: 103;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  padding-block: 15px 30px;
  background-color: #0390dd;
  overflow: auto;
  translate: 100% 0;
  transition: translate 0.3s;
}
.gnav-logo {
  margin: 0 auto 30px;
  display: block;
  width: calc(142px / 2);
}
.gnav-logo img {
  display: block;
  aspect-ratio: 142 / 64;
  translate: 10px 0;
}

.gnav-emphasisMenu {
  padding-inline: 24px;
  display: flex;
  justify-content: center;
  gap: 15px;
}
.gnav-emphasisMenu-item {
  width: 50%;
  max-width: 156px;
  height: auto;
  aspect-ratio: 156 / 93;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 5px 5px 10px 5px rgb(0 0 0 / 0.12);
  transition: translate 0.2s, box-shadow 0.2s;
}
.gnav-emphasisMenu-item a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.gnav-emphasisMenu-item._search img {
  width: calc(61px / 2);
  aspect-ratio: 1 / 1;
}
.gnav-emphasisMenu-item._player img {
  width: calc(82px / 2);
  aspect-ratio: 82 / 69;
}
@media (hover: hover) {
  .gnav-emphasisMenu-item:hover {
    translate: 3px 3px;
    box-shadow: 2px 2px 10px 2px rgb(0 0 0 / 0.12);
  }
}

.gnav-line {
  margin-block: 30px;
  border-color: #fff;
}
.gnav-warpper .gnav-headline {
  padding-inline: 24px;
  text-align: left;
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
}
.gnav-headline a {
  display: block;
  color: inherit;
}
.gnav-menu {
  margin-top: 20px;
  padding-inline: 24px;
}
.gnav-menu a {
  display: block;
  width: fit-content;
  padding: 10px 15px;
  color: #fff;
}
.gnav-linkBtn {
  margin: 30px auto 0;
  width: 280px;
  padding: 15px;
  border: 1px solid #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.gnav-linkBtn::after {
  content: "";
  margin-inline-start: 5px;
  display: block;
  width: calc(14px / 2);
  aspect-ratio: 14 / 21;
  background: center/contain no-repeat url(../img/common/gnav-arrow.webp);
  transition: translate 0.3s;
}
.gnav-linkBtn-logo {
  width: 15%;
  aspect-ratio: 92 / 77;
}
.gnav-linkBtn-txt {
  line-height: 1.25;
  font-weight: 600;
  color: #fff;
}
@media (hover: hover) {
  .gnav-linkBtn:hover::after {
    translate: 5px 0;
  }
}

.gnav-link {
  position: relative;
}
.gnav-link::after {
  position: absolute;
  top: 50%;
  left: 100%;
  translate: 0 -50%;
  content: "";
  display: block;
  width: calc(14px / 2);
  aspect-ratio: 14 / 21;
  background: center/contain no-repeat url(../img/common/gnav-arrow.webp);
  transition: translate 0.3s;
}
@media (hover: hover) {
  .gnav-link:hover::after {
    translate: 5px -50%;
  }
}

/* accordion */
.gnav-headline.js-accordion-contents {
  cursor: pointer;
}

.gnav-ac {
  position: relative;
  display: block;
}
.gnav-ac::before,
.gnav-ac::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  translate: 0 -50%;
  display: block;
  width: 2px;
  height: 0.7em;
  background-color: #fff;
  transition: rotate 0.3s;
}
.gnav-ac::after {
  rotate: 90deg;
}
@media (hover: hover) {
}
.gnav-headline.is-open .gnav-ac::before {
  rotate: 90deg;
}

.gnav-acContent {
  margin-top: 1em;
}
.gnav-acContent .gnav-headline {
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  text-indent: 1em;
}
.gnav-acContent .gnav-headline + .gnav-headline {
  margin-top: 0.5em;
}

@media screen and (min-width: 768px) {
  .gnav-warpper {
    left: auto;
    width: 30%;
    min-width: 400px;
    max-width: 500px;
  }
  .gnav-logo {
    width: 142px;
  }

  .gnav-emphasisMenu {
    gap: 30px;
  }
  .gnav-headline {
    font-size: 2.5rem;
  }
  .gnav-headline {
    padding-inline: 24px;
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
  }
  .gnav-menu {
    margin-top: 30px;
    padding-inline: 48px;
  }
  .gnav-menu a {
    padding: 15px 30px;
  }
}

/* ganv control */
.js-hamburger-content.is-open {
  translate: 0 0;
}

@media screen and (max-width: 767px) {
  body:has(.js-hamburger-content.is-open) {
    overflow: hidden;
  }
}

/* ----- iconMenu ----- */
.iconMenu {
  position: fixed;
  z-index: 101;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  width: 100%;
  padding: 0 4%;
  background-color: #fff;
  box-shadow: 0px -2px 5px 0px rgba(0, 0, 0, 0.06);
}
.iconMenu-list {
  display: flex;
  justify-content: space-between;
}

.iconMenuItem {
  position: relative;
  width: 70px;
  height: 60px;
  cursor: pointer;
}
.iconMenuItem a {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  padding: 10px 0;
}
.iconMenuItem a img.-icon_black {
  display: block;
}
.iconMenuItem a img.-icon_blue {
  display: none;
}
.iconMenuItem._top a img {
  width: calc(71px / 2);
  aspect-ratio: 208 / 99;
}
.iconMenuItem._search a img {
  width: calc(44px / 2);
  aspect-ratio: 518 / 519;
}
.iconMenuItem._map a img {
  width: calc(36px / 2);
  aspect-ratio: 18 / 23;
}
.iconMenuItem._guide a img {
  width: calc(41px / 2);
  aspect-ratio: 1 / 1;
}
.iconMenuItem-name {
  text-align: center;
  font-weight: 500;
  font-size: 1rem;
  color: #333;
}
/* _here */
._here .iconMenuItem-name {
  color: var(--accent-color);
}
.iconMenuItem._here::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  width: 100%;
  height: 4px;
  background-color: var(--accent-color);
  border-radius: 999px;
}
.iconMenuItem._here a img.-icon_black {
  display: none;
}
.iconMenuItem._here a img.-icon_blue {
  display: block;
}
@media (hover: hover) {
  .iconMenuItem {
    transition: background-color 0.3s;
  }
  .iconMenuItem:hover {
    background-color: rgba(0, 143, 219, 0.1);
  }
}

@media screen and (min-width: 768px) {
  .iconMenu {
    top: 0;
    bottom: auto;
    height: 80px;
    padding: 0 170px;
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.06);
  }
  .iconMenu-inner {
    margin: auto;
    height: 100%;
    max-width: 1000px;
  }
  .iconMenu-list {
    height: 100%;
    justify-content: center;
    gap: 20px;
  }

  .iconMenuItem {
    width: auto;
    height: 100%;
  }
  .iconMenuItem a {
    padding: 10px;
    justify-content: center;
    gap: 5px;
  }
  .iconMenuItem-name {
    font-size: 1.6rem;
  }

  /* accordion */
  .iconMenuItem.is-open {
    background-color: rgb(0 143 219 / 10%);
  }

  .iconMenuItem-acContent {
    position: absolute;
    top: 100%;
    left: 0;
    width: 191px;
    padding: 1em 0;
    background-color: #fff;
    box-shadow: 0px 2px 5px 0px rgb(0 0 0 / 6%);
  }

  .iconMenuItem .iconMenuItem-acContentLink {
    padding: 1em 1.5em;
    transition: background-color 0.3s;
  }
  @media (hover: hover) {
    .iconMenuItem .iconMenuItem-acContentLink:hover {
      background-color: rgb(0 143 219 / 10%);
    }
  }
}

@media screen and (min-width: 1060px) {
  .iconMenu-list {
    gap: 30px;
  }

  .iconMenuItem a {
    padding: 30px;
    flex-direction: row;
    justify-content: space-between;
    gap: 15px;
  }
}

/* ----- parts ----- */
/* image */
.image {
  border-radius: 15px;
  box-shadow: 5px 5px 5px 0 rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .image {
    border-radius: 16px;
  }
  .image._roundL {
    border-radius: 24px;
  }
}

/* allBtn */
.allBtn {
  position: relative;
  display: block;
  width: fit-content;
  padding-inline-end: 10px;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--accent-color);
}
.allBtn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  width: 5px;
  height: 5px;
  border-right: 2px solid var(--accent-color);
  border-bottom: 2px solid var(--accent-color);
  transform: translate(0, -50%) rotate(-45deg);
}
@media (hover: hover) {
  .allBtn::after {
    transition: transform 0.3s;
  }
  .allBtn:hover:after {
    transform: translate(10px, -50%) rotate(-45deg);
  }
}

@media screen and (min-width: 768px) {
  .allBtn {
    padding-inline-end: 20px;
    font-size: 2rem;
  }
  .allBtn::after {
    width: 8px;
    height: 8px;
    transform: translate(0, -50%) rotate(-45deg);
  }
}

/* backBtn */
.backBtn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  padding: 20px;
  background-color: #333;
  border-radius: 999px;
  font-weight: 700;
  color: #fff;
}
.backBtn::before,
.backBtn::after {
  content: "";
  position: absolute;
  top: 50%;
  display: block;
  width: 0;
  height: 0;
  border-right: 5px solid;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  transform: translate(0, -50%);
}
.backBtn::before {
  left: 20px;
  border-right-color: #fff;
}
.backBtn::after {
  left: 22px;
  border-right-color: #333;
}
@media (hover: hover) {
  .backBtn::before,
  .backBtn::after {
    transition: transform 0.3s;
  }
  .backBtn:hover::before,
  .backBtn:hover::after {
    transform: translate(-5px, -50%);
  }
}

/* roundBtn */
.roundBtn {
  position: relative;
  width: 120px;
  height: 35px;
  border: 1px solid var(--accent-color);
  border-radius: 999px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--accent-color);
}
.roundBtn::before,
.roundBtn::after {
  content: "";
  position: absolute;
  right: 8%;
  display: block;
  width: 1px;
  height: 4px;
  background-color: var(--accent-color);
}
.roundBtn::before {
  top: 50%;
  transform: rotate(30deg);
}
.roundBtn::after {
  bottom: 50%;
  transform: rotate(-30deg);
}
@media (hover: hover) {
  .roundBtn::before,
  .roundBtn::after {
    transition: right 0.3s;
  }
  .roundBtn:hover:before,
  .roundBtn:hover::after {
    right: 5%;
  }
}

@media screen and (min-width: 768px) {
  .roundBtn {
    width: 180px;
    height: 40px;
    font-size: 1.6rem;
  }
  .roundBtn::before,
  .roundBtn::after {
    height: 5px;
  }
}

/* ----- accordion ----- */
/* acMoreBtn */
.acMoreBtn {
  position: relative;
  width: fit-content;
  padding: 5px 10px;
  text-align: center;
  font-size: 1.4rem;
  color: var(--accent-color);
  cursor: pointer;
}
.acMoreBtn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -5%;
  display: block;
  width: 5px;
  height: 5px;
  border-right: 2px solid var(--accent-color);
  border-bottom: 2px solid var(--accent-color);
  transform: translate(0, -60%) rotate(45deg);
  transition: transform 0.3s;
}
.acMoreBtn.is-open::after {
  transform: translate(0, -10%) rotate(-135deg);
}

/* ----- slider ----- */
/* arrowButton01 */
*:has(> .arrowButton01-prev),
*:has(> .arrowButton01-next) {
  position: relative;
}
.arrowButton01-prev {
  position: absolute;
  z-index: 6;
  top: 32%;
  left: -8%;
  width: calc(57px / 2);
}
.arrowButton01-prev img {
  aspect-ratio: 57 / 84;
}
.arrowButton01-next {
  position: absolute;
  z-index: 6;
  top: 32%;
  right: -8%;
  width: calc(56px / 2);
}
.arrowButton01-next img {
  aspect-ratio: 56 / 84;
}

/* ----- tab ----- */
.js-tab-content > * {
  display: none;
}
.js-tab-content > *.is-show {
  display: block;
}

.js-tab-btn li {
  cursor: pointer;
}

/* ----- fadein ----- */
.fadein {
  opacity: 0;
  transform: translate(0, 50px);
  transition: opacity 1500ms, transform 1500ms;
}
.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

/* ----- ticketBtn ----- */
.ticketBtn {
  position: fixed;
  z-index: 102;
  bottom: 65px;
  right: 5px;
  width: 90px;
  aspect-ratio: 1 / 1;
  padding: 10px;
  background-color: #008fdb;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s, scale 0.3s;
}
.ticketBtn.is-scroll {
  opacity: 1;
}
.ticketBtn p {
  text-align: center;
  line-height: 1.25;
  font-style: italic;
  font-weight: bold;
  font-size: 1.4rem;
  color: #fff;
}
@media (hover: hover) {
  .ticketBtn:hover {
    scale: 0.9;
  }
}

@media screen and (min-width: 768px) {
  .ticketBtn {
    right: 30px;
    width: 110px;
    padding: 15px;
  }
  .ticketBtn p {
    font-size: 2rem;
  }
}

/* ----- 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/common/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 {
  margin-bottom: 60px;
  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;
  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;
  }
}

/* ----- copyright ----- */
/* body:has(> .copyright) {
  position: relative;
}
.copyright {
  position: absolute;
  z-index: 21;
  bottom: 60px;
  left: 0;
  right: 0;
  width: 100%;
  background-color: #111;
  text-align: center;
  line-height: 2;
  font-size: 1.4rem;
  color: #fff;
}

@media screen and (768px <= width) {
  .copyright {
    bottom: 0;
  }
} */
