@charset "UTF-8";

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

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

    100% {
        opacity: 1;
    }
}


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

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

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

.kv {
    margin-top: 52px;
}

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

.kv__img {
    width: 100%;

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


.kv__copy {
    color: #fff;
    width: fit-content;
    z-index: 99;
    white-space: nowrap;
    position: relative;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;

    .txt {
        letter-spacing: .1em;
        line-height: 1.5;
        display: block;
        font-weight: 600;
        padding: .5em;
        font-size: min(3rem, 5vw);
        text-shadow:
            0 0 .5em rgba(0, 0, 0, 1),
            9px 9px .5em rgba(0, 0, 0, 1);
        display: block;
        opacity: 0;
        animation: copyAnime 1s .5s forwards ease-out;
    }
}


.kv__scroll {
    position: absolute;
    max-width: 25px;
    min-width: 15px;
    width: calc((25/1920)*100%);
    left: 5%;
    top: 100%;
    transform: translate(-50%, -50%);

}

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

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

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

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


.kv .swiper-pagination {
    left: 50%;
    bottom: 5%;
    z-index: 99;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    transform: translate(-50%);
}


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

}

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


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


    .kv__copy {

        top: 50%;
        left: 50%;

        .txt {
            padding: .5em;
            font-size: min(6rem, 3vw);
        }
    }

    .kv .swiper-pagination {
        left: 50%;
        bottom: 5%;
    }


    .kv .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        margin: 0 10px !important;

    }



}



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


    .kv__copy {

        top: 50%;
        left: 50%;

        .txt {
            font-weight: 400;
            padding: .5em;
            font-size: min(6rem, 3vw);
        }
    }

    .kv .swiper-pagination {
        left: 50%;
        bottom: 5%;
    }


    .kv .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        margin: 0 10px !important;

    }



}


/*============================
   news
============================*/
.news {
    padding: 60px 0 80px;
    background: #c4a684;
    color: #fff;

    &::before {
        content: "";
        position: absolute;
        width: 25%;
        height: 100px;
        background: url(../images/news_img.jpg) no-repeat center center/cover;
        right: 0;
        bottom: 0;
        z-index: 9;
    }
}

.news__ttl {
    display: flex;
    align-items: baseline;
}

.news__atc {
    margin-bottom: 1em;

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

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

.news__info {
    display: flex;
    white-space: nowrap;
    align-items: center;
}

.news__date {
    margin-right: 1em;
}

.news__cat {
    width: fit-content;
    padding: 0 1em;
    background: #ca8452;

}

.news__atc--ttl {

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

}

.news__btn {
    display: flex;
    align-items: center;
    color: #fff;
    transition: .3s;

    & img {
        margin-left: 1em;
        transition: .3s;

    }

    &:hover {
        color: #bc1212;

        & img {
            transform: translate(10px);

        }
    }
}

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

        .inner__lmid {
            padding-right: 22%;
        }

        &::before {
            width: 21%;
            height: 100%;
            right: 0;
            bottom: 0;
        }
    }


    .news__atc {
        margin-bottom: 1em;

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

    .news__info {
        display: flex;
        white-space: nowrap;
        align-items: center;
        min-width: 200px;
    }

    .news__cat {
        padding: 0 1em;
    }

    .news__atc--ttl {
        width: calc(100% - 200px);
        margin-top: 0;

    }

    .news__btn {
        & img {
            margin-left: 1em;

        }
    }


}

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

        .inner__lmid {
            padding-right: 22%;
        }

        &::before {
            width: 21%;
            height: 100%;
            right: 0;
            bottom: 0;
        }
    }


    .news__atc {
        margin-bottom: 1em;

    }

    .news__info {
        min-width: 220px;
    }

    .news__date {
        margin-right: 1.5em;
    }

    .news__atc--ttl {
        width: calc(100% - 220px);
        margin-top: 0;

    }

    .news__btn {
        & img {
            margin-left: 1em;

        }
    }

}

