@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;
    width: fit-content;
    white-space: nowrap;
    z-index: 99;
    top: 60%;
    left: 5%;
    transform: translate(0, -50%);

    .font-en {
        font-size: 1rem;
        display: block;
        color: #868686;
        letter-spacing: .2em;
        margin-bottom: 1em;
        font-weight: 400;
        line-height: 2;
    }

    .txt {
        font-weight: 100;
        display: block;
        line-height: 1.8;
        font-size: min(2rem, 5vw);
    }
}


.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 {
        top: 50%;
        left: 5%;

        .font-en {
            font-size: 1.2rem;
            margin-bottom: 1em;
        }

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


}



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

    .kv__swiper-area {
        position: relative;
    }

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


    .kv__copy {
        top: 50%;
        left: 5%;

        .font-en {
            font-size: 1.2rem;
            margin-bottom: 1em;
        }

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

}


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

.news {
    padding: 60px 0 0;
}

.news__flex {
    margin-bottom: 60px;
}

.news__ttlwrap {
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}



.news__atc {
    margin-bottom: 1.5em;

    & a {
        display: block;
    }

    &:last-child {
        border: none;
        padding-bottom: 0;
        margin-bottom: 0;
    }
}

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

}


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

    .news__flex {
        margin-bottom: 60px;
    }

    .news__ttlwrap {
        margin-bottom: 0;
        display: block;
        width: 25%;
        border-right: solid 1px #999999;
    }

    .news__ttl {
        margin-bottom: 30px;
    }

    .news__atcwrap {
        width: 75%;
        padding-left: 5%;
    }

    .news__atc {
        margin-bottom: 1.5em;

        & a {
            display: flex;
        }

    }

    .news__date {
        white-space: nowrap;
    }

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

    }

    .news__img {
        max-width: 1244px;
        width: 75%;
    }


}


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

    .news__flex {
        max-width: 1400px;
        margin: 0 auto 150px;
    }

    .news__ttlwrap {
        width: 25%;
    }

    .news__ttl {
        margin-bottom: 40px;
    }

    .news__atcwrap {
        width: 75%;
        padding-left: 5%;
    }

    .news__atc {
        margin-bottom: 1.5em;

    }

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

    }

    .news__img {
        width: 75%;
    }



}

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

.tre__img {
    width: 70%;
    max-width: 555px;
    margin-bottom: 30px;

    .txt {
        max-width: 714px;
        width: calc((555/714)*100%);
        left: 100%;
        top: -10%;
        transform: translate(-50%, -50%);
    }
}

.tre__right {
    padding: 0 5%;
}

.tre__ttl {
    text-align: right;
    line-height: 1.6;
}

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

    .tre__img {
        width: 35%;
        margin-bottom: 0;

        .txt {
            width: calc((555/714)*100%);
            left: 100%;
            top: -20%;
        }
    }

    .tre__right {
        width: 50%;
        padding: 0 3% 0 0;
    }

    .tre__txtwrap {
        max-width: 800px;
    }

    .tre__ttl {
        line-height: 1.6;
    }
}

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

    .tre__img {
        width: 30%;

        .txt {
            width: calc((555/714)*100%);
            left: 90%;
            top: -18%;
        }
    }

    .tre__right {
        width: 50%;
        padding: 0 2% 0 0;
    }

}

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

.menu__obj01 {
    max-width: 270px;
    width: calc((270/1920)*150%);
    right: 0;
    top: 70%;
    transform: translate(0, -50%);
}

.menu__img01 {
    margin-bottom: 30px;
}

.menu__img02 {
    margin-bottom: 30px;
}

