@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;
}


.kv__img {
    position: relative;
    z-index: 9;
    width: 100%;
}


.kv__txtwrap {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99;
}


.kv__copy {
    max-width: 740px;
    width: calc((740/960)*120%);
    z-index: 9;
    pointer-events: none;
    margin: 0 auto 5%;
}


.kv__btn {
    max-width: 160px;
    margin: 0 auto;
}

.kv__item:nth-child(2) {
    .kv__copy {
        max-width: 500px;
        width: calc((500/960)*120%);
    }

}

.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: 10px;
    height: 10px;
    border-radius: 50% !important;
    line-height: 1;
    transition: .3s ease-out;
    position: relative;
    opacity: .5;
}

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

    background: #666666;
}



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

    .kv {
        margin-top: 62px;
    }

    .kv__flex {
        display: flex;
    }

    .kv__item {
        width: 50%;
    }

    .kv__txtwrap {
        top: 50%;
        left: 50%;
    }


    .kv__copy {
        width: calc((740/960)*100%);
        margin: 0 auto 5%;
    }


    .kv__btn {
        max-width: 200px;
        margin: 0 auto;
    }

    .kv__item:nth-child(2) {
        .kv__copy {
            max-width: 500px;
            width: calc((500/960)*100%);
        }
    }


}


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

    .kv__copy {
        width: calc((740/960)*100%);
        margin: 0 auto 5%;
    }


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

    .kv__item:nth-child(2) {
        .kv__copy {
            width: calc((500/960)*100%);
        }
    }

}


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

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

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

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

.news__btn {
    max-width: 100px;
    display: block;
}

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

        &::before {
            width: 23%;
            height: calc(100% + 300px);
        }
    }

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

    .news__ttl {
        margin-bottom: 30px;

    }

    .news__btn {
        max-width: 120px;
    }

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

        &::before {
            width: 23%;
            height: calc(100% + 900px);
        }
    }

    .news__left {
        width: 30%;
    }

    .news__ttl {
        margin-bottom: 30px;

    }

    .news__btn {
        width: fit-content;
    }

    .news__atcwrap {
        width: 70%;
    }

    .news__atc {
        margin-bottom: 1.5em;

    }


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


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

.conc__obj {
    max-width: 437px;
    width: calc((437/1920)*150%);
    top: 50px;
    right: 3%;
    transform: translate(0, -50%);
}

.conc__ttl {
    .font-en {
        margin-top: .5em;
    }
}

.conc__imgwrap {
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.conc__img01 {
    max-width: 802px;
    width: calc((802/1920)*150%);
}

.conc__img02 {
    max-width: 547px;
    width: calc((547/1920)*150%);
}

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

    .conc__obj {
        width: calc((437/1920)*100%);
        top: 50px;
        right: 3%;
    }

    .conc__imgwrap {
        margin-bottom: 0;
    }

    .conc__img01 {
        position: absolute;
        width: calc((802/1920)*65%);
        transform: translate(0, -50%);
        left: 0;
        top: 50%;
    }

    .conc__img02 {
        width: calc((547/1920)*65%);
        transform: translate(0, -50%);
        position: absolute;
        right: 0;
        top: 50%;
    }
}

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

    .conc__obj {
        width: calc((437/1920)*100%);
        top: 50px;
        right: 3%;
    }

    .conc__imgwrap {
        margin-bottom: 0;
    }

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

    .conc__img02 {
        width: calc((547/1920)*100%);
        right: 0;
        top: 50%;
    }
}

/*============================
   scene
============================*/
.scene__top {
    padding: 60px 0 30px;

    &::before {
        content: "";
        position: absolute;
        width: 90%;
        height: 80%;
        background: url(../images/scene_bg.png);
        top: 0;
        left: 0;
        z-index: -1;
    }
}

.scene__obj {
    max-width: 360px;
    width: calc((360/1920)*150%);
    right: 0;
    top: 50px;
    transform: translate(0, -50%);
}

