@charset "UTF-8";

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

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

    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;

    &::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 10px;
        background: url(../images/kv_bd.png);
        bottom: 0;
        left: 50%;
        transform: translate(-50%);
        z-index: 99;
    }
}

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

.kv__imgwrap {
    position: relative;
}

.kv__img {
    width: 100%;

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


.kv__copy {
    max-width: 400px;
    max-width: 200px;
    width: calc((400/1920)*250%);
    z-index: 99;
    white-space: nowrap;
    position: absolute;
    top: 50%;
    left: 42%;
    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: 60px;

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

    .kv__copy {
        max-width: 400px;
        width: calc((400/1920)*100%);
        top: 50%;
        left: 45%;

    }



}



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

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

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



}

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

}

.news__ttl {
    margin-bottom: 20px;

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

.news__atc {

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

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


.news__date {
    white-space: nowrap;
}

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

}

.news__btn {
    width: fit-content;
    margin: 1em 0 0 auto;
    display: block;
    text-decoration: underline;
    white-space: nowrap;
    color: #fff;
}

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

    }

    .news__ttl {
        margin: 0;
        display: flex;
        flex-direction: row-reverse;
        justify-content: flex-start;

        .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: 85%;
    }

    .news__atc {

        & a {
            display: flex;
            padding: 1em 0;
            border-bottom: dashed 1.5px #fff;
        }
    }

    .news__atc--ttl {
        margin: 0 0 0 2em;

    }

    .news__btn {
        margin: 0 0 0 auto;
    }


}

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

    }

    .news__ttl {

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

    .news__atcwrap {
        width: 85%;
    }

    .news__atc {

        & a {
            border-bottom: dashed 1.5px #fff;
        }
    }

    .news__atc--ttl {
        margin: 0 0 0 2em;

    }

    .news__btn {
        margin: 0 0 0 auto;
    }


}

/*============================
   about
============================*/
.about {
    padding: 60px 0 120px;
    background: url(../images/about_bg.jpg) no-repeat center center/cover;

    &::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 10px;
        background: url(../images/kv_bd.png);
        bottom: 5px;
        left: 50%;
        transform: translate(-50%);
        z-index: 99;
    }
}

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

.about__obj {
    max-width: 430px;
    width: calc((430/800)*100%);
    bottom: -100px;
    right: -5%;
}

.about__ttl {
    width: fit-content;
    margin-bottom: 20px;
    max-width: 350px;
}

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

    .about__img {
        width: 50%;
        margin: 0 0 0 -3%;
    }

    .about__right {
        width: 50%;
    }

    .about__obj {
        width: calc((430/800)*100%);
        bottom: -100px;
        right: -5%;
    }

    .about__ttl {

        margin-bottom: 20px;
        max-width: 350px;
    }
}

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

    .about__img {
        width: 50%;
        margin: 0 0 0 -3%;
    }

    .about__right {
        width: 50%;
    }

    .about__obj {
        width: calc((430/800)*100%);
        bottom: 0;
        right: auto;
        left: 450px;
    }

    .about__ttl {

        margin-bottom: 20px;
        max-width: 682px;
    }
}


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

.comm_obj01 {
    max-width: 735px;
    width: calc((735/1920)*100%);
    right: 0;
    bottom: 0;
    mix-blend-mode: multiply;
}

.comm_obj02 {
    max-width: 278px;
    width: calc((278/1920)*100%);
    top: 90%;
    left: 75%;
    transform: translate(-50%, -50%);
    mix-blend-mode: color-burn;
}

.comm__ttl {
    max-width: 923px;
    max-width: 400px;
    margin: 0 auto 30px;
    position: relative;

    .obj {
        max-width: 567px;
        width: calc((567/923)*100%);
        top: 50%;
        left: 15%;
        transform: translate(-50%, -50%);
    }
}

.comm__txt {
    padding: 1.5em;
    background: rgba(17, 68, 47, .6);
    color: #fff;
}

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

    .comm_obj01 {
        width: calc((735/1920)*100%);
        right: 0;
        bottom: 0;
    }

    .comm_obj02 {
        width: calc((278/1920)*100%);
        top: 90%;
        left: 75%;
    }

    .comm__txtwrap {
        width: 75%;
        margin: 0 0 0 auto;
    }

    .comm__ttl {
        max-width: 923px;
        max-width: 450px;
        margin: 0 0 30px;

        .obj {
            width: calc((567/923)*100%);
            top: 50%;
            left: 15%;
        }
    }

    .comm__txt {
        padding: 1.5em;
        width: 100%;
        -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
        font-feature-settings: initial;
        max-height: 23em;

        .txt {
            position: relative;
        }
    }

}

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

    .comm_obj01 {
        width: calc((735/1920)*100%);
        right: 0;
        bottom: 0;
    }

    .comm_obj02 {
        width: calc((278/1920)*100%);
        top: 90%;
        left: 75%;
    }

    .comm__txtwrap {
        width: 75%;
        max-width: 1116pz;
        margin: 0 0 0 auto;
    }

    .comm__ttl {
        max-width: 923px;
        margin: 0 0 100px;

        .obj {
            width: calc((567/923)*100%);
            top: 75%;
            left: 15%;
        }
    }

    .comm__txt {
        padding: 1.5em;
        display: flex;
        justify-content: center;

        .txt {
            margin: 0 auto;
            width: fit-content;
            display: block;
            line-height: 2;
        }
    }
}

