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

}

.kv__item {
    width: 100%;
    position: relative;
    margin-bottom: 3px;
}


.kv__img {

    & img {
        width: 100%;
    }
}


.kv__copy {
    width: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%);
    z-index: 9;

    & img {
        width: 100%;
        max-width: none;
    }
}

.kv__arw {
    max-width: 57px;
    width: 30px;
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9;

}


@keyframes ciecleAnime {
    0% {
        transform: translate(-50%, -50%) rotate(0);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

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


.kv__scroll {
    max-width: 13px;
    width: 10px;
    position: absolute;
    bottom: 0;
    left: 5%;
    z-index: 9;
    display: none;
}



@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 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;
    background: none;
    font-size: 1.2rem;
    margin: 0 5px !important;
    color: #897d44;
    opacity: 1;
    width: 30px;
    text-align: left;
    line-height: 1;
    transition: .3s ease-out;
    position: relative;
    opacity: .5;

    &::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 1px;
        background-color: #897d44;
        bottom: -.5em;
        left: 0;
    }

    & span {
        position: absolute;
        bottom: 0;
        left: 0;
        line-height: 1;
        transition: .3s;
    }
}

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

    & span {
        font-size: 1.8rem;
    }
}



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


    }

    .kv__item {
        width: 33.1%;
        margin-bottom: 0;
    }



    .kv__arw {
        max-width: 57px;
        width: 40px;
        top: 90%;
        left: 50%;

    }

}



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

    .kv {
        margin-top: 100px;

    }

    .kv__item {
        width: 33.2%;
    }



    .kv__arw {
        max-width: 57px;
        width: 57px;
        top: 90%;
        left: 50%;

    }

}




/*============================
   concpet
============================*/
.concpet {
    padding: 80px 0 100px;
    color: #fff;
    background: url(../images/concept_bg.jpg) no-repeat center center/cover;
}

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

.conc__right {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column-reverse;
}

.conc__txtwrap {
    padding: 0 5%;
}

.conc__ttl {
    max-width: 600px;
    width: 260px;
}

.conc__img02 {
    position: relative;
    margin-bottom: 20px;

    /* .conc__copy {
        font-size: 4rem;
        top: -.5em;
        right: .5em;
        letter-spacing: .2em;
        white-space: nowrap;
    } */
    .copy {
        position: absolute;
        max-width: 93px;
        width: calc((93/1000)*100%);
        left: 85%;
        top: -5%;
        transform: translate(-50%);
    }
}

.conc__img01 {
    position: relative;

    /* .conc__copy {
        font-size: 4rem;
        top: -.5em;
        left: .5em;
        letter-spacing: .2em;
        white-space: nowrap;
    } */
    .copy {
        position: absolute;
        max-width: 90px;
        width: calc((90/857)*100%);
        left: 15%;
        top: -5%;
        transform: translate(-50%);
    }
}

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

    .conc__flex {
        display: flex;
        flex-direction: row;
    }

    .conc__left {
        width: 45%;
        padding: 100px 0 0;
    }

    .conc__right {
        margin-bottom: 0;
        display: block;
        width: 52%;

        .conc__txtwrap {
            padding: 0 5% 0 0;
        }
    }

    .conc__txtwrap {
        padding: 0 0 0 5%;
    }

    .conc__ttl {
        max-width: 600px;
        width: 300px;
        position: relative;

        &::before {
            content: "";
            position: absolute;
            width: 2000px;
            height: 1px;
            background: #fff;
            left: -2020px;
            top: 50%;
            transform: translate(0, -50%);
        }
    }

    .conc__img02 {
        margin-bottom: 0;

        .conc__copy {
            font-size: 4rem;
            top: -.5em;
            right: .5em;
        }
    }

    .conc__img01 {

        .conc__copy {
            font-size: 4rem;
            top: -.5em;
            left: .5em;
        }
    }
}

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

    .conc__flex {
        display: flex;
        flex-direction: row;
    }

    .conc__left {
        width: 45%;
        padding: 100px 0 0;

        .conc__txtwrap {
            max-width: 600px;
            margin: 0 0 0 auto;
            padding: 0 0 0 2%;
        }
    }

    .conc__right {
        width: 52%;

        .conc__txtwrap {
            padding: 0 2% 0 0;
        }
    }



    .conc__ttl {
        max-width: 600px;
        width: 600px;

        &::before {
            width: 2000px;
            left: -2020px;
        }
    }

    .conc__img02 {
        margin-bottom: 0;

        .conc__copy {
            font-size: min(11rem, 6vw);
            top: -.5em;
            right: .5em;
        }
    }

    .conc__img01 {

        .conc__copy {
            font-size: min(9.6rem, 5vw);
            top: -.5em;
            left: .5em;
        }
    }
}



