@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}


ul {
    list-style-type: none;
}

a {
    text-decoration: none;
}

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

body {
    font-family: M_PLUS_1p;
}

main {
    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%;
    list-style-type: none;
    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%);
    }
}





/*ビデオ*/
video {
    width: 100%;
}


/*波*/
.container {
    display: flex;
    min-height: 10vh;
    width: 100%;
    margin-top: -50px;
    background: #4BB3BB;
    position: relative;
}

.wave-top {
    width: 100%;
    height: 100px;
    background: url("../images/wave.png");
    background-size: 1000px 100px;
    position: absolute;
    top: -100px;
}

.wave1 {
    z-index: 1;
    opacity: 0.2;
    animation: wave 3s linear infinite;
}

.wave2 {
    z-index: 1;
    opacity: 0.4;
    animation: wave 4s linear infinite;
}

.wave3 {
    z-index: 1;
    opacity: 0.6;
    animation: wave 5s linear infinite;
}

.wave4 {
    z-index: 1;
    opacity: 0.8;
    animation: wave 6s linear infinite;
}

@keyframes wave {
    0% {
        background-position: 1000px;
    }

    100% {
        background-position: 0;
    }
}

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


/* 多田　チケット　営業時間 */


.ticket-time {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-top: -3%;
    display: flex;
    color: #5f517a;
}

/* 営業時間 */

.time {
    position: relative;
    width: 45%;
    padding: 2%;
    border-radius: 20px;
    box-shadow: 0px 5px 11px 0px rgba(0, 0, 0, 0.35);
    background-color: #d2eaf5;

}

.ticket-time .time h2 {
    text-align: center;
    font-size: 2vw;
    margin-top: 2%;
    margin-bottom: 3%;
    margin-left: 10%;
}

.time p {
    margin-left: 10%;
    font-size: 1.5vw;
    text-align: center;
    line-height: 2;
}

.time p span {
    display: block;
    word-break: break-all;
}

.time p span:nth-of-type(1) {
    font-size: 1.7vw;
    font-weight: 600;
    color: #df6060;
}


.time p:nth-of-type(2) {
    font-size: 1.3vw;
}

.time .imgtime {
    position: absolute;
    left: 5%;
    top: 6%;
    width: 30%;
    transition: 1s;
}

.time .imgtime img {
    width: 100%;
    vertical-align: bottom;
    transition: 1s;
}

.time .imgtime img:hover {
    rotate: 15deg;
    transition: 1s;
}



/* チケット */

.ticket {
    position: relative;
    width: 55%;
    padding: 5%;
    margin-left: 3%;
    border-radius: 20px;
    box-shadow: 0px 5px 11px 0px rgba(0, 0, 0, 0.35);
    background-color: #d2eaf5;
}

.ticket h2 {
    width: fit-content;
    margin-left: 57%;
    margin-bottom: 3%;
    margin-top: -7%;
    font-size: 2vw;
    text-align: center;
}

