@charset "UTF-8";

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

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

    100% {
        opacity: 1;
    }
}


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

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

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

.kv {
    margin-top: 52px;
    padding: 40px 0 0;

}


.kv__img {
    width: 95%;
    position: relative;
    margin: 0 auto;

    & img {
        width: 100%;
    }

    .yuge {
        width: calc((1057/1023)*100%);
        position: absolute;
        top: 20%;
        left: 35%;
        transform: translate(-50%, -50%);
        mix-blend-mode: screen;
    }
}



@keyframes kvAnime {
    0% {
        left: 40%;
    }

    100% {
        left: 50%;
    }
}

@keyframes kvAnime02 {
    0% {
        left: 60%;
    }

    100% {
        left: 50%;
    }
}

@keyframes kvAnime03 {
    0% {

        top: 60%;
    }

    100% {
        top: 50%;
    }
}

.kv__copy {
    width: 90%;
    z-index: 99;
    white-space: nowrap;
    margin: -20% auto 0;

    & img {
        width: 100%;
    }
}

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

.kv__scroll {
    display: none;
}




/* 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: 15%;
    top: 95%;
    z-index: 99;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    transform: translate(-50%, -50%);
}


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

}

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


.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: 62px;
        padding: 40px 0 0;

    }


    .kv__img {
        width: calc((1023/1920)*100%);
        position: relative;
        margin: 0 3% 0 auto;


        .yuge {
            width: calc((1057/1023)*100%);
            top: 20%;
        }
    }

    .kv__copy {
        width: calc((918/1920)*100%);
        position: absolute;
        margin: 0;
        transform: translate(-50%, -50%);
        top: 55%;
        left: 30%;
    }

}



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

    .kv {
        margin-top: 0;
        padding: 180px 0 0;

    }


    .kv__img {
        width: calc((1023/1920)*100%);
        margin: 0 3% 0 auto;

    }

    .kv__copy {
        width: calc((918/1920)*100%);
        top: 55%;
        left: 30%;
    }
}



/*============================
   news
============================*/
.news {
    padding: 60px 0;

    color: #fff;
}

.news__btm {
    width: 100%;
    top: 75%;
    left: 50%;
    transform: translate(-50%);
    min-width: 767px;
}

.news__left {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
}

.news__ttl {


    .font-en {
        margin-top: .75em;

    }
}

.news__btn {

    color: #fff;
    padding: .5em;
    width: fit-content;
    display: block;
    border-top: solid 1px #fff;
    border-bottom: solid 1px #fff;
    transition: .3s;

    &:hover {
        color: #be1e00;
    }

}

.news__atc {
    display: block;
    padding: 1em;
    margin-bottom: 1em;
    background: #222222;

    & a {
        align-items: center;
        color: #fff;
    }

    &:last-child {
        margin-bottom: 0;

    }
}

.news__atc--ttl {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;

}



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

    .news__btm {
        top: 55%;
        left: 50%;
        min-width: 1024px;
    }

    .news__left {
        display: block;
        margin-bottom: 0;
        width: 25%;
    }

    .news__atcwrap {
        width: 70%;
    }

    .news__ttl {

        margin-bottom: 50px;

        .font-en {
            margin-top: .75em;

        }
    }

    .news__btn {

        padding: .5em;

    }

    .news__atc {
        padding: 1em;
        margin-bottom: 1em;

        & a {
            display: flex;
            align-items: center;
        }
    }

    .news__date {
        white-space: nowrap;
    }

    .news__atc--ttl {
        padding-left: 1em;

    }


}

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

    .news__btm {
        top: 55%;
        left: 50%;
    }

    .news__left {
        width: 25%;
    }

    .news__atcwrap {
        width: 70%;
    }

    .news__ttl {
        margin-bottom: 50px;

    }

    .news__atc {
        padding: 1em;
        margin-bottom: 1em;

    }

    .news__atc--ttl {
        padding-left: 1.5em;

    }

}

/*============================
   commitment
============================*/

.commitment {
    padding: 0 0 0;

    &::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background: url(../images/commit_bg.png);
        z-index: -1;
        top: 0;
        left: 0;
    }
}

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

.comm__img {
    width: 100%;
    max-width: 960px;
    margin: 0 auto 0 -15%;

    .img {
        position: relative;
    }

    .yuge {
        max-width: 886px;
        width: calc((886/960)*100%);
        top: 0;
        left: 60%;
        transform: translate(-50%, -50%);
        mix-blend-mode: screen;
        position: absolute;
        pointer-events: none;
    }

    .obj {
        position: absolute;
        max-width: 906px;
        width: calc((906/960)*100%);
        top: 85%;
        left: 55%;
        transform: translate(-50%, -50%);
        mix-blend-mode: multiply;
        pointer-events: none;
    }
}

