@charset "UTF-8";

* {
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: M_PLUS_1p;
  src: url(../../font/M_PLUS_1p/MPLUS1p-Regular.ttf);
}

@font-face {
  font-family: Grandstander;
  src: url(../../font/Grandstander/Grandstander-Italic-VariableFont_wght.ttf);
}

ul {
  list-style-type: none;
}

a {
  text-decoration: none;
}

body {
  font-family: M_PLUS_1p;
  background: linear-gradient(#4db7be, #003b46);
}


/* ハンバーガーメニューボタン */
.toppage-nav2 {
  display: none;
}

/*ヘッダー*/
header {
  display: flex;
  padding: 1% 2%;
  font-weight: 600;
  background-color: #4db7be;
}

header h1 {
  width: 9%;
}

header h1 a img {
  width: 100%;
  vertical-align: bottom;
}

/* ナビ */
nav {
  width: 74%;
  margin-top: 1%;
  margin-left: auto;

}

nav ul {
  display: flex;
}

nav ul li {
  width: 20%;
  border-right: 2px solid #fff;
}

nav ul li:last-child {
  border-right: none;
}

nav ul li a {
  display: block;
  text-decoration: none;
  text-align: center;
  font-size: 1.2vw;
  color: white;
}

nav ul li a img {
  display: block;
  width: 5vw;
  height: 5vw;
  margin-left: auto;
  margin-right: auto;
}

nav ul li a:hover {
  color: #EBF11D;
}

nav ul li a:hover img {
  animation: purun 0.8s linear 0s 1;
}

@keyframes purun {
  0% {
    transform: scale(1.0, 1.0) translate(0%, 0%);
  }

  15% {
    transform: scale(0.9, 0.9) translate(0%, 5%);
  }

  30% {
    transform: scale(1.3, 0.8) translate(0%, 10%);
  }

  50% {
    transform: scale(0.8, 1.3) translate(0%, -10%);
  }

  70% {
    transform: scale(1.1, 0.9) translate(0%, 5%);
  }

  100% {
    transform: scale(1.0, 1.0) translate(0%, 0%);
  }
}


.fa-circle-dot {
  margin-right: 1%;
  color: #ffef6c;
}

.fa-circle-exclamation {
  color: #ffef6c;
}

/* 固定化ラッコ */
.character01 {
  width: 20%;
  height: 100px;
  position: fixed;
  bottom: 20%;
  left: 0;
  cursor: pointer;
  z-index: 999;
}

.character02 {
  width: 8%;
  height: 100px;
  position: fixed;
  bottom: 8%;
  right: 3%;
  cursor: pointer;
  z-index: 999;
}

.character01 img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.character02 img {
  width: 100%;
  height: auto;
}


.character01 :hover img {
  content: url('../../images/rakko-stick02.png');
  width: 100%;
  animation: bounce 0.6s infinite;     /* ぴょんぴょんアニメーション */
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}





/* メインビジュアル */

.hd {
  background-image: url(../../images/top-img/top4.jpg);
  background-color: #fff;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: 25% ;
  height: 30vw;
}

.h2-box {
    position: relative;
    margin-top: -9%;
    text-align: center;
    margin-top: -12%;
    font-family: Grandstander;
    z-index: 0;
}
  
.h2-box h2 {
    font-size: 5.5vw;
    color: #FDFB00;
}
.h2-box p {
    font-size: 2vw;
    font-weight: 600;
    color: #ffffff;
}
  
svg {
    margin-top: -25%;
    z-index: -10;
}

.pan {
    margin-left: 10%;
    font-weight: 600;
    margin-bottom: 20%;
}

.pan a {
    text-decoration: none;
    font-weight: 600;
    color: white;
}


.pan+h2 {
  width: 80%;
  margin: 5% auto;
  text-align: center;
  font-size: 4.5vw;
  color: #fff;
}

.info {
  width: 80%;
  margin-left: 5.5%;
  margin-bottom: 3%;
  color: #fff;
  font-size: 2vw;
}

/* 一般と団体案内 */

.sub {
  display: flex;
  width: 87%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 5%;
  padding: 1.5%;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.1);
}

.left {
  width: 16%;
  padding: 1%;
}

.fa-circle-down {
  color: #ffef6c;
}

.right {
  width: 16%;
  padding: 1%;
  border-left: 4px dotted #ffffff7c;
}

.left a {
  font-size: 1.5vw;
  color: #fff;
}

.right a {
  font-size: 1.5vw;
  margin-left: 10%;
  color: #fff;
}

/* すてぃっきー */
.sticky_flex {
  display: flex;
  justify-content: space-between;
}

.sticky_side {
  position: sticky;
  height: 45vh;
  top: 0;
  left: 0;
  width: 30%;
  padding: 8% 5% 0%;
}

.sticky_side_title {
  margin-bottom: 10%;
  padding-top: 5%;
  font-size: 2.2vw;
  letter-spacing: 0.15rem;
  color: #ffef6c;
}

.sticky_side_list li {
  font-size: 1.2vw;
  line-height: 2.5;
}

.sticky_side_list li a {
  color: #fff;
}

.sticky_main {
  height: 300vw;
  width: 70%;
  padding: 0% 5%;
  margin-left: auto;
  border-left: 4px dotted #ffffff7c;
}

.sticky_main h2 {
  margin-bottom: 5%;
  font-size: 1.6vw;
  letter-spacing: 0.1rem;
  color: #fff;
}


/* 入場料金 */
.price-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 90%;
  padding: 5%;
  text-align: center;
  border-radius: 0.4vw;
  font-family: sans-serif;
  background-color: #e0f2f7;
}