.ticket a {
    display: block;
    margin-left: 40%;
    margin-top: 2%;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    color: #ffffff;
    font-size: 1.5vw;
    padding: 7%;
    border-radius: 20px;
    cursor: pointer;
    background: linear-gradient(90deg, #4686FF, #c1cee7, #4686FF 100%);
    background-size: 200% 100%;
    transition: 1s;
}

.ticket a:hover {
    letter-spacing: 0.3em;
    background-position: 100% 0;
    transition: 1s;
}



.ticket .imgtike {
    position: absolute;
    top: 20%;
    left: 4%;
    width: 35%;
}

.ticket .imgtike img {
    width: 100%;
    vertical-align: bottom;
    transition: 1s;
}

.ticket .imgtike img:hover {
    rotate: 15deg;
    transition: 1s;
}

/* バナーはさみます */

.bana-top1 {
    margin-top: 8%;
    margin-bottom: 8%;
    text-align: center;
}

.bana-top1 img:hover {
    filter: opacity(50%);
    transition: 0.3s;
}

/* news 菅野*/

.news-container {
    width: 80%;
    margin: 5% auto;
}

.news-container h2 {
    width: 15%;
    margin-top: 5%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5%;
    line-height: 1.5;
    text-align: center;
    color: #fff;
    font-size: 3vw;
}

.news-container img {
    display: inline-block;
    vertical-align: bottom;
    width: 20%;
    margin-right: 5%;
    margin-bottom: 8%;
}

.filter-buttons {
    display: flex;
    gap: 0.7vw;
    margin-bottom: 2vw;
}

.filter-buttons button {
    width: 12%;
    padding: 0.6vw 0.8vw;
    border-radius: 1vw;
    cursor: pointer;
    font-size: 1.2vw;
    background-color: #fff;
}

.more-btn {
    width: 10vw;
    padding-top: 0.5%;
    margin-left: auto;
}

.more-btn a {
    text-decoration: none;
    line-height: 2;
    font-size: 1.2vw;
    color: #fff;
    transition: 0.5s;
}

.more-btn a:hover {
    text-decoration: none;
    color: #202020;
    transition: 0.5s;
}

/* 各ボタンの色 */
.all {
    border: 0.2vw solid #fa1ac2;
    transition: 0.4s;
}

.notice {
    border: 0.2vw solid #2196f3;
    transition: 0.4s;
}

.event {
    border: 0.2vw solid #4caf50;
}

.campaign {
    border: 0.2vw solid #ff9800;
}

.important {
    border: 0.2vw solid #f44336;
}

.filter-buttons {
    display: flex;
    gap: 0.7vw;
    margin-bottom: 2vw;
}

.filter-buttons button {
    width: 12%;
    padding: 0.6vw 0.8vw;
    border-radius: 1vw;
    cursor: pointer;
    font-size: 1.2vw;
    background-color: #fff;
    /* デフォルトの背景色 */
    color: #202020;
    /* デフォルトの文字色 */
    transition: background-color 0.3s, color 0.3s;
    /* アニメーションを追加 (任意) */
}

.more-btn {
    width: 10vw;
    padding-top: 0.5%;
    margin-left: auto;
}

.more-btn a {
    text-decoration: none;
    line-height: 2;
    font-size: 1.2vw;
    color: #fff;
    transition: 0.5s;
}

.more-btn a:hover {
    text-decoration: none;
    color: #202020;
    transition: 0.5s;
}

/* 各ボタンの色 (ボーダーの色を背景色に利用) */
.all {
    border: 0.2vw solid #fa1ac2;
}

.notice {
    border: 0.2vw solid #2196f3;
}

.event {
    border: 0.2vw solid #4caf50;
}

.campaign {
    border: 0.2vw solid #ff9800;
}

.important {
    border: 0.2vw solid #f44336;
}

.filter-buttons {
    display: flex;
    gap: 0.7vw;
    margin-bottom: 2vw;
}

.filter-buttons button {
    width: 12%;
    padding: 0.6vw 0.8vw;
    border-radius: 1vw;
    cursor: pointer;
    font-size: 1.2vw;
    background-color: #fff;
    /* デフォルトの背景色 */
    color: #202020;
    /* デフォルトの文字色 */
    transition: background-color 0.3s, color 0.3s;
    /* アニメーションを追加 (任意) */
}

.more-btn {
    width: 10vw;
    padding-top: 0.5%;
    margin-left: auto;
}

.more-btn a {
    text-decoration: none;
    line-height: 2;
    font-size: 1.2vw;
    color: #fff;
    transition: 0.5s;
}

.more-btn a:hover {
    text-decoration: none;
    color: #202020;
    transition: 0.5s;
}

/* 各ボタンの色 (ボーダーの色を背景色に利用) */
.all.button {
    border: 0.2vw solid #fa1ac2;
}

.notice.button {
    border: 0.2vw solid #2196f3;
}

.event.button {
    border: 0.2vw solid #4caf50;
}

.campaign.button {
    border: 0.2vw solid #ff9800;
}

.important.button {
    border: 0.2vw solid #f44336;
}

/* ▼アクティブなボタンのスタイル */
.button.active {
    color: #fff;
    /* 文字色を白に */
}

.all.button.active {
    background-color: #fa1ac2;
    /* 背景色をボーダーの色に */
}

.notice.button.active {
    background-color: #2196f3;
}

.event.button.active {
    background-color: #4caf50;
}

.campaign.button.active {
    background-color: #ff9800;
}

.important.button.active {
    background-color: #f44336;
}


/* ニュースリスト */
.news-list {
    list-style: none;
    padding: 0;
}

.news-item {
    display: flex;
    align-items: center;
    gap: 2vw;
    padding: 1vw;
    line-height: 1.7;
    color: #fff;
    border-bottom: 0.1vw solid #ddd;
}

.news-item:nth-of-type(1) {
    border-top: 0.1vw solid #ddd;
}

/* カテゴリラベル */
.news-category {
    width: 7vw;
    padding: 0.5vw 1vw;
    text-align: center;
    border-radius: 0.5vw;
    font-size: 1vw;
    color: #fff;
    background-color: #2196f3;
}

/* カテゴリごとの色分け */
.notice {
    background: #2196f3;
}

.event {
    background: #4caf50;
}

.campaign {
    background: #ff9800;
}

.important {
    background: #f44336;
}


/* ニュースリンク */
.news-item a {
    text-decoration: none;
    color: #fff;
    font-size: 1.2vw;
    transition: 0.5s;
}

.news-item a:hover {
    color: #202020;
    text-decoration: underline;
    transition: 0.5s;
}

.news-container .tab {
    display: inline-block;
    width: 12%;
    text-align: center;
    border-width: 0.2vw 0.2vw 0 0.2vw;
    border-style: solid;
    border-color: #fc00a4;
    border-radius: 0.5vw 0.5vw 0 0;
    padding: 0.75em 1em;
    font-size: 0.9vw;
    font-weight: bold;
    color: #202020;
    background-color: #e0e0e0;
}

.tab:nth-of-type(2) {
    color: #303030;
    border-color: #2196f3;
}

.tab:nth-of-type(3) {
    color: #303030;
    border-color: #4caf50;
}

.tab:nth-of-type(4) {
    color: #303030;
    border-color: #ff9800;
}

.tab:nth-of-type(5) {
    color: #303030;
    border-color: #fe0000;
}

/* ▼タブにマウスポインタが載った際の装飾 */
.tab:hover {
    color: #2196f3;
    background-color: #ccffcc;
    cursor: pointer;
}

/* 選択状態のタブ(＝チェックが入っているラジオボタンの隣にあるタブの装飾) */
input:checked+.tab {
    color: rgb(217, 57, 57);
    background-color: #ffffcc;
}

.tabbox input {
    display: none;
}

/* ▼タブの中身 */
.tabcontent {
    display: none;
    border: 0.1vw solid black;
    padding: 1em;
    background-color: #ffffcc;
}

/* ▼チェックが入っているラジオボタンの中身を表示 */
#tabcheck1:checked~#tabcontent1 {
    display: block;
}