.menu__ttl {
    &::before {
        content: "";
        position: absolute;
        width: calc(100% - 4em);
        right: 0;
        top: 50%;
        transform: translate(0, -50%);
        height: 2px;
        background: linear-gradient(90deg, #f0fafb, #afbfd7);
    }
}

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

    .menu__obj01 {
        width: calc((270/1920)*100%);
        right: 0;
        top: 0;
    }

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

    .menu__right {
        width: 45%;
    }

    .menu__img02 {
        margin-bottom: 30px;
    }

    .menu__ttl {
        &::before {
            width: calc(100% - 4em);
            right: 0;
            top: 50%;
            height: 2px;
        }
    }

}

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

    .menu__obj01 {
        width: calc((270/1920)*100%);
        right: 0;
        top: 100px;
    }

    .menu__img01 {
        width: 50%;
    }

    .menu__right {
        width: 45%;
    }

    .menu__img02 {
        margin-bottom: 100px;
    }

    .menu__ttl {
        &::before {
            width: calc(100% - 3em);
            right: 0;
            top: 50%;
            height: 3px;
        }
    }

}

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

.rank__ttl {
    width: fit-content;
    margin: 0 auto 50px;

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

.rank__atc {
    max-width: 464px;
    margin: 0 auto 30px;

    &:last-child {
        margin-bottom: 0;
    }
    & a{
        display: block;
        width: 100%;
        height: 100%;
    }
}

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

.rank__img {
    & img {
        width: 95%;
    }

    &::before {
        content: "";
        position: absolute;
        width: 95%;
        height: 100%;
        border: solid 1px #bbcadf;
        top: -5%;
        right: 0;
    }

}

.rank__price {
    display: flex;
    align-items: baseline;
    white-space: nowrap;
    width: fit-content;
    line-height: 30px;
    margin-top: -29px;
    position: relative;
    z-index: 1;
    background: #dce5ed;
    padding: 0 1em;

    & p {
        line-height: 30px;
    }
}

.rank__h3 {
    margin: 1em 0 .5em;
    color: #666666;
}

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

    .rank__ttl {
        margin: 0 auto 50px;
    }

    .rank__atc {
        width: 32%;
        margin: 0;
    }

    .rank__mark {
        max-width: 180px;
        width: 120px;
        margin: 0 auto -20px;
    }

    .rank__img {
        & img {
            width: 95%;
        }

        &::before {
            top: -5%;
            right: 0;
        }

    }

    .rank__price {

        line-height: 30px;
        margin-top: -29px;
        padding: 0 1em;

        & p {
            line-height: 30px;
        }
    }

}

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

    .rank__ttl {
        margin: 0 auto 100px;
    }

    .rank__atc {
        width: 32%;
        margin: 0;
    }

    .rank__mark {
        max-width: 180px;
        width: 50%;
        margin: 0 auto -30px;
    }

    .rank__img {
        & img {
            width: 95%;
        }

        &::before {
            top: -5%;
            right: 0;
        }

    }

    .rank__price {

        line-height: 45px;
        margin-top: -44px;
        padding: 0 1em;

        & p {
            line-height: 45px;
        }
    }

}

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

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

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

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

        &::before {
            content: "";
            position: absolute;
            width: 100%;
            height: 100%;
            border: solid 1px #fff;
            top: 5%;
            left: 3%;
        }
    }
}

.cont__ttl {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;

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

.cont__btn {
    position: absolute;
    bottom: 10px;
    right: 5%;
    color: #fff;
    flex-direction: row-reverse;

    &::after {
        margin: 0 1em 0 0;
        background-color: #fff;

    }
}

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

    .cont__item {
        margin: 0;
        width: 32%;

        & a {
            &::before {
                top: 5%;
                left: 3%;
            }
        }
    }

    .cont__ttl {

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

    .cont__btn {
        bottom: 10px;
        right: 5%;
    }
}

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

    .cont__item {
        width: 32%;

        & a {
            &::before {
                top: 5%;
                left: 3%;
            }
        }
    }

    .cont__ttl {

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

    .cont__btn {
        bottom: 20px;
        right: 5%;
    }
}


/* hd__pd */

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