@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;
    padding: 30px 0 0;
}

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

.kv__img {
    width: 100%;

    & img {
        object-fit: cover;
        width: 100%;
        min-height: 360px;
        object-position: center bottom;
    }
}


.kv__copy {
    width: fit-content;
    z-index: 99;
    white-space: nowrap;
    position: absolute;
    top: 50%;
    left: 20%;
    transform: translate(-50%, -50%);

    .txt {
        font-size: min(2rem, 6vw);
    }
}

.kv__copy02 {
    max-width: 569px;
    width: calc((569/1920)*150%);
    z-index: 99;
    white-space: nowrap;
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
}



.kv__scroll {
    position: absolute;
    max-width: 12px;
    min-width: 8px;
    width: calc((12/1920)*100%);
    left: 5%;
    top: 90%;
    transform: translate(-50%, -50%);
    z-index: 9;

}

.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;
        padding: 40px 0 0;
    }

    .kv__copy {
        top: 60%;
        left: 20%;

        .txt {
            font-size: min(3.6rem, 2.4vw);
        }
    }

    .kv__copy02 {
        width: calc((569/1920)*100%);
        top: 80%;
        left: 45%;
    }



    .kv__scroll {
        min-width: 8px;
        width: calc((12/1920)*100%);
        left: 5%;
        top: 90%;

    }

}



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


    .kv__copy {
        top: 60%;
        left: 20%;

        .txt {
            font-size: min(3.6rem, 2.2vw);
        }
    }

    .kv__copy02 {
        width: calc((569/1920)*100%);
        top: 80%;
        left: 45%;
    }



    .kv__scroll {
        min-width: 8px;
        width: calc((12/1920)*100%);
        left: 3%;
        top: 90%;

    }

}


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

.conc__top {
    display: flex;
    flex-direction: column-reverse;
    margin-bottom: 30px;
}

.conc__txtwrap {
    margin-bottom: 30px;
}

.conc__ttl {
    .font-en {
        margin-bottom: 1em;
    }

    .txt {
        line-height: 1.5;
    }
}

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

    .conc__top {
        flex-direction: row;
        margin-bottom: 0;
    }

    .conc__img {
        width: 55%;
    }

    .conc__txtwrap {
        width: 40%;
        margin-bottom: 0;
    }

    .conc__ttl {
        .font-en {
            margin-bottom: 1em;
        }
    }

    .conc__btm {
        .conc__txtwrap {
            width: 45%;
        }
    }

    .conc__img02 {
        width: 50%;
    }
}

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


    .conc__img {
        width: 55%;
    }

    .conc__txtwrap {
        width: 40%;
    }

    .conc__btm {
        margin-top: -30px;
        .conc__txtwrap {
            width: 45%;
        }
    }

    .conc__img02 {
        width: 50%;
    }
}

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

.worry__box {
    position: relative;
    padding: 30px 5% 10px;

    &::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background: linear-gradient(#fcfaf7, #ffffff);
        left: 0;
        top: 0;
        z-index: -1;
    }
}

.worry__li {
    padding-left: 1.5em;
    margin-bottom: 1em;
    position: relative;

    &::before {
        content: "";
        position: absolute;
        width: 16px;
        height: 16px;
        left: 0;
        top: .3em;
        background: url(../images/worry_check.png) no-repeat center center/contain;
    }
}

.worry__h3 {
    font-size: 1.4rem;
}

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

    .worry__box {
        padding: 40px 5% 10px;

    }

    .worry__li {
        width: 49%;
        padding-left: 1.5em;
        margin-bottom: 1em;

        &::before {
            width: 16px;
            height: 16px;
            left: 0;
            top: .3em;
        }
    }

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

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

    .worry__box {
        padding: 60px 5% 10px;

    }

    .worry__li {
        width: 49%;
        padding-left: 1.5em;
        margin-bottom: 1em;

        &::before {
            width: 16px;
            height: 16px;
            left: 0;
            top: .3em;
        }
    }

    .worry__h3 {
        font-size: 2.6rem;
    }
}

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

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

