@charset "UTF-8";

body {
    opacity: .1;
    animation: bodyAppear .3s .3s forwards;
}

@keyframes bodyAppear {
    0% {
        opacity: .1;
    }

    100% {
        opacity: 1;
    }
}

.visually-hidden {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

@media screen and (min-width:768px) {}

@media screen and (min-width:1025px) {}

/*============================
	kv 
============================*/

.kv {
    margin-top: 60px;

}

.kv__swiper {
    width: 100%;
    margin: 0 auto;
    position: relative;


}

.kv__line {
    width: 100%;
    height: auto;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%);
    z-index: 9;
}

.kv__img {
    width: 100%;

    & img {
        object-fit: cover;
        width: 100%;
        min-height: 400px;
    }
}


.kv__copy {
    max-width: 544px;
    width: calc((544/1920)*150%);
    z-index: 99;
    white-space: nowrap;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

}



.kv__scroll {
    position: absolute;
    max-width: 12px;
    min-width: 8px;
    width: calc((12/1920)*100%);
    left: 5%;
    top: 90%;
    transform: translate(-50%, -50%);
    z-index: 9;

}

.kv__copy .slide-in,
.kv__copy .slide-in_inner {
    animation-duration: 1s;
    animation-delay: .3s;
}

@keyframes copyAnime {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* swiper */
.kv__swiper-area {
    position: relative;
}

.swiper__imgwrap {
    overflow: hidden;
    display: block;
}


.kv .swiper-slide-active .swiper__imgwrap img,
.kv .swiper-slide-duplicate-active .swiper__imgwrap img,
.kv .swiper-slide-prev .swiper__imgwrap img {
    animation: zoom-out 6s linear 0s 1 normal both;
}

@keyframes zoom-out {
    0% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}


.kv .swiper-pagination {
    left: 50%;
    bottom: 3%;
    z-index: 99;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    transform: translate(-50%);
}


.kv .swiper-pagination-bullet {
    display: block;
    width: 10px;
    height: 3px;
    z-index: 9;
    background: #fff;
    border-radius: 0% !important;
    margin: 0 8px !important;
    opacity: 1;

}

.kv .swiper-pagination-bullet-active {
    opacity: 1;
    background: #5d040a;
}


.k-swiper-button-prev {
    position: absolute;
    margin: 0;
    width: 40px;
    height: 40px;
    left: 0;
    top: 50%;
    z-index: 9;
    transform: translate(-50%, -50%);

}

.k-swiper-button-next {
    position: absolute;
    margin: 0;
    width: 40px;
    height: 40px;
    left: 100%;
    top: 50%;
    z-index: 9;
    transform: translate(-50%, -50%);

}

.k-swiper-button-prev::before {
    content: "";
    position: absolute;
    /* background: url(../images/sw_arw_prv.png) no-repeat center center/contain; */
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.k-swiper-button-next::before {
    content: "";
    position: absolute;
    /* background: url(../images/sw_arw_next.png) no-repeat center center/contain; */
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.swiper-button-disabled {
    opacity: .5;
    pointer-events: none;

}


@media screen and (min-width:768px) {
    .kv {
        margin-top: 60px;
    }

    .kv__line {
        width: 100%;
    }

    .kv__img {
        width: 100%;

    }


    .kv__copy {
        width: calc((544/1920)*100%);
        top: 50%;
        left: 75%;
    }




}



@media screen and (min-width:1025px) {
    .kv {
        margin-top: 0;

    }

    .kv__line {
        width: 100%;
    }

    .kv__img {
        width: 100%;

    }


    .kv__copy {
        width: calc((544/1920)*100%);
        top: 50%;
        left: 75%;
    }


}

/*============================
   news
============================*/

.news {
    padding: 60px 0;
    background: url(../images/news_bg.jpg) no-repeat center top/cover;
    z-index: 1;
    color: #fff;

    & a {
        color: #fff;
    }
}


.news__ttl {
    .font-en {
        margin-top: .5em;
    }
}

.news__atc {

    & a {
        display: block;
        align-items: center;
        width: 100%;
        height: 100%;
        padding: 1em 0;
        border-bottom: dashed 1.5px #d9d8c6;
    }

    &:first-child a {
        padding-top: 0;
    }

    &:last-child a {
        padding-bottom: 0;
        border: none;
    }

}

.news__date {
    white-space: nowrap;
}


.news__atc--ttl {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin-top: .5em;

}

.news__btn {
    width: fit-content;
    display: block;
    text-decoration: underline;
    margin: 20px 0 0 auto;
}



@media screen and (min-width:768px) {

    .news {
        padding: 80px 0;
    }


    .news__ttl {
        display: flex;
        align-items: flex-start;
        text-align: left;
        margin-right: 5%;

        .font-en {
            margin: 0 0 0 .5em;
            -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
            font-feature-settings: initial;
        }

        .txt {
            -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
            font-feature-settings: initial;
        }
    }

    .news__atcwrap {
        width: calc(100% - 80px);
    }

    .news__atc {

        & a {
            padding: 1em 0;
        }


    }



    .news__atc--ttl {
        margin-top: .5em;

    }

    .news__btn {
        margin: 30px 0 0 auto;
    }



}

@media screen and (min-width:1025px) {
    .news {
        padding: 120px 0;
    }


    .news__ttl {

        margin-right: 5%;

        .font-en {
            margin: 0 0 0 .5em;
        }

    }

    .news__atcwrap {
        width: calc(100% - 150px);
    }

    .news__atc {
        & a {
            padding: 1em 0;
        }

    }

    .news__atc--ttl {
        margin-top: .5em;

    }

    .news__btn {
        margin: 30px 0 0 auto;
    }


}



/*============================
   concept
============================*/
.concept {
    padding: 0 0 60px;
    background: url(../images/commit_bg.png) no-repeat center center/cover;
}

.conc__obj {
    max-width: 640px;
    width: calc((640/1920)*100%);
    right: 0;
    top: 115%;
    transform: translate(0, -50%);
}

.conc__img {
    width: 100%;
    position: relative;
    overflow: hidden;

    & img {
        top: -30px;
        position: relative;
    }

}

.conc__right {
    padding: 0 5%;
}

.conc__copy {
    line-height: 1.5;
}

@media screen and (min-width:768px) {
    .concept {
        padding: 80px 0;
    }

    .conc__obj {
        width: calc((640/1920)*100%);
        right: 0;
        top: 115%;
    }

    .conc__img {
        width: 49%;
        position: relative;
        overflow: visible;

        & img {
            top: 50%;
            left: 0;
            transform: translate(0, -50%);
            position: absolute;
        }

    }

    .conc__right {
        width: 48%;
        padding: 0 3% 0 0;
    }

    .conc__copy {
        line-height: 1.5;
    }
}

@media screen and (min-width:1025px) {
    .concept {
        padding: 150px 0 80px;
    }

    .conc__flex {
        margin: 0 auto;
        max-width: 1920px;

    }

    .conc__obj {
        width: calc((640/1920)*100%);
        right: 0;
        top: 115%;
    }

    .conc__img {
        width: 49%;

        & img {
            top: 50%;
            left: 0;

        }

    }

    .conc__right {
        width: 48%;
        padding: 0 1% 0 0;
        position: relative;
    }

    .conc__txt {
        max-width: 36em;
    }

    .conc__copy {
        line-height: 1.5;
    }
}


/*============================
   scene
============================*/
.scene {
    padding: 40px 0;
    background: url(../images/scene_bg.jpg) no-repeat center top/cover;
    color: #fff;
}

.scene__box {
    border: solid 1px #fff;
    padding: 30px 5%;
}

.scene__left {
    margin-bottom: 30px;
}

.scene__ttl {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;

    .box {
        height: fit-content;
        width: fit-content;
        padding: .5em .25em;
        border: solid 1px #fff;
        margin: 0 .5em 0 0;
    }

    .txt-container {
        margin-top: .5em;
        display: flex;
        flex-direction: row-reverse;

        .txt {
            margin: 0 .25em;
        }
    }
}

.scene__btn {
    margin: 0 auto;
}

.scene__txt {
    padding: 20px 10px;
    background: rgba(37, 38, 54, .6);
}

@media screen and (min-width:768px) {
    .scene {
        padding: 60px 0;
    }

    .scene__box {
        padding: 40px 5%;
    }

    .scene__left {
        width: 35%;
        margin-bottom: 0;
    }

    .scene__ttl {
        display: flex;
        justify-content: flex-start;
        margin-bottom: 60px;

        .box {

            padding: .5em .25em;
            margin: 0 .5em 0 0;
        }

        .txt-container {
            margin-top: .5em;


            .txt {
                margin: 0 .25em;
            }
        }
    }

    .scene__btn {
        margin: 0;
    }

    .scene__txt {
        width: 60%;
        padding: 30px 1.5em;
    }
}

@media screen and (min-width:1025px) {
    .scene {
        padding: 80px 0;
    }

    .scene__box {
        padding: 60px 5%;
        align-items: flex-end;
    }

    .scene__left {
        width: 30%;
    }

    .scene__ttl {

        margin-bottom: 200px;

        .box {

            padding: .5em .25em;
            margin: 0 .5em 0 0;
        }

        .txt-container {
            margin-top: .5em;


            .txt {
                margin: 0 .25em;
            }
        }
    }

    .scene__btn {
        margin: 0;
    }

    .scene__txt {
        width: 65%;
        padding: 50px 1.5em;

        .txt {
            -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
            font-feature-settings: initial;
            display: block;
            width: fit-content;
            margin: 0 auto;
            max-height: 25em;
        }

    }
}


/*============================
   menu
============================*/
.menu__item {
    padding: 80px 0;
    background: url(../images/menu_bg01.jpg) no-repeat center center/cover;
}

.menu__box {
    padding: 50px 0 80px;
    max-width: 350px;
    margin: 0 auto;
}

.menu__box--bg {
    width: 120%;
    max-width: none;

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.menu__ttl {
    & img {
        max-width: 97px;
        width: 50px;
        margin: 0 auto .5em;
    }

    .font-en {
        margin-bottom: .5em;
    }
}

.menu__txt {
    position: relative;
    line-height: 1.5;
}

.menu__btn {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%);
}

.menu__item:nth-child(2) {
    background: url(../images/menu_bg02.jpg) no-repeat center center/cover;
}

@media screen and (min-width:768px) {
    .menu__item {
        padding: 100px 0;
    }

    .menu__box {
        padding: 50px 5% 80px;
        max-width: 500px;
        margin: 0 0 0 auto;
    }

    .menu__box--bg {
        width: 100%;

    }

    .menu__ttl {
        & img {
            max-width: 97px;
            width: 60px;
            margin: 0 auto .75em;
        }

        .font-en {
            margin-bottom: .5em;
        }
    }

    .menu__txt {
        line-height: 1.5;
    }


    .menu__item:nth-child(2) {
        .menu__box {
            margin: 0;
        }
    }
}

@media screen and (min-width:1025px) {
    .menu__item {
        padding: 200px 0;
    }

    .menu__box {
        padding: 40px 5% 120px;
        max-width: 697px;
        margin: 0 0 0 auto;
    }

    .menu__box--bg {
        width: 100%;

    }

    .menu__ttl {
        & img {
            max-width: 97px;
            width: 97px;
            margin: 0 auto .75em;
        }

        .font-en {
            margin-bottom: .5em;
        }
    }

    .menu__txt {
        line-height: 2;
    }


    .menu__item:nth-child(2) {
        .menu__box {
            margin: 0;
        }
    }
}


/*============================
   seat
============================*/
.seat {
    padding: 0 0 60px;
    background: url(../images/seat_bg.jpg) no-repeat center center/cover;
}

.seat__obj {
    width: 100%;
    top: 0;
    left: 50%;
    transform: translate(-50%);
}

.seat__top {
    display: flex;
    flex-direction: column-reverse;
}

.seat__img01 {
    margin-bottom: 100px;
}

.seat__ttl {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;

    & img {
        max-width: 360px;
        width: 160px;
        position: absolute;
        top: 0;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

.seat__img02 {
    max-width: 534px;
    margin: 0 auto;

    .pop {
        max-width: 252px;
        width: calc((252/534)*100%);
        position: absolute;
        top: 0;
        left: 20%;
        transform: translate(-50%, -50%);
    }

}

.seat__copy {
    width: fit-content;
    margin: -80px auto 20px;
    position: relative;
    display: flex;
    align-items: flex-start;
    flex-direction: row-reverse;

    .txt {
        padding: .5em .25em;
        background: #fff;
        margin: 0 .2em;
    }
}

.seat__btn {
    margin: 0 0 0 auto;
}

@media screen and (min-width:768px) {
    .seat {
        padding: 0 0 80px;
    }

    .seat__obj {
        width: 100%;
        z-index: 1;
    }

    .seat__top {
        flex-direction: row;
        margin-bottom: 60px;
    }

    .seat__img01 {
        width: 65%;
        margin-bottom: 0;

        & img {
            object-fit: cover;
            width: 100%;
            min-height: 400px;
        }
    }

    .seat__ttl {
        display: flex;
        justify-content: center;
        width: 30%;
        margin: 160px 0 0;


        & img {
            max-width: 360px;
            width: 160px;
            top: 20%;
            left: 50%;
        }
    }

    .seat__img02 {
        max-width: 534px;
        margin: 0;
        width: 35%;

        .pop {
            max-width: 252px;
            width: calc((252/534)*100%);
            position: absolute;
            top: 0;
            left: 20%;
            transform: translate(-50%, -50%);
        }

    }

    .seat__right {
        width: 62%;
    }

    .seat__copy {
        margin: -200px auto 20px;
        margin-right: 1em;

        .txt {
            padding: .5em .2em;
            margin: 0 .2em;
        }
    }

    .seat__btn {
        margin: 0 0 0 auto;
    }
}

@media screen and (min-width:1025px) {
    .seat {
        padding: 0 0 100px;
    }

    .seat__obj {
        width: 100%;
    }

    .seat__top {
        margin: 0 auto 80px;
        max-width: 1920px;
    }

    .seat__img01 {
        width: 65%;

        & img {
            min-height: 650px;
        }
    }

    .seat__ttl {

        width: 30%;
        margin: 300px 0 0;


        & img {
            width: 360px;
            top: 20%;
            left: 50%;
        }
    }

    .seat__img02 {
        margin: 0;
        width: 35%;

        .pop {
            width: calc((252/534)*100%);
            top: 0;
            left: 10%;
        }

    }

    .seat__right {
        width: 62%;
    }

    .seat__copy {
        margin: -280px 3% 0 0;

        .txt {
            padding: .5em .2em;
            margin: 0 .2em;
        }
    }

    .seat__container {
        max-width: 580px;
    }

    .seat__btn {
        margin: 0 0 0 auto;
    }
}


/*============================
   info
============================*/
.info {
    padding: 60px 0 0;
    background: url(../images/info_bg.jpg);

    &::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100px;
        background: #0d1b62;
        left: 0;
        bottom: -1px;
    }
}


.info__box {
    position: relative;
    padding: 30px 5%;
    background: rgba(255, 255, 255, .9);
}


.info__left {
    margin-bottom: 30px;
}

.info__ttl {
    display: flex;
    align-items: center;

    & img {
        max-width: 50px;
        width: 30px;
        margin-right: 1em;
    }
}



.info__li {
    display: flex;
    align-items: center;
    margin-bottom: 1.5em;
}

.info__th {
    width: 8em;
    white-space: nowrap;
    padding-left: 1.5em;
    position: relative;

    &::before {
        content: "";
        position: absolute;
        width: 1em;
        height: 1px;
        background: #363464;
        left: 0;
        top: 50%;
        transform: translate(0, -50%);
    }
}

.info__td {
    width: calc(100% - 8em);
}

.info__td.pc_only {
    display: none;
}

.info__td.sp_only {
    display: block;
}

.info__img {
    width: fit-content;
    margin: 0 auto 10px;
}

.info__right iframe {
    display: block;
    width: 100%;
    height: 200px;
}

@media screen and (min-width:768px) {
    .info {
        padding: 80px 0 0;

        &::before {
            height: 100px;
        }
    }


    .info__box {
        padding: 40px 5%;
    }


    .info__left {
        width: 48%;
        margin-bottom: 0;
    }

    .info__right {
        width: 48%;
    }

    .info__ttl {

        & img {
            max-width: 50px;
            width: 35px;
            margin-right: 1em;
        }
    }



    .info__li {

        margin-bottom: 1.5em;
    }

    .info__th {
        width: 8em;
        padding-left: 1.5em;

        &::before {
            width: 1em;
            height: 1px;
        }
    }

    .info__td {
        width: calc(100% - 8em);
    }

    
.info__td.pc_only {
    display: block;
}

.info__td.sp_only {
    display: none;
}

    .info__img {
        margin: 0 auto 10px;
    }

    .info__right iframe {
        width: 100%;
        height: 220px;
    }

}

@media screen and (min-width:1025px) {
    .info {
        padding: 100px 0 0;

        &::before {
            height: 200px;
        }
    }


    .info__box {
        padding: 100px 5%;
        max-width: 1400px;
        margin: 0 auto;
    }


    .info__left {
        width: 48%;
    }

    .info__right {
        width: 48%;
        max-width: 550px;
    }

    .info__ttl {

        & img {
            max-width: 50px;
            width: 50px;
            margin-right: 1em;
        }
    }



    .info__li {

        margin-bottom: 1.5em;
    }

    .info__th {
        width: 8em;
        padding-left: 1.5em;

        &::before {
            width: 1em;
            height: 1.5px;
        }
    }

    .info__td {
        width: calc(100% - 8em);
    }

    .info__img {
        margin: 0 auto 15px;
    }

    .info__right iframe {
        width: 100%;
        height: 300px;
    }
}