.comm__txtwrap {
    padding: 40px 5% 30px;

}

.comm__copy {
    max-width: 402px;
    width: 70%;
    margin: 0 auto 20px 0;
    position: relative;
    z-index: 1;
}

.comm__obj {
    width: 55%;
    max-width: 907px;
    position: absolute;
    top: 10%;
    left: 85%;
    transform: translate(-50%, -50%);

    .img {
        position: relative;
    }

    .yuge {
        max-width: 886px;
        width: calc((886/960)*100%);
        top: 0;
        left: 60%;
        transform: translate(-50%, -50%);
        mix-blend-mode: screen;
        position: absolute;
        pointer-events: none;
        opacity: 0;
    }

}

.comm__h3 {
    padding-bottom: .5em;
    margin-bottom: 1em;
    border-bottom: double 3px #be1e00;

    .fs-46 {
        display: block;
        font-size: 2rem;
    }
}

.comm__item:nth-child(2) {

    .comm__img {
        width: 100%;
        max-width: 1198px;
        margin: 0 -15% 0 auto;


        .yuge {
            max-width: 867px;
            width: calc((867/1198)*100%);
            top: 5%;
            left: 45%;
        }

        .obj {
            max-width: 849px;
            width: calc((849/1198)*100%);
            top: 25%;
            left: 50%;
        }
    }

    .comm__txtwrap {
        padding: 60px 5% 0;

    }


    .comm__obj {
        width: 55%;
        max-width: 1086px;
        position: absolute;
        top: 110%;
        left: 15%;
        transform: translate(-50%, -50%);


    }

    .comm__btn {
        margin: 20px 0 0 auto;
    }
}

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

    .comm__item {
        display: flex;
        flex-direction: row;
        margin-bottom: 30px;
    }

    .comm__img {
        width: 60%;
        margin: 0 auto 0 -15%;

    }

    .comm__txtwrap {
        width: 50%;
        padding: 0 3% 0 0;

    }

    .comm__copy {

        width: 50%;
        margin: 0 auto 20px 5%;
        position: relative;
        z-index: 1;
    }

    .comm__obj {
        width: 75%;
        top: 10%;
        left: 80%;

        .yuge {
            width: calc((886/960)*100%);
            top: 0;
            left: 60%;
            opacity: 0;
        }

    }

    .comm__h3 {
        padding-bottom: .5em;
        margin-bottom: 1em;
        border-bottom: double 3px #be1e00;

        .fs-46 {
            display: block;
            font-size: 2rem;
        }
    }

    .comm__item:nth-child(2) {
        flex-direction: row-reverse;
        align-items: flex-end;
        margin-bottom: 0;

        .comm__img {
            width: 65%;
            margin: 0 -10% 0 auto;


            .yuge {
                max-width: 867px;
                width: calc((867/1198)*100%);
                top: 5%;
                left: 45%;
            }

            .obj {
                max-width: 849px;
                width: calc((849/1198)*100%);
                top: 25%;
                left: 50%;
            }
        }

        .comm__txtwrap {
            padding: 0 0 60px 3%;

        }


        .comm__obj {
            width: 100%;
            top: 110%;
            left: 15%;

        }



    }
}

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

    .comm__item {
        display: flex;
        flex-direction: row;
        margin-bottom: 30px;
    }

    .comm__img {
        width: 60%;
        margin: 0 auto 0 -10%;

    }

    .comm__txtwrap {
        width: 50%;
        padding: 0 1% 0 0;

    }

    .comm__txtwarp--inner {
        max-width: 630px;
    }

    .comm__copy {

        width: 50%;
        margin: 0 auto 20px 10%;
    }

    .comm__obj {
        width: 100%;
        top: 10%;
        left: 85%;

        .yuge {
            width: calc((886/960)*100%);
            top: 0;
            left: 60%;
            opacity: 0;
        }

    }

    .comm__h3 {
        padding-bottom: .5em;
        margin-bottom: 1em;
        border-bottom: double 4px #be1e00;

        .fs-46 {
            font-size: 4.6rem;
        }
    }

    .comm__item:nth-child(2) {


        .comm__img {
            width: 65%;
            margin: 0 -10% 0 auto;


            .yuge {
                max-width: 867px;
                width: calc((867/1198)*100%);
                top: 5%;
                left: 45%;
            }

            .obj {
                max-width: 849px;
                width: calc((849/1198)*100%);
                top: 25%;
                left: 50%;
            }
        }

        .comm__txtwrap {
            padding: 0 0 10% 1%;

        }

        .comm__txtwarp--inner {
            margin: 0 0 0 auto;
        }

        .comm__obj {
            width: 100%;
            top: 100%;
            left: 25%;

        }

        .comm__h3 {
            padding-bottom: .5em;
            margin-bottom: 1em;
            border-bottom: double 3px #be1e00;

        }

        .comm__btn {
            margin: 40px 0 0 auto;
        }
    }
}

