@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;

    &::before {
        content: "";
        position: absolute;
        width: 80%;
        height: 105%;
        background-color: #eae5e4;
        top: 0;
        right: 0;

    }
}

.kv__items {
    display: flex;
    flex-wrap: wrap;
}

.kv__item {
    width: 50%;
    position: relative;

    & a {
        position: relative;
        display: block;
        width: 100%;
        height: 100%;

        &::before {
            content: "";
            position: absolute;
            width: 90%;
            height: 90%;
            border: solid 1px #b5b5b5;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 99;
            transition: .3s;

        }


        &:hover {
            opacity: 1;

            .kv__img {
                &::before {
                    opacity: 0;
                }


            }

            .kv__ttl {
                color: #797976;
            }

            .kv__btn {
                background: #bda791;
                border-color: #bda791;
            }

        }
    }
}

.kv__img {
    position: relative;
    z-index: 9;

    &::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, .3);
        top: 0;
        left: 0;
        transition: .3s;
        z-index: 99;
    }

    & img {
        width: 100%;
    }
}

.kv__txtwrap {
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 99;
    width: 100%;
    position: absolute;
}

.kv__ttl {
    color: #fff;

    .font-en {
        font-size: min(3rem, 6vw);
    }

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

.kv__btn {
    width: 180px;
    max-width: 80%;
    height: 30px;
    white-space: nowrap;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: solid 1px #fff;
    margin: 0 auto;
    font-size: 1.2rem;

    & img {
        width: 40px;
        margin-left: 1em;
    }
}

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


.kv__scroll {
    max-width: 12px;
    min-width: 8px;
    width: calc((12/1092)*100%);
    position: absolute;
    display: none;
    z-index: 9;
}



@keyframes copyAnime {
    0% {
        opacity: 0;
        transform: translate(-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 10s linear 0s 1 normal both;
}

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

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


.kv .swiper-pagination {
    left: 5%;
    bottom: -30px;
    z-index: 99;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
}


.kv .swiper-pagination-bullet {
    display: block;
    margin: 0 10px !important;
    background: #666666;
    opacity: 1;
    width: 10px;
    height: 10px;
    border-radius: 50% !important;
    line-height: 1;
    transition: .3s ease-out;
    position: relative;
    opacity: .5;
}

.kv .swiper-pagination-bullet-active {
    opacity: 1;

    background: #666666;
}



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


    .kv {
        margin-top: 62px;

        &::before {
            width: 80%;
            height: 105%;
        }
    }

    .kv__items {
        display: flex;
        flex-wrap: nowrap;
    }

    .kv__item {
        width: 25%;

        & a {

            &::before {
                width: 90%;
                height: 100%;
                top: 55%;
                left: 50%;
            }

        }
    }

    .kv__img {

        &::before {
            background-color: rgba(0, 0, 0, .5);
        }
    }

    .kv__txtwrap {
        top: 45%;
        left: 50%;
    }

    .kv__ttl {

        .font-en {
            font-size: min(3rem, 3vw);
        }
    }

    .kv__btn {
        width: 180px;
        max-width: 80%;
        height: 30px;
        font-size: 1.2rem;

        & img {
            width: 40px;
            margin-left: 1em;
        }
    }

}


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


    .kv {
        margin-top: 180px;

        &::before {
            width: 80%;
            height: 110%;
        }
    }

    .kv__item {
        width: 25%;
        max-width: 480px;

        & a {

            &::before {
                width: 90%;
                height: 100%;
                top: 53%;
                left: 50%;
            }

        }
    }

    .kv__img {

        &::before {
            background-color: rgba(0, 0, 0, .5);
        }
    }

    .kv__txtwrap {
        top: 45%;
        left: 50%;
    }

    .kv__ttl {

        .font-en {
            font-size: min(6rem, 3vw);
        }
    }

    .kv__btn {
        width: 250px;
        max-width: 80%;
        height: 50px;
        font-size: 1.6rem;

        & img {
            width: 70px;
            margin-left: 1em;
        }
    }


}

/*============================
   about
============================*/

.about {
    padding: 60px 0 0;
}

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

.about__right {
    margin-bottom: 30px;
}

.about__ttl {
    .txt {
        margin-top: .5em;
    }
}

.about__btn {
    margin: 0 0 0 auto;
}

.about__img {
    display: flex;
    align-items: flex-start;
    margin-left: -5%;

    .copy {
        width: 15%;
    }

    .img {
        width: 85%;
    }
}

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

    .about {
        padding: 80px 0 0;
    }

    .about__flex {
        flex-direction: row;
    }

    .about__right {
        width: 45%;
        margin-bottom: 0;
    }

    .about__ttl {
        .txt {
            margin-top: .5em;
        }
    }

    .about__img {
        width: 55%;
        margin-left: -3%;

        .copy {
            width: 15%;
            margin-top: -20px;
        }

        .img {
            width: 85%;
        }
    }

}

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

    .about__right {
        width: 45%;
    }

    .about__txtwrap {
        max-width: 550px;
    }

    .about__img {
        width: 55%;
        margin-left: -3%;

        .copy {
            width: 15%;
            margin-top: -40px;
        }

        .img {
            width: 85%;
        }
    }

}



