@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 {
    max-width: 1920px;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99;
}

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


.kv__scroll {
    max-width: 15px;
    min-width: 8px;
    width: calc((15/1092)*100%);
    position: absolute;
    top: 80%;
    right: 3%;
    transform: translate(0, -50%);
    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;
    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__copy {

        top: 50%;
        left: 50%;

    }


    .kv__scroll {
        max-width: 15px;
        min-width: 8px;
        width: calc((15/1092)*100%);
        position: absolute;
        top: 80%;
        right: 3%;
    }


}


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


    .kv {
        margin-top: 0;
    }


    .kv__copy {

        top: 50%;
        left: 50%;

    }


    .kv__scroll {
        min-width: 8px;
        width: calc((15/1092)*100%);
        top: 80%;
        right: 2%;
    }



}

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

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

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


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

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

.comm__box {
    padding: 60px 0 30px 5%;
    margin-top: -30px;
    position: relative;

    &::before {
        content: "";
        position: absolute;
        width: 110%;
        height: 100%;
        border-radius: 60px 0 0 60px;
        background: linear-gradient(#d96a9a, #de8baf);
        z-index: -1;
        top: 0;
        left: 0;
    }
}

.comm__ttl {
    margin-bottom: 30px;
}

.comm__h3 {
    margin-bottom: 20px;
}

.comm__txt {
    margin-bottom: 20px;
}

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

    .comm__img {
        width: 104%;
        margin-left: -4%;
    }

    .comm__box {
        padding: 80px 0 60px 10%;
        margin-top: -40px;

        &::before {
            width: 110%;
            height: 100%;
            border-radius: 150px 0 0 150px;
            top: 0;
            left: 0;
        }
    }

    .comm__ttl {
        margin-bottom: 30px;
    }

    .comm__h3 {
        width: 500px;
        margin: 0 0 30px auto;
    }

    .comm__txt {
        text-align: right;
        margin-bottom: 0;
    }

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

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

    .comm__img {
        width: 110%;
        margin-left: -10%;
    }

    .comm__box {
        padding: 200px 0 150px 10%;
        margin-top: -100px;

        &::before {
            width: 110%;
            height: 100%;
            border-radius: 540px 0 0 540px;
            top: 0;
            left: 0;
        }
    }

    .comm__ttl {
        width: fit-content;
        margin: 0 0 60px auto;
    }

    .comm__h3 {
        width: fit-content;
        margin: 0 0 30px auto;
    }

    .comm__txt {
        text-align: right;
        margin-bottom: 0;
    }

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

    .comm__copy {
        width: fit-content;
        margin: 0 0 0 auto;
    }
}

/*============================
   contents
============================*/
.cont__items {
    max-width: 1920px;
    margin: 0 auto;
}

.cont__item {
    position: relative;

}

.cont__ttl {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    .font-en {
        font-size: 5rem;
    }

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

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

    .cont__item {
        width: 33.33%;
        max-width: 640px;

    }

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

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

    .cont__item {
        width: 33.33%;

    }

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

/*============================
   worry
============================*/
.worry {
    padding: 100px 0;
    background:
        url(../images/worry_bg.png) no-repeat center center/cover,
        linear-gradient(90deg, #de8baf, #f0bed4);
}

.worry__ttl {
    width: fit-content;
    margin: 0 auto 30px;
}

.worry__btn {
    margin: 0 auto 15px;

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

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

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

    .worry__ttl {
        width: 550px;
        margin: 0 auto 50px;
    }

    .worry__btn {
        margin: 0 2% 0;

    }

}

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

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

    .worry__btn {
        margin: 0 2% 0;

    }

}

/*============================
   case
============================*/
.case {
    padding: 60px 0;
    background: linear-gradient(30deg, #d96a9a, #de8baf);
}

.case__swiper--area {
    padding-bottom: 40px;
}

.case__swiper {
    width: 150%;
}

.case__atc {
    width: 300px;
    margin-right: 20px;
}

.case__h3 {
    margin: 1em 0 .5em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.case__txt {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
}

.case__cat {
    width: fit-content;
    margin: 1em 0 0;
    padding: .25em 1em;
    text-align: center;
    border: solid 1px #fff;
}

.c-swiper-pagination {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 99;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
}


.case .swiper-pagination-bullet {
    display: block;
    background: none;
    flex: 1 1 auto;
    height: 3px;
    width: 100%;
    margin: 0 !important;
    background: #fff;
    border-radius: 0 !important;
    opacity: 1;
    text-align: left;
    line-height: 1;
    transition: .3s ease-out;
    position: relative;
    opacity: 1;

}

.case .swiper-pagination-bullet-active {
    opacity: 1;
    background: #ce3f7d;
}


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

    .case__swiper--area {
        padding-bottom: 40px;
    }

    .case__swiper {
        width: 120%;
    }

    .case__atc {
        width: 400px;
        margin-right: 30px;
    }

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


    .c-swiper-pagination {
        left: 0;
        bottom: 0;
    }


    .case .swiper-pagination-bullet {
        height: 3px;
    }

}

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

    .case__swiper--area {
        padding-bottom: 60px;
    }

    .case__swiper {
        width: 150%;
    }

    .case__atc {
        width: 611px;
        margin-right: 40px;
    }

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


    .c-swiper-pagination {
        left: 0;
        bottom: 0;
    }


    .case .swiper-pagination-bullet {
        height: 3px;
    }

}

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

.info__left {
    margin-bottom: 30px;
}

.info__box {
    padding: 60px 6%;
    background: linear-gradient(#d96a9a, #de8baf);
    border-radius: 100px;

}

.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__copy {
    margin: -2em auto 0;
}

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

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

    .info__img {
        width: 50%;
        max-width: 732px;
        margin: 100px 0 0;
    }

    .info__box {
        padding: 100px 6%;
        border-radius: 150px;

    }

    .info__li {
        margin-bottom: 1em;
    }

    .info__th {
        width: 6em;
    }

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

    }

    .info__copy {
        margin: -2em auto 0;
    }
}

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

    .info__left {
        width: 45%;
    }

    .info__img {
        width: 50%;
        margin: 160px 0 0;
    }

    .info__box {
        padding: 150px 10%;
        border-radius: 360px;
        min-height: 900px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .info__box--inner {
        width: fit-content;
        margin: 0 auto;
    }

    .info__li {
        margin-bottom: 2em;
    }

    .info__th {
        width: 8em;
    }

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

    }

    .info__copy {
        margin: -150px auto 0;
    }
}