@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: Shippori_Mincho;
    src: url(../../font/Shippori_Mincho/ShipporiMincho-Regular.ttf);
}

@font-face {
    font-family: Kiwi_Maru;
    src: url(../../font/Kiwi_Maru/KiwiMaru-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;
}

html {
    scroll-behavior: smooth;
}

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-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: #FDFB00;
}

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%);
  }
}




/* めいんびじゅ */

.hd {
    background-image: url(../../images/top-img/top7.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;
    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;
}




/*FAQ左側*/


.faq-group {
    font-family: Kiwi_Maru;
    margin-top: 10%;
    display: flex;
}

.FAQ-menu {
    margin-left: auto;
    margin-right: auto;
    width: 25%;
}
  
.FAQ-stickey {
    position: sticky;
    top: 10%;
    left: 0;
    width: 100%;
}
  
.FAQ-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.FAQ-menu ul li {
    padding: 3% 0 ;
    border-top:  3px dotted rgb(255, 255, 255,0.5);
}
.FAQ-menu ul li:nth-last-child(1) {
    border-bottom:  3px dotted rgb(255, 255, 255,0.5);
}

.FAQ-menu ul li a {
    display: inline-flex;
    align-items: center;
    gap: 1em;
    font-size: 1.4vw;
}

.FAQ-stickey span {
    width: 50px;
    height: 50px;
    text-align: center;
}

.FAQ-stickey img {
    margin-top: 15%;
}
  
.menu-link {
    display: block;
    color: white;
    text-decoration: none;
    padding: 10px 0;
    transition: color 0.3s;
}
  
.menu-link.active {
    color: yellow;
}


/* FAQ右側 */

.faq-list {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
}

.question dl {
    margin: 5% auto ;
    width: 90%;
    padding-bottom: 2%;
    margin-bottom: 5%;
    border-bottom: 3px dotted rgb(255, 255, 255,0.5);

}

.question dl:nth-child(4) {
    border: none;
}

.question dl dt {
    position: relative;
    font-size: 1.8vw;
    padding-left: 2.5em;
    margin-bottom: 4%;
    color: #202020;
}

.question dl dt::before {
    content: "Q";
    font-size: 2vw;
    position: absolute;
    left: 0;
    top: 0;
    text-align: center;
    width: 1.5em;
    height: 1.5em;
    border-radius: 50%;
    color: white;
    background-color: #471ffc;

}

.question dl dd {
    position: relative;
    font-size: 1.5vw;
    padding-left: 3em;
    color: #202020;
}

.question dl dd::before{
    content: "A";
    text-align: center;
    font-size: 2vw;
    position: absolute;
    left: 0;
    top: 0;
    width: 1.5em;
    height: 1.5em;
    border-radius: 50%;
    color: #471ffc;
    background-color: #f8f8f8;
}


/* チケット・営業時間について */
.ticket {
    margin-bottom: 10%;
    border-radius: 30px;
    background-color: rgba(0, 174, 255, 0.205);
}

.ticket h2 {
    text-align: center;
    font-size: 3vw;
    border-radius: 30px 30px 0 0 ;
    padding: 2% 0 ;
    color: white;
    background-color: rgb(0, 174, 255);
}

/* イベント */
.event {
    margin-bottom: 10%;
    border-radius: 30px;
    background-color: rgba(0, 127, 185, 0.205);
}

.event h2 {
    text-align: center;
    font-size: 3vw;
    border-radius: 30px 30px 0 0 ;
    padding: 2% 0 ;
    color: white;
    background-color: rgb(0, 127, 185);
}

/* 施設利用 */
.facility {
    margin-bottom: 10%;
    border-radius: 30px;
    background-color: rgba(1, 63, 143, 0.205)
}

.facility h2 {
    text-align: center;
    font-size: 3vw;
    border-radius: 30px 30px 0 0 ;
    padding: 2% 0 ;
    color: white;
    background-color: rgb(1, 63, 143);
}


/* 団体利用 */
.group {
    margin-bottom: 10%;
    border-radius: 30px;
    background-color: rgb(0, 45, 97, 0.205);
}

.group h2 {
    text-align: center;
    font-size: 3vw;
    border-radius: 30px 30px 0 0 ;
    padding: 2% 0 ;
    background-color: rgb(0, 45, 97);
}

.wave {
    margin-top: 20%;
    margin-bottom: 20%;
}

.wave path {
    fill: #ffffff44;
}

/* お問い合わせ */
.call-me {
    font-family: Kiwi_Maru;
}

.message h2 {
    font-size: 3vw;
    color: white;
    text-align: center;
}

.message p {
    width: 55%;
    margin: 5% auto ;
    font-size: 1.4vw;
    line-height: 3;
    text-align: center;
    color: white;
}

.message a {
    text-decoration: underline;
    color: #c6ec1a;
}

/*電話ボタン ぶるぶるしてるね*/


.tell a {
    display: block;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    color: white;
}

.call-me01 {
    text-align: center;
    font-weight: 600;
    margin-top: -40%;
    margin-right: 40%;
    font-size: 2vw;
}


.tell img {
    width: 100%;
}



.tell a:hover {
    animation: buruburu .1s  infinite;
}
@keyframes buruburu {
    0% {transform: translate(0px, 0px) rotateZ(0deg)}
    25% {transform: translate(2px, 2px) rotateZ(1deg)}
    50% {transform: translate(0px, 2px) rotateZ(0deg)}
    75% {transform: translate(2px, 0px) rotateZ(-1deg)}
    100% {transform: translate(0px, 0px) rotateZ(0deg)}
}

/* formコーナー */

.form-aquarium {
    font-family: Kiwi_Maru;

    width: 95%;
    margin: 30% auto 10% auto;
}

  
.form-item {
    display: flex;
    margin-bottom: 5%;
}
  
.form-item label,
.form-item .form-label {
    width: 20%;
    font-weight: 600;
    font-size: 1.6vw;
    margin-left: 2%;
    margin-right: 4em;
    color: white;
}
  
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    padding: 1% 0 ;
    width: 70%;
    border-radius: 5px;
    font-size: 1.8vw;
}
  
textarea {
    height: 100px;
    resize: vertical;
}  

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.5em;
}
  
.radio-group label {
    display: flex;
    width: 90%;
    align-items: center;
    gap: 1em;
}

.radio-group input[type="radio"] {
    transform: scale(1.5); /*ラジオボタンの大きさ変えた*/
}

.required {
    color: rgb(255, 255, 255);
    width: fit-content;
    height: fit-content;
    border-radius: 15px;
    padding: 0 15px 1px;
    font-size: 1.2vw;
    margin-right: 4%;
    background-color: #e77070;
}
  
.optional {
    color: rgb(255, 255, 255);
    width: fit-content;
    height: fit-content;
    border-radius: 15px;
    padding: 0 15px 1px;
    font-size: 1.2vw;
    background-color: #7096e7;
}
  
.submit-btn {
    background-color: #91a7b8;  /* 通常時：青 */
    color: #fff;
    padding: 1% 6% ;
    border: none;
    border-radius: 50px;
    font-size: 2vw;
    cursor: pointer;
    margin: 5% auto ;
    transition: background-color 0.3s ease;
  }
  
  .submit-btn:hover {
    background-color: #005fa3;
  }

/* フッダー */  

footer {
    padding: 5% 7% 1%;
    background-image: url(../../images/bg_footer.webp);
    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;
}