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

.kv__bg {
    max-width: 1137px;
    width: calc((1137/1920)*100%);
    top: 0;
    left: 0;
    z-index: -1;
}

.kv__swiper {
    width: 95%;
    margin: 0 0 0 auto;
    position: relative;
    z-index: 9;

    & img {
        width: 100%;
    }

}


.kv__copy {
    max-width: 771px;
    width: 80%;
    position: relative;
    z-index: 99;
    margin: -20px auto 0;
    pointer-events: none;
}

.kv__btn {
    max-width: 232px;
    width: 120px;
    margin: -80px 5% 0 auto;
    display: block;
    position: relative;
    z-index: 99;
}

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


.kv__scroll {
    max-width: 12px;
    min-width: 8px;
    width: calc((12/1092)*100%);
    position: absolute;
    display: none;
    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;
    margin: 0 10px !important;
    background: #666666;
    opacity: 1;
    width: 15px;
    height: 2px;
    border-radius: 0% !important;
    line-height: 1;
    transition: .3s ease-out;
    position: relative;
    opacity: .5;
}

.kv .swiper-pagination-bullet-active {
    opacity: 1;

    background: #302210;
}



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

    .kv {
        margin-top: 62px;
        padding: 30px 0 0;
    }

    .kv__swiper {
        width: calc((1480/1920)*100%);
        margin: 0 0 0 auto;
    }


    .kv__copy {
        width: calc((771/1920)*100%);
        position: absolute;
        margin: 0;
        transform: translate(-50%, -50%);
        top: 60%;
        left: 25%;
    }

    .kv__btn {
        width: calc((232/1920)*100%);
        margin: 0;
        position: absolute;
        transform: translate(0, -50%);
        top: 80%;
        right: 3%;
    }


    .kv__scroll {
        max-width: 10px;
        min-width: 6px;
        width: calc((10/1092)*100%);
        position: absolute;
        display: block;
        left: 3%;
        bottom: 0;
        z-index: 99;
    }


    .kv .swiper-pagination {
        left: 5%;
        bottom: auto;
        top: 65%;
        transform: translate(0, -50%);
    }


    .kv .swiper-pagination-bullet {
        margin: 0 10px !important;
        width: 15px;
        height: 2px;
    }


}


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

    .kv {
        margin-top: 150px;
        padding: 0;
    }

    .kv__bg {
        top: -150px;
    }

    .kv__swiper {
        width: calc((1480/1920)*100%);
        margin: 0 0 0 auto;
    }


    .kv__copy {
        width: calc((771/1920)*100%);
        top: 65%;
        left: 25%;
    }

    .kv__btn {
        width: calc((232/1920)*100%);
        top: 70%;
        right: 3%;
    }

    .kv__scroll {
        max-width: 10px;
        min-width: 6px;
        width: calc((10/1092)*100%);
        left: 3%;
        bottom: 0;
    }


    .kv .swiper-pagination {
        left: 5%;
        top: 75%;
    }


    .kv .swiper-pagination-bullet {
        margin: 0 10px !important;
        width: 20px;
        height: 3px;
    }



}

/*============================
   concept
============================*/
.concept {
    padding: 30px 0 0;

}

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

    }

    .conc__right {
        width: 60%;
    }

}

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

    }

    .conc__right {
        width: 55%;
        max-width: 828px;
    }

}


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

    &::before {
        content: "";
        position: absolute;
        width: 100%;
        height: calc((100% + 60px));
        background: url(../images/commit_bg.png) no-repeat right top/cover;
        bottom: 0;
        left: 0;
        z-index: -1;
    }
}

.comm__left {
    margin-bottom: 30px;
}

.comm__img {
    margin-right: -10%;
}

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

        &::before {
            height: calc((100% + 100px));
            background: url(../images/commit_bg.png) no-repeat center top/cover;
        }
    }

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

    .comm__img {
        width: 55%;
        margin-right: -5%;
    }

    .comm__ttl {
        margin-bottom: 30px;
    }
}

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

        &::before {
            height: calc((100% + 150px));
            background: url(../images/commit_bg.png) no-repeat center top/cover;
        }
    }

    .comm__left {
        width: 45%;
    }

    .comm__img {
        width: 55%;
        margin-right: -5%;
    }

    .comm__ttl {
        margin-bottom: 50px;
    }
}


/*============================
   scene
============================*/