#tabcheck2:checked~#tabcontent2 {
    display: block;
}

#tabcheck3:checked~#tabcontent3 {
    display: block;
}

#tabcheck4:checked~#tabcontent4 {
    display: block;
}

#tabcheck5:checked~#tabcontent5 {
    display: block;
}

/* newsすべて表示 */
.news-list {
    display: none;
}

.news-list.active {
    display: block;
}

/* newsおしらせ */
.notice-list {
    display: none;
}

.notice-list.active {
    display: block;
}

/* newsイベント */
.event-list {
    display: none;
}

.event-list.active {
    display: block;
}

/* newsキャンペーン */
.campaign-list {
    display: none;
}

.campaign-list.active {
    display: block;
}

/* news重要 */
.important-list {
    display: none;
}

.important-list.active {
    display: block;
}




/* プラン 多田*/

.plan {
    margin-bottom: 20%;
}

.plan h2{
    font-size: 3vw;
    margin-bottom: 5%;
    color: white;
    text-align: center;
}


.imgs {
    justify-content: space-around;

    display: flex;
}

.plan-choice {
    width: 30%;
    
}
.plan-choice a {
    display: block;
    transition: all .3s ease-in-out;
    transform: translateY(0);
    box-shadow: 0 5px 5px rgba(0,0,0,.1);
}
.plan-choice img {
    width: 100%;
    border-radius: 20px;
    vertical-align: middle;
}
.plan-choice a:hover{
    transform: translateY(-5px);
    box-shadow: 0 10px 10px rgba(0,0,0,.2);
}

