@charset "utf-8";

/* リセットCSS */
/* * {
  outline: 1px solid red;
} */
*,
::before,
::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

#vdbanner {
  width: 0;
  height: 0;
}
main,
body {
  margin: -10px 0;
}

ul,
ol {
  list-style: none;
}

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

/* 共通設定 */
body {
  font-family: "Murecho", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #fff;
  line-height: 2;
  background-color: #58c1e4;
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

/* ここからheader */

.toggle-menu-button {
  display: none;
}

.site-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background-color: rgba(255, 255, 255, 0);
}
.header-logo .pc_logo_header {
  width: 180px;
  height: 180px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}
.header-logo img {
  object-fit: contain;
}
.header-logo .mb_logo_header {
  display: none;
}
.main-nav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 40px;
  margin: 5px;
}
.main-nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 40px;
}
.main-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 150px;
  color: black;
  font-size: 14px;
}
.nav-icon {
  height: 35px;
  object-fit: contain;
  filter: drop-shadow(2px 2px 1px #505050aa);
  margin-bottom: 5px;
  transition: transform 0.2s ease-out, filter 0.3s ease;
}

/* ホバーアニメ */
.main-nav a:hover .nav-icon {
  animation: fish-wobble-strong-scale 1s ease-in-out;
  -webkit-animation: fish-wobble-strong-scale 1s ease-in-out;
}

@keyframes fish-wobble-strong-scale {
  0% {
    transform: scale(1, 1) translate(0, 0);
  }
  15% {
    transform: scale(0.97, 0.93) translate(0, 2px);
  }
  30% {
    transform: scale(1.03, 1) translate(0, 4px);
  }
  50% {
    transform: scale(0.95, 1.05) translate(0, -4px);
  }
  70% {
    transform: scale(1, 0.93) translate(0, 2px);
  }
  100% {
    transform: scale(1, 1) translate(0, 0);
  }
}

@-webkit-keyframes fish-wobble-strong-scale {
  0% {
    -webkit-transform: scale(1, 1) translate(0, 0);
  }
  15% {
    -webkit-transform: scale(0.97, 0.93) translate(0, 2px);
  }
  30% {
    -webkit-transform: scale(1.03, 1) translate(0, 4px);
  }
  50% {
    -webkit-transform: scale(0.95, 1.05) translate(0, -4px);
  }
  70% {
    -webkit-transform: scale(1, 0.93) translate(0, 2px);
  }
  100% {
    -webkit-transform: scale(1, 1) translate(0, 0);
  }
}

/* もじ */
.nav-label {
  display: inline-block;
  position: relative;
  opacity: 0.8;
  white-space: nowrap;
}

/* バウンドアニメーション */
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-5px); /* 少し上にスライド */
  }
  50% {
    transform: translateY(2.5px); /* 少し下にスライド */
  }
  75% {
    transform: translateY(-2.5px); /* 少し上に戻す */
  }
  100% {
    transform: translateY(0);
  }
}

.nav-label span {
  display: inline-block;
  opacity: 0.8;
  animation-play-state: paused;
  transform: translateY(0);
  transition: opacity 0.25s;
}

.main-nav a:hover .nav-label span {
  opacity: 1;
  animation-play-state: running;
}
.nav-label.is-hover span {
  opacity: 1;
}
.nav-label.is-bouncing span {
  animation: bounce 0.25s ease forwards;
}

/* ここからfooter */

footer {
  color: #fff;
  padding: 50px 80px;
}

.footer-content {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  /* flex-wrap: wrap; */
  max-width: 1200px;
  padding: 0 20px;
}

.footer-content > .footer-column {
  flex: 1;
  min-width: 400px;
  padding: 0 15px;
}

.footer-info {
  flex: 0 0 30%;
  min-width: 400px;
}

.footer-nav-group {
  flex: 1;
}

.footer-logo {
  height: 180px;
  width: 180px;
  object-fit: contain;
}

.nav-links-container {
  display: flex;
  gap: 50px;
}

.main-links,
.legal-social-group {
  flex: 1;
}

.legal-social-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-info p {
  margin: 5px 0;
  line-height: 1.6;
  font-size: 14px;
}

