@charset "UTF-8";

body {
    opacity: .01;
    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;

    &::before {
        content: "";
        position: absolute;
        width: 65%;
        height: 50%;
        background: url(../images/kv_bg.png) no-repeat center center/cover;
        left: 0;
        bottom: -50px;
        z-index: -1;
    }
}

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

.kv__img {
    width: 100%;

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


.kv__copy {
    position: absolute;
    max-width: 218px;
    width: calc((218/1920)*200%);
    z-index: 99;
    top: 50%;
    right: 5%;
    transform: translate(0, -50%);
}


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

.kv__scroll {
    max-width: 27px;
    width: 20px;
    bottom: -60px;
    left: 2%;
    z-index: 9;
}




/* 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: 15%;
    top: 95%;
    z-index: 99;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    transform: translate(-50%, -50%);
}


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

}

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


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

        &::before {
            width: 65%;
            bottom: -60px;
        }
    }

    .kv__img {
        width: 100%;
    }


    .kv__copy {
        width: calc((218/1920)*100%);
        top: 50%;
        right: auto;
        left: 80%;
        transform: translate(-50%, -50%);
    }

    .kv__scroll {
        max-width: 27px;
        width: 20px;
        bottom: -50px;
        left: 2%;
    }


}



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

        &::before {
            width: 65%;
            bottom: -140px;
        }
    }

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

    .kv__scroll {
        max-width: 27px;
        width: 27px;
        bottom: -90px;
        left: 2%;
    }

}

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

    &::before {
        content: "";
        position: absolute;
        width: 20%;
        height: 200px;
        background: url(../images/concept_obj.png) no-repeat center center/cover;
        left: 0;
        top: 100%;
        transform: translate(0, -50%);
    }
}

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

.conc__right {
    margin-bottom: 30px;
}

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

    & img {
        position: absolute;
        max-width: 256px;
        width: 150px;
        left: 160px;
        top: 80%;
        transform: translate(0, -50%);
    }
}

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

        &::before {
            width: 20%;
            height: 350px;
            top: 90%;
        }
    }

    .conc__flex {
        flex-direction: row;
        justify-content: space-between;
    }

    .conc__img {
        width: 50%;
    }

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

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

        & img {
            max-width: 256px;
            width: 150px;
            left: 180px;
            top: 80%;
        }
    }

}

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

        &::before {
            width: 20%;
            height: 640px;
            top: 90%;
        }
    }

    .conc__img {
        width: 50%;
    }

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

    .conc__ttl {
        & img {
            max-width: 256px;
            width: fit-content;
            left: 300px;
            top: 80%;
        }
    }
}

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

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

}

.cont__item {
    width: 100%;
    margin: 0 auto 30px;

    & a {
        display: block;
        width: 100%;
        height: 100%;
        position: relative;
    }
}

.cont__img {
    width: 90%;

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

.cont__ttl {
    width: fit-content;
    padding: 1.5em 1em;
    background: #e1ddd6;
    min-width: 60%;
    right: 0;
    top: 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    transform: translate(0, -50%);

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

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

    }

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


    .cont__img {

        & img {
            height: 200px;
        }
    }

    .cont__ttl {

        padding: 1.5em 1em;
        min-width: 60%;
        right: 0;
        top: 70%;

    }
}

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

    }

    .cont__item {
        width: 32%;
    }


    .cont__img {

        & img {
            height: 300px;
        }
    }

    .cont__ttl {

        padding: 1.5em 1em;
        min-width: 60%;
        right: 0;
        top: 70%;

    }
}

/*============================
   voice
============================*/
.voice {
    padding: 60px 0;
    background: #c8c7c5;
}

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

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

.voice__atc {
    padding: 40px 5%;
    background: url(../images/voice_bg01.png) no-repeat center center/cover;
    color: #fff;
    margin: 0 auto 20px;
    min-height: 200px;

    &:last-child {
        margin-bottom: 0;
        background: url(../images/voice_bg02.png) no-repeat center center/cover;

    }

}

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

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

    .voice__left {
        display: block;
        width: 25%;
        min-width: 250px;
        margin-bottom: 0;
    }

    .voice__items {
        width: 70%;
    }

    .voice__ttl {
        margin-bottom: 40px;

    }

    .voice__atc {
        width: 48%;
        padding: 40px 5%;
        margin: 0;
    }
}

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

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

    .voice__left {
        width: 25%;
        min-width: 300px;
    }

    .voice__items {
        width: 70%;
    }

    .voice__ttl {
        margin-bottom: 60px;

    }

    .voice__atc {
        width: 48%;
        padding: 100px 5%;
        margin: 0;
    }
}