figcaption p {
    color: white;
    font-size: 1.3vw;
}

/* 海の生き物図鑑 */
.zukan-text {
    margin: 10% auto ;
    line-height: 3;
    color: white;
    text-align: center;
}

.zukan-text h2 {
    font-size: 2.5vw;
}

.zukan-text p {
    font-size: 2vw;
    margin-bottom: 5%;
}

.zukan-link {
    display: inline-block;
    background-color: #05413a;
    color: #fff;
    padding: 1% 10% ;
    font-size: 2.5vw;
    border-radius: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease, transform 0.2s ease;
}

.zukan-link:hover {
    background-color: #b2be00;
    transform: translateY(-2px);
}

/*波*/
.container02 {
    display: flex;
    min-height: 10vh;
    width: 100%;
    margin-top: -50px;
    position: relative;
}

.wave-book2 {
    width: 100%;
    height: 100px;
    background: url("../images/wave03.png");
    background-size: 1000px 100px;
    position: absolute;
    top: -100px;
}

.wave-book3 {
    width: 100%;
    height: 100px;
    background: url("../images/wave02.png");
    background-size: 1000px 100px;
    position: absolute;
    top: 60px;
}

.wave5 {
    z-index: 1;
    opacity: 0.2;
    animation: wave 3s linear infinite;
}
.wave6 {
    z-index: 1;
    opacity: 0.4;
    animation: wave 4s linear infinite;
}
.wave7 {
    z-index: 1;
    opacity: 0.6;
    animation: wave 5s linear infinite;
}
.wave8 {
    z-index: 1;
    opacity: 0.8;
    animation: wave 6s linear infinite;
}

@keyframes wave {
    0% {
        background-position: 1000px;
    }

    100% {
        background-position: 0;
    }
}


/* SNS 葛西*/

.section-KM {
    margin-top: 10%;
    padding-bottom: 10%;
}

.section-KM h2 {
    padding-bottom: 5%;
    text-align: center;
    font-size: 2.5vw;
    color: white;
}

.section-KM h3 {
    margin-bottom: 10%;
    text-align: center;
    font-size: 1.8vw;
    color: white;

}



.SNS-box {
    display: flex;
    max-width: 900px;
    margin: auto;
}

.instagram-photo {
    margin-right: 10%;
}

.instagram-box img {
    width: 160px;
    border-radius: 10px;
    overflow: hidden;
}

.instagram-box img:hover {
    transform: scale(0.9);
    transition: 0.3s;
}

.fa-brands fa-instagram {
    font-size: 6vw;
}

.instagram-btn {
    margin-top: 10%;
}

.instagram-btn a {
    position: relative;
    display: flex;
    max-width: 230px;
    margin: 0 auto;
    padding: 10px 25px;
    align-items: center;
    border-radius: 8px;
    background-color: #227fb4;
    font-size: 1.6vw;
    letter-spacing: 5px;
    color: #ffffff;
    transition: 0.3s ease-in-out;
}


.instagram-btn a:after {
    position: absolute;
    top: 50%;
    bottom: 0;
    right: 2rem;
    display: flex;
    width: 6px;
    height: 6px;
    font-size: 90%;
    transition: right 0.3s;
    content: "";
    border-top: solid 2px currentColor;
    border-right: solid 2px currentColor;
    transform: translateY(-50%) rotate(45deg);
}

.instagram-btn a:hover {
    background: #031b33;
    color: #FFF;
}

.instagram-btn a:hover:after {
    right: 1.4rem;
}


.btn-X {
    display: block;
    padding-top: 15%;
}

.SNS-X img {
    width: 300px;
}

.SNS-X img:hover {
    filter: opacity(50%);
    transition: 0.3s;
}


/*フッター*/
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;
}