@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: 30px 0 0;
    background:
        url(../images/kv_bg.png) no-repeat center top/100%;

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

    }


}

.kv__swiper {
    width: 95%;
    margin: 0 auto;
}

.kv__img {
    position: relative;

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



.kv__copy {
    max-width: 707px;
    width: 80%;
    z-index: 99;
    white-space: nowrap;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.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: 30px 0 0;
    }

    .kv__swiper {
        width: 91.14%;
        margin: 0 auto;
    }



    .kv__copy {
        max-width: 707px;
        width: calc((707/1920)*100%);

        top: 50%;
        left: 50%;
    }


}



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

    .kv {
        margin-top: 0;
        padding: 100px 0 0;
    }

    .kv__swiper {
        width: 91.14%;
        margin: 0 auto;
    }



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

}



/*============================
   news
============================*/
.news {
    margin: -20px auto 0;
}

.news__box {
    padding: 20px 5%;
    margin: 0 0 0 auto;
    max-width: 1300px;
    background: rgba(0, 0, 0, .7);
    position: relative;
    z-index: 1;
    color: #fff;
}


.news__ttl {
    margin-bottom: .5em;
}


.news__atc {
    display: block;
    margin-bottom: 1em;
    width: 100%;

    & a {
        color: #fff;
        width: 100%;
        display: block;
        align-items: center;
    }

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

.news__date {
    white-space: nowrap;
}

.news__atc--ttl {

    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;

}

.news__btn {
    display: block;
    max-width: 76px;
    width: 60px;
    margin: 1em 0 0 auto;
}

@media screen and (min-width:768px) {
    .news {
        margin: 0;
        width: 100%;
        position: absolute;
        bottom: 0;
        right: 0;
    }

    .news__box {
        width: 90%;
        padding: 20px 5%;
        margin: 0 0 0 auto;
        max-width: 1300px;
    }


    .news__ttl {
        margin-bottom: 0;
    }

    .news__atcwrap {
        max-width: calc(100% - 180px);
        flex: 0 1 auto;
    }

    .news__atc {
        width: 100%;

        padding: 0 1em;


        & a {

            display: flex;
            align-items: center;
        }

    }


    .news__atc--ttl {
        padding-left: 1em;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;

    }

    .news__btn {
        max-width: 76px;
        width: 60px;
        margin: 0;
    }

}

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

        bottom: 0;
        right: 0;
    }

    .news__box {
        width: 70%;
        padding: 20px 3%;
        margin: 0 0 0 auto;
    }


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


    .news__btn {
        max-width: 76px;
        width: 76px;
    }

}

/*============================
   concept
============================*/


.conc__btm {

    padding: 30px 0 60px;

    &::before {
        content: "";
        position: absolute;
        width: 100%;
        height: calc(100% + 200px);
        left: 0;
        bottom: 0;
        z-index: -1;
        background: url(../images/conc_bg.png) no-repeat 80% center/cover;
    }
}

.conc__obj02 {
    max-width: 624px;
    width: calc((624/1920)*100%);
    top: 80px;
    left: -10%;
    z-index: 1;
    pointer-events: none;
}

.conc__copy {
    max-width: 470px;
    width: calc((470/1380)*100%);
    left: 55%;
    top: 100px;
    transform: translate(-50%, -50%);
}

.conc__txtbox {
    width: 90%;
    padding: 20px 5%;
    background: rgba(0, 0, 0, .7);
    margin: -30px auto 0;
    color: #fff;
    position: relative;
}