.price-item {
  width: 16.8vw;
  margin: 1vw;
  padding: 1.5vw;
  background-color: #fff;
  border: 0.08vw solid #ccc;
  border-radius: 0.4vw;
  min-width: 150px;
}

.price-title {
  margin-bottom: 0.8vw;
  font-size: 1.8vw;
  color: #007bff;

}

.price-value {
  font-size: 2vw;
  font-weight: bold;
  color: #28a745;
}

.price-note {
  font-size: 0.7vw;
  color: #dc3545;
}

.notes {
  width: 100%;
  margin-top: 1.5vw;
  font-size: 1.2vw;
  color: #555;
  text-align: left;
}

.note-mark {
  color: #dc3545;
  font-weight: bold;
}

.card-moneybox img {
  width: 97%;
  vertical-align: bottom;
  border-radius: 0.5vw;
}

/* クレジットと電子マネー */

.card-money {
  width: 100%;
  margin-bottom: 10%;
}


.card-money .service-ttitle {
  margin: 13% 0 3% 0;
}

.card-money .card-moneybox {
  width: 100%;
}

.card-money .card-moneybox img {
  width: 100%;
  vertical-align: bottom;
}

.description {
  font-size: 1.3vw;
  color: #fff;
  margin-bottom: 1.5vw;
}

.payment-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1vw;
}


/* webチケット */
.ticketbox {
  width: 100%;
  margin-top: 10%;
}

.ticketbox .description {
  font-size: 1.3vw;
  margin-bottom: 5%;

}

.ticketbox a {
  display: block;
  width: 100%;
}

.ticketbox .banner {
  width: 100%;
}

.ticketbox .banner a img {
  width: 100%;
  vertical-align: bottom;
  border-radius: 0.5vw;
}

/* 年パス */

.pass-box {
  width: 100%;
  margin-top: 10%;
}


.pass-box .banner {
  width: 100%;
}


.pass-box .banner a img {
  width: 100%;
  vertical-align: bottom;
  border-radius: 0.5vw;
}


/* 障がい者手帳持ってる人 */

.disabilitiesbox {
  width: 100%;
  margin-top: 10%;
}



.disabled-discount {
  width: 100%;
  border-radius: 0.5vw;
  font-family: sans-serif;
  background-color: orangered;
}

h2 {
  font-size: 1.5vw;
  color: #333;
  margin-bottom: 1vw;
}



.discount-table-container {
  background-color: #fff;
  /* 白い背景 (画像で置き換え) */
  border-radius: 0.5vw;
  overflow: hidden;
  /* 角丸を適用するために必要 */
  margin-top: 1vw;
}

.discount-table-simple {
  margin: 2vw auto;
  border-radius: 0.5vw;
  padding: 1.5vw;
  font-family: sans-serif;
  color: #333;
  background-color: #fff;
}

.table-row {
  display: flex;
  align-items: center;
  padding: 0.8vw 0;
  border-bottom: 0.08vw dotted #ccc;
  /* 点線の下線 */
}

.table-row:last-child {
  border-bottom: none;
  /* 最後の行の下線は不要 */
}

.label {
  font-weight: bold;
  color: #007bff;
  /* 青色系の文字 */
  width: 30%;
  padding-right: 1vw;
  text-align: left;
}

.item {
  width: 50%;
  text-align: left;
  font-size: 0.9vw;
}

.price {
  width: 20%;
  text-align: right;
  font-weight: bold;
  color: #28a745;
  /* 緑色系の文字 */
  font-size: 1vw;
}

.separator {
  border-bottom: 0.2vw solid #ccc;
  margin: 1.5vw 0;
}

.discount-notes {
  margin: 2vw auto;
  padding: 2vw;
  border-radius: 0.5vw;
  font-family: sans-serif;
  color: #333;
  background-color: #52A9B0;
}

.iscount-notes-title {
  font-size: 1.5vw;
  color: #333;
  margin-bottom: 2vw;
}

.download-button {
  text-align: center;
}

.download-button a {
  display: inline-block;
  padding: 1vw 2vw;
  border-radius: 0.5vw;
  color: #333;
  font-size: 1vw;
  font-weight: bold;
  background-color: #ffcc00;
}

.arrow {
  font-size: 1vw;
  margin-left: 0.5vw;
}



.dantaibox {
  width: 100%;
  margin-top: 10%;
}


.dantaibox .banner {
  width: 100%;
}


.dantaibox .banner a img {
  width: 100%;
  vertical-align: bottom;
  border-radius: 0.5vw;
}

/*フッター*/
footer {
  padding: 5% 7% 1%;
  background-image: url(../../images/bg_footer.webp);
  background-color: #003b46;
  background-size: cover;
  color: #fff;
  font-size: 1.2vw;
}

.menu-area {
  display: flex;
}

.info-images {
  text-align: center;
}

.info-images h2 {
  font-family: Shippori_Mincho;
  font-size: 2vw;
  font-weight: 100;

}

.info-images img {
  margin: 2% 0;
  width: 30%;
  margin-bottom: 10%;
}

.menu-col {
  width: 30%;
  margin-left: 5%;
}

.menu-col a {
  color: white;
}

.menu-list a {
  color: #a7bddd;
}



address {
  font-size: 1.4vw;
  margin-top: 10%;
  line-height: 2;
  font-style: normal;
  /* 斜体をまっすぐにするやつ */
}

footer ul:nth-of-type(1) {
  margin-left: auto;
  margin-right: 5%;
}

footer ul:nth-of-type(2) {
  margin-right: 5%;
}

footer ul:nth-of-type(1) li::before {
  content: "-";
  margin-right: 0.5em;
}

footer ul {
  margin-top: 10%;
}

footer ul li {
  line-height: 2.8;
}

.copyright {
  margin-top: 3%;
  text-align: center;
  font-size: 12px;
}