@charset "UTF-8";

/* ========================================
     aside main
 ========================================= */
.aside-main-wrapper {
    display: flex;
    /* padding-top: 140px; */
}

/* ========================================
     main
 ========================================= */
/* ======================
    pc版
   ===================== */
main {
    height: calc(100vh - 70px);
    overflow-y: auto;
    /* overflow-y: scroll; */
    scrollbar-color: #233533 #f1efee;
    scrollbar-width: thin;
    flex: 1;
    z-index: 1;
    background-color: #F7F7F2;
    /* background-image: url("../img/common/bg-blue.png"); */
    /* background-size: cover; */
    /* background-size: 100% auto; */
    /* background-repeat: repeat-x; */
}

/* ======================
    sp版 縦向き
   ===================== */
@media screen and (max-width:767px) {
    main {
        /* height: calc(100vh - 170px); */
        height: 100%;
        /* height: auto; *//* 試しの変更点 */
        overflow-y: visible;
    }
}

/* ======================
    sp版 横向き
   ===================== */
@media (max-height: 430px) and (max-width: 932px) {
    main {
        height: 100vh;
    }
}

/* ================================
    Top img 
   =============================== */
/* ======================
    pc版 
   ===================== */
.top-img_pc {
    display: block;
    position: relative;
    padding-bottom: 80px;
    /* width: 100%; */
}

.top-img_tb_sp {
    display: none;
}

.top-img_pc img {
    display: block;
    width: 100%;
}

.top-img_img01 {
    filter: brightness(70%);
}

.top-img_img02 {
    filter: brightness(100%);
}

.top-img_pc p {
    font-size: 2.0vw;
    /* width: 100%; */
    /* position: absolute; */
    /* bottom: -70%; */
    text-align: center;
    /* transform: translateY(-50%); */
    /* color: #FFFFFF; */
    /* font-weight: bold; */
    margin-top: 120px;
}

.mv-text-p-large {
    font-size: 4.0vw;
}

.top-mv-text {
    /* width: 100%; */
    /* position: absolute; */
    /* top: 40%; */
    /* transform: translateY(-50%); */
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #F8F7F3;
    background-color: rgba(66, 98, 95, 0.7);

    width: min(1000px, calc(100% - 40px));
    box-sizing: border-box;
    text-align: center;
    padding: clamp(16px, 3vw, 50px) clamp(20px, 6vw, 100px);
}

/* .top-mv-text img {
    display: block;
    margin: auto;
    width: 1527px;
} */


.top-h2-font-bold {
    font-size: 4.2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
}

.top-mv-text h1 {
    font-size: 7.0rem !important;
    line-height: 1.2;
    border-bottom: none !important;
    color: #F8F7F3 !important;
    text-align: center;
    margin: 0 !important;
}

.top-h2-font-normal {
    font-size: 3.6rem;
    font-weight: 200;
    text-align: center;
    margin-top: 20px;
}

/* ======================
    tb版 
   ===================== */
@media screen and (max-width:1024px) {
    .top-mv-text h1 {
        font-size: 7.0rem !important;
        line-height: 1;
        text-align: center;
        margin-bottom: 0;
    }

    .top-h2-font-normal {
        font-size: 4.0rem;
        font-weight: 200;
    }

    .top-h2-font-bold {
        font-size: 4.0rem;
        font-weight: bold;
    }

    .top-img_pc p {
        font-size: 3.0rem;
        /* bottom: -50%; */
    }

    .mv-text-p-large {
        font-size: 5.0rem;
    }
}

/* ======================
    sp版 
   ===================== */
@media screen and (max-width:767px) {
    .top-img_pc {
        position: relative;
        padding-bottom: 80px;
        width: 100%;/* 試しの変更点 */
        /* width: 100vw; */
    }

    .top-img_pc img {
        display: block;
        width: 100%;
    }

    .top-mv-text h1 {
        font-size: 3.0rem !important;
        line-height: 1;
        text-align: center;
        margin-bottom: 0;
    }

    .top-h2-font-normal {
        font-size: 2.0rem;
        font-weight: 200;
    }

    .top-h2-font-bold {
        font-size: 2.5rem;
        font-weight: bold;
    }

    .top-img_pc p {
        font-size: 2.0rem;
        margin-top: 60px;
        /* bottom: -40%; */
    }

    .mv-text-p-large {
        font-size: 3.0rem;
    }
}