.scene__ttl {
    margin-bottom: 30px;

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

.scene__h3 {
    text-align: center;
    margin-bottom: 20px;

    .fs-38 {
        display: block;
    }

    .fs-62 {

        display: block;
    }
}

.scene__atc {
    max-width: 450px;
    margin: 0 auto 30px;
}

.scene__h4 {
    & img {
        display: block;
        margin: .5em auto 0;
        max-width: 200px;
    }
}

.scene__btm {
    padding: 30px 0 30px;

    &::before {
        content: "";
        position: absolute;
        width: 90%;
        height: 80%;
        background: url(../images/scene_bg.png);
        top: 0;
        right: 0;
        z-index: -1;
    }
}

.scene__obj02 {
    max-width: 474px;
    width: calc((474/1920)*150%);
    left: 0;
    top: 80px;
    transform: translate(0, -50%);
}

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

.gallery__img {
    max-width: 480px;
    width: 300px;
    margin: 0;
}

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

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

    .scene__obj {
        width: calc((360/1920)*100%);
        right: 0;
        top: 30%;
    }

    .scene__ttl {
        margin-bottom: 30px;

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

    .scene__flex {
        padding-right: 15%;
    }

    .scene__items {
        width: 100%;
    }

    .scene__h3 {
        position: absolute;
        text-align: left;
        top: -3em;
        right: 0;
        margin-bottom: 0;
        display: flex;
        flex-direction: row-reverse;

        .fs-38 {
            -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
            font-feature-settings: initial;
        }

        .fs-62 {
            -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
            font-feature-settings: initial;
        }
    }

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

    .scene__h4 {
        & img {
            margin: .5em auto 0;
            max-width: 200px;
        }

        .fs-36 {
            font-size: min(3.6rem, 2vw);
        }

        .fs-20 {
            font-size: min(2rem, 1.8vw);
        }
    }

    .scene__btm {
        padding: 30px 0 30px;

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

        .scene__flex {
            flex-direction: row-reverse;
            padding: 0 0 0 15%;
        }

        .scene__h3 {
            top: 0;
            right: auto;
            left: 0;

            .fs-62 {
                margin-top: 1.5em;
            }
        }
    }

    .scene__obj02 {
        width: calc((474/1920)*100%);
        left: 0;
        top: 25%;
    }


    .gallery__img {
        max-width: 480px;
        width: 300px;
    }

}

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

        &::before {
            width: 85%;
            height: 80%;
        }
    }

    .scene__obj {
        width: calc((360/1920)*100%);
        right: 0;
        top: 45%;
    }

    .scene__ttl {
        margin-bottom: 60px;

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

    .scene__flex {
        padding-right: 14%;

    }

    .scene__items {
        max-width: 1440px;
    }

    .scene__h3 {
        top: -3em;
        right: 0;
        margin-bottom: 0;
    }

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

    .scene__h4 {
        & img {
            margin: .5em auto 0;
            max-width: 80%;
            width: fit-content;
        }

        .fs-36 {
            font-size: min(3.2rem, 2vw);
            white-space: nowrap;
        }

        .fs-20 {
            white-space: nowrap;
            font-size: min(2rem, 1.8vw);
        }
    }

    .scene__btm {
        padding: 40px 0 100px;

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

        .scene__flex {

            padding: 0 0 0 14%;
        }

        .scene__items {
            margin: 0 0 0 auto;
        }

        .scene__h3 {
            top: -2em;
            right: auto;
            left: 0;

            .fs-62 {
                margin-top: 1.5em;
            }
        }
    }

    .scene__obj02 {
        width: calc((474/1920)*100%);
        left: 0;
        top: 30%;
    }


    .gallery__img {
        max-width: 480px;
        width: 480px;
    }

}


/*============================
   shop
============================*/
.shop__item {
    padding: 60px 0;
    background: url(../images/shop_bg01.jpg) no-repeat center center/cover;
    display: flex;
    flex-direction: column-reverse;
}

.shop__right {
    margin-bottom: 30px;
    color: #fff;
}

.shop__h3 {
    width: fit-content;
    margin: 0 auto;
    display: flex;
    flex-direction: row-reverse;
    margin-bottom: 50px;
}

.shop__btnwrap {
    display: flex;
    justify-content: center;
}

.shop__btn {
    color: #fff;
    margin: 0 .5em;
    font-size: 1.2rem;

    & img {
        margin: 0 0 0 .5em;
        max-width: 30px;
        width: 20px;
    }
}