/*============================
   concept
============================*/
.concept {
    padding: 0;

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

}

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

.conc__img {
    position: relative;
    padding-bottom: 30px;

    & img {
        position: relative;
        z-index: 9;

    }

    &::before {
        content: "";
        position: absolute;
        width: 110%;
        height: 100%;
        background: #ca8452;
        top: 0;
        left: 0;
    }

}

.conc__right {
    padding: 30px 0 30px 5%;
    color: #fff;
    display: flex;
    position: relative;

    &::before {
        content: "";
        position: absolute;
        width: 84%;
        height: 100px;
        background: url(../images/concept_bg.jpg) no-repeat center center/cover;
        top: -30px;
        left: -6%;
    }

    &::after {
        content: "";
        position: absolute;
        width: 110%;
        height: 100%;
        background: #ca8452;
        top: 0;
        left: 0;
        z-index: 1;
    }

}

.conc__txtwrap {
    position: relative;
    z-index: 9;
}

.conc__ttl {
    color: #fff;
    position: relative;
    z-index: 9;
    margin-left: 1em;
    color: #58493a;
    padding-top: 3em;

    &::before {
        content: "";
        position: absolute;
        width: 1px;
        height: calc(3em + 20px);
        background: #58493a;
        top: -30px;
        left: 50%;
        transform: translate(-50%);
    }
}

@media screen and (min-width:414px) {
.conc__ttl {
    margin-left: 0.2em;
}

.conc__right {
    padding: 30px 0 30px 3%;
}
}

@media screen and (min-width:768px) {
    .conc__flex {
        flex-direction: row;
        position: relative;

        &::before {
            content: "";
            position: absolute;
            width: 100%;
            height: 50%;
            background: #ca8452;
            left: 0;
            bottom: 0;

        }
    }

    .conc__img {
        width: 50%;
        padding-bottom: 0;

        &::before {
            display: none;
        }

    }

    .conc__right {
        width: 50%;
        padding: 40px 0 60px 5%;

        &::before {
            width: 150%;
            height: 300px;
            top: -30px;
            left: -40%;
        }

        &::after {
            width: 150%;
            height: 100%;
            top: 0;
            left: -30%;
        }

    }


    .conc__ttl {
        margin-left: 0.1em;
        padding-top: 3em;

        &::before {
            height: calc(3em + 30px);
            top: -40px;
        }
    }

    .conc__h3 {
        .fs-38 {
            font-size: 2rem;
        }

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

        .fs-48 {
            font-size: 2.4rem;
        }

        .ip_block {
            display: block;
        }
    }
}


@media screen and (min-width:1025px) {
    .conc__ttl {
        margin-left: 1em;
        padding-top: 3em;

        &::before {
            height: calc(3em + 30px);
            top: -40px;
        }
    }
}

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

        &::before {
            width: 100%;
            height: 50%;
        }
    }

    .conc__img {
        width: 50%;
    }

    .conc__right {
        width: 50%;
        padding: 140px 0 140px 5%;

        &::before {
            width: 150%;
            height: 300px;
            top: -60px;
            left: -40%;
        }

        &::after {
            width: 150%;
            height: 100%;
            top: 0;
            left: -30%;
        }

    }

    .conc__ttl {
        margin-left: 1em;
        padding-top: 3em;

        &::before {
            height: calc(3em + 120px);
            top: -140px;
            left: 50%;
        }
    }

    .conc__txt {
        max-width: 546px;
    }

    .conc__h3 {
        .fs-38 {
            font-size: 3.8rem;
        }

        .fs-48 {
            font-size: 4.8rem;
        }
    }
}

/*============================
   about
============================*/
.about {
    background: #c4a684;
    color: #fff;
}

.about__left {
    padding: 40px 5%;
}

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

