@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__swiper-area {
    position: relative;
    z-index: 99;
}

.kv__img img {
    object-fit: cover;
    min-height: calc(100vh - 102px);
}

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

.kv__copy {
    position: absolute;
    max-width: 942px;
    width: calc((942/1500)*100%);
    white-space: nowrap;
    z-index: 99;
    top: 75%;
    left: 50%;
    transform: translate(-50%, -50%);
}


.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 {
        position: relative;
    }

    .kv__img img {
        min-height: calc(100vh - 62px);
    }


    .kv__copy {
        position: absolute;
        max-width: 942px;
        width: calc((942/1500)*100%);
        white-space: nowrap;
        z-index: 99;
        top: 75%;
        left: 50%;
        transform: translate(-50%, -50%);
    }




}



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

    .kv__swiper-area {
        position: relative;
    }

    .kv__img img {
        min-height: calc(100vh - 62px);
    }



    .kv__copy {
        width: calc((942/1500)*100%);
        top: 70%;
        left: 50%;
    }

}


/*============================
   news
============================*/

.news__box {
    padding: 30px 5%;
}

.news__ttl {
    font-size: 2rem;
    margin-bottom: 10px;
}

.news__atc {

    & a {
        display: block;
    }

}

.news__date {
    white-space: nowrap;
}

.news__atc--ttl {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;

}

.news__btn {
    color: #a98465;
    letter-spacing: .2em;
    display: block;
    width: fit-content;
    margin: 1em 0 0 auto;
    border-bottom: solid 1px #a98465;
}

@media screen and (min-width:768px) {
    .news {
        position: absolute;
        right: 0;
        bottom: 0;
        z-index: 99;
    }

    .news__box {
        width: 100%;
        max-width: 1500px;
        margin: 0 0 0 auto;
        background: #fff;
        padding: 20px 3%;
    }

    .news__ttl {
        font-size: 2rem;
        margin-bottom: 0;
    }

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

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

    }

    .news__date {
        white-space: nowrap;
    }

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

    }

    .news__btn {

        margin: 0;
    }

}


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

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

    .news__ttl {
        font-size: 2rem;
        margin-bottom: 0;
    }

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


    .news__atc--ttl {
        padding-left: 1em;


    }

}

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

.conc__circle {
    max-width: 190px;
    width: calc((190/1920)*200%);
    right: 1%;
    top: 50px;
    transform: translate(0, -50%);
    z-index: 9;

    & img {
        animation: circleAnime 10s infinite;
    }
}

@keyframes circleAnime {
    0% {
        transform: rotate(0)
    }

    100% {
        transform: rotate(360deg)
    }
}

.conc__txtwrap {
    padding: 30px 0 0;
}

.conc__ttl {
    .txt {
        margin-top: 1em;
        white-space: normal;
        line-height: 1.2;
    }
}

.conc__btn {
    margin: 0 0 0 auto;
}

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

    .conc__circle {
        width: calc((190/1920)*100%);
        right: 1%;
        top: 50px;
    }

    .conc__img {
        width: 45%;
    }

    .conc__right {
        width: 52%;
    }

    .conc__txtwrap {

        padding: 0;
        max-width: 710px;
    }

}

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

    .conc__circle {
        width: calc((190/1920)*100%);
        right: 1%;
        top: 100px;
    }

    .conc__img {
        width: 45%;
    }

    .conc__right {
        width: 52%;
    }

    .conc__txtwrap {
        max-width: 710px;
    }
}

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


.herb__ttl {
    font-size: 4rem;
}

.herb__copy {
    font-size: 2rem;
}

.herb__txt {
    text-shadow: 1px 1px #fff;
}

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


    .herb__ttl {
        font-size: 6rem;
    }

    .herb__copy {
        font-size: 3rem;
    }

    .herb__txt {
        text-shadow: 1px 1px #fff;
    }
}

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


    .herb__ttl {
        font-size: 9rem;
    }

    .herb__copy {
        font-size: 4.8rem;
    }

    .herb__txt {
        text-shadow: 1px 1px #fff;
    }
}

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