/*============================
   shop
============================*/
.shop__item {
    margin-top: -90px;

    padding: 0 0 120px;
    position: relative;

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

.shop__left {
    display: flex;
    justify-content: space-between;
    padding: 0 5%;
    margin-bottom: 30px;
}

.shop__copy {
    width: 20%;
    margin-top: 0px;
}

.shop__txtwarp {
    width: 78%;

}

.shop__ttl {

    & img {
        display: block;
        width: auto;
        transform: scale(.9);
        transform-origin: center left;
    }
}
.shop__txt{
    line-height:220%;
}
.shop__btn {
    &:first-child {
        margin-bottom: 10px;
    }

    &:nth-child(2) {
        background: #fff;
        color: #000c46;
        border-color: #fff;

        &:hover {
            color: #fff;
            background: #000c46;
        }
    }
}

.sohp__img01 {
    width: 80%;
    margin: 0;
    position: relative;
    z-index: 1;
}

.sohp__img02 {
    width: 80%;
    margin: -30px 0 0 auto;

    .logo {
        max-width: 537px;
        width: calc((537/1570)*100%);
        top: 50%;
        left: -10%;
        transform: translate(-50%, -50%);
        z-index: 1;
    }
}

.shop__item:nth-child(2) {
    margin-top: 0;
    padding: 80px 0 60px;

    &::before {
        z-index: -2;
        background: url(../images/shop_bg02.jpg) no-repeat center center/cover;

    }

    .shop__left {
        flex-direction: row-reverse;
    }

    .shop__ttl {
        position: absolute;
        top: 10px;
        left: 5%;
        white-space: nowrap;

        & img {
            transform: scale(.6);
        }
    }
.shop__txt{
    line-height:220%;    
}
    
    .shop__btn {

        &:nth-child(2) {
            color: #957c51;

            &:hover {
                color: #fff;
                background: #957c51;
            }
        }
    }

    .sohp__img01 {

        margin: 0 0 0 auto;
    }

    .sohp__img02 {
        margin: -30px auto 0 0;

        .logo {
            max-width: 536px;
            width: calc((536/1570)*100%);
            top: 50%;
            left: 110%;
        }
    }

}

.shop__item:nth-child(3) {
    margin-top: 0;

    padding: 80px 0 60px;

    &::before {
        z-index: -3;
        background: url(../images/shop_bg03.jpg) no-repeat center center/cover;
    }


    .shop__ttl {
        position: absolute;
        top: 20px;
        left: 5%;
        & img {
            transform: scale(.8);
        }
    }
    .shop__txt{
    line-height:220%;        
    }

    .shop__btn {

        &:nth-child(2) {
            color: #e60012;

            &:hover {
                color: #fff;
                background: #e60012;
            }
        }
    }

    .sohp__img02 {
        .logo {
            max-width: 469px;
            width: calc((469/1570)*100%);
        }
    }

}

@media screen and (min-width:768px) {
    .shop__item {
        margin-top: -150px;

        padding: 0 0 200px;
    }

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

    .shop__left {
        padding: 30px 5%;
        width: 50%;
        margin-bottom: 0;
    }

    .shop__copy {
        width: 20%;
        margin-top: -30px;
    }

    .shop__txtwarp {
        width: 78%;

    }

    .shop__ttl {
        & img {
            transform: scale(1);
        }
    }

    .shop__btmwrap {
        display: flex;
        flex-wrap: wrap;
    }

    .shop__btn {
        &:first-child {
            margin: 0 10px 10px 0;
        }
    }

    .sohp__img01 {
        width: 48%;
        margin-bottom: -30px;
    }

    .sohp__img02 {
        width: 85%;
        margin: 0 0 0 auto;

        .logo {
            width: calc((537/1570)*100%);
            top: 50%;
            left: -5%;
        }
    }

    .shop__item:nth-child(2) {
        margin-top: -150px;
        padding: 0 0 200px;

        .shop__flex {
            flex-direction: row-reverse;
        }

        .shop__left {
            flex-direction: row-reverse;
        }

        .shop__ttl {
            position: relative;
            top: auto;
            left: auto;

            & img {
                width: auto;
                transform: scale(1);
            }
        }

        .shop__btn {

            &:nth-child(2) {
                color: #957c51;

                &:hover {
                    background: #957c51;
                }
            }
        }

        .sohp__img01 {

            margin: 0 0 0 auto;
        }

        .sohp__img02 {
            margin: -30px auto 0 0;

            .logo {
                max-width: 536px;
                width: calc((536/1570)*100%);
                top: 50%;
                left: 105%;
            }
        }

    }

    .shop__item:nth-child(3) {
        margin-top: -150px;
        padding: 0 0 80px;

        .shop__ttl {
            position: relative;
            top: auto;
            left: auto;
            & img {
                transform: scale(1);
            }
        }

        .sohp__img02 {
            .logo {
                left: 0;
                width: calc((469/1570)*100%);
            }
        }

    }
}

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

        padding: 0 0 300px;
    }

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

    .shop__flex {
        max-width: 1920px;
        margin: 0 auto;
        align-items: flex-start;
    }


    .shop__left {
        padding: 80px 1%;
        width: 50%;
        margin-bottom: 0;
    }

    .shop__copy {
        width: 20%;
        margin-top: -90px;
    }

    .shop__txtwarp {
        width: 78%;

    }

    .shop__ttl {

        & img {
            width: auto;
        }
    }

    .shop__txt {
        line-height: 3;
    }

    .shop__btmwrap {
        display: flex;
        flex-wrap: wrap;
    }

    .shop__btn {
        &:first-child {
            margin: 0 10px 10px 0;
        }
    }

    .sohp__img01 {
        width: 48%;
        margin: 120px 0 0;

        & img {
            object-fit: cover;
            height: 665px;
        }
    }

    .sohp__img02 {
        max-width: 1920px;
        margin: 0 0 0 auto;
        margin-top: -120px;
        width: 85%;

        background: url(../images/shop_img1-2.png) no-repeat center center/cover;
        background-attachment: fixed;

        & img {
            opacity: 0;
        }



        .logo {
            opacity: 1;
            width: calc((537/1570)*100%);
            top: 50%;
            left: -5%;
        }
    }

    .shop__item:nth-child(2) {

        margin-top: -250px;

        padding: 0 0 300px;

        .shop__ttl {

            & img {
                width: auto;
            }
        }


        .sohp__img01 {

            margin: 120px 0 0;
        }

        .sohp__img02 {
            margin: -120px auto 0 0;
            background: url(../images/shop_img2-2.jpg) no-repeat center center/cover;
            margin: 0;
            background-attachment: fixed;

            & img {
                opacity: 0;
            }

            .logo {
                opacity: 1;
                width: calc((536/1570)*100%);
                top: 35%;
                left: 105%;
            }
        }

    }

    .shop__item:nth-child(3) {
        margin-top: -250px;
        padding: 0 0 150px;

        .sohp__img02 {
            background: url(../images/t-shop_img3-2.jpg) no-repeat center center/cover;
            background-attachment: fixed;

            .logo {
                left: 0;
                top: 40%;
                width: calc((469/1570)*100%);
            }
        }

    }
}


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

.rec__box {

    color: #fff;
}

.rec__img {
    & img {
        object-fit: cover;
        width: 100%;
        height: 260px;
        object-position: center 25%;
    }
}

.rec__txtwrap {
    padding: 40px 5%;
    background: url(../images/recruit_bg.png) no-repeat 85% bottom/cover;
}

.rec__ttl {
    font-size: 2rem;
}

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

    .rec__img {
        width: 42%;

        & img {
            height: 520px;
            object-position: center center;
        }
    }

    .rec__txtwrap {
        width: 58%;
        padding: 40px 3%;
        background: url(../images/recruit_bg.png) no-repeat 85% bottom/cover;
    }

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

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

    .rec__img {
        width: 42%;

        & img {
            height: 694px;
            object-position: center 30%;
        }
    }

    .rec__txtwrap {
        display: flex;
        align-items: center;
        width: 58%;
        padding: 40px 3%;
        background: url(../images/recruit_bg.png) no-repeat 85% bottom/cover;
    }

    .rec__ttl {
        font-size: 5.5rem;
    }

    .rec__txt {
        max-width: 735px;
    }
}