@charset "UTF-8";

body {
    opacity: .1;
    animation: bodyAppear .3s .3s forwards;
}

@keyframes bodyAppear {
    0% {
        opacity: .1;
    }

    100% {
        opacity: 1;
    }
}

.visually-hidden {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

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

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

/*============================
	kv 
============================*/

.kv {
    margin-top: 60px;
    background: #111111;
    padding-bottom: 5%;
}

.kv__item {
    margin: 0 auto 5%;
    width: 95%;
    position: relative;

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

.kv__img {
    width: 100%;

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

.kv__copy {
    max-width: 157px;
    width: calc((157/1920)*250%);
    z-index: 99;
    white-space: nowrap;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    .obj {
        position: absolute;
        max-width: 366px;
        width: calc((366/157)*100%);
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        mix-blend-mode: overlay;
    }
}

.kv__txtwrap {
    position: absolute;
    width: 100%;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    white-space: nowrap;
    z-index: 99;
}

.kv__copy02 {
    text-align: center;
    font-size: 2rem;
    line-height: 1.5;
    margin-bottom: 1em;
}

.kv__btn {
    margin: 0 auto;
    background: #181c4f;
    border-color: #181c4f;

    &:hover {
        color: #181c4f;
    }
}

.kv__item:nth-child(2) {
    .kv__txtwrap {
        top: 75%;
    }

    .kv__btn {
        background: #784d20;
        border-color: #784d20;

        &:hover {
            color: #784d20;
            background: #fff;

        }
    }


}

.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: 60px;
    }

    .kv__item {
        margin: 0;
        width: 50%;
        padding: 0 2%;
    }


    .kv__copy {
        width: calc((157/1920)*100%);
    }

    .kv__txtwrap {
        top: 55%;
        left: 50%;
        width: 70%;
    }

    .kv__copy02 {
        font-size: 2rem;
        line-height: 1.5;
        min-height: 3em;
        margin-bottom: 1em;
    }

    .kv__btn {
        margin: 0 auto;
    }

    .kv__item:nth-child(2) {
        .kv__txtwrap {
            top: 55%;
        }

    }

}



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

    .kv__item {
        margin: 0;
        width: 50%;
        padding: 0 2%;
    }


    .kv__copy {
        width: calc((157/1920)*100%);
    }

    .kv__txtwrap {
        top: 55%;
        width: 60%;
    }

    .kv__copy02 {
        font-size: min(3rem, 2vw);
        margin-bottom: 1em;
    }

    .kv__item:nth-child(2) {
        .kv__txtwrap {
            top: 55%;
        }

    }

}


/*============================
   concept
============================*/
.conc__mv {
    position: relative;

    .img {
        object-fit: cover;
        width: 100%;
        min-height: 200px;
    }

    .obj {
        top: 100%;
        left: 50%;
        width: 100%;
        transform: translate(-50%, -50%);
    }
}

.conc__main {
    padding: 40px 0 0;
    background:
        url(../images/concept_obj02.png) no-repeat right 75%/37%,
        url(../images/bg01.png);

}

.conc__img {
    width: 95%;
}

.conc__copy {
    display: flex;
    flex-direction: row-reverse;
    top: -7em;
    left: 5%;
    white-space: nowrap;

    .txt {
        display: block;
        background: #403f3d;
        color: #fff;
        height: fit-content;
        padding: .5em 0;
        height: fit-content;
        margin-right: .5em;

        &:nth-child(2) {
            background: #131313;
        }
    }
}

.conc__right {
    padding: 30px 5% 0;
}

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


    .conc__main {
        padding: 60px 0 0;
        background:
            url(../images/concept_obj02.png) no-repeat right 75%/37%,
            url(../images/bg01.png);

    }

    .conc__img {
        width: 50%;
    }

    .conc__copy {
        top: -10em;
        left: 5%;

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

    .conc__right {
        width: 45%;
        padding: 0 3% 0 0;
    }
}

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

    }

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

    .conc__img {
        width: 50%;

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

    .conc__copy {
        top: -10em;
        left: 25%;

        .txt {
            margin-right: .5em;

        }
    }

    .conc__right {
        width: 45%;
        padding: 0 1% 0 0;
    }
}

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

    &::before {
        content: "";
        position: absolute;
        width: 100%;
        height: calc(100% + 100px);
        background: url(../images/bg01.png);
        top: 0;
        left: 0;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 100px));
    }
}