.scene__item {
    & a {
        display: block;
        width: 100%;
        height: 100%;
        padding: 40px 5%;
        background: url(../images/scene_bg01.jpg) no-repeat center center/cover;
        color: #fff;
    }

    &:nth-child(2) a {
        background: url(../images/scene_bg02.jpg) no-repeat center center/cover;
    }

    &:nth-child(3) a {
        background: url(../images/scene_bg03.jpg) no-repeat center center/cover;
    }
}

.scene__h3 {
    .num {
        display: block;
        text-align: center;
    }

    .txt {
        width: fit-content;
        margin: 1em auto;
        display: block;
    }
}

.scene__btn {
    margin: 20px auto 0;
    background: none;
    border: solid 1px #fff;
}

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

    .scene__item {
        width: 33.33%;

        & a {
            padding: 60px 5% 120px;
        }
    }

    .scene__h3 {

        .txt {
            margin: 1em auto;
            min-height: 11em;
        }
    }

    .scene__btn {
        position: absolute;
        margin: 0;
        left: 50%;
        bottom: 50px;
        transform: translate(-50%);
    }
}

@media screen and (min-width:1025px) {
    .scene__items {
        max-width: 1920px;
        margin: 0 auto;
    }

    .scene__item {
        width: 33.33%;

        & a {
            padding: 120px 5% 240px;
        }
    }

    .scene__h3 {
        .txt {
            margin: 1em auto;
            min-height: 11em;
        }
    }

    .scene__txt {
        max-width: 436px;
        margin: 0 auto;
    }

    .scene__btn {
        left: 50%;
        bottom: 90px;
    }
}

/*============================
   menu
============================*/

.menu {
    padding: 40px 0 60px;
    background: url(../images/menu_bg.png) no-repeat center center/cover;
}

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

    .menu__left {
        width: 45%;
    }

    .menu__img {
        width: 52%;
    }
}

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

    .menu__left {
        width: 45%;
    }

    .menu__img {
        width: 52%;
    }
}


/*============================
   gallery
============================*/

.gallary__swiper {
    .swiper-wrapper {
        transition-timing-function: linear;
    }
}

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

.gallery__img {
    max-width: 384px;
    width: 240px;
    margin: 0 2px;
}


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


    .gallery__obj {
        width: calc((506/1920)*100%);
        top: -5%;
        left: 1%;
    }

    .gallery__img {
        max-width: 384px;
        width: 240px;
        margin: 0 2px;
    }

}

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

    .gallery__obj {
        width: calc((506/1920)*100%);
        top: -10%;
        left: 1%;
    }

    .gallery__img {
        max-width: 384px;
        width: 384px;
        margin: 0 2px;
    }

}


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

.rec__bg {
    max-width: 856px;
    width: calc((856/1920)*100%);
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
    z-index: -1;
}

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

.rec__obj {
    max-width: 105px;
    width: 60px;
    right: 5%;
    top: 0;
    transform: translate(0, -50%);
}

.rec__li {
    padding: .5em 0;
    border-bottom: solid 1px #d7d2c7;
    display: flex;
    align-items: flex-start;

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

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

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

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

    .rec__bg {
        width: calc((856/1920)*100%);
        left: 0;
        top: 50%;
    }

    .rec__img {
        width: 50%;
        margin: 0;
    }

    .rec__right {
        width: 45%;
    }

    .rec__obj {
        max-width: 105px;
        width: 60px;
        right: 3%;
        top: 0;
    }

    .rec__li {
        padding: .5em 0;
    }

    .rec__th {
        width: 6em;
    }

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

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

    .rec__bg {
        width: calc((856/1920)*100%);
        top: 50%;
    }

    .rec__img {
        width: 50%;
    }

    .rec__right {
        width: 47%;
    }

    .rec__obj {
        max-width: 105px;
        width: 105px;
        right: 5%;
        top: 0;
    }

    .rec__li {
        padding: .75em 0;
    }

    .rec__th {
        width: 8em;
    }

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


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

    & iframe {
        display: block;
        width: 100%;
        height: 240px;
    }
}

.info__txt {
    margin-bottom: 2em;
}

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

        & iframe {
            height: 240px;
        }
    }

    .info__txt {
        margin: 0 auto 0 -4em;
        padding: 0 1em 0 0;
      display:block;
      min-width:300px;
    }
}

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

        & iframe {
            height: 350px;
        }
    }

    .info__txt {
        margin: 0 auto 0 -3em;
        padding: 0 1em 0 0;
    }
}