.about__obj {
    max-width: 358px;
    width: calc((358/1100)*100%);
    top: 10%;
    left: 10%;
    transform: translate(-50%, -50%);
    z-index: 9;
    pointer-events: none;
}

.a-swiper-pagination {
    left: auto !important;
    right: 5%;
    bottom: 5% !important;
    z-index: 99;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content !important;
    position: absolute;
}


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

}

.about .swiper-pagination-bullet-active {
    opacity: 1;
    background: #bc1212;
}

.about__ttl {
    .font-en {
        display: flex;
        align-items: center;
    }

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

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

.about__btn {
    margin: 5px 0;

    &:first-child {
        margin-right: 5%;
    }
}

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

    .about__flex::before {
        content: "";
        position: absolute;
        width: 45%;
        height: 1px;
        background: #fff;
        bottom: 0;
        left: 3%;
    }

    .about__left {
        width: 50%;

        padding: 20px 10% 20px 3%;
    }

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

    .about__obj {
        width: calc((358/1100)*100%);
        top: 10%;
        left: 10%;
    }

    .a-swiper-pagination {
        right: 5%;
        bottom: 5%;
    }


    .about .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        margin: 0 10px !important;
    }

    .about__h3 {
        .fs-38 {
            font-size: 2rem;
        }

        .fs-48 {
            font-size: 2.4rem;
        }
    }

    .about__btn {
        margin: 5px 0;

        &:first-child {
            margin-right: 5%;
        }
    }

}

@media screen and (min-width:1025px) {
    .about__flex {
        max-width: 1920px;
        margin: 0 auto;
    }

    .about__flex::before {
        width: 44%;
        left: 1%;
    }

    .about__left {
        width: 50%;
        padding: 20px 0 20px 1%;
    }

    .about__txtwrap {
        max-width: 860px;
        margin: 0 0 0 auto;
        padding-right: 15%;
    }

    .about__right {
        width: 55%;
        margin-left: -5%;
        margin: 0 0 0 -5%;
        z-index: 99;
        position: relative;
    }

    .about__swiper {
        background-color: #fff;
    }

    .about__obj {
        width: calc((358/1100)*100%);
        top: 10%;
        left: 0%;
    }

    .about__img img {
        object-fit: cover;
        width: 100%;
        height: 1086px;
    }

    .a-swiper-pagination {
        right: 5%;
        bottom: 5%;
    }


    .about .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        margin: 0 10px !important;
    }

    .about__h3 {
        .fs-38 {
            font-size: 3.8rem;
        }

        .fs-48 {
            font-size: 4.8rem;
        }

        
        .ip_block {
            display: block;
        }
    }

    .about__btn {
        margin: 5px 0;

        &:first-child {
            margin-right: 5%;
        }
    }

}

/*============================
   menu
============================*/
.menu {
    background: #c4a684;
    color: #fff;

    &::before {
        content: "";
        position: absolute;
        width: 50%;
        height: 60px;
        background: url(../images/menu_bg.jpg) no-repeat center center/cover;
        bottom: 0;
        left: 0;
    }
}

.menu__left {
    display: flex;
    padding: 60px 5% 30px;
}

.menu__img {
    width: 95%;
    margin: 0 0 0 auto;

    .obj {
        max-width: 593px;
        width: calc((593/817)*100%);
        top: 90%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 9;
        pointer-events: none;
    }
}

.menu__ttl {
    .font-en {
        display: flex;
        align-items: center;
    }

    .txt {
        margin-top: .5em;

        &::before {
            content: "";
            position: absolute;
            width: 2em;
            height: 2px;
            background: #fff;
            left: 0;
            bottom: -1em;
        }
    }
}

