@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;
    background: url(../images/kv_bg.png) no-repeat center top/100%;
    padding: 20px 5% 0;
    background: url(../images/bg.png);
}
.kv__swiper-area {
    position: relative;
    z-index: 99;
}
.kv__item {
    width: 80%;

    background: #fff;

    &:nth-child(2) {
        margin: 20px 0 0 auto;
    }

    & a {
        display: block;
        width: 100%;
        height: 100%;
    }
}

.kv__logo {
    width: fit-content;
    pointer-events: none;
    top: 50%;
    left: 50%;
    line-height: 1;
    z-index: 99;
    transform: translate(-50%, -50%);
}

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

.kv__copy {
    top: -10px;
    left: 5%;
    background: rgba(181, 2, 15, .8);
    color: #fff;
    padding: 1em .5em;
    white-space: nowrap;
    z-index: 9;
    font-size: min(4rem, 6vw);

    &::before {
        content: "";
        position: absolute;
        width: 10px;
        height: 10px;
        top: 0;
        left: 100%;
        background: #b5020f;
        clip-path: polygon(0 0, 0% 100%, 100% 100%);
    }
}

.kv__btn {
    bottom: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: rgba(181, 2, 15, .8);
    color: #fff;
    z-index: 9;
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);

    .arw {
        max-width: 48px;
        width: 20px;
        left: 60%;
        top: 65%;
        transform: translate(-50%, -50%);
    }

    .txt {
        bottom: 1em;
        left: 60%;
        transform: translate(-50%);
        white-space: nowrap;
        font-size: 1rem;
    }
}

.kv__item:nth-child(2) {

    .kv__copy {
        background: rgba(216, 165, 77, .8);

        &::before {
            background-color: #d8a54d;
        }
    }

    .kv__btn {
        background: rgba(216, 165, 77, .8);

    }
}

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



@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;
    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;
        padding: 50px 3% 0;
    }

    .kv__swiper-area {
        display: flex;
        justify-content: space-between;
    }

    .kv__item {
        width: 49%;

        &:nth-child(2) {
            margin: 0;
        }
    }

    .kv__logo {
        top: 50%;
        left: 55%;
    }

    .kv__copy {
        top: -10px;
        left: 5%;
        padding: 1em .5em;
        font-size: min(4rem, 3vw);

        &::before {
            width: 10px;
            height: 10px;
        }
    }

    .kv__btn {
        width: 120px;
        height: 120px;

        .arw {
            max-width: 48px;
            width: 20px;
            left: 60%;
            top: 65%;
        }

        .txt {
            bottom: 1em;
            left: 60%;
            font-size: 1rem;
        }
    }


}



@media screen and (min-width:1025px) {
    .kv {
        margin-top: 0;
        padding: 50px 3% 0 350px;
    }

    .kv__item {
        width: 49%;
    }

    .kv__logo {
        top: 50%;
        left: 55%;
    }

    .kv__copy {
        top: -10px;
        left: 5%;
        padding: 1em .5em;
        font-size: min(4rem, 2.6vw);

        &::before {
            width: 10px;
            height: 10px;
        }
    }

    .kv__btn {
        max-width: 265px;
        width: 45%;
        height: 298px;

        .arw {
            max-width: 48px;
            width: 48px;
            left: 65%;
            top: 65%;
        }

        .txt {
            bottom: 1em;
            left: 60%;
            font-size: 2rem;
        }
    }

}



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

    background: url(../images/bg.png);
}

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

    opacity: .4;
}

.bach__obj02 {
    display: block;
    max-width: 592px;
    width: calc((592/1920)*100%);
    right: 0;
    top: 90%;
    transform: translate(0, -50%);
}

.bach__txtwrap {
    padding: 50px 5% 0;
    position: relative;
}

.bach__logo {
    width: calc((340/960)*100%);
    right: 0;
    top: 30px;
    transform: translate(0, -50%);
}