/* ================================
    Top movie
  =============================== */
/* ======================
    pc版 
   ======================*/
.top-movie {
    text-align: center;
    width: 65%;
    padding: 120px 0px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 0 60px;
}

.top-movie iframe {
    aspect-ratio: 16 / 9; /* 16:9の比率 */
    width: 55%;
    border: solid 2px #999999;
}
.top-movie_text {
    text-align: left;
    margin: auto 0;
    line-height: 1.6;
}
.top-movie_text h2 {
    text-align: center;
    font-size: 1.6rem;
    border: solid 2px #999999;
    padding: 5px 5px;
    background-color: #FFFFFF;
    margin-bottom: 20px;
}
.top-movie_text h3 {
    font-size: 2.4rem;
    font-weight: bold;
    margin-bottom: 20px;
}
.top-movie_text p {
    font-size: 2.0rem;
}

/* ======================
    sp版 
   ======================*/
@media screen and (max-width:767px) {
    .top-movie {
        display: block;
        width: 100%;
        padding: 60px 0 40px;
    }

    .top-movie iframe {
        width: 90%;
        /* height: 200px; */
    }

    .top-movie_text {
        text-align: center;
        margin: auto 0;
    }
    .top-movie_text h2 {
        font-size: 1.4rem;
        margin-bottom: 0;
        width: 40%;
        margin: 0 auto 10px;
    }
    .top-movie_text h3 {
        font-size: 2.0rem;
        margin-bottom: 10px;
    }
    .top-movie_text p {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }
}

/* ================================
    Top intro 
  =============================== */
/* ======================
    pc版 
   ======================*/
.top-intro {
    padding: 80px 12.5vw;
}

.top-intro_bg {
    background-color: #f3f3f3;
    margin: 0px 6.25vw;
    border-radius: 20px;
    position: relative;
    border: solid 0.5px #bfbfbf;
}

.top-intro_bg h1 {
    font-size: min(2.3vw, 4.0rem);
    font-family: '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif;
    font-weight: 300;
    position: absolute;
    top: -15px;
    left: 20px;
    letter-spacing: 0.4rem;
    line-height: 1;
}

.top-intro_bg p {
    font-size: 1.6rem;
    padding: 40px 40px 40px 40px;
    line-height: 1.7;
}

/********* タブのレイアウト *********/
/* .tab-switch {
    --tab-color: #A9C2CC;
    display: flex;
    flex-wrap: wrap;
    max-width: 800px;
    margin-inline: auto;
    gap: 0px 25px;
} */

/* ラジオ非表示 */
/* .tab-switch input {
    display: none;
} */

/* タブボタン */
/* .tab-switch label {
    margin-top: 40px;
    padding: 0.7em 1em;
    background: #eee;
    cursor: pointer;
    order: -1;
    text-align: center;
    border: double 2px #555555;
} */

/* コンテンツ非表示 */
/* .tab-content {
    display: none;
    width: 100%;
    padding: 1.5em 0;
} */

/* 選択されたタブ＋コンテンツ表示 */
/* .tab-switch input:checked+label {
    background: var(--tab-color);
    color: #fff;
} */

/* .tab-switch input:checked+label+.tab-content {
    display: block;
} */

/********** タブのレイアウト（終） **********/
/* ======================
    sp版 
   ======================*/
@media screen and (max-width:767px) {
    .top-intro {
        padding: 40px 0px;
    }

    .top-intro_bg {
        margin: 0px 20px;
    }

    .top-intro_bg h1 {
        font-size: 2.0rem;
        letter-spacing: 0.3rem;
    }

    .top-intro_bg p {
        font-size: 1.4rem;
        padding: 20px;
    }

    /* タブ */
    .tab-switch {
        gap: 0px 5px;
        justify-content: center;
    }
}

/* ================================
    Comment
  =============================== */
/* ======================
    pc版 
   ======================*/
.top-comment {
    margin: 80px auto;
    padding: 20px 40px;
    /* width: 100%; */
    max-width: 1024px;
    background-color: #FFFFFF;
    /* background-color: #f3f3f3; */
    border: solid 1.5px #bfbfbf;
}