.footer-tel {
  font-weight: bold;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li a {
  display: inline-block;
  padding: 10px 0 3px;
  font-size: 15px;
  transition: color 0.25s;
  position: relative;
}

.footer-nav li a::before {
  background: #fff;
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s;
}
.footer-nav li a:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links .social-icon {
  width: 25px;
  height: 25px;
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.25s, transform 0.25s ease-out;
}

.social-links a:hover .social-icon {
  opacity: 0.7;
  transform: scale(1.1);
}

/* Fixed Ticket Button (チケット購入固定ボタン)*/

.fixed-ticket-button {
  position: fixed;
  right: 0px;
  bottom: 10%;
  z-index: 1000;
  width: 160px;
  height: 90px;
  background-color: #f3db26;
  border-radius: 20px 0 0 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: background-color 0.2s;
}

.fixed-ticket-button:hover {
  background-color: #f5bd24;
}

.fixed-ticket-button a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: white;
}

.ticket-icon-container {
  position: relative;
  width: 96px;
  height: 46px;
  margin-bottom: 5px;
  overflow: hidden;
}

.ticket-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.2s;
  object-fit: contain;
}

.ticket-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.hover-icon {
  opacity: 0;
}

.fixed-ticket-button a:hover .normal-icon {
  opacity: 0;
}

.fixed-ticket-button a:hover .hover-icon {
  opacity: 1;
}

.ticket-label {
  font-size: 14px;
}
.mb-ticket-label {
  display: none;
}

/* footerの直前に装飾用の背景画像  */

.section-top-edge {
  width: 100%;
  aspect-ratio: 1366 / 278;
  background-image: url("../svg/bg_nami_footer.svg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  margin: 0 auto;
  display: block;
  position: relative;
  z-index: 5;
  margin-top: calc(-0.9 * (100vw * 278 / 1366));
}

/* 波装飾 */

/* トップ */
.top-bottom-edge {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 1366 / 327;
  background-image: url("../svg/bg_nami_top3.svg");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  z-index: 5;
  pointer-events: none;
}
.section-nami1-edge {
  position: relative;
  width: 100%;
  aspect-ratio: 1366 / 309;
  background-image: url("../svg/bg_nami1.svg");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  z-index: 5;
  pointer-events: none;
  margin-top: calc(-0.9 * (100vw * 309 / 1366));
}

.section-nami2-edge {
  position: relative;
  width: 100%;
  aspect-ratio: 1366 / 325;
  background-image: url("../svg/bg_nami2.svg");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  z-index: 5;
  pointer-events: none;
  margin-top: calc(-0.9 * (100vw * 325 / 1366));
}

.section-nami3-edge {
  position: relative;
  width: 100%;
  aspect-ratio: 1366 / 265;
  background-image: url("../svg/bg_nami3.svg");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  z-index: 5;
  pointer-events: none;
  margin-top: calc(-0.9 * (100vw * 265 / 1366));
}

h3 {
  line-height: 1.2;
  font-family: "Mochiy Pop One", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.3rem;
  text-shadow: 3px 3px 2px #000000a5;
  text-align: center;
  margin-bottom: 40px;
}

h4 {
  line-height: 1.2;
  font-family: "Mochiy Pop One", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.2rem;
  color: #000;
  text-align: center;
}

.pink-button {
  background-color: #d4657d;
  border-radius: 25px;
  line-height: 45px;
  width: 220px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
  position: relative;
  transition: all 0.3s;
}

.pink-button::before {
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  bottom: 0;
  content: "";
  height: 7px;
  width: 7px;
  margin: auto;
  position: absolute;
  right: 30px;
  top: 0;
  transform: rotate(45deg);
  transition: right 0.3s;
}

.pink-button:hover {
  background-color: #fff;
  color: #d4657d;
}

.pink-button:hover::before {
  right: 25px;
  border-right: 2px solid#d4657d;
  border-top: 2px solid #d4657d;
}

.head-image {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.head-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-page-title {
  line-height: 1.2;
  font-family: "Mochiy Pop One", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.2rem;
  text-shadow: 3px 3px 2px #000000a5;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

.top-page-title p {
  font-size: 1.1rem;
  z-index: 10;
  margin-top: 20px;
}
/* スクロールをスムーズに */
html {
  scroll-behavior: smooth;
}
:target,
.scroll-anchor {
  scroll-margin-top: 100px;
}
.top-button-wrapper {
  position: absolute;
  width: 70px;
  height: 70px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 50%);
  position: relative;
}
.to-top-button {
  background-color: rgb(255, 255, 255);
  color: #4cb0ef;
  font-size: 16px;
  font-weight: 500;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  line-height: 1;
  transition: color 0.25s, letter-spacing 0.3s ease-out;
}
.to-top-button::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #4cb0ef;
  border-right: 2px solid #4cb0ef;
  transform: rotate(-45deg);
}
.top-button-wrapper img {
  position: absolute;
  z-index: 1;
  width: 80px;
  height: 80px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -110px) rotate(0deg);
  transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}
