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

}



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

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


.kv__copy {
    width: calc((582/1920)*150%);
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translate(0, -50%);
    z-index: 9;
}

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


.kv__scroll {
    max-width: 13px;
    width: 10px;
    position: absolute;
    bottom: 0;
    left: 5%;
    z-index: 9;
    display: none;
}



@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;
    background: none;
    font-size: 1.2rem;
    margin: 0 5px !important;
    color: #897d44;
    opacity: 1;
    width: 30px;
    text-align: left;
    line-height: 1;
    transition: .3s ease-out;
    position: relative;
    opacity: .5;

    &::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 1px;
        background-color: #897d44;
        bottom: -.5em;
        left: 0;
    }

    & span {
        position: absolute;
        bottom: 0;
        left: 0;
        line-height: 1;
        transition: .3s;
    }
}

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

    & span {
        font-size: 1.8rem;
    }
}



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

    .kv {
        margin-top: 62px;
    }


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

    .kv__copy {
        width: calc((582/1920)*100%);
        top: 50%;
        left: 25%;
        transform: translate(-50%, -50%);
    }

    .kv__scroll {
        max-width: 13px;
        width: calc((13/1920)*100%);
        position: absolute;
        top: 90%;
        left: 10%;
        transform: translate(-50%, -50%);
        z-index: 9;
        display: block;
    }

}



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


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

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



}


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

.news__box {
    padding: 20px 5%;
    width: 90%;
    margin: 0 0 0 auto;
    max-width: 1400px;
    background: #fff;
    box-shadow: 4px 4px 18px rgba(0, 0, 0, .06);
    position: relative;
    z-index: 1;
}


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


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

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

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


.news__atc--ttl {

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

}

.news__btn {
    display: block;
    max-width: 112px;
    width: 80px;
    margin: 0 0 0 auto;
}

@media screen and (min-width:768px) {
    .news {
        margin: -30px auto 0;
    }

    .news__box {
        padding: 20px 5%;
    }


    .news__ttl {
        margin-bottom: 0;
        width: 100px;
    }

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

    .news__atc {
        margin-bottom: 1em;

        & a {
            display: flex;
        }
    }

    .news__date {
        width: 100px;
    }

    .news__atc--ttl {
        max-width: calc(100% - 100px);

    }

    .news__btn {
        max-width: 112px;
        width: 80px;
        margin: 0;
    }

}

@media screen and (min-width:1025px) {
    .news {
        margin: -40px auto 0;
    }

    .news__box {
        padding: 20px 3%;
    }


    .news__ttl {

        width: 100px;
    }

    .news__atcwrap {
        max-width: calc(100% - 210px);
        padding: 0 1em;
    }

    .news__atc {
        margin-bottom: 1em;

    }

    .news__date {
        width: 100px;
    }

    .news__atc--ttl {
        max-width: calc(100% - 100px);

    }

    .news__btn {
        max-width: 112px;
        width: 110px;
        margin: 0;
    }

}

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


.conc__ttl {
    padding-left: 2em;

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

.conc__img {
    margin: 0 auto 30px;
}

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


    .conc__ttl {
        padding-left: 2em;

        &::before {

            width: 1.5em;
            height: 1px;
        }
    }

    .conc__img {
        margin: 0 auto 40px;
    }

    .conc__txt {
        text-align: center;
    }

}

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



}

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

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

.comm__img {
    margin-bottom: 30px;
}

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

    .comm__flex {
        flex-direction: row;
    }

    .comm__left {
        width: 50%;
    }

    .comm__txtwrap {
        max-width: 640px;
        margin: 0 0 0 auto;
    }

    .comm__img {
        margin-bottom: 0;
        width: 47%;
    }
}

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


    .comm__left {
        width: 50%;
    }

    .comm__txtwrap {
        max-width: 650px;
        margin: 0 0 0 auto;
    }

    .comm__img {

        width: 47%;
    }
}


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

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

.cont__box {
    background: #fff;
    padding: 20px 5% 0;
}