/*============================
   menu
============================*/
.menu {
    padding: 60px 0;
    overflow: hidden;
    background: url(../images/menu_bg.png) no-repeat center center/cover;
}

.menu__obj {
    max-width: 644px;
    width: calc((644/1920)*100%);
    left: 0;
    top: 50px;
    transform: translate(0, -50%);
    mix-blend-mode: color-burn;
}

.menu__ttl {
    position: relative;
    max-width: 400px;

    margin: 0 auto 20px;
}

.menu__item {
    max-width: 400px;
    display: block;
    margin: 0 auto 20px;
    filter: drop-shadow(10px 10px 50px rgba(49, 38, 27, .2));

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

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

    .menu__obj {
        width: calc((644/1920)*100%);
        left: 0;
        top: 50px;
    }

    .menu__ttl {
        width: 65%;
        max-width: 912px;

        margin: 0 0 20px;
    }

    .menu__item {
        max-width: none;
        margin: 0;

        &:last-child {
            margin: -50px 0 0;
        }
    }
}

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

        .inner__large {
            max-width: 1400px;
        }
    }

    .menu__obj {
        width: calc((644/1920)*100%);
        left: 0;
        top: 200px;
    }

    .menu__ttl {
        width: 65%;
        max-width: 912px;

        margin: 0 0 20px;
    }

    .menu__item {

        &:last-child {
            margin: -150px 0 0;
        }
    }
}

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

.scene__box {
    background: #f6f3ec;
}

.scene__right {
    display: flex;
    justify-content: space-between;
}

.scene__txtwrap {
    padding: 40px 5% 30px;
}


.scene__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 60px;
    min-width: 40px;
    background: url(../images/scene_btn_bg.png) no-repeat center center/cover;
    color: #fff;

    & img {
        display: block;
        width: 14px;
        margin: 0 auto 2em;
    }

    &:hover {
        color: #fff;
    }
}

.scene__obj {
    max-width: 338px;
    max-width: 200px;
    width: calc((338/600)*80%);
    top: 0;
    left: 75%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.scene__ttl {
    max-width: 240px;
    display: block;
    margin-bottom: 10px;
}

.scene__copy {
    max-width: 300px;
    margin-bottom: 10px;
}

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

    .scene__img {
        width: 52%;

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

    .scene__right {
        width: 48%;
    }

    .scene__txtwrap {
        padding: 50px 5% 50px;
    }


    .scene__btn {
        width: 70px;
        min-width: 50px;

        & img {
            display: block;
            width: 20px;
            margin: 0 auto 2em;
        }
    }

    .scene__obj {
        max-width: 338px;
        width: calc((338/600)*100%);
        top: 10%;
        left: 75%;
        transform: translate(-50%, -50%);
    }

    .scene__ttl {
        width: 90%;
        max-width: 540px;
        margin: 0 0 10px -80px;
    }

    .scene__copy {
        max-width: 576px;
        width: 95%;
        margin: 0 0 10px -80px;
    }

}

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

    .scene__img {
        width: 60%;
        margin-left: -5%;
    }

    .scene__right {
        width: 45%;
    }

    .scene__txtwrap {
        padding: 120px 5% 80px;
    }


    .scene__btn {
        width: 120px;
        min-width: 120px;

        & img {
            width: 23px;
            margin: 0 auto 2em;
        }
    }

    .scene__obj {
        width: calc((338/600)*100%);
        top: 10%;
        left: 75%;
    }

    .scene__ttl {
        max-width: 540px;
        margin: 0 0 20px -120px;
    }

    .scene__copy {
        width: 95%;
        margin: 0 0 20px -120px;
    }

}

/*============================
   info
============================*/
.info {
    padding: 60px 0;
    background: url(../images/info_bg.jpg) no-repeat center center/cover;
    color: #fff;
}

.info__box {
    padding: 30px 5%;
    background: rgba(17, 68, 47, .8);
    margin-bottom: 30px;
}

.info__ttl {
    padding-left: 1.5em;
    position: relative;

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

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

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

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

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

.info__td {
    width: calc(100% - 5em);
    color: #fff;
}

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

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

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

    .info__box {
        padding: 40px 5%;
        width: 48%;
        margin-bottom: 0;
    }

    .info__ttl {
        padding-left: 1.5em;

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

    .info__li {
        margin-bottom: 2em;
    }

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

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

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

    .info__img {
        margin: 0 auto 30px;
    }

    .info__right {
        width: 48%;

        & iframe {
            height: 220px;
        }
    }

}

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

    }

    .info__box {
        padding: 60px 5%;
        width: 50%;
        margin-bottom: 0;
    }

    .info__ttl {
        padding-left: 1.5em;

    }

    .info__li {
        margin-bottom: 2em;
    }

    .info__th {
        padding-left: 2em;
        width: 9em;

    }

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

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

    .info__right {
        width: 45%;
        max-width: 550px;

        & iframe {
            height: 300px;
        }
    }

}