.menu__box {
    padding: 30px 5% 0;
    background: rgba(255, 255, 255, .85);
}

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

.menu__atc {
    margin: 0 auto 30px;

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

.menu__h3 {
    display: flex;
    align-items: center;
    margin: 1em 0 .5em auto;

    .font-en {
        margin-left: 1em;
    }
}

.menu__btn02 {

    margin: 1em 0 0 auto;
}


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

        &::before {
            height: 60%;
        }
    }

    .menu__box {
        padding: 40px 5% 0;
    }

    .menu__atc {
        margin: 0;
        width: 48%;
    }

    .menu__h3 {
        margin: 1em 0 .5em auto;

        .font-en {
            margin-left: 1em;
        }
    }



}

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

        &::before {
            height: 60%;
        }
    }

    .menu__box {
        padding: 100px 5% 0;
    }

    .menu__atc {
        width: 48%;
        padding-bottom: 2em;
        position: relative;
    }

    .menu__h3 {
        margin: 1em 0 .5em auto;

        .font-en {
            margin-left: 1em;
        }
    }

    .menu__btn02 {
        position: absolute;
        bottom: 0;
        right: 0;
        margin-top: 0;
    }


}

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

    &::before {
        content: "";
        position: absolute;
        width: 90%;
        height: 100%;
        background: linear-gradient(#fcfaf7, #ffffff);
        left: 0;
        top: 0;
        z-index: -1;
    }
}

.staff__left {
    margin-bottom: 30px;
}

.staff__ttl {
    line-height: 1.5;
    padding-left: 1em;
    border-left: solid 1px #81b37a;
}

.staff__img {
    max-width: 404px;
    position: relative;

    .btn {
        position: absolute;
        max-width: 87px;
        width: calc((87/404)*100%);
        top: 0;
        right: -3%;
        transform: translate(0, -50%);
    }

    .copy {
        position: absolute;
        max-width: 554px;
        width: calc((554/404)*100%);
        left: 100%;
        top: 75%;
        transform: translate(-50%, -50%);
    }
}

.staf__h3 {
    margin: 1em 0 0;

    .font-en {
        margin-bottom: .5em;
    }
}

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

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

    .staff__left {
        width: 48%;
        margin-bottom: 0;
    }

    .staff__ttl {
        line-height: 1.5;
        padding-left: 1em;
        border-left: solid 1px #81b37a;
    }

    .staff__right {
        width: 45%;
    }

    .staff__img {
        .btn {

            width: calc((87/404)*100%);
            top: 0;
            right: -3%;
        }

        .copy {
            width: calc((554/404)*100%);
            left: 100%;
            top: 75%;
        }
    }

    .staf__h3 {
        margin: 1em 0 0;
    }

}

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

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

    .staff__left {
        width: 50%;
    }

    .staff__txtwarp {
        max-width: 490px;
        margin: 0 0 0 auto;
    }


    .staff__right {
        width: 45%;
    }

    .staff__right--inner {
        max-width: 404px;
        position: relative;
    }

    .staff__img {

        .btn {

            width: calc((87/404)*100%);
            top: 0;
            right: -3%;
        }

        .copy {
            width: calc((554/404)*100%);
            left: 150%;
            top: 65%;
        }
    }

    .staf__h3 {
        margin: 1em 0 0;
    }

}

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

.case__ttl {
    margin-bottom: 50px;

    .font-en {
        margin-bottom: .5em;
    }
}

.case__swiper {
    overflow: visible;
}

.case__copy {
    max-width: 597px;
    width: calc((597/1920)*150%);
    top: 0;
    left: 5%;
    transform: translate(0, -50%);
    z-index: 9;
    pointer-events: none;
}

