@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 {
    margin: 0;
    font-family: M_PLUS_1p;
    background: linear-gradient(#4db7be, #01313a);
}

/*ヘッダー*/


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

/*ビデオ*/
video {
    padding-top: 14%;
    width: 100%;
}


/*波*/
.container {
    display: flex;
    margin-top: -5%;
    min-height: 8vh;
    width: 100%;

    position: relative;
}

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

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

/*セクション*/

.main-section-flexbox {
    display: flex;
}



/*セクション*/
/*多田　チケット　営業時間 */
.ticket-time {
    width: 100%;
    margin-top: 5%;
    background-color: #eeeeee;
}

/* 営業時間 */

.time {
    position: relative;
    width: 70%;
    margin: 0 auto;
    padding: 5%;
}

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

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

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

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


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

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

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


/* チケット */
.ticket {
    position: relative;
    width: 90%;
    margin-top: 8%;
    margin-left: auto;
    margin-right: auto;
    padding: 5%;
    background-color: #eeeeee;
}

.ticket h2 {
    width: fit-content;
    margin-left: 57%;
    margin-bottom: 3%;
    font-size: 4vw;
    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: 3vw;
    padding: 7%;
    border-radius: 20px;
    cursor: pointer;
    background: linear-gradient(90deg, #152c94, #9198e5, #152c94 100%);
    background-size: 200% 100%;
    transition: 1s;
}





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

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

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

.bana-top1 {
    width: 90%;
    margin: 15% auto;
}


.bana-top1 a img {
    width: 100%;

}

/* news */
.news-container {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5%;
}

.news-container h2 {
    width: 50%;
    margin: 7% auto;
    line-height: 1.5;
    text-align: center;
    font-size: 5vw;
    color: #ffffff;
}

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

.filter-buttons {
    width: 100%;
    display: flex;
    gap: 1.8vw;
    margin-bottom: 2vw;
}

.filter-buttons button {
    width: 18%;
    padding: 1.5% 0%;
    border-radius: 2vw;
    cursor: pointer;
    font-size: 1.5vw;
    background-color: #fff;
}

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

.more-btn a {
    text-decoration: none;
    font-size: 2vw;
    color: #000000;
}

/* 各ボタンの色 */
.all {
    border: 0.5vw solid #fa1ac2;
}

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

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

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

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

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

.news-item {
    display: flex;
    align-items: center;
    gap: 2vw;
    padding: 1vw;
    line-height: 1.7;
    font-size: 2vw;
    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: 2vw;
    color: #ddd;
    background-color: #2196f3;
}

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

.event {
    background: #4caf50;
    width: 15%;
}

.campaign {
    background: #ff9800;
    width: 20%;
}

.important {
    background: #f44336;
    width: 15%;
}


/* ニュースリンク */
.news-item a {
    text-decoration: none;
    color: #333;
    font-size: 1.8vw;
}

.news-item a:hover {
    color: #519DF9;
    text-decoration: underline;
}

.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: 2vw;
    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;
}
/* 選択状態のタブ(＝チェックが入っているラジオボタンの隣にあるタブの装飾) */
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 h2 {
    margin-top: 25%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5%;
    line-height: 1.5;
    text-align: center;
    color: rgb(255, 255, 255);
    font-size: 5vw;
}


.plan .imgs {
    width: 80%;
    margin-right: auto;
    margin-left: auto;
    display: flex;
    flex-direction: column;
}

.plan .imgs figure {
    width: 100%;
    cursor: pointer;
}

.plan .imgs figure img {
    width: 100%;
    height: 60vw;
}

.plan figcaption {
    width: 100%;
    height: 30vw;
    margin-top: 2%;
    color: #ffffff;
}

.plan .date_sentence {
    width: 55%;
}

/* SNS 葛西*/

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

.section-KM h2 {
    padding-top: 10%;
    padding-bottom: 10%;
    text-align: center;
    font-size: 4vw;
    color: #ffffff;
}

.section-KM h3 {
    margin-bottom: 2%;
    text-align: center;
    font-size: 3vw;
    color: #ffffff;

}

.SNS-box {
    max-width: 800px;
    margin: auto;
}

.instagram-box img {
    width: 130px;
    border-radius: 10px;
}

.instagram-box {
    text-align: center;
    padding: 2%;
}

.instagram-btn {
    margin-top: 3%;
    margin-bottom: 15%;
}

.instagram-btn a {
    position: relative;
    display: flex;
    max-width: 150px;
    margin: 0 auto;
    padding: 15px 10px;
    align-items: center;
    border-radius: 8px;
    background-color: #227fb4;
    font-size: 2.5vw;
    letter-spacing: 5px;
    color: #ffffff;
}

.facebook-box {
    text-align: center;
}

.btn-X {
    display: block;
    text-align: center;

    padding-top: 10%;
}

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


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