.cont__item {
    max-width: 600px;
    margin: 0 auto 30px;

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

.cont__ttl {
    margin: 1em 0 .5em;
    display: flex;
    align-items: center;

    .font-en {
        margin-left: 1em;
    }
}

.cont__btn {
    max-width: 150px;
    display: block;
    width: 100px;
    margin: 0 0 0 auto;
}

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

            height: 75%;
        }
    }
    
    .cont__box {
        padding: 30px 5% 0;
    }
    
    .cont__item {
        width: 48%;
        margin: 0 ;

    }
    
    .cont__ttl {
        margin: 1em 0 .5em;

    }
    
    .cont__btn {
        max-width: 150px;
        width: 100px;
        margin: 0 0 0 auto;
    }
}

@media screen and (min-width:1025px) {
    .contents {
        padding: 200px 0 0;
    
        &::before {

            height: 80%;
        }
    }
    
    .cont__box {
        padding: 60px 5% 0;
    }
    
    .cont__item {
        width: 48%;

    }
    
    
    .cont__btn {
        max-width: 150px;
        width: 150px;
        margin: 1em 0 0 auto;
    }
}



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


.menu__ttl {
    margin-bottom: 20px;

    .font-en {
        padding-left: 2em;

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

    .txt {
        margin-top: .5em;
        padding-left: 4em;
    }


}

.menu__tabs {
    display: flex;
}

.menu__tab {
    width: 100%;
    margin: 0 1%;
    text-align: center;
    max-width: 320px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border: solid 1px #b69662;
    color: #b69662;
    position: relative;
    transition: .3s;
    cursor: pointer;
    position: relative;

    & img {
        position: absolute;
        max-width: 8px;
        width: 6px;
        transform: translate(0, -50%);
        right: 5%;
        top: 50%;
        opacity: 0;
    }

    &.active {
        background: #b69662;
        color: #fff;

        & img {
            opacity: 1;

        }
    }
}

.menu__atc {
    margin: 0 auto 30px;
    position: relative;

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

.menu__num {
    max-width: 180px;
    width: 120px;
    margin: 0 auto;
    display: block;
    position: relative;
    z-index: 1;
}

.menu__img {
    width: 95%;
    max-width: 422px;
    margin: -20px 0 0;

    &::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        border: solid 1px #b69662;
        top: -15px;
        left: 15px;
    }

    &::after {
        content: "";
        position: absolute;
        width: 120px;
        height: 10px;
        background: #fff;
        top: -15px;
        left: calc((50% + 7.5px));
        transform: translate(-50%, -50%);
    }
}

.menu__price {
    height: 30px;
    margin: -30px auto 0 0;
    width: fit-content;
    padding: 0 1em;
    background: #fff;
    position: relative;
    display: flex;
    align-items: baseline;

}

.menu__h3 {
    margin: 1em 0 .5em;
}

.menu__item {
    display: none;
}

.menu__item:first-child {
    display: block;
}

.menu__btn {
    max-width: 256px;
    display: block;
    width: 200px;
    margin: 0 auto;
}

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


    .menu__ttl {
        margin-bottom: 0;

        .font-en {
            padding-left: 1.5em;

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

        .txt {
            padding-left: 4em;
        }


    }

    .menu__lead {
        padding-left: 2em;
    }

    .menu__tab {
        width: 45%;
        margin: 0 1%;
        max-width: 200px;
        height: 40px;

        & img {
            max-width: 8px;
            width: 6px;
        }
    }

    .menu__flex {
        width: 102%;
        margin-left: -1%;
    }

    .menu__atc {
        margin: 0;
        width: 31.33%;
        margin: 0 1%;

    }

    .menu__num {
        max-width: 180px;
        width: 120px;

    }

    .menu__img {
        width: 95%;
        margin: -20px 0 0;

        &::before {
            top: -15px;
            left: 15px;
        }

        &::after {
            width: 120px;
            height: 10px;
            top: -15px;
            left: calc((50% + 7.5px));
        }
    }

    .menu__price {
        height: 30px;
        margin: -30px auto 0 0;
    }

    .menu__h3 {
        margin: 1em 0 .5em;
    }


    .menu__btn {
        max-width: 256px;
        width: 200px;
        margin: 0 auto;
    }
}

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


    .menu__ttl {
        margin-bottom: 0;

        .font-en {
            padding-left: 1.5em;

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

        .txt {
            padding-left: 6em;
        }


    }

    .menu__lead {
        padding-left: 2em;
        max-width: 847px;
    }

    .menu__tab {
        width: 45%;
        margin: 0 1%;
        max-width: 200px;
        height: 48px;

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

    .menu__flex {
        width: 102%;
        margin-left: -1%;
    }

    .menu__atc {
        width: 31.33%;
        margin: 0 1%;

    }

    .menu__num {
        max-width: 180px;
        width: 180px;

    }

    .menu__img {
        width: 95%;
        margin: -30px 0 0;

        &::before {
            top: -15px;
            left: 15px;
        }

        &::after {
            width: 120px;
            height: 10px;
            top: -15px;
            left: calc((50% + 7.5px));
        }
    }

    .menu__price {
        height: 48px;
        margin: -48px auto 0 0;
    }

    .menu__h3 {
        margin: 1em 0 .5em;
    }


    .menu__btn {
        max-width: 256px;
        width: 256px;
        margin: 0 auto;
    }

}




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

}

.info__main {
    margin-bottom: 60px;
}

.info__left {
    margin-bottom: 30px;
}

.info__ttl {
    .txt {
        margin-bottom: 1em;
        padding-left: 2em;

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

.info__li {
    display: flex;
    padding-bottom: .5em;
    margin-bottom: .5em;
    border-bottom: solid 1px #cccccc;
    position: relative;

    &::before {
        content: "";
        position: absolute;
        width: 5em;
        height: 2px;
        background-color: #b69662;
        left: 0;
        top: 100%;
        transform: translate(0, -50%);
    }
}

.info__th {
    position: relative;
    width: 6em;
}

.info__td {
    max-width: calc(100% - 6em);
    flex: 0 1 auto
}


/* swiper */
.info__gallery {

    overflow: visible;
}

.gallery__slide {
    max-width: 385px;
    width: 80%;
    margin: 0 5%;
    background-color: #b69662;

    & img {
        display: block;
        opacity: .3;
    }

    &.swiper-slide-active {
        & img {
            opacity: 1;
        }
    }
}

.i-swiper-pagination {
    left: auto !important;
    right: auto;
    top: auto !important;
    bottom: auto !important;
    z-index: 99;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content !important;
    margin: 20px auto;
}


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

.info .swiper-pagination-bullet-active {
    opacity: 1;
    background: #b69662;
}

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

    }

    .info__main {
        margin-bottom: 80px;
    }

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

    .info__img {
        width: 55%;
    }

    .info__ttl {
        .txt {
            margin-bottom: 1em;

        }
    }

    .info__li {
        padding-bottom: .5em;
        margin-bottom: .5em;
    }

    .info__th {
        width: 6em;
    }

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


    /* swiper */


    .gallery__slide {
        max-width: 385px;
        width: 23%;
        margin: 0 1%;
    }

    .i-swiper-pagination {

        margin: 20px auto;
    }


    .info .swiper-pagination-bullet {
        margin: 0 5px !important;

        width: 10px;
        height: 10px;
    }

}

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

    }

    .info__main {
        margin-bottom: 100px;
    }

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

    .info__txtwrap {
        max-width: 730px;
        margin: 0 0 0 auto;
        padding: 0 15% 0 0;
    }

    .info__img {
        width: 55%;
        margin-left: -5%;
    }


    .info__li {
        padding-bottom: 1em;
        margin-bottom: 1em;
    }

    .info__th {
        width: 8em;
    }

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


    /* swiper */


    .gallery__slide {
        max-width: 385px;
        width: 23%;
        margin: 0 1%;
    }

    .i-swiper-pagination {

        margin: 30px auto;
    }


    .info .swiper-pagination-bullet {
        margin: 0 10px !important;

        width: 12px;
        height: 12px;
    }

}