.to-top-button:hover {
  color: #d4657d;
  letter-spacing: 0.15em;
}
.to-top-button:hover::before {
  border-top: 2px solid #d4657d;
  border-right: 2px solid #d4657d;
}
.to-top-button:hover + .to-top-icon {
  animation: circumnavigate-mp 2s linear infinite;
  transform: translate(-50%, -110px) rotate(360deg);
}
#follower {
  position: fixed;
  top: 5px;
  left: 0;
  width: 50px;
  height: auto;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s ease;
}
@keyframes circumnavigate-mp {
  0% {
    transform: translate(-50%, -130px) rotate(0deg);
  }

  25% {
    transform: translate(-130px, -50%) rotate(-90deg);
  }

  50% {
    transform: translate(-50%, 50px) rotate(-180deg);
  }

  75% {
    transform: translate(50px, -50%) rotate(-270deg);
  }

  100% {
    transform: translate(-50%, -130px) rotate(-360deg);
  }
}

@media screen and (max-width: 768px) {
  .toggle-menu-button {
    display: block;
  }

  .site-header {
    width: 100%;
    height: 80px;

    display: flex;
    position: fixed;
    top: 0;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
  }
  .header-logo .mb_logo_header {
    display: block;
    width: 80px;
    height: 80px;
    position: relative;
    z-index: 2000;
  }
  .header-logo .pc_logo_header {
    display: none;
  }
  .main-nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    color: #fff;
    background-color: #58c1e4;
    padding-top: 30px;
    padding-bottom: 50px;
    transform: translateY(-100%);
    /* transition: transform 0.4s ease-out; */
    display: flex;
    overflow-y: auto;
    border-radius: 0;
    margin: 0;
  }
  .main-nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
  }
  .main-nav ul li a {
    flex-direction: row;
    gap: 30px;
    margin: 10px 0;
    color: #fff;
    font-weight: 500;
  }
  .nav-icon {
    height: 25px;
  }

  .is-open .main-nav {
    transform: translateY(0);
  }
  .toggle-menu-button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 5px;
    right: 5px;
    width: 60px;
    height: 60px;
    z-index: 1001;
    background-color: #fff;
    border: none;
    border-radius: 50%;
    padding: 5px;
    outline: none;
    outline: none;
  }
  .toggle-icon-wrap {
    position: relative;
    width: 40px;
    height: 40px;
    display: block;
    overflow: hidden;
  }
  .toggle-menu-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1;
    transition: opacity 0.3s, transform 0.3s;
  }
  .toggle-close-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
  }
  .toggle-button-label {
    display: block;
    font-size: 10px;
    font-weight: 500;
    color: #2a95d1;
    line-height: 1.2;
  }
  .close-label {
    display: none;
  }
  .is-open .toggle-close-icon {
    opacity: 1;
    transform: rotate(0deg); /* 登場 */
  }
  .is-open .menu-label {
    display: none;
  }
  .is-open .close-label {
    display: block;
    color: #d4657d; /* クローズ時はピンク色に */
  }
  .fixed-ticket-button {
    width: 60px;
    height: 60px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    box-shadow: none;
  }

  .fixed-ticket-button a {
    flex-direction: column;
    justify-content: center;
    gap: 5px;
  }

  .ticket-icon-container {
    width: 40px;
    height: 20px;
    margin-bottom: 0;
  }

  .ticket-label {
    display: none;
  }
  .mb-ticket-label {
    display: block;
    font-size: 12px;
    line-height: 1;
  }

  .footer-content > .footer-column,
  .footer-info,
  .footer-nav-group {
    flex: 0 0 100%;
    min-width: auto;
    padding: 0;
  }
  .footer-content {
    flex-direction: column;
    align-items: center;
  }
  .nav-links-container {
    flex-direction: column;
  }
  h3 {
    font-size: 1.2rem;
    text-shadow: 3px 3px 2px #000000a5;
    text-align: center;
    margin-bottom: 20px;
  }
  .top-page-title {
    font-size: 1rem;
  }
}