.bach__ttl {
    max-width: 575px;
    width: 300px;
    margin-bottom: 30px;
}

.bach__btn {
    background: url(../images/bachikin_btn.png) no-repeat center center/contain;
    border: none;
    text-align: center;
    width: 120px;
    height: 120px;

    .fs-20 {
        display: block;
        line-height: 2;
        font-size: 1.2rem;
    }

    &:hover {
        background: url(../images/bachikin_btn.png) no-repeat center center/contain;
        color: #fff;
    }
}

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

    .bach__obj01 {
        top: 0;
        left: 50%;
    }

    .bach__obj02 {

        right: 0;
        top: 90%;
    }

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

    .bach__img {
        width: 48%;
    }

    .bach__txtwrap {
        width: 48%;
        padding: 0 4% 0 0;
    }

    .bach__logo {
        width: calc((340/960)*100%);
        right: .5%;
        top: -30px;
    }

    .bach__ttl {
        max-width: 575px;
        width: 85%;
        margin-bottom: 30px;
    }

    .bach__btn {
        width: 140px;
        height: 140px;

        .fs-20 {
            font-size: 1.2rem;
        }
    }
}

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


    .bach__obj02 {
        width: calc((340/960)*120%);
        right: 0;
        top: 65%;
    }

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

    .bach__img {
        width: 48%;
    }

    .bach__txtwrap {
        width: 48%;
        padding: 0 4% 0 0;
    }

    .bach__logo {
        width: calc((340/960)*120%);
        right: auto;
        left: 550px;
        top: 0;
        max-width: 340px;
    }

    .bach__ttl {
        max-width: 575px;
        width: 85%;
        margin-bottom: 30px;
    }
    .bach__txt{
  		background:rgba(255,255,255,.7);
      padding:30px;
  }
  
    .bach__btn {
        width: 220px;
        height: 220px;

        .fs-20 {
            font-size: 2rem;
        }
    }
}

/*============================
   rakuten
============================*/
.rakuten {
    padding: 0 0 60px;
    background: url(../images/rakuten_bg.png) no-repeat center center/cover;
}

.raku__top {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}

.raku__logo {
    position: relative;
    top: -20px;
    max-width: 332px;
    width: 150px;
    z-index: 9;
}

.raku__obj01 {

    max-width: 330px;
    width: calc((330/1920)*150%);
    top: 200px;
    left: .5%;
    transform: translate(0, -50%);
    z-index: 1;
}

.raku__ttl {
    max-width: 328px;
    width: 40%;
    margin: -100px 15% 20px auto;
    z-index: 1;
    position: relative;
}

.raku__img {
    margin-bottom: 30px;

    .ico {
        position: absolute;
        max-width: 217px;
        width: calc((217/905)*100%);
        left: 90%;
        top: 90%;
        transform: translate(-50%, -50%);
    }
}

.raku__btn {
    background: url(../images/rakuten_btn.png) no-repeat center center/contain;
    border: none;
    text-align: center;
    width: 120px;
    height: 120px;
    margin: 0 auto;

    .fs-20 {
        display: block;
        line-height: 2;
        font-size: 1.2rem;
    }

    &:hover {
        background: url(../images/rakuten_btn.png) no-repeat center center/contain;
        color: #fff;
    }
}

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


    .raku__logo {
        top: -20px;
        max-width: 332px;
        width: 150px;
    }

    .raku__obj01 {
        width: calc((330/1920)*100%);
        top: 35%;
        left: .5%;
    }

    .raku__ttl {
        max-width: 328px;
        width: 40%;
        margin: 0;

        & img {
            display: block;
            width: 60%;
            margin: 0 0 0 auto;
        }
    }

    .raku__right {
        width: 58%;
    }

    .raku__img {
        margin-bottom: 30px;

        .ico {
            width: calc((217/905)*100%);
            left: 90%;
            top: 85%;
        }
    }

    .raku__btn {

        width: 140px;
        height: 140px;
        margin: 0 0 0 auto;

        .fs-20 {
            font-size: 1.2rem;
        }

    }
}

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


    .raku__logo {
        top: -50px;
        max-width: 332px;
        width: 332px;
        margin-bottom: -5%;
    }

    .raku__obj01 {
        width: calc((330/1920)*100%);
        top: 35%;
        left: .5%;
    }

    .raku__ttl {
        max-width: 328px;
        width: 35%;
        margin: 0;

        & img {
            width: 80%;
            margin: 0 0 0 auto;
        }
    }

    .raku__right {
        width: 63%;
    }

    .raku__img {
        margin-bottom: 30px;

        .ico {
            width: calc((217/905)*100%);
            left: 90%;
            top: 85%;
        }
    }

    .raku__txt {
        padding-right: 220px;
    }

    .raku__btn {

        width: 220px;
        height: 220px;
        margin: -100px 0 0 auto;

        .fs-20 {
            font-size: 2rem;
        }

    }
}