/*============================
   menu
============================*/

.menu {
    padding: 60px 0 0;
    color: #fff;
}

.menu__top {
    width: 100%;
    min-width: 767px;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.menu__ttl {
    width: fit-content;
    margin: 0 auto 30px;
    padding-bottom: .5em;
    border-bottom: double 4px #fff;

    & img {
        width: 40px;
        margin: 0 auto 10px;
    }
}

.menu__txt {
    z-index: 9;
}

.menu__img {
    width: fit-content;
    margin: 0 auto 50px;

    &:last-child {
        margin-bottom: 0;
    }

    .yuge {
        width: calc((544/519)*100%);
        position: absolute;
        top: 10%;
        left: 50%;
        transform: translate(-50%, -50%);
        mix-blend-mode: screen;
    }

    &:nth-child(2) {
        .yuge {
            width: calc((573/504)*100%);
        }
    }

    &:nth-child(3) {
        .yuge {
            width: calc((673/508)*100%);
        }
    }
}

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

    .menu {
        padding: 80px 0 0;
    }

    .menu__top {
        width: 100%;
        min-width: 1024px;
        top: 0;
    }

    .menu__ttl {
        margin: 0 auto 40px;

        & img {
            width: 40px;
            margin: 0 auto 10px;
        }
    }

    .menu__txt {
        text-align: center;
    }

    .menu__img {
        width: fit-content;
        max-width: 32%;
        margin: 0;


    }
}

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

    .menu__top {
        width: 100%;
        min-width: 1920 px;
    }

    .menu__ttl {
        margin: 0 auto 60px;
        border-width: 5px;

        & img {
            width: 66px;
            margin: 0 auto;
        }
    }

    .menu__txt {
        max-width: 52em;
        margin: 0 auto 100px;
    }

    .menu__img {
        width: fit-content;
        max-width: 32%;
        margin: 0;


    }
}


/*============================
   enjoy
============================*/
.enjoy {
    padding: 100px 0 60px;
    /* background: url(../images/enjoy_bg.png) no-repeat center top/cover; */
    color: #fff;
}

.enjoy__obj {
    width: calc((1152/1920)*100%);
    top: 0;
    right: 0;
    transform: translate(0, -50%);
    pointer-events: none;
}

.enjoy__bg {
    width: 100%;
    min-width: 1280px;
    top: 0;
    left: 50%;
    transform: translate(-50%);
    z-index: -1;
    pointer-events: none;
}

.enjoy__ttl {
    & img {
        max-width: 224px;
        width: 100px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

.enjoy__items {
    align-items: flex-start;
}

.enjoy__atc {
    margin: 0 auto 70px;
    max-width: 400px;
    position: relative;

    &:last-child {
        margin-bottom: 0;
    }
}

.enjoy__img .pop {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%) scale(.75);
}

.enjoy__menu {
    margin: 1em 0;
}

.enjoy__price {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

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

    .enjoy__obj {
        width: calc((1152/1920)*100%);
        top: 0;
        right: 0;
    }

    .enjoy__bg {
        width: 100%;
        min-width: 1024px;
        top: 0;
        left: 50%;
    }

    .enjoy__ttl {
        & img {
            max-width: 224px;
            width: 120px;
        }
    }

    .enjoy__lead {
        text-align: center;
    }

    .enjoy__atc {
        margin: 0;
        width: 32%;

    }

    .enjoy__img .pop {
        top: 0;
        left: 50%;
        transform: translate(-50%, -50%) scale(.75);
    }

    .enjoy__menu {
        margin: 1em 0;
        min-height: 3.2em;
    }

    .enjoy__price {
        display: flex;
        align-items: flex-end;
        justify-content: flex-end;
    }
}

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

    .enjoy__obj {
        width: calc((1152/1920)*100%);
        top: 0;
        right: 0;
    }

    .enjoy__bg {
        width: 100%;
        min-width: 1920px;
        top: 0;
        left: 50%;
    }

    .enjoy__ttl {
        & img {
            max-width: 224px;
            width: 224px;
        }
    }

    .enjoy__atc {
        width: 32%;

    }

    .enjoy__img .pop {
        top: 0;
        left: 50%;
        transform: translate(-50%, -50%) scale(1);
    }

    .enjoy__menu {
        margin: 1em 0;
        min-height: 3.2em;
    }

    .enjoy__price {
        display: flex;
        align-items: flex-end;
        justify-content: flex-end;
    }
}


/*============================
   scene
============================*/

.scene {
    padding: 60px 0;

    &::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background: url(../images/commit_bg.png);
        z-index: -1;
        top: 0;
        left: 0;
    }
}

.scene__obj {
    width: calc((1100/1920)*100%);
    right: 0;
    top: 0;
}

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