.comm__obj01 {
    position: absolute;
    max-width: 564px;
    width: calc((564/1920)*100%);
    left: 0;
    top: 25%;
    transform: translate(0, -50%);
    mix-blend-mode: overlay;
}

.comm__obj02 {
    position: absolute;
    max-width: 389px;
    width: calc((389/1920)*100%);
    right: 0;
    top: 85%;
    transform: translate(0, -50%);
    mix-blend-mode: multiply;
}

.comm__top {
    display: flex;
}

.comm__img {
    width: calc(100% - 100px);

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

.comm__ttl {
    margin: 0 auto;
    width: fit-content;
    padding: 0 .5em;
    border-left: solid 2px #271401;
    border-right: solid 2px #271401;
    text-align: center;
    position: relative;

    &::before {

        content: "";
        position: absolute;
        width: calc(100% - 4px);
        height: 100%;
        border-left: solid 1px #271401;
        border-right: solid 1px #271401;
        top: 0;
        left: 50%;
        transform: translate(-50%);
    }
}

.comm__img02 {
    margin: -30px auto 0;
    max-width: 350px;
}

.comm__h3 {
    .txt {
        display: block;
        margin-bottom: .5em;
        padding: .25em .5em;
        width: fit-content;
        background: #403f3d;
        color: #fff;

        &:nth-child(2) {
            background: #131313;
        }
    }
}

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

        &::before {
            height: calc(100% + 100px);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 100px));
        }
    }

    .comm__obj01 {
        width: calc((564/1920)*100%);
        left: 0;
        top: 40%;
    }

    .comm__obj02 {
        width: calc((389/1920)*100%);
        right: 0;
        top: 85%;
    }

    .comm__top {
        display: flex;
    }

    .comm__top {
        align-items: center;
    }

    .comm__img {
        width: 70%;

        & img {
            height: 350px;
        }
    }

    .comm__ttl {
        margin: 0 auto;
        padding: .5em .5em;
        border-left: solid 2px #271401;
        border-right: solid 2px #271401;

        &::before {

            width: calc(100% - 6px);
        }
    }

    .comm__img02 {
        margin: -30px -5% 0 auto;
        max-width: 767px;
        width: 40%;
    }

    .comm__txtwrap {
        width: 65%;
        display: flex;
        align-items: flex-end;
    }

    .comm__h3 {
        display: flex;
        flex-direction: row-reverse;

        .txt {
            margin: -4em .5em 0 0;
            padding: .5em .25em;
            -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
            font-feature-settings: initial;
            height: fit-content;

        }
    }
}

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

        &::before {
            height: calc(100% + 250px);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 250px));
        }
    }

    .comm__obj01 {
        width: calc((564/1920)*100%);
        left: 0;
        top: 35%;
    }

    .comm__obj02 {
        width: calc((389/1920)*100%);
        right: 0;
        top: 85%;
    }

    .comm__top {
        display: flex;
    }

    .comm__top {
        align-items: center;
    }

    .comm__img {
        width: 70%;

        & img {
            height: 650px;
        }
    }

    .comm__ttl {
        margin: 0 auto;
        padding: .5em .5em;
        border-left: solid 6px #271401;
        border-right: solid 6px #271401;

        &::before {
            border-width: 2px;
            width: calc(100% - 8px);
        }
    }

    .comm__img02 {
        margin: -200px -5% 0 auto;
        width: 40%;
    }

    .comm__txtwrap {
        width: 65%;
    }

    .comm__h3 {
        .txt {
            margin: -4em .5em 0 0;
            padding: .5em .25em;

        }
    }

    .comm__txt {
        max-width: 32em;
    }
}


/*============================
   menu
============================*/
.menu {
    padding: 200px 0 60px;
    color: #fff;

    &::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background: url(../images/bg02.png);
        top: 0;
        left: 50%;
        transform: translate(-50%);
        z-index: -1;
    }
}

.menu__obj {
    max-width: 512px;
    width: calc((512/1920)*150%);
    right: 0;
    top: 50px;

    .yuge {
        position: absolute;
        max-width: 460px;
        width: calc((460/512)*100%);
        top: 0;
        left: 25%;
        transform: translate(-50%, -50%);
        mix-blend-mode: screen;
    }
}

.menu__copy {
    margin: 0 0 -2em 45%;
    line-height: 1.5;
}

.menu__img {
    width: 106%;
    margin-bottom: 20px;

}