.conc__ttl {
    margin-bottom: 20px;

    .fs-22 {
        display: block;
    }

    .fs-50 {
        display: block;
    }
}


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

    .conc__btm {

        padding: 60px 0;

        &::before {
            width: 100%;
            height: calc(100% + 250px);
            left: 50%;
            transform: translate(-50%);
        }
    }

    .conc__obj02 {
        width: calc((624/1920)*100%);
        top: auto;
        bottom: 0;
        left: -10%;
    }

    .conc__box {
        width: 85%;
        max-width: 1378px;
        margin: 0 0 0 auto;
    }

    .conc__copy {
        width: calc((470 / 1380) * 70%);
        top: 10%;
        left: 87%;
        transform: translate(-50%, -50%);
    }

    .conc__txtbox {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 70%;
        max-width: 740px;
        padding: 20px 2em;
        margin: 0;
    }

    .conc__ttl {
        margin-bottom: 10px;

    }

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

    .conc__copy {
        width: calc((470/1380)*100%);
        top: 23%;
    left: 87%;
        transform: translate(-50%, -50%);
    }
  }
@media screen and (min-width:1025px) {


    .conc__btm {

        padding: 120px 0 80px;

        &::before {

            width: 100%;
            height: calc(100% + 350px);
        }
    }

    .conc__obj02 {
        width: calc((624/1920)*100%);
        bottom: 0;
        left: 0;
    }

    .conc__box {
        width: 80%;
        margin: 0 0 0 auto;
    }

    .conc__copy {
        width: calc((470/1380)*100%);
        left: 95%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .conc__txtbox {
        left: 50%;
        top: 50%;
        width: 70%;
        padding: 30px 8% 30px 5%;
    }

    .conc__ttl {
        margin-bottom: 10px;

        .fs-50 {
            white-space: nowrap;
            font-size: min(5rem, 3vw);
        }
    }

    .conc__btn02 {
        width: 400px;
        height: 95px;
        font-size: 1.8rem;
        padding-bottom: .5em;
    }
}

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

.comm__box {
    padding: 30px 5% 60px;
    border: solid 1px #fff;
    color: #fff;
}

.comm__ttl {
    margin-bottom: 20px;

    .fs-30 {
        width: fit-content;
        border: solid 1px #fff;
        padding: .25em .5em;
        margin-bottom: .5em;
    }

    .fs-38 {
        line-height: 2;
        white-space: normal;
        font-size: 1.8rem;
    }
}

.comm__txt {
    padding: 1em;
    background: rgba(0, 0, 0, .4);
}

.comm__btn {
    position: absolute;
    left: 5%;
    bottom: -20px;
}

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

    .comm__box {
        padding: 40px 5% 80px;
    }

    .comm__ttl {
        margin-bottom: 20px;

        .fs-30 {
            padding: .25em .5em;
            margin-bottom: .5em;
        }

        .fs-38 {

            font-size: 2.6rem;
        }
    }

    .comm__txt {
        padding: 1.5em;
    }

    .comm__btn {
        left: 5%;
        bottom: -20px;
    }

}

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

    .comm__box {
        padding: 100px 5%;
        max-width: 1600px;
        margin: 0 0 0 auto;
        display: flex;
        flex-direction: row-reverse;
    }

    .comm__ttl {
        margin: 0 0 0 5%;
        display: flex;
        flex-direction: row-reverse;

        .fs-30 {
            padding: .25em .5em;
            margin: 0 0 0;
            height: fit-content;
            -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
            font-feature-settings: initial;
        }

        .fs-38 {
            -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
            font-feature-settings: initial;
            font-size: 3.8rem;
        }
    }

    .comm__txt {
        padding: 3em 2em;
        max-height: 520px;
        line-height: 2;
        -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
        font-feature-settings: initial;
    }

    .comm__btn {
        left: 5%;
        bottom: -30px;
    }

}

/*============================
   menu
============================*/
.menu__top {
    &::before {
        content: "";
        position: absolute;
        width: 100%;
        height: calc(100% - 100px);
        background: url(../images/menu_bg01.jpg) no-repeat center center/cover;
        top: 0;
        left: 0;
        z-index: -1;
    }
}

.menu__obj {
    width: calc((984/1920)*150%);
    margin: 0 auto 20px;
    display: block;
}

.menu__h2 {
    color: #fff;

    .fs-24 {
        display: flex;
        align-items: flex-end;
        justify-content: center;
        margin-bottom: 1em;
        font-size: 1.4rem;
    }

    & img {
        max-width: 66px;
        width: 20px;
    }

    .txt {
        padding: 0 .5em;
    }
      .txt em {
        padding: 0 .5em;
        display: block;
        font-style: normal;
                margin-bottom: -5px;
    }

    .fs-70 {
        font-size: 2rem;
    }
}