.top-comment-h1-2025 {
    font-size: min(2.3vw, 4.0rem);
    font-family: '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif;
    font-weight: 300;
    text-align: center;
    padding: 20px;
}

.top-comment-h1-2024 {
    font-size: min(2.3vw, 2.0rem);
    font-family: '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif;
    font-weight: 300;
    text-align: center;
    padding: 20px;
}

.top-comment p {
    text-align: center;
    font-weight: bold;
    margin-bottom: 20px;
}

.top-comment div {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width:  100%;
    /* margin: 0 auto; */
}

.ambassador-group {
    width: 50%;
    text-align: center;
}

.ambassador-person {
    height: auto;
    width: 15%;
    text-align: center;
    align-items: flex-end;
}

.top-comment img {
    width: 100%;
    border: solid 0.5px #999999;
}

.top-comment figcaption {
    /* text-align: center; */
    font-size: 1.0rem;
}

.top-comment a {
    color: #333333;
    font-size: 1.4rem;
}

/* ======================
    tb版 
   ======================*/
@media screen and (max-width:1024px) {
    .top-comment {
        margin: 10px 20px;
        padding: 10px 20px;
    }

    .top-comment figcaption {
        font-size: 0.8rem;
    }

    .top-comment a {
        font-size: 1.2rem;
    }

}

/* ======================
    sp版 
   ======================*/
@media screen and (max-width:767px) {
    .top-comment-h1-2025 {
        font-size: 2.0rem;
    }

    .top-comment div {
        flex-wrap: wrap;
    }

    .top-comment figcaption {
        line-height: 1.5;
    }

    .ambassador-person {
        width: 40%;
        padding-bottom: 10px;
    }

    .ambassador-person img {
        width: 50%;
    }
}

/* ================================
    Timetable
  =============================== */
/* ======================
    pc版 
   ======================*/
.timetable {
    padding: 80px 9.375vw;
}

.timetable-title {
    display: flex;
    align-items: center;
    /* padding-left: 6vw; */
}

/* .timetable-title h1 {
    font-size: min(2.3vw, 4.0rem);
    font-family: '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif;
    font-weight: 300;
    padding-right: 0.534vw;
    color: #333333;
} */

.timetable-title div {
    align-items: center;
}

.timetable-title img {
    display: block;
    height: 2.3vw;
}

/* .theater-online_wrapper {
    display: flex;
    justify-content: space-around;
    padding: 40px 0px;
} */

/* .theater {
    width: 35%;
} */

/* .theater-title {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #c8d0e1;
    height: 80px;
    border: solid 0.5px #bfbfbf;
} */

/* .theater-title h2 {
    font-weight: 200;
    color: #333333;
} */

/* .theater-title img {
    width: 60px;
    padding: 0px 10px;
} */

/* ＝＝＝　↓↓↓↓　スケジュールの内容変更に伴うレイアウト調整の記述　↓↓↓↓　＝＝＝ */
.schedule-table-wrapper {
    display: block;
    width: 100%;
    margin: 40px auto;
    background-color: #FFFFFF;
    border: 1px solid #bfbfbf;
}

.schedule-table-wrapper__tr {
    width: 100%;
}

.schedule-date {
    font-size: min(1.25vw, 2.6rem);
    line-height: 1.5;
    background-color: #c8d0e1;
    vertical-align: middle;
    padding: 0 20px;
}

.schedule-date-sp {
    display: none;
}

.schedule-content {
    padding: 20px;
}

.schedule-content h3 {
    font-size: min(1.4vw, 3.0rem);
    line-height: 1.5;
    margin-top: 20px;
}

.schedule-content tr {
    display: block;
    align-items: center;
    margin-top: 10px;
}

.schedule-content tr th {
    font-size: 1.6rem;
    padding: 5px 10px;
    background-color: #c8d0e1;
    vertical-align: middle;

    width: 70px;
    border-radius: 5px;
    text-align: center;
    margin-right: 10px;
}

.schedule-content td {
    margin: 10px 0 0 25px;
    vertical-align: middle;
    padding-left: 30px;
}

/* ＝＝＝　↑↑↑↑　スケジュールの内容変更に伴うレイアウト調整の記述　↑↑↑↑　＝＝＝ */



