/* =========================
   全体
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Zen Kurenaido',sans-serif;
    color:#333;
    background:#f8f3e8;
    overflow-x:hidden;
}

a{
    color:inherit;
    text-decoration:none;
}

img{
    max-width:100%;
    display:block;
}

/* =========================
   ナビ
========================= */

.nav{
    width:100%;
    display:flex;
    justify-content:center;
    gap:40px;
    padding:20px 0;

    position:sticky;
    top:0;
    z-index:999;

    background:rgba(248,243,232,.95);
    backdrop-filter:blur(10px);

    border-bottom:1px solid #e8dfd1;
}

.nav a{

    font-size:18px;
    transition:.3s;

}

.nav a:hover{

    opacity:.6;

}

/* =========================
   ホーム
========================= */

.home{

    text-align:center;

}

/* ロゴ */

.logo{

    width:1000px;
    max-width:95%;

    margin:-170px auto 60px;

    animation:logoReveal 2s ease forwards;

}

@keyframes logoReveal{

from{

opacity:0;
clip-path:inset(0 100% 0 0);

}

to{

opacity:1;
clip-path:inset(0 0 0 0);

}

}

/* コンセプト */

.concept{

    margin-top:20px;

    font-size:24px;

    line-height:1.8;

    text-shadow:0 2px 8px rgba(0,0,0,.15);

}

/* =========================
   Gallery（Swiper）
========================= */

.gallery-section{

    width:90%;
    max-width:1200px;

    margin:80px auto;

}

.gallery-section h2{

    font-size:42px;

    margin-bottom:40px;

}

.gallerySwiper{

    width:100%;
    padding-bottom:60px;

}

.gallerySwiper .swiper-slide{

    display:flex;
    justify-content:center;
    align-items:center;

}

.gallerySwiper .swiper-slide img{

    width:100%;
    height:420px;

    object-fit:cover;

    border-radius:18px;

    box-shadow:0 10px 25px rgba(0,0,0,.15);

}

.swiper-button-next,
.swiper-button-prev{

    color:#333;

}

.swiper-pagination-bullet{

    background:#999;
    opacity:1;

}

.swiper-pagination-bullet-active{

    background:#333;

}
/* =========================
   NEWS
========================= */

.news{

    width:80%;
    margin:80px auto;
    color:#333;

}

.news h2{

    font-size:42px;
    margin-bottom:20px;

}

.news ul{

    list-style:none;

}

.news li{

    padding:18px 0;
    font-size:22px;

    border-bottom:1px solid #e8dfd1;

}

/* =========================
   NEXT STAGE（トップ）
========================= */

.next{

    padding:80px 20px;

    text-align:center;

}

.next h2{

    font-size:42px;
    margin-bottom:20px;

}

.next p{

    font-size:22px;
    line-height:2;

}

/* =========================
   チケット
========================= */

.ticket{

    text-align:center;
    padding-bottom:80px;

}

.ticket a{

    display:inline-block;

    padding:18px 45px;

    border:2px solid #333;
    border-radius:999px;

    font-size:22px;

    transition:.3s;

}

.ticket a:hover{

    background:#333;
    color:#fff;

}

/* =========================
   SNS
========================= */

.sns{

    text-align:center;

    padding:20px 0 100px;

}

.sns a{

    display:inline-block;

    margin:0 15px;
    padding:12px 35px;

    border:2px solid #333;
    border-radius:999px;

    font-size:20px;

    transition:.3s;

}

.sns a:hover{

    background:#333;
    color:#fff;

}

/* =========================
   次回公演ページ
========================= */

.next-page{

    width:90%;
    max-width:1100px;

    margin:80px auto;

    text-align:center;

}

.next-page h1{

    font-size:60px;
    margin-bottom:60px;

}

.flyer{

    display:flex;

    justify-content:center;

    align-items:flex-start;

    gap:50px;

    flex-wrap:wrap;

    margin-bottom:70px;

}

.flyer img{

    width:320px;

    aspect-ratio:3/4;

    object-fit:cover;

    border-radius:15px;

    box-shadow:0 10px 25px rgba(0,0,0,.15);

}

.line{

    width:120px;

    height:1px;

    background:#d9cfbf;

    margin:55px auto;

}
.next-page h2{

    font-size:46px;
    margin-bottom:35px;

}

.next-page h3{

    font-size:34px;
    margin-bottom:25px;

}

.info{

    font-size:24px;
    line-height:2.2;

}