.case__img {
    max-width: 400px;
    width: 300px;
    margin: 0 10px;
}

.c-swiper-button-prev {
    position: absolute;
    margin: 0;
    width: 40px;
    height: 4px;
    left: calc(50% - 150px);
    transform: translate(-50%, -50%);
    top: 50%;
    z-index: 9;

}

.c-swiper-button-next {
    position: absolute;
    margin: 0;
    width: 40px;
    height: 4px;
    left: calc(50% + 150px);
    transform: translate(-50%, -50%);
    top: 50%;
    z-index: 9;

}

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

.c-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) {
    .case {
        padding: 80px 0 0;
    }

    .case__copy {
        width: calc((597/1920)*100%);
        top: 0;
        left: 5%;
    }

    .case__img {
        max-width: 400px;
        width: 300px;
        margin: 0 15px;
    }

    .c-swiper-button-prev {
        width: 50px;
        height: 5px;
        left: calc(50% - 150px);
        top: 50%;

    }

    .c-swiper-button-next {
        width: 50px;
        height: 5px;
        left: calc(50% + 150px);
    }

}

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

    .cut__img {
        max-width: 400px;
        width: 400px;
        margin: 0 20px;
    }

    .c-swiper-button-prev {
        width: 60px;
        height: 6px;
        left: calc(50% - 200px);
        top: 50%;

    }

    .c-swiper-button-next {
        width: 60px;
        height: 6px;
        left: calc(50% + 200px);
    }
}


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

}

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

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

.news__atc {
    margin-bottom: 1.5em;

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

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


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

}

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

    }

    .news__left {
        width: 30%;
        display: block;
        margin-bottom: 0;
    }

    .news__ttl {
        margin-bottom: 30px;

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

    .news__atcwrap {
        width: 70%;
    }

    .news__atc {
        margin-bottom: 1.5em;

        & a {
            display: flex;
        }

    }


    .news__atc--ttl {
        padding-left: 1.5em
    }

}

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

    }

    .news__left {
        width: 30%;
    }

    .news__ttl {
        margin-bottom: 50px;

    }

    .news__atcwrap {
        width: 70%;
    }

    .news__atc {
        margin-bottom: 1.5em;

    }


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

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

.info__ttl {
    margin-bottom: 30px;

    .font-en {
        margin-bottom: .5em;
    }
}

.info__li {
    margin-bottom: 1em;
}

.info__th {
    white-space: nowrap;
    display: block;
}

.info__td {
    display: block;
}

.info__btn {
    margin: 30px auto;
}

.info__copy {
    width: 80%;
    margin: -30px 0 0 auto;
    display: block;
}

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

    .info__ttl {
        margin-bottom: 60px;
        text-align: center;
    }

    .info__li {
        display: flex;
        margin-bottom: 1em;
        position: relative;
        z-index: 9;
    }

    .info__th {

        width: 10em;
    }

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

    .info__btn {
        margin: 30px 0 0 auto;
        z-index: 9;
    }

    .info__map {
        position: absolute;
        top: 65%;
        left: 50%;
        max-width: 608px;
        width: calc((608/1280)*100%);
        transform: translate(-50%, -50%);
        pointer-events: none;
    }

    .info__copy {
        position: absolute;
        max-width: 597px;
        width: calc((597/1280)*100%);
        margin: 0;
        top: 50%;
        left: 85%;
        transform: translate(-50%, -50%);
        pointer-events: none;
    }
}

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

    .info__ttl {
        margin-bottom: 150px;
    }

    .info__li {
        margin-bottom: 1em;
    }

    .info__th {

        width: 10em;
    }

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

    .info__btn {
        margin: 30px 0 0 auto;
        z-index: 9;
    }

    .info__map {
        top: 90%;
        left: 50%;
        width: calc((608/1280)*100%);
    }

    .info__copy {
        width: calc((597/1280)*100%);
        top: 50%;
        left: 95%;
    }
}