.scene__ttl {
    margin-bottom: 20px;
    width: fit-content;
    padding-bottom: .5em;
    border-bottom: double 4px #be1e00;
}

.scene__right {
    margin-bottom: 30px;
}

.scene__img {
    width: fit-content;
    margin: 0 auto 30px;
}

@media screen and (min-width:768px) {
    .scene {
        margin-top: -120px;
        padding: 150px 0 80px;

        &::before {
            content: "";
            position: absolute;
            width: 100%;
            height: 100%;
            background: url(../images/commit_bg.png);
            z-index: -2;
            top: 0;
            left: 0;
        }
    }

    .scene__obj {
        width: calc((1100/1920)*100%);
        right: 0;
        top: 0;
    }

    .scene__flex {
        display: flex;
        flex-direction: row;
    }

    .scene__left {
        width: 60%;
    }

    .scene__right {
        width: 35%;

        margin-bottom: 0;
    }

    .scene__txtwrap {
        display: flex;
        flex-direction: row-reverse;
    }

    .scene__ttl {
        margin: 0 0 0 .5em;
        -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
        font-feature-settings: initial;
        padding: 0 .5em 1em 0;
        border: none;
        height: fit-content;

        border-right: double 3px #be1e00;
    }

    .scene__txt {
        -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
        font-feature-settings: initial;
        margin-top: 2em;
    }

    .scene__img {
        width: fit-content;
        margin: 0 auto 30px;
    }
}

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

    }

    .scene__obj {
        top: 10%;
    }


    .scene__left {
        width: 60%;
        margin-top: 10%;
    }

    .scene__right {
        width: 35%;

        margin-bottom: 0;
    }

    .scene__txtwrap {
        max-width: 370px;
    }

    .scene__ttl {
        margin: 0 0 0 .5em;
        border-width: 5px;
    }

    .scene__txt {
        margin-top: 4em;
    }

    .scene__img {
        margin: 0 auto 50px;
    }
}


/*============================
   infomation
============================*/

.infomation {
    padding: 60px 0;
    color: #fff;
}

.info__top {
    width: 100%;
    min-width: 767px;
    top: 0;
    left: 50%;
    transform: translate(-50%);
}

.info__flex {
    padding: 20px 5%;
    position: relative;
    background: rgba(0, 0, 0, .8);
}

.info__left {
    margin-bottom: 30px;
}

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

    & img {
        max-width: 55px;
        width: 40px;
        margin-right: .5em;
    }
}

.info__li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2em;
    color: #fff;
    & a{
        color: #fff;
    }

}

.finfo__th {
    width: 7em;
    padding-left: 2em;
    position: relative;
    white-space: nowrap;
}

.finfo__td {
    width: calc(100% - 7em);
    padding-left: 2em;
    position: relative;
    font-weight: 300;
}

.finfo__th::before {
    content: "";
    position: absolute;
    width: 1.5em;
    height: 1px;
    background-color: #be1e00;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
}

.info__img {
    max-width: 600px;
    margin: 0 auto 20px;
}

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

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

    .infomation {
        padding: 80px 0;
    }
    .info__top {
        min-width: 1024px;
    }
    .info__flex {
        padding: 30px 5%;
    }
    .info__left {
        margin-bottom: 0;
        width: 48%;
    }

    .info__right {
        width: 48%;
    }

    .info__ttl {

        & img {
            max-width: 55px;
            width: 40px;
            margin-right: .5em;
        }
    }

    .info__li {
        margin-bottom: 2em;

    }

    .finfo__th {
        width: 7em;
        padding-left: 2em;
    }

    .finfo__td {
        width: calc(100% - 7em);
        padding-left: 2em;
    }

    .finfo__th::before {
        width: 1.5em;
        left: 0;
    }

    .info__img {
        margin: 0 0 20px;
    }

    .infomation iframe {
        height: 200px;
    }
}

@media screen and (min-width:1025px) {
    .infomation {
        padding: 150px 0 120px;
    }
    .info__top {
        min-width: 1920px;
    }
    .info__flex {
        padding: 80px 5% 30px;
    }
    .info__left {
        margin-bottom: 0;
        width: 48%;
    }

    .info__right {
        width: 48%;
    }

    .info__ttl {

        & img {
            max-width: 55px;
            width: 55px;
            margin-right: .5em;
        }
    }

    .info__li {
        margin-bottom: 3em;

    }

    .finfo__th {
        width: 8em;
        padding-left: 3em;
    }

    .finfo__td {
        width: calc(100% - 8em);
        padding-left: 2em;
    }

    .finfo__th::before {
        width: 2.5em;
        left: 0;
    }

    .info__img {
        margin: 0 0 20px;
    }

    .infomation iframe {
        height: 280px;
    }
}