/*============================
   scene
============================*/
.scene {
    padding: 80px 0 80px;
    background:
        url(../images/scene_bg.png) center top/cover;
}


.scene__obj01 {

    max-width: 346px;
    width: calc((346/1920)*120%);
    bottom: 0;
    left: 0;
}

.scene__left {
    margin-bottom: 30px;
}

.scene__pop {
    max-width: 360px;
    width: 200px;
}

.scene__ttl {
    max-width: 420px;
    width: 260px;
    margin-bottom: 20px;
}

.scene__img {
    width: 90%;
    max-width: 620px;

    .ico {
        max-width: 280px;
        width: calc((280/620)*100%);
        position: absolute;
        top: 35%;
        left: 100%;
        transform: translate(-50%, -50%);
    }
}

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


    .scene__obj01 {

        max-width: 346px;
        width: calc((346/1920)*100%);
        bottom: 0;
        left: 0;
    }

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

    .scene__pop {
        max-width: 360px;
        width: 200px;
    }

    .scene__ttl {
        max-width: 420px;
        width: 280px;
        margin-bottom: 20px;
    }

    .scene__img {
        width: 45%;

        .ico {
            width: calc((280/620)*100%);
            top: 35%;
            left: 100%;
        }
    }

}

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


    .scene__obj01 {

        width: calc((346/1920)*100%);
        bottom: 0;
        left: 0;
    }

    .scene__left {
        width: 50%;
        position: relative;
        padding-left: 14%;
    }

    .scene__pop {
        position: absolute;
        max-width: 360px;
        width: 25%;
        top: 40%;
        left: 0;
        transform: translate(0, -50%);
    }

    .scene__ttl {
        max-width: 420px;
        width: 420px;
        margin-bottom: 20px;
    }

    .scene__img {
        width: 45%;

        .ico {
            width: calc((280/620)*100%);
            top: 35%;
            left: 100%;
        }
    }
}


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

.menu__top--obj {
    width: 100%;
    top: 0;
    left: 0;
}

.menu__top {
    padding: 80px 0 0;

}