/* ＝＝＝＝＝ここから下は必要ないかもしれないので後ほど消す＝＝＝＝＝ */
.theater-date {
    padding: 20px;
    text-align: center;
    background-color: #e2e5ed;
    border: solid 0.5px #bfbfbf;
}

.theater-schedule {
    /* display: flex; */
    /* justify-content: space-evenly; */
    /* align-items: center; */
    padding: 20px 0px;
    background-color: #fbfbfb;
    width: 100%;
    border: solid 0.5px #bfbfbf;
    /* height: 100%; */
}

.theater-contents {
    word-break: break-word;
    margin: 10px;
}

.theater-schedule a {
    color: #FF594B;
    text-decoration: underline;
}

.theater-schedule div:nth-of-type(2) {
    /* width: 50%; */
}

.online {
    width: 30%;
}

.online-title {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #A9C2CC;
    height: 80px;
    border: solid 0.5px #bfbfbf;
}

.online-title h2 {
    font-weight: 200;
    color: #FFFFFF;
}

.online-title img {
    width: 60px;
    padding: 0px 10px;
}

.online-date {
    padding: 20px;
    text-align: center;
    background-color: #dae9ef;
    border: solid 0.5px #bfbfbf;
}

.online-schedule {
    /* display: flex; */
    /* justify-content: space-evenly; */
    align-items: center;
    padding: 20px 0px;
    background-color: #fbfbfb;
    /* height: 100px; */
    border: solid 0.5px #bfbfbf;
}

.online-contents {
    word-break: break-word;
    margin: 10px;
}

.online-schedule a {
    color: #FF594B;
    text-decoration: underline;
}

.online-schedule div:nth-of-type(2) {
    /* width: 50%; */
}

/* ＝＝＝＝＝ここから上は必要ないかもしれないので後ほど消す＝＝＝＝＝ */

/* ======================
    sp版 
   ======================*/
@media screen and (max-width:767px) {
    .timetable {
        padding: 40px 20px;
    }

    .timetable-title {
        justify-content: center;
        /* padding-right: 20px; */
    }

    /* .timetable-title h1 {
        font-size: 3.0rem;
        padding-right: 10px;
    } */

    .timetable-title img {
        height: 32px;
    }

    /* ＝＝＝　↓↓↓↓↓　スケジュールの内容変更に伴うレイアウト調整の記述　↓↓↓↓　＝＝＝ */
    /* .theater-online_wrapper {
        display: block;
        padding: 40px 0px;
    } */

    /* .theater {
        width: 100%;
        padding-bottom: 20px;
    } */

    .schedule-table-wrapper {
        display: block;
        width: 100%;
        margin: 40px auto;
        background-color: #FFFFFF;
        border: 1px solid #bfbfbf;
    }

    .schedule-table-wrapper__tr {
        width: 100%;
    }

    .schedule-date {
        display: none;
    }

    .schedule-date-sp {
        display: block;
        text-align: center;
        background-color: #c8d0e1;
        padding: 10px 0;
        font-size: min(4.5vw, 3.0rem);
    }

    .schedule-content {
        padding: 0 20px 20px;
    }

    .schedule-content h3 {
        font-size: min(4.5vw, 3.0rem);
        line-height: 1.5;
        margin-top: 20px;
    }

    .schedule-content tr {
        display: block;
        align-items: center;
        margin-top: 10px;
    }

    .schedule-content tr th {
        font-size: 1.6rem;
        padding: 5px 10px;
        background-color: #c8d0e1;
        vertical-align: middle;

        width: 70px;
        border-radius: 5px;
        text-align: center;
        margin-right: 10px;
    }

    .schedule-content td {
        margin: 10px 0 0 25px;
        vertical-align: middle;
        padding-left: 30px;
    }

    /* ＝＝＝　↑↑↑↑　スケジュールの内容変更に伴うレイアウト調整の記述　↑↑↑↑　＝＝＝ */


    /* ＝＝＝＝＝ここから下は必要ないかもしれないので後ほど消す＝＝＝＝＝ */
    .theater-schedule {
        /* display: flex;
        justify-content: space-evenly;
        align-items: center; */
        padding: 20px 0px;
        /* background-color: #f3f3f3; */
    }

    .theater-schedule a {
        color: #FF594B;
        text-decoration: underline;
    }

    /* .theater-schedule div:nth-of-type(2) {
        width: 50%;
    } */

    .online {
        width: 100%;
    }

    /* .online-title {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #A9C2CC;
        height: 80px;
    } */

    .online-title h2 {
        font-weight: 200;
        color: #FFFFFF;
    }

    .online-title img {
        width: 60px;
        padding: 0px 10px;
    }

    .online-date {
        padding: 20px;
        text-align: center;
        background-color: #F0F3EE;
    }

    .online-schedule {
        /* display: flex;
        justify-content: space-evenly;
        align-items: center;
        padding: 20px 0px;
        background-color: #f3f3f3;
        height: 100px; */
    }

    .online-schedule a {
        color: #FF594B;
        text-decoration: underline;
    }

    .online-schedule div:nth-of-type(2) {
        width: 50%;
    }

    /* ＝＝＝＝＝ここから上は必要ないかもしれないので後ほど消す＝＝＝＝＝ */
}