/*============================
   contents
============================*/
.contents {
    padding: 60px 0 0;
}

.cont__item {
    margin-bottom: 40px;
}

.cont__img {
    width: 90%;
    margin: 0;
}

.cont__box {
    width: 95%;
    margin: -30px 0 0 auto;
    background: #fff;
    padding: 30px 5% 30px 10%;

    &::before {
        content: "";
        position: absolute;
        width: 110%;
        height: 100%;
        border: solid 1px #bda791;
        pointer-events: none;
        top: -10px;
        left: 10px;
    }
}

.cont__copy {
    width: 150px;
    bottom: 10px;
    right: 1%;
}

.cont__ttl {
    .txt {
        margin-top: 1em;
    }

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

.cont__btn {
    z-index: 9;
}

.cont__item:nth-child(2) {
    margin-bottom: 0;

    .cont__img {
        margin: 0 0 0 auto;
    }

    .cont__box {

        margin: -30px auto 0 0;
        padding: 30px 60px 30px 5%;

        &::before {
            top: -10px;
            left: auto;
            right: 10px;
        }
    }

    .cont__copy {
        width: 50px;
        bottom: 10px;
        right: 10px;
    }
}

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

    .cont__item {
        margin-bottom: 60px;
    }

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

    .cont__img {
        width: 65%;
        margin: 0 -15% 0 0;
    }

    .cont__box {
        width: 65%;
        margin: 30px 0 0 -15%;
        padding: 30px 5% 30px 10%;
        position: relative;
        z-index: 9;

        &::before {
            width: 110%;
            height: 100%;
            border: solid 1px #bda791;
            top: -10px;
            left: 10px;
        }
    }

    .cont__copy {
        width: 150px;
        bottom: 10px;
        right: 1%;
    }

    .cont__ttl {
        .font-en {
            &::before {
                width: 1em;
                height: 1px;
                left: -1.2em;
            }
        }
    }

    .cont__item:nth-child(2) {
        .cont__flex {
            flex-direction: row-reverse;

        }

        .cont__img {
            margin: 0 0 0 -15%;
        }

        .cont__box {

            margin: 30px -15% 0 0;
            padding: 30px 60px 30px 5%;

            &::before {
                top: -10px;
                left: auto;
                right: 10px;
            }
        }

        .cont__copy {
            width: 50px;
            bottom: 10px;
            right: 10px;
        }
    }
}

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

    .cont__item {
        max-width: 1920px;
        margin: 0 auto 120px;
    }

    .cont__img {
        width: 65%;
        margin: 30px -15% 0 0;

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

    .cont__box {
        width: 65%;
        margin: 0 0 0 -15%;
        padding: 80px 5% 80px 5%;

        &::before {
            width: 110%;
            height: 100%;
            top: -20px;
            left: 20px;
        }
    }

    .cont__copy {
        width: fit-content;
        bottom: 20px;
        right: 3%;
    }

    .cont__ttl {
        .font-en {
            &::before {
                width: 1em;
                height: 1px;
                left: -1.2em;
            }
        }
    }

    .cont__item:nth-child(2) {

        .cont__img {
            margin: 0 0 0 -15%;


        }

        .cont__box {

            margin: 100px -15% 0 0;
            padding: 80px 120px 80px 10%;

            &::before {
                top: -20px;
                left: auto;
                right: 0px;
            }
        }

        .cont__copy {
            width: fit-content;
            bottom: 20px;
            right: 20px;
        }
    }
}



/*============================
   menu
============================*/
.menu {
    padding: 60px 0 0;
}

.menu__ttl {
    .txt {
        margin-top: .5em;
    }
}

.menu__item {
    width: fit-content;
    margin: 0 auto 30px;
    max-width: 660px;

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

.menu__copy {
    display: none;
}

.menu__h3 {
    top: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    width: 80px;
}

.menu__txt {
    margin: 40px 0 0;
}

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


    .menu__item {
        width: 48%;
        margin: 0;
    }

    .menu__copy {
        display: none;
    }

    .menu__h3 {
        top: 100%;
        left: 50%;
        width: 80px;
    }

    .menu__txt {
        margin: 40px 0 0;
    }
}

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


    .menu__item {
        width: 48%;
        margin: 0;
    }

    .menu__copy {
        display: block;
        left: -120px;
        top: 40%;
        transform: translate(0, -50%);
        width: fit-content;
    }

    .menu__h3 {
        top: 100%;
        left: 50%;
        width: fit-content;
    }

    .menu__txt {
        margin: 60px 0 30px;
        position: relative;
    }
}


/*============================
   gallery
============================*/
.gallery {
    padding: 60px 0 0;
}