.menu__btn {
    margin-bottom: 15px;

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

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

    }

    .menu__obj {
        width: calc((512/1920)*100%);
        right: 0;
        top: 50px;

    }

    .menu__copy {
        margin: 0 0 -3em 45%;
    }

    .menu__img {
        width: 104%;
        margin-bottom: 20px;

    }

    .menu__txt {
        width: 60%;
        margin: -5em 0 2em auto;
    }

    .menu__btn {
        margin: 0 2%;

    }

}

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

    }

    .menu__obj {
        width: calc((512/1920)*100%);
        right: 0;
        top: 180px;

    }

    .menu__copy {
        margin: 0 0 -4em 40%;
    }

    .menu__img {
        width: 105%;
        margin-bottom: 0;

    }

    .menu__txt {
        width: 100%;
        margin: -6em 0 2em 40%;
        max-width: 32em;
    }

    .menu__btn {
        margin: 0 2%;

    }
}


/*============================
   info
============================*/
.info {
    padding: 60px 0;
    background: url(../images/bg01.png);
}

.info__obj01 {
    position: absolute;
    max-width: 698px;
    width: calc((698/1920)*100%);
    left: 25%;
    top: 75%;
    transform: translate(-50%, -50%);
}

.info__obj02 {
    position: absolute;
    max-width: 858px;
    width: calc((858/1920)*100%);
    right: 0;
    top: 0;
    mix-blend-mode: overlay;
}

.info__btm {
    width: 100%;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}

.info__item {
    margin-bottom: 40px;

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

    & iframe {
        display: block;
        width: 100%;
        height: 220px;
        margin-bottom: 20px;
    }
}

.info__ttl {
    & img {
        max-width: 120px;
        display: block;
        margin: 0 auto 1em;
    }
}


.info__li {
    padding: 1em 0;
    display: flex;
    border-bottom: solid 1px #d5ceca;
}

.info__th {
    white-space: nowrap;
    width: 6em;
    font-weight: bold;
}

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

.info__txt {
    margin-top: 1em;
}

.info__img {
    width: fit-content;
    margin: 0 auto 20px;
}

.info__btn {
    margin: 0 auto;
    background: #181c4f;
    border-color: #181c4f;
    width: 100%;

    &:hover {
        color: #181c4f;
    }
}

.info__item:nth-child(2) {

    .info__btn {
        background: #784d20;
        border-color: #784d20;

        &:hover {
            color: #784d20;
            background: #fff;

        }
    }


}

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

    .info__item {
        width: 48%;
        margin-bottom: 0;

        max-width: 469px;

        & iframe {

            height: 220px;
            margin-bottom: 30px;
        }
    }

    .info__ttl {
        & img {
            max-width: 140px;
            margin: 0 auto 1em;
        }
    }


    .info__li {
        padding: 1em 0;
    }

    .info__th {
        width: 6em;
    }

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

    .info__img {
        margin: 0 auto 30px;
    }

    .info__btn {
        margin: 0 auto;
    }
}

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

    .info__item {
        width: 48%;

        & iframe {

            height: 220px;
            margin-bottom: 30px;
        }
    }

    .info__ttl {
        & img {
            max-width: 100%;
            width: fit-content;
            margin: 0 auto 1em;
        }
    }


    .info__li {
        padding: 1em 0;
    }

    .info__th {
        width: 8em;
    }

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

    .info__img {
        margin: 0 auto 30px;
    }

    .info__btn {
        margin: 0 auto;
    }
}


/*============================
   recruit
============================*/

.recruit {
    padding: 80px 0;
    background: url(../images/recruit_bg.jpg) no-repeat center center/cover;
    color: #fff;
}

.rec__box {
    padding: 30px 5%;
    border: solid 1px #fff;
}

.rec__h2 {
    .fs-30 {
        display: block;
        margin-bottom: .5em;
    }

    .fs-50 {
        display: block;
        line-height: 1.4;
    }
}

.rec__btn {
    max-width: 184px;
    width: 100px;
    margin: 20px auto 0;
    display: block;
}

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

    .rec__box {
        padding: 40px 25% 40px 5%;
    }

    .rec__h2 {
        .fs-30 {
            margin-bottom: .5em;
        }

    }

    .rec__btn {
        max-width: 184px;
        width: 120px;
        margin: 0;
        position: absolute;
        top: 75%;
        left: 85%;
        transform: translate(-50%, -50%);
    }
}

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

    .rec__box {
        padding: 50px 25% 50px 5%;
    }

    .rec__h2 {
        .fs-30 {
            margin-bottom: .5em;
        }

    }

    .rec__btn {
        max-width: 184px;
        width: fit-content;
        top: 65%;
        left: 85%;
    }
}