/* ================================
    News / Movie　同じクラスで管理
  =============================== */
/* ======================
    pc版 
   ======================*/
.top-ichiran {
    padding: 80px 9.375vw;
    background-color: #FFFFFF;
    margin: 120px 0;
}
.top-ichiran h1 {
    font-size: min(2.3vw, 4.0rem);
    font-family: '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif;
    font-weight: 300;
    color: #333333;
    text-align: center;
    margin-bottom: 60px;
}
.top-ichiran_container{
    width: 80%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 30px;
}

.top-ichiran_content{
    width: 180px;
}
.top-ichiran_content_a{
    text-decoration: none;
    color: #333333;
}
.top-ichiran_content_img{
    aspect-ratio: 4 / 3; /* 16:9の比率 */
    width: 100%;
}
.top-ichiran_content_img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.top-ichiran_content_text p{
    font-size: 1.4rem;
    margin: 0 !important;
}

.btn-img {
    width: 260px;
    margin: 30px auto 0;
}
.btn-img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ======================
    tb版 
   ======================*/
/* @media screen and (max-width:1300px) {
    .top-ichiran_container{
        width: 80%;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: left;
    }

    } */


/* ======================
    sp版 
   ======================*/
@media screen and (max-width:767px) {
    .top-ichiran {
        padding: 40px 20px 20px;
        margin: 60px 0;
    }

    .top-ichiran h1 {
    font-size: 2.4rem;
    margin-bottom: 30px;
    }
    .top-ichiran_container{
        display: block;
    }

    .top-ichiran_content{
        width: 100%;
        margin-bottom: 30px;
    }
    .top-ichiran_content_text p{
        font-size: 1.2rem;
    }

    .btn-img {
        width: 180px;
        margin: 30px auto 0;
    }
}

/* ================================
    Ticket
  =============================== */
/* ======================
    pc版 
   ======================*/
.top-ticket {
    padding: 80px 9.375vw;
    background-color: #FFFFFF;
    margin: 0;
}

.top-ticket h1 {
    font-size: min(2.3vw, 4.0rem);
    font-family: '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif;
    font-weight: 300;
    /* padding-right: 0.534vw; */
    color: #333333;
    text-align: center;
}

.top-ticket div {
    /* background-color: #f3f3f3; */
    border-radius: 20px;
    width: 60vw;
    margin: 40px auto 0;
    display: flex;
    justify-content: center;
}

.top-ticket p {
    font-size: 1.6rem;
    padding: 40px;
    line-height: 1.7;
    text-align: left;
    margin: auto;
    width: 70%;
}

.top-ticket p span {
    font-weight: bold;
}

.top-ticket a {
    display: block;
    margin: auto;
    width: 240px;
    padding: 40px;
}

.top-ticket img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ======================
    sp版 
   ======================*/
@media screen and (max-width:767px) {
    .top-ticket {
        padding: 40px 20px 20px;
        margin: 60px 0;
    }

    .top-ticket h1 {
        font-size: 2.4rem;
        padding-right: 10px;
        text-align: center;
    }

    .top-ticket div {
        width: 100%;
        margin-top: 20px;
        display: block;
    }

    .top-ticket p {
        padding: 20px;
        text-align: center;
        font-size: 1.4rem;
    }

    .top-ticket a {
        padding: 20px;
    }
}