.gall__ttl {
    padding-left: 1.5em;

    .txt {
        margin-top: 1em;
    }

    .font-en {

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

.gall__swiper--area {
    padding-bottom: 60px;

    &::before {
        content: "";
        position: absolute;
        width: 110%;
        height: 90%;
        background: #f8f3f0;
        bottom: 0;
        left: 50%;
        transform: translate(-50%);
        z-index: -1;
    }
}

.gall__copy {
    display: none;
}

.gall__swiper {
    overflow: visible;
}

.gall__atc {

    width: 100%;
    max-width: 310px;
    margin: 0 2%;

    & a {
        display: block;
        width: 100%;
        height: 100%;
        background: #fff;
    }
}

.gall__h3 {
    padding: 1em;
    display: flex;
    justify-content: space-between;
    align-items: center;

    .txt {
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        padding-right: 1em;

    }
}

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

}

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

}

.g-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;
}

.g-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;

}

.gallery__btn {
    display: block;
    width: 200px;
    margin: -20px auto 0;
    position: relative;
    z-index: 9;
}

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

    .gall__ttl {
        padding-left: 2em;

        .font-en {

            &::before {
                width: 1em;
                height: 1px;
                left: -1.5em;
                top: 50%;
            }
        }
    }

    .gall__swiper--area {
        padding-bottom: 60px;

        &::before {
            width: 110%;
            height: 90%;
            bottom: 0;
            left: 50%;
        }
    }

    .gall__copy {
        display: none;
    }

    .gall__swiper {
        overflow: hidden;
    }

    .gall__atc {

        width: 23%;
        max-width: 310px;
        margin: 0 1%;

    }

    .gall__h3 {
        padding: 1em;

    }

    .g-swiper-button-prev {
        width: 40px;
        height: 40px;
        left: 0;
        top: 40%;
    }

    .g-swiper-button-next {
        width: 40px;
        height: 40px;
        left: 100%;
        top: 40%;

    }

    .gallery__btn {
        width: 200px;
        margin: -20px auto 0;
    }
}

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

    .gall__ttl {
        padding-left: 2em;

        .font-en {

            &::before {
                width: 1em;
                height: 1px;
                left: -1.5em;
                top: 50%;
            }
        }
    }

    .gall__swiper--area {
        padding-bottom: 100px;

        &::before {
            width: 105%;
            height: 90%;
            bottom: 0;
            left: 50%;
        }
    }

    .gall__copy {
        display: block;
        width: fit-content;
        top: 50%;
        right: -200px;
        transform: translate(0, -50%);
    }


    .gall__atc {

        width: 23%;
        max-width: none;
        margin: 0 1%;

    }

    .gall__img img {
        width: 100%;
    }

    .gall__h3 {
        padding: 1em;

    }

    .g-swiper-button-prev {
        width: 60px;
        height: 60px;
        left: 0;
        top: 40%;
    }

    .g-swiper-button-next {
        width: 60px;
        height: 60px;
        left: 100%;
        top: 40%;

    }

    .gallery__btn {
        width: fit-content;
        margin: -25px auto 0;
    }
}


/*============================
   contents02
============================*/
.contents02 {
    padding: 60px 0;
}

.cont02__item {
    width: fit-content;
    margin: 0 auto 20px;
    display: block;
    box-shadow: 8px 8px 30px rgba(0, 0, 0, .05);

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

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

    .cont02__item {
        width: 48%;
        max-width: 530px;
        margin: 0;
    }
}

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

    .cont02__item {
        width: 48%;
    }
}

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

.infomation {
    padding: 60px 0 0;

    &::before {
        content: "";
        position: absolute;
        width: 95%;
        height: 100px;
        background: #eae5e4;
        left: 0;
        top: 0;
        z-index: -1;
    }
}

.info__box {
    background: #fff;
    padding: 30px 0 30px 5%;
    position: relative;

    &::before {
        content: "";
        position: absolute;
        width: 110%;
        height: 100%;
        border: solid 1px #bda791;
        pointer-events: none;
        top: -10px;
        left: -10px;
    }
}

.info__left {
    margin-bottom: 30px;
}

.info__ttl {

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

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

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

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

.info__img {
    max-width: 398px;
    width: 90%;
    margin: 0 0 0 auto;
}

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

        &::before {
            width: 95%;
            height: 200px;
        }
    }

    .info__box {
        padding: 40px 5% 40px 5%;

        &::before {

            width: 100%;
            height: 100%;
            top: -10px;
            left: -10px;
        }
    }

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

    .info__li {
        margin-bottom: 1em;
    }

    .info__th {
        width: 6em;
    }

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

    .info__img {
        width: 45%;
        margin: 0;
    }
}

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

        &::before {
            width: 95%;
            height: 500px;
        }
    }

    .info__box {
        padding: 100px 5% 60px 5%;

        &::before {

            width: 100%;
            height: 100%;
            top: -20px;
            left: -20px;
        }
    }

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

    .info__li {
        margin-bottom: 2em;
    }

    .info__th {
        width: 8em;
    }

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

    .info__img {
        width: 45%;
        margin: 0;
    }

}