/*============================
   contents02
============================*/
.contents02 {
    padding: 60px 0;
    background: linear-gradient(transparent 0, transparent 30%, #d5baaf 30%, #d5baaf 100%);
}

.cont02__ttl {
    & img {
        max-width: 311px;
        width: 200px;
        margin: 0 auto 1em;
    }

    .txt {
        font-size: 2rem;
    }
}

.cont02__lead {
    text-align: left;
}

.cont02__img {
    margin-bottom: 30px;
}

.cont02__item {
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    height: 160px;
    margin: 0 auto 30px;
    position: relative;

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

    &::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        border: solid 1px #59554f;
        top: 10px;
        left: 10px;
    }

    &::after {
        content: "";
        position: absolute;
        width: 10px;
        height: 10px;
        background: #59554f;
        top: 20px;
        right: 10px;
        clip-path: polygon(100% 0, 0 0, 100% 100%);
    }
}

.cont02__ico {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;

    & img {
        transform: scale(.75);
    }


}

.cont02__h3 {
    font-size: 1.8rem;
    margin: 0 auto 0;
    white-space: nowrap;
}

@media screen and (min-width:768px) {
    .contents02 {
        padding: 80px 0;
        background: linear-gradient(transparent 0, transparent 40%, #d5baaf 40%, #d5baaf 100%);
    }

    .cont02__ttl {
        & img {
            max-width: 311px;
            width: 240px;
            margin: 0 auto 1em;
        }

        .txt {
            font-size: 3rem;
        }
    }

    .cont02__lead {
        text-align: center;
        letter-spacing: 0;
    }

    .cont02__img {
        margin-bottom: 50px;
    }

    .cont02__item {
        padding: 50px 5%;
        width: 31%;
        height: 200px;
        margin: 0;

        &::before {
            top: 10px;
            left: 10px;
        }

        &::after {
            width: 10px;
            height: 10px;
            top: 20px;
            right: 10px;
        }
    }

    .cont02__ico {
        height: 70px;

        & img {
            transform: scale(.75);
        }


    }

    .cont02__h3 {
        font-size: 1.8rem;
    }

}

@media screen and (min-width:1025px) {
    .contents02 {
        padding: 120px 0;
        background: linear-gradient(transparent 0, transparent 40%, #d5baaf 40%, #d5baaf 100%);
    }

    .cont02__ttl {
        & img {
            max-width: 311px;
            width: fit-content;
            margin: 0 auto 1em;
        }

        .txt {
            font-size: 4.2rem;
        }
    }

    .cont02__lead {
        letter-spacing: 0;
    }

    .cont02__img {
        max-width: 1100px;
        margin: 0 auto 80px;
    }

    .cont02__items {
        max-width: 1280px;
        margin: 0 auto;
    }

    .cont02__item {
        padding: 50px 5%;
        width: 31%;
        height: 226px;
        max-width: 340px;

        &::before {
            top: 10px;
            left: 10px;
        }

        &::after {
            width: 10px;
            height: 10px;
            top: 20px;
            right: 10px;
        }
    }

    .cont02__ico {
        height: 80px;

        & img {
            transform: scale(1);
        }


    }

    .cont02__h3 {
        font-size: 1.8rem;
    }

}