.cont__item {
    margin: 0 auto 60px;
    position: relative;
    max-width: 1920px;

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

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

.cont__img {
    width: 106%;
}

.cont__txt {
    margin: 1em 0;
}

.cont__btn {
    margin: 0 0 0 auto;
}

.cont__item:nth-child(even) {
    .cont__ttl {
        text-align: right;

        .-bd::before {
            left: auto;
            right: .2em;
        }
    }

    .cont__img {
        width: 106%;
        margin-left: -6%;
    }
}

.guide__obj {
    max-width: 300px;
    width: calc((300/1920)*100%);
    left: 0;
    top: 100%;
    transform: translate(0, -50%);
}

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

    .cont__item {
        margin: 0 auto 60px;

    }

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

    .cont__img {
        width: 104%;
    }

    .cont__txt {
        margin: 1em 0;
        padding-right: 2em;
    }

    .cont__btn {
        margin: 0 0 0 auto;
    }

    .cont__item:nth-child(even) {
        .cont__img {
            width: 104%;
            margin-left: -4%;
        }
    }

    .guide__obj {
        width: calc((300/1920)*100%);
        left: 0;
        top: 115%;
        transform: translate(0, -50%);
        z-index: 1;
    }
}

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

    .cont__item {
        margin: 0 auto 100px;

    }

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

    .cont__img {
        width: 138%;
    }

    .cont__txt {
        margin: 1em 0;
        padding-right: 5%;
    }

    .cont__btn {
        margin: 0 0 0 auto;
    }

    .cont__item:nth-child(even) {
        .cont__img {
            width: 138%;
            margin-left: -38%;
        }
    }

    .cont__txt {
        text-shadow: 1px 1px #fff;
        position: relative;
    }

    .guide__obj {
        width: calc((300/1920)*100%);
        left: 0;
        top: 110%;
        transform: translate(0, -50%);
        z-index: 1;
    }
}

/*============================
   products
============================*/
.products {
    padding: 60px 0;
    background: #f7f4eb;
}

.pro__ttl {
    .-bd::before {
        left: 50%;
        transform: translate(-50%);
    }

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

.pro__item {
    max-width: 300px;
    margin: 0 auto 30px;

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

.pro__h3 {
    margin: 1em 0 .5em;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    font-size: 1.5rem;
}

.pro__price {
    display: flex;
    justify-content: flex-end;
    align-items: baseline;

    .fs-18 {
        font-size: 1.8rem;
    }

    .fs-13 {
        font-size: 1.3rem;
    }
}

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


    .pro__item {
        max-width: 300px;
        width: 24%;
        margin: 0;

    }

    .pro__h3 {
        margin: 1em 0 .5em;
        font-size: 1.4rem;
    }

    .pro__price {
        .fs-18 {
            font-size: 1.8rem;
        }

        .fs-13 {
            font-size: 1.3rem;
        }
    }
}

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


    .pro__item {
        width: 24%;
    }

    .pro__h3 {
        margin: 1em 0 .5em;
        font-size: 1.5rem;
    }

    .pro__price {
        .fs-18 {
            font-size: 1.8rem;
        }

        .fs-13 {
            font-size: 1.3rem;
        }
    }
}

/*============================
   salon
============================*/
.salon {
    padding: 0 0 100px;
}

.salon__box {
    padding: 40px 5%;
    background: rgba(131, 114, 79, .66);
    color: #fff;
    & a{
        color: #fff;
    }
}

.salon__obj {
    max-width: 863px;
    width: calc((863/1920)*150%);
    right: 0;
    top: 99%;
    transform: translate(0, -50%);
    z-index: -1;
}

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

    .-bd::before {
        background: #fff;
    }
}

.salon__li {
    display: flex;
    margin-bottom: 1em;
}

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

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

.salon__btn {
    margin: 0 0 0 auto;
    color: #fff;

    &::before {
        background-color: #7a6f58;
        border-color: #7a6f58;
    }

    &::after {
        background-color: #fff;
    }
}

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

    .salon__flex {
        align-items: center;
    }

    .salon__left {
        width: 50%;
        padding: 30px 0 0;
    }

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

    .salon__box {
        padding: 50px 5% 40px;
        position: relative;
        z-index: 1;
    }

    .salon__obj {
        width: calc((863/1920)*100%);
        right: 0;
        top: 95%;
    }


    .salon__li {
        margin-bottom: 1em;
    }

    .salon__th {
        width: 6em;
    }

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

    .salon__btn {
        margin: 0 0 0 auto;
    }
}

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

    .salon__flex {
        align-items: flex-end;
    }

    .salon__left {
        width: 45%;
        padding: 0;
        margin-bottom: -50px;
    }

    .salon__img {
        width: 60%;
        margin-left: -5%;

        & img {
            object-fit: cover;
            height: 810px;
        }
    }

    .salon__box {
        padding: 60px 5% 30px;
        max-width: 600px;
        margin: 0 0 0 auto;
    }

    .salon__obj {
        width: calc((863/1920)*100%);
        right: 0;
        top: 95%;
    }


    .salon__li {
        margin-bottom: 1em;
    }

    .salon__th {
        width: 7em;
    }

    .salon__td {
        width: calc(100% - 7em);
    }

    .salon__btn {
        margin: 0 0 0 auto;
    }
}


/* hd__pd */

@media screen and (min-width:1025px) {
    .hd__pd {
        padding-left: 260px;
    }
}