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

/*ヘッダー*/


header h1,h1 + nav {
    display: none;
}


.toppage-nav2 {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 10;
    background-color: #4db7be;
}

.drawer img {
    width: 21%;
    margin-top: 1%;
}

.drawer{
    display: flex;
    padding: 0 1em;

}

  /*ハンバーガーの中身*/
.menu {
    width: 70%;
    position: absolute;
    right: 0;
    background: linear-gradient(#4db7be, #01313a);
    transition: .5s ease;/*滑らかに表示*/
    transform: translateX(150%);
}

.menu ul li {
    margin: 1%;
    border-bottom: 2px double #CCC;
}

.menu ul li:last-child {
    border: none;
}


.menu ul li a {
    display: block;
    display: flex;
    color:white;
    font-size: 3.2vw;
}

.menu ul li a:hover {
    background-color:rgba(0,0,0,0.5);
    color:rgb(214, 214, 214);
}

.menu img {
    width: 60px;
}

.menu ul li a span {
    display: block;
    margin-top: 0.9em;
}

  /*OPEN時の動き*/
.menu.open {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);/*右にスライド*/
}

  /*ハンバーガーが✖になるやつ*/
.Toggle {
    display: block;
    width: 42px;
    height: 42px;
    margin-left: auto;
    margin-right: 3%;
    cursor: pointer;
}

.Toggle span {
    width: 50px;
    display: block;
    margin-top: 3%;
    position: absolute;
    border-radius: 3vw;
    border-bottom: solid 6px #fbff00;
    -webkit-transition: .35s ease-in-out; /*変化の速度を指定*/
    -moz-transition: .35s ease-in-out;    /*変化の速度を指定*/
    transition: .35s ease-in-out;     /*変化の速度を指定*/

}

.Toggle span:nth-child(1) {
    top:5px;
}

.Toggle span:nth-child(2) {
    top: 18px;
}

.Toggle span:nth-child(3) {
    top: 32px;
}

    /* 1番目のspanを-45度にした */
.Toggle.active span:nth-child(1) {
    top: 18px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

  /* 2番目と3番目のspanを45度にした */
.Toggle.active span:nth-child(2),
.Toggle.active span:nth-child(3) {
    top: 18px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}



/* めいんびじゅ */

.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: 80vw;
}
  
.h2-box {
    position: relative;
    margin-top: -16%;
    text-align: center;
    font-family: Grandstander;
    z-index: 0;
}
  
.h2-box h2 {
    font-size: 8vw;
    color: #FDFB00;
}

.h2-box p {
    font-size: 3vw;
    font-weight: 600;
    color: #ffffff;
}
  
.main-visual svg {
    margin-top: -25%;
    color: #54ABB2;
    z-index: -10;
}

.pan {
    font-weight: 600;
}

.pan a {
    color: white;
}

/* ぱん */
.pan {
    width: fit-content;
    margin-left: 10%;
}

.pan a {
    text-decoration: none;
    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: 7vw;
    color: white;
    text-align: center;
}

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

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

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


.tell a {
    display: block;
    width: 60%;
    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%;
}

/* 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.1vw;
    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;
}


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

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

}

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

.menu-col {
    margin-top: 10%;
    font-size: 3vw;
    margin-left: 5%;
}

.menu-col a {
    color: white;
}

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

footer address {
    font-size: 2.5vw;
    font-style: normal;
}

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

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

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

footer ul li {
    line-height: 2.8;
}

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