.gallery__swiper {
    overflow: visible;
}

.gallery__swiper .swiper-wrapper {
    transition-timing-function: linear;
}

.menu__copy {
    width: calc((435/1920)*200%);
    left: 0%;
    top: 0;
    transform: translate(0, -50%);
    z-index: 9;
}

.gallery__img {
    max-width: 480px;
    width: 300px;
    margin: 0 10px;
}

.menu__btm {
    padding: 0 0 60px;

    &::before {
        content: "";
        position: absolute;
        width: 100%;
        height: calc(100% + 100px);
        background: url(../images/menu_bg02.jpg) no-repeat center center/cover;
        bottom: 0;
        left: 0;
        z-index: -1;
    }
}

.menu__atc {
    position: relative;
    margin-bottom: 80px;
}

.menu__box {
    position: relative;
    color: #fff;
    padding: 5% 10%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu__box--bg {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.menu__box--inner {
    position: relative;
}

.menu__h3 {
    .font-en {
        margin-bottom: 1em;
    }

    .fs-45 {
        font-size: 2rem;

    }

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

.menu__btn {
    margin: 0 auto 15px;

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

@media screen and (min-width:768px) {
    .menu__top {
        &::before {
            height: calc(100% - 100px);
        }
    }

    .menu__obj {
        width: calc((984/1920)*100%);
        margin: 0 auto 20px;
    }

    .menu__h2 {

        .fs-24 {
            margin-bottom: 1em;
            font-size: 1.8rem;
            align-items: center;
        }

        & img {
            max-width: 66px;
            width: 30px;
        }

        .txt {
            padding: 0 .5em;
        }
              .txt em {
        padding: 0 .5em;
        display: inline;
        font-style: normal;
    }

        .fs-70 {
            font-size: 3rem;
        }
    }



    .menu__copy {
        width: calc((435/1920)*100%);
        left: 0%;
        top: 0;
    }

    .gallery__img {
        max-width: 480px;
        width: 300px;
        margin: 0 20px;
    }

    .menu__btm {
        padding: 0 0 80px;

        &::before {
            height: calc(100% + 100px);
        }
    }

    .menu__atc {
        width: 100%;
        margin-bottom: 0;

    }

    .menu__img {
        width: 60%;
        max-width: 800px;
    }

    .menu__box {
        position: absolute;
        padding: 5% 7%;
        width: 50%;
        max-width: 544px;
        top: 50%;
        right: 0;
        transform: translate(0, -50%);
    }

    .menu__box--bg {
        width: 100%;
    }

    .menu__h3 {
        .font-en {
            margin-bottom: 1em;
        }

        .fs-45 {
            font-size: 3rem;

        }

        & img {

            width: 90%;
        }
    }

    .menu__atc:nth-child(2) {
        .menu__img {
            margin: 0 0 0 auto;
        }

        .menu__box {
            top: 50%;
            right: auto;
            left: 0;
        }

    }

    .menu__btn {
        margin: 0 2%;

    }


}

@media screen and (min-width:1025px) {
    .menu__top {
        &::before {
            height: calc(100% - 200px);
        }
    }

    .menu__obj {
        width: calc((984/1920)*100%);
        margin: 0 auto 20px;
    }

    .menu__h2 {

        .fs-24 {
            margin-bottom: 1em;
            font-size: 2.4rem;
            align-items: center;
        }

        & img {
            max-width: 66px;
            width: 66px;
        }

        .txt {
            padding: 0 .5em;
        }

        .fs-70 {
            font-size: 7rem;
        }
    }



    .menu__copy {
        width: calc((435/1920)*100%);
        left: 0%;
        top: 0;
    }

    .gallery__img {
        max-width: 480px;
        width: 480px;
        margin: 0 20px;
    }

    .menu__btm {
        padding: 0 0 100px;

        &::before {
            height: calc(100% + 200px);
        }
    }

    .menu__atc {
        width: 60%;
        margin-bottom: 0;

    }

    .menu__img {
        width: 75%;
        max-width: 800px;
    }

    .menu__box {
        position: absolute;
        padding: 5% 7%;
        width: 50%;
        max-width: 544px;
        top: 60%;
        right: 0;
        transform: translate(0, -50%);
    }

    .menu__box--bg {
        width: 100%;
    }

    .menu__h3 {
        .font-en {
            margin-bottom: 1em;
        }

        .fs-45 {
            font-size: min(4.5rem, 3vw);

        }

        & img {

            width: 90%;
        }
    }

    .menu__atc:nth-child(2) {
        width: 38%;
        margin: 100px 0 0;

        .menu__img {
            width: 100%;
            max-width: 665px;
            margin: 0 0 0 auto;
        }

        .menu__box {
            width: 90%;
            top: 100%;
            right: auto;
            left: 50%;
            transform: translate(-50%, -50%);
        }

    }

    .menu__atc:nth-child(3) {
        width: 70%;
        margin: 100px 0 0;

        .menu__img {
            width: 100%;
            max-width: 790px;
            margin: 0 0 0 auto;
        }

        .menu__box {
            width: 50%;
            top: 45%;
            left: 35%;
            transform: translate(-50%, -50%);
        }

    }

    .menu__btn {
        margin: 0 2%;

    }


}

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

.infomation {
    &::before {
        content: "";
        position: absolute;
        width: 100%;
        height: calc(100% - 30px);
        background:
            url(../images/info_btm.png) no-repeat center bottom/100%,
            url(../images/info_bg.png) no-repeat center center/cover;
        top: 0;
        left: 0;
        z-index: -1;
    }
}

.scene__top {
    & img {
        width: 100%;
    }
}

.scene__ttl {
    width: 30%;
    margin: -60px auto 20px;

}

.info__main {
    padding: 40px 0 0;
}

.info__obj {
    width: calc((289/1920)*100%);
    top: 30px;
    left: 1%;
    transform: translate(0, -50%);
}

.info__ttl {

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

.info__li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1em;
}

.info__th {
    white-space: nowrap;
    width: 6em;
}

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

}

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

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

@media screen and (min-width:768px) {
    .infomation {
        &::before {
            height: calc(100% - 30px);
        }
    }

    .scene__flex {
        margin-top: -150px;
        align-items: center;
    }

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

        & img {
            max-width: 326px;
            display: block;
            width: 60%;
            margin: 0 0 0 auto;
        }
    }

    .scene__img {
        width: 60%;
    }

    .info__main {
        padding: 0;
    }

    .info__obj {
        width: calc((289/1920)*100%);
        top: 0;
        left: 1%;
        transform: translate(0, -50%);
    }

    .info__left {
        width: 47%;
    }

    .info__li {
        margin-bottom: 1em;
    }

    .info__th {
        width: 6em;
    }

    .info__right {
        width: 50%;
    }

    .infomation iframe {

        height: 300px;

    }

    .info__img {
        margin: 0;
        width: 32.5%;

    }
}

@media screen and (min-width:1025px) {
    .infomation {
        &::before {
            height: calc(100% - 40px);
        }
    }

    .scene__flex {
        align-items: center;
        margin-top: -250px;
    }

    .scene__ttl {

        width: 38%;
        margin: 0;

        & img {

            display: block;
            width: 60%;
            margin: 0 0 0 auto;
        }
    }

    .scene__img {
        width: 60%;
    }

    .info__obj {
        width: calc((289/1920)*100%);
        top: 0;
        left: 1%;
        transform: translate(0, -50%);
    }

    .info__left {
        width: 45%;
    }

    .info__li {
        margin-bottom: 1em;
    }

    .info__th {
        width: 6em;
    }

    .info__right {
        width: 50%;
    }

    .infomation iframe {
        height: 300px;

    }

    .info__img {
        margin: 0;
        width: 32.5%;

    }
}