.menu__item {
    max-width: 680px;
    margin: 0 auto 30px;
    position: relative;

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

.menu__h3 {
    .fs-26 {
        display: block;
        color: #fff;
        padding: 0 1em;
        background-color: #d8a54d;
        width: fit-content;
        margin: 0 auto .5em;
    }

    .fs-24 {
        display: block;
        position: relative;
        width: fit-content;
        padding: 0 1.5em;
        margin: 0 auto;

        &::before {
            content: "＼";
            position: absolute;
            left: 0;
            top: 50%;
            transform: translate(0, -50%);
        }

        &::after {
            content: "／";
            position: absolute;
            right: 0;
            top: 50%;
            transform: translate(0, -50%);
        }
    }
}

.menu__txt {
    margin-bottom: 1em;
}

.menu__btn {
    margin: -60px 5% 0 auto;
}

.menu__btm {

    padding: 30px 0 80px;

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

.menu__obj01 {
    max-width: 428px;
    width: calc((428/1920)*100%);
    top: 0;
    right: 1%;
    z-index: 1;
}

.menu__obj02 {
    max-width: 680px;
    width: calc((680/1920)*100%);
    top: 80px;
    left: -10%;
    z-index: 1;
    pointer-events: none;
}

.menu__copy {
    max-width: 470px;
    width: calc((470/1380)*100%);
    left: 55%;
    top: 100px;
    transform: translate(-50%, -50%);
}

.menu__txtbox {
    width: 90%;
    padding: 20px 5%;
    background: rgba(0, 0, 0, .7);
    margin: -30px auto 0;
    color: #fff;
    position: relative;
}

.menu__ttl {
    margin-bottom: 20px;

    .fs-18 {
        display: block;
    }

    .fs-70 {
        display: block;
        font-size: 3rem;
    }
}

.menu__btn02 {
    width: 360px;
    height: 50px;
    border-radius: 0;
    border: none;
    background: url(../images/menu_btn.png) no-repeat center center/contain;
    margin: 0 auto;

    &::before {
        display: none;
    }

    &:hover {
        color: #fff;
        background: url(../images/menu_btn.png) no-repeat center center/contain;
    }
}

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

    .menu__top--obj {
        width: 100%;
        top: 0;
        left: 50%;
        transform: translate(-50%);
        min-width: 1024px;
    }

    .menu__top {
        padding: 60px 0 0;

    }

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

    .menu__h3 {
        .fs-26 {
            padding: 0 .5em;
            margin: 0 auto .5em;
        }

        .fs-24 {
            color: #fff;
            padding: 0 1.5em;
          	font-size:1.6rem;
        }
    }

    .menu__txt {
        margin-bottom: 1em;
        color: #fff;
        text-shadow: 1px 1px #111;
    }

    .menu__btn {
        margin: -60px 5% 0 auto;
    }

    .menu__btm {

        padding: 100px 0 100px;

        &::before {

            width: 100%;
            height: calc(100% + 250px);
            left: 50%;
            transform: translate(-50%);
        }
    }

    .menu__obj01 {
        width: calc((428/1920)*100%);
        top: -50px;
        left: 1%;
        right: auto;
    }

    .menu__obj02 {
        width: calc((680/1920)*100%);
        top: auto;
        bottom: 0;
        left: -10%;
    }

    .menu__box {
        width: 80%;
        max-width: 1378px;
        margin: 0 0 0 auto;
    }

    .menu__copy {
        width: calc((470/1380)*100%);
        left: 95%;
        top: 50px;
        transform: translate(-50%, -50%);
    }

    .menu__txtbox {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 70%;
        max-width: 740px;
        padding: 20px 1em;
        margin: 0;
    }

    .menu__ttl {
        margin-bottom: 10px;

        .fs-70 {
            font-size: 3rem;
        }
    }

    .menu__btn02 {
        width: 400px;
        height: 60px;
        font-size: 1.4rem;
        padding-bottom: .5em;
    }
}

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

        min-width: 1920px;
    }

    .menu__top {
        padding: 120px 0 0;

    }

    .menu__item {
        width: 48%;
    }


    .menu__txt {
        margin-bottom: 1em;
    }

    .menu__btn {
        margin: -100px 5% 0 auto;
    }

    .menu__btm {

        padding: 100px 0 100px;

        &::before {

            width: 100%;
            height: calc(100% + 350px);
        }
    }

    .menu__obj01 {
        width: calc((428/1920)*100%);
        top: -50px;
        left: 1%;
        z-index: 2;
        pointer-events: none;
    }

    .menu__obj02 {
        width: calc((680/1920)*100%);
        bottom: 0;
        left: 0;
    }

    .menu__box {
        width: 80%;
        margin: 0 0 0 auto;
    }

    .menu__copy {
        width: calc((470/1380)*100%);
        left: 95%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .menu__txtbox {
        left: 50%;
        top: 50%;
        width: 70%;
        padding: 30px 1em;
    }

    .menu__ttl {
        margin-bottom: 10px;

        .fs-70 {
            font-size: 3rem;
        }
    }

    .menu__btn02 {
        width: 400px;
        height: 95px;
        font-size: 1.8rem;
        padding-bottom: .5em;
    }
}

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