.info p{

    margin:10px 0;

}

.info span{

    display:inline-block;
    width:90px;

    font-weight:bold;

}

.story{

    width:70%;

    margin:0 auto;

    font-size:22px;

    line-height:2.2;

}

.list{

    font-size:22px;

    line-height:2.2;

}

.list p{

    margin:8px 0;

}

.ticket-button{

    display:inline-block;

    margin-top:70px;
    margin-bottom:80px;

    padding:18px 50px;

    border:2px solid #333;
    border-radius:999px;

    color:#333;

    font-size:22px;

    transition:.3s;

}

.ticket-button:hover{

    background:#333;
    color:#fff;

}

/* =========================
   スマホ
========================= */

@media (max-width:700px){

    .nav{

        gap:15px;
        flex-wrap:wrap;

    }

    .nav a{

        font-size:14px;

    }

    .logo{

        width:500px;
        margin:0 auto 40px;

    }

    .concept{

        font-size:18px;
        padding:0 15px;

    }

    .gallerySwiper .swiper-slide img{

        height:260px;

    }

    .news h2,
    .next h2,
    .gallery-section h2,
    .next-page h1{

        font-size:34px;

    }

    .next-page h2{

        font-size:28px;

    }

    .next-page h3{

        font-size:24px;

    }

    .flyer{

        gap:25px;

    }

    .flyer img{

        width:220px;

    }

    .story{

        width:95%;
        font-size:18px;

    }

    .info{

        font-size:18px;

    }

    .list{

        font-size:18px;

    }

    .ticket-button,
    .ticket a,
    .sns a{

        font-size:18px;
        padding:15px 35px;

    }

    .sns{

        padding-bottom:60px;

    }

}


/* =========================
   ABOUT US
========================= */

.about{

    width:90%;
    max-width:900px;

    margin:100px auto;

    text-align:center;

}

.about h1{

    font-size:56px;

    letter-spacing:4px;

    margin-bottom:70px;

}

.about-box{

    background:#fffdf8;

    padding:50px;

    border:1px solid #e8dfd1;

    border-radius:18px;

    box-shadow:0 10px 25px rgba(0,0,0,.05);

}

.about-box h2{

    font-size:38px;

    margin-bottom:30px;

}

.about-text{

    font-size:22px;

    line-height:2.2;

}

.concept-box{

    margin-top:80px;

}

.concept-box p{

    font-size:30px;

    line-height:2.3;

    letter-spacing:1px;

}
.about{

    margin:60px auto;

}

.about h1{

    font-size:38px;

}

.about-box{

    padding:30px 20px;

}

.about-box h2{

    font-size:28px;

}

.about-text{

    font-size:18px;

}

.concept-box p{

    font-size:20px;

    line-height:2;

}
/* =========================
   CONTACT
========================= */

.contact-box{

    width:90%;
    max-width:700px;

    margin:100px auto 120px;

    padding:50px 30px;

    text-align:center;

    background:#fffdf8;

    border:1px solid #e8dfd1;

    border-radius:18px;

    box-shadow:0 10px 25px rgba(0,0,0,.05);

}

.contact-box h2{

    font-size:40px;

    margin-bottom:25px;

}

.contact-box p{

    font-size:20px;

    line-height:2;

    margin-bottom:25px;

}

.contact-info{

    line-height:2.2;

}

.contact-info p{

    margin-bottom:25px;

}

.contact-info strong{

    font-size:22px;

}

.contact-info a{

    color:#333;

    transition:.3s;

}

.contact-info a:hover{

    opacity:.6;

}

.contact-box{

    margin:60px auto 80px;

    padding:35px 20px;

}

.contact-box h2{

    font-size:30px;

}

.contact-box p{

    font-size:18px;

}

.contact-info{

    font-size:18px;

}

.contact-info strong{

    font-size:20px;

}/* =========================
   MOVIE
========================= */

.movie{

    width:90%;
    max-width:1000px;

    margin:80px auto;

    text-align:center;

}

.movie h2{

    font-size:42px;

    margin-bottom:40px;

}

.movie-frame{

    position:relative;

    width:100%;

    padding-bottom:56.25%;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 10px 25px rgba(0,0,0,.15);

}

.movie-frame iframe{

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

}
.news-more{

    text-align:right;

    margin-top:25px;

}

.news-more a{

    font-size:18px;

    transition:.3s;

}

.news-more a:hover{

    opacity:.6;

}