.menu__ttl--en {
    color: #fff;
    position: relative;
    z-index: 9;
    margin-left: 1em;
    color: #58493a;
    padding-top: 3em;

    &::before {
        content: "";
        position: absolute;
        width: 1px;
        height: calc(3em + 50px);
        background: #58493a;
        top: -60px;
        left: 50%;
        transform: translate(-50%);
    }
}


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

    .menu__left {
        display: flex;
        width: 55%;
        padding: 40px 1% 40px 3%;
    }

    .menu__img {
        width: 45%;
        margin: 0;

        .obj {
            width: calc((593/817)*100%);
            top: 90%;
            left: 50%;
        }
    }

    .menu__ttl {

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

    .menu__ttl--en {
        margin-left: 0.1em;
        padding-top: 3em;

        &::before {
            height: calc(3em + 50px);
            top: -60px;
        }
    }

}

@media screen and (min-width:1025px) {
    .menu {
        &::before {
            width: 60%;
            height: 120px;
        }
    }

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

    .menu__left {
        display: flex;
        width: 55%;


        padding: 40px 1% 40px 1%;
    }

    .menu__txtwrap {
        max-width: 1000px;
        margin: 0 0 0 auto;
    }

    .menu__img {
        width: 45%;
        margin: 0;

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

        .obj {
            width: calc((593/817)*100%);
            top: 90%;
            left: 50%;
        }
    }


    .menu__ttl--en {
        margin-left: 1em;
        padding-top: 3em;

        &::before {
            height: calc(3em + 340px);
            top: -360px;

            z-index: -1;
        }
    }

}

/*============================
   contents
============================*/

.cont__item {
    height: 240px;
    background: url(../images/contents_bg01.jpg) no-repeat center center/cover;

    padding: 20px 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffff;

    &:last-child {
        background-image: url(../images/contents_bg02.jpg);
    }
}

.cont__ttl {
    .txt {

        margin-top: .5em;
    }
}

.cont__btn {
    margin: 0 auto;
}

@media screen and (min-width:768px) {
    .cont__item {
        height: 340px;
        width: 50%;
    }


}

@media screen and (min-width:1025px) {
    .cont__item {
        height: 575px;
        width: 50%;
    }


}


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

.info__ttl--en {
    font-size: 6rem;
    line-height: 1;
    white-space: nowrap;
    left: -.4em;
    top: 60px;
    color: #e4d0be;
}

.info__txtwrap {
    padding-left: 50px;
}


.info__ttl {
    &::before {
        content: "";
        position: absolute;
        width: 2em;
        height: 2px;
        background: #fff;
        left: 0;
        bottom: -1em;
    }
}


.info__li {
    margin-bottom: 1em;
    display: flex;


}

.info__th {
    width: 5em;
    white-space: nowrap;
    font-size: 13px;
}

.info__td {
    width: calc((100% - 5rem));
    padding-left: 1em;
    font-size: 13px;
}

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

    .info__ttl--en {
        font-size: 10rem;
        left: -.4em;
        top: 55%;
        transform: translate(0, -50%);
    }

    .info__txtwrap {
        padding-left: 80px;
    }


    .info__ttl {
        &::before {
            width: 2em;
            height: 2px;
            bottom: -1em;
        }
    }

    .info__ul {
        max-width: 50%;
    }

    .info__li {
        margin-bottom: 1em;
    }

    .info__th {
        width: 7em;
    font-size: 14px;
    }

    .info__td {
        width: calc((100% - 7rem));
        padding-left: 1em;
    font-size: 14px;
    }
}

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

    .info__ttl--en {
        font-size: 24rem;
        left: -.48em;
        top: 55%;
        transform: translate(0, -50%);
    }

    .info__txtwrap {
        padding-left: 180px;
    }


    .info__ttl {
        &::before {
            width: 2em;
            height: 2px;
            bottom: -1em;
        }
    }

    .info__ul {
        max-width: 530px;
    }

    .info__li {
        margin-bottom: 1em;
    }

    .info__th {
        width: 7em;
    }

    .info__td {
        width: calc((100% - 7rem));
        padding-left: 1em;
    }
}