.recruit {
    padding: 80px 0;
    background: url(../images/recruit_bg.png) no-repeat center bottom/cover;
}

.rec__left {
    display: flex;
    align-items: center;
}

.rec__ttl--en {
    font-size: 10rem;
    color: #34200d;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 1;
    margin-left: -.1em;
    mix-blend-mode: color-burn;
    opacity: .7;
    white-space: nowrap;
}

.rec__ttl {
    max-width: 366px;
    width: 200px;
    margin-left: 5%;
}

.rec__box {
    background: url(../images/recruit_circle.png) no-repeat center center/contain;

    width: 100%;

    max-width: 614px;


    & a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        min-height: 380px;
        padding: 0 5%;
        color: #fff;
    }
}

.rec__box--inner {
    display: flex;
    align-items: flex-start;
}

.rec__btn {
    max-width: 50px;
    width: 30px;
    margin: 1em 1em 0 0;
}

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

    .recruit {
        padding: 100px 0;
    }


    .rec__ttl--en {
        font-size: 10rem;
        margin-left: -.1em;
    }

    .rec__ttl {
        max-width: 366px;
        width: 200px;
        margin-left: 5%;
    }

    .rec__box {
        width: 45%;

        & a {

            min-height: 380px;
            padding: 0 5%;
        }
    }

    .rec__btn {
        max-width: 50px;
        width: 30px;
        margin: 1em 1em 0 0;
    }
}

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

    .recruit {
        padding: 0 0 80px;
    }

    .rec__left {
        width: 45%;
    }

    .rec__ttl--en {
        font-size: 20rem;
        margin-left: -.1em;
    }

    .rec__ttl {
        max-width: 200px;
        width: 200px;
        margin-left: 0%;
        margin-top:400px;
    }

    .rec__box {
        width: 27%;
        min-width: 350px;
        & a {

            min-height: 380px;
            padding: 0 5%;
        }
    }

    .rec__btn {
        max-width: 50px;
        width: 50px;
        margin: 1em 1em 0 0;
    }
}

/*============================
   news
============================*/

.news {
    padding: 60px 0;

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

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

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


.news__atc {
    margin-bottom: 1em;
    padding-bottom: 1em;
    border-bottom: solid 1px #d7c6a9;

    & a {
        display: block;
    }

    &:last-child {
        border: none;
        padding-bottom: 0;
        margin-bottom: 0;
    }
}



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

}


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

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

    .news__ttlwrap {
        margin-bottom: 0;
        display: block;
        width: 25%;
    }

    .news__ttl {
        margin-bottom: 30px;
    }

    .news__atcwrap {
        width: 70%;
    }

    .news__atc {

        & a {
            display: flex;
            align-items: center;
        }
    }

    .news__date {
        width: 100px;
    }

    .news__atc--ttl {
        max-width: calc(100% - 100px);
    }


}


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

        &::before {
            height: calc(100% + 150px);
        }
    }

    .news__ttlwrap {

        width: 25%;
    }

    .news__ttl {
        margin-bottom: 40px;
    }

    .news__atcwrap {
        width: 70%;
    }

    .news__date {
        width: 120px;
    }

    .news__atc--ttl {
        max-width: calc(100% - 120px);
    }



}

/* hd__pd */

@media screen and (min-width:1025px) {
    .hd__pd {
        padding-left: 220px;
    }
}