.shop__left {
    width: 95%;
    margin: 0 auto 0 0;
    background: #f3eee4;
    padding: 30px 5%;

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

.shop__ul {
    margin-bottom: 30px;
}

.shop__li {
    margin-bottom: 1em;
}

.shop__item:nth-child(2) {
    background: url(../images/shop_bg02.jpg) no-repeat center center/cover;

    .shop__h3 {
        .fs-62 {
            margin-top: 1.5em;
        }
    }
}

@media screen and (min-width:768px) {
    .shop__item {
        padding: 80px 0 60px;
        flex-direction: row;
    }

    .shop__right {
        width: 50%;
        margin-bottom: 0;
    }

    .shop__h3 {
        width: fit-content;
        margin: 0 auto;
        display: flex;
        flex-direction: row-reverse;
        margin-bottom: 150px;
    }

    .shop__btnwrap {
        display: flex;
        justify-content: center;
    }

    .shop__btn {
        color: #fff;
        margin: 0 .5em;
        font-size: 1.2rem;

        & img {
            margin: 0 0 0 .5em;
            max-width: 30px;
            width: 20px;
        }
    }

    .shop__left {
        width: 50%;
        margin: 0;
        padding: 30px 2%;

        & iframe {
            height: 240px;
        }
    }

    .shop__ul {
        margin-bottom: 30px;
    }

    .shop__li {
        display: flex;
        align-items: flex-start;
        margin-bottom: 1em;
    }

    .shop__th {
        width: 5em;
        white-space: nowrap;
    }

    .shop__td {
        width: calc((100% - 5em));
    }

}

@media screen and (min-width:1025px) {
    .shop__item {
        padding: 120px 0 60px;
        justify-content: center;
    }

    .shop__right {
        width: 50%;
        max-width: 960px;
    }

    .shop__h3 {
        margin-bottom: 100px;
    }

    .shop__btn {
        margin: 0 1em;
        font-size: 2rem;

        & img {
            margin: 0 0 0 .5em;
            width: 30px;
            transition: .3s;
        }

        &:hover {
            & img {
                transform: scale(1.1)
            }
        }
    }

    .shop__left {
        width: 50%;
        max-width: 960px;
        padding: 40px 3%;

        & iframe {
            height: 240px;
        }
    }

    .shop__left--inner {
        max-width: 540px;
        margin: 0 auto;
    }

    .shop__ul {
        margin-bottom: 30px;
    }

    .shop__li {
        display: flex;
        align-items: flex-start;
        margin-bottom: 1em;
    }

    .shop__th {
        width: 6em;
    }

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


/*============================
   pair
============================*/

.pair {
    padding: 60px 0;
}

.pair__obj {
    display: none;
}

.pair__left {
    margin-bottom: 30px;
}

.pair__ttl {
    line-height: 1.5;
}

.pair__img {
    width: fit-content;
    margin: 0 auto;
    max-width: 598px;
    position: relative;

    .obj {
        max-width: 698px;
        width: calc((698/598)*100%);
        top: 55%;
        left: 100%;
        transform: translate(-50%, -50%);
        z-index: -1;
    }
}

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

    .pair {
        padding: 80px 0;
    }

    .pair__obj {
        display: none;
    }

    .pair__left {
        width: 60%;
        padding: 0 5% 0 0;
        margin-bottom: 0;
    }

    .pair__img {
        width: 40%;
        margin: 0;

        .obj {
            width: calc((698/598)*100%);
            top: 55%;
            left: 100%;
        }
    }
}

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

    .pair__obj {
        display: block;
        max-width: 390px;
        width: calc((390/1920)*100%);
        left: 0;
        top: 50%;
        transform: translate(0, -50%);
    }

    .pair__left {
        width: 65%;
        padding: 0 5% 0 20%;
        margin-bottom: 0;
    }

    .pair__img {
        width: 36%;
        margin: 0;

        .obj {
            width: calc((698/598)*100%);
            top: 55%;
            left: 100%;
        }
    }
}



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

.recruit {
    margin-bottom: 60px;
    background:
        url(../images/recruit_bg.jpg) no-repeat center center/cover;

    &::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 5px;
        background: url(../images/rec_line.png) repeat-x center center/cover;
        top: 0;
        left: 0;
    }

    &::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 5px;
        background: url(../images/rec_line.png) repeat-x center center/cover;
        bottom: 0;
        left: 0;
    }
}

.rec__box {
    width: 95%;
    background: rgba(34, 18, 2, .85);
    margin: 0 auto;
    color: #fff;
    padding: 80px 5% 30px;
}

.rec__obj {
    max-width: 540px;
    width: calc((540/820)*100%);
    top: 0;
    left: 50%;
    transform: translate(-50%);
}

.rec__ttl {
    margin-bottom: 30px;
}

.rec__btn {
    color: #fff;
    width: fit-content;
    padding: 0 1em .5em;
    border-bottom: solid 1px #fff;
    margin: 2em auto 0;
    display: block;

    &:hover {
        color: #fff;
    }
}

@media screen and (min-width:768px) {
    .recruit {
        margin-bottom: 80px;

        &::before {

            height: 5px;
        }

        &::after {

            height: 5px;
        }
    }

    .rec__box {
        width: 80%;
        max-width: 820px;
        padding: 140px 1em 60px;
    }

    .rec__obj {
        width: calc((480/820)*100%);
    }

    .rec__ttl {
        margin-bottom: 30px;
        font-size: 2.6rem;
    }

    .rec__txt {
        text-align: center;
    }

    .rec__btn {
        padding: 0 1em .5em;
        margin: 2em auto 0;
    }

}


@media screen and (min-width:1025px) {
    .recruit {
        margin-bottom: 150px;

        &::before {

            height: 10px;
        }

        &::after {

            height: 10px;
        }
    }

    .rec__box {
        width: 80%;

        padding: 200px 1em 80px;
    }

    .rec__ttl {
        margin-bottom: 80px;
        font-size: 4.6rem;
    }

    .rec__txt {
        text-align: center;
    }

    .rec__btn {
        padding: 0 1em .5em;
        margin: 2em auto 0;
    }
}