@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__img {
    position: relative;
    z-index: 9;
    width: 100%;
}


.kv__copy {
    max-width: 440px;
    width: 40%;
    position: absolute;
    top: 50%;
    left: 45%;
    transform: translate(-50%, -50%);
    z-index: 9;
    pointer-events: none;
}

.kv__pop {
    max-width: 250px;
    width: calc((250/960)*100%);
    position: absolute;
    top: 15%;
    left: 85%;
    transform: translate(-50%, -50%);
    z-index: 9;
}

.kv__txtwrap {
    width: 100%;
    padding: 0 1em;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99;
    color: #fff;
}

.kv__copy02 {
    margin-bottom: 5%;
    font-weight: bold;
    line-height: 1.6;
}

.kv__btn {
    margin: 0 auto;
}

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

.kv__copy03 {
    width: 100%;
    padding: 0 1em;
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99;
    color: #fff;
    text-shadow: 0 0 7px #000;

    .txt01,
    .txt02 {
        display: block;
    }
}

.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__copy {
        max-width: 440px;
        width: calc((440/1920)*100%);
        top: 50%;
        left: 45%;

    }

    .kv__pop {
        width: calc((250/960)*100%);
        top: 15%;
        left: 85%;
    }

    .kv__txtwrap {
        padding: 0 1em;
        top: 50%;
        left: 50%;
    }

    .kv__copy02 {
        margin-bottom: 5%;
    }

    .kv__btn {
        margin: 0 auto;
        max-width: 60%;
        height: 50px;
        font-size: 1.2rem;
    }

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

    .kv__copy03 {
        width: 100%;
        padding: 0 1em;
        top: 90%;
        left: 50%;
    }

}


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


    .kv__copy {
        width: calc((440/1920)*100%);
        top: 50%;
        left: 47%;

    }

    .kv__pop {
        width: calc((250/960)*100%);
        top: 15%;
        left: 80%;
    }

    .kv__txtwrap {
        padding: 0 1em;
        top: 50%;
        left: 50%;
    }

    .kv__copy02 {
        margin-bottom: 5%;
        font-size: min(2.6rem, 1.6vw);
    }

    .kv__btn {
        margin: 0 auto;
        max-width: 60%;
        height: 80px;
        font-size: 1.8rem;
    }

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

    .kv__copy03 {
        width: 100%;
        padding: 0 1em;
        top: 90%;
        left: 50%;

        .txt01 {
            font-size: min(2.6rem, 1.4vw);
        }

        .txt02 {
            font-size: min(1.6rem, 1vw);
        }
    }

}

/*============================
   about
============================*/
.bg01 {
    background: url(../images/bg.jpg);
}

.about__ttl {
    position: absolute;
    z-index: 9;
    top: 30%;
    left: 5%;
    display: flex;
    width: fit-content;
    flex-direction: row-reverse;
    justify-content: flex-start;

    .txt {
        display: block;
        background: #784d20;
        color: #fff;
        padding: .5em;
        height: fit-content;
        font-size: 1.6rem;
    }

    .txt02 {
        background: #381e03;
        margin-right: .5em;
    }
}

.about__flex {
    padding: 30px 0 0;
}

.about__img {
    position: relative;
    width: 95%;
}

.about__bg {
    max-width: 953px;
    width: 100%;
    right: 0;
    top: 75%;
    transform: translate(0, -50%);
}

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

.about__h3 {
    font-size: 1.8rem;
}

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

    .about__ttl {
        top: 35%;
        left: 5%;

        .txt {
            padding: .5em;
            font-size: 1.8rem;
        }

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

    .about__flex {
        padding: 0;
    }

    .about__img {
        width: 50%;
    }

    .about__bg {
        max-width: 953px;
        width: calc((953/1920)*100%);
        right: 0;
        top: 50%;
        transform: translate(0, -50%);
    }

    .about__right {
        width: 45%;
        padding: 0 2% 0 0;
    }

    .about__h3 {
        font-size: 1.8rem;
    }
}

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

    .about__ttl {
        top: 35%;
        left: 5%;

        .txt {
            padding: .5em;
            font-size: 4.6rem;
        }

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

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

    .about__img {
        width: 50%;
    }

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

    .about__right {
        width: 45%;
        padding: 0 2% 0 0;
    }

    .about__h3 {
        font-size: 4.6rem;
    }
}


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

.comm__obj {
    max-width: 670px;
    width: calc((670/1920)*100%);
    right: 0;
    top: 75%;
    transform: translate(0, -50%);
}

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

.comm__ttl {
    margin: 0 5%;
    padding: 0 .5em;
    font-size: 1.6rem;
    border-left: solid 1.5px #271401;
    border-right: solid 1.5px #271401;

    &::before {
        content: "";
        position: absolute;
        width: calc((100% - .5em));

        height: 100%;
        top: 0;
        left: 50%;
        transform: translate(-50%);
        border-left: solid 1px #271401;
        border-right: solid 1px #271401;
    }
}

.comm__img {
    width: 90%;
}

.comm__img02 {
    width: 80%;
    position: relative;
    z-index: 1;
    margin: -20px 0 0 auto;
}

.comm__right {
    padding: 0 5%;
}

.comm__copy {

    .txt {
        display: block;
        background: #784d20;
        color: #fff;
        padding: .5em;
        width: fit-content;
        font-size: 1.6rem;
        margin-bottom: .5em;
    }

    .txt02 {
        background: #381e03;

    }
}

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

    .comm__obj {
        width: calc((670/1920)*100%);
        right: 0;
        top: 75%;
    }

    .comm__top {
        display: flex;
        align-items: flex-start;
    }

    .comm__ttl {
        margin: 0 5%;
        padding: 0 .5em;
        font-size: 3rem;
        border-left: solid 1.5px #271401;
        border-right: solid 1.5px #271401;

        &::before {
            width: calc((100% - .5em));
            border-left: solid 1px #271401;
            border-right: solid 1px #271401;
        }
    }

    .comm__img {
        width: 80%;
    }

    .comm__btm {
        align-items: center;
    }

    .comm__img02 {
        width: 35%;
        margin: -20px 0 0 0;
    }

    .comm__right {
        padding: 0 3% 0 0;
        width: 65%;
    }

    .comm__copy {
        display: flex;
        flex-direction: row-reverse;
        position: relative;
        top: -4em;

        .txt {
            padding: .5em;
            width: fit-content;
            height: fit-content;
            font-size: 1.8rem;
            margin: 0;
            -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
            font-feature-settings: initial;
            text-orientation: upright;
        }

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

    .comm__txtwrap {
        padding: 2em 0 0 2em;
    }
}

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

    .comm__obj {
        width: calc((670/1920)*100%);
        right: 0;
        top: 65%;
    }


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

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

        &::before {
            width: calc((100% - .5em));
            border-left: solid 3px #271401;
            border-right: solid 3px #271401;
        }
    }

    .comm__img {
        width: 80%;
        max-width: 1300px;
    }

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

    .comm__img02 {
        width: 35%;
        margin: 0;
    }

    .comm__right {
        padding: 0 2% 0 0;
        width: 65%;
    }

    .comm__copy {
        top: -16em;

        .txt {
            padding: .5em;
            font-size: 4.6rem;
        }

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

    .comm__txtwrap {
        padding: 3em 0 0 5%;
    }

    .comm__txt {
        max-width: 645px;
    }
}


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

.menu {
    padding: 60px 0 60px;
    color: #fff;

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

.menu__obj {
    max-width: 550px;
    width: calc((550/1920)*100%);
    top: -30px;
    right: 0;

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

.menu__ttl {
    width: 60%;
    margin: 0 0 0 auto;
    font-size: 2rem;
    padding: 0 5% 0 0;
    line-height: 1.5;
    position: relative;
}

.menu__img {
    width: 100%;

    margin: -2em 0 0 auto;
}

.menu__txt {
    padding: 2em 5% 0;

}

.menu__btn {
    margin: 0 auto 15px;

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

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

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

    .menu__obj {
        width: calc((550/1920)*100%);
        top: -80px;
        right: 0;

    }

    .menu__ttl {
        width: 65%;
        margin: 0 0 0 auto;
        font-size: 3rem;
        padding: 0 5%;
    }

    .menu__img {
        width: 95%;

        margin: -80px 0 0 auto;
    }

    .menu__txt {
        width: 60%;
        margin: -3em 0 0 auto;
        padding: 0 1em 0 0;

    }

    .menu__btnwrap {
        padding: 30px 3% 0;
    }

    .menu__btn {
        width: 31%;
        margin: 0 1%;
    }
}

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

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

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

    .menu__obj {
        width: calc((550/1920)*100%);
        top: -150px;
        right: 0;

    }

    .menu__ttl {
        width: 60%;
        margin: 0 0 0 auto;
        text-align: left;
        font-size: 4.6rem;
        padding: 0 2% 0 0;
    }

    .menu__img {
        width: 95%;

        margin: -150px 0 0 auto;
    }

    .menu__txt {
        width: 60%;
        margin: -6em 0 0 40%;
        padding: 0 1em 0 0;
        max-width: 645px;

    }

    .menu__btnwrap {
        padding: 60px 1% 0;
    }

    .menu__btn {
        width: 31%;
        max-width: 400px;
        margin: 0 1%;
    }
}


/*============================
   information
============================*/

.information {
    padding: 60px 0;
    background: url(../images/bg.jpg);

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

.info__img {
    max-width: 564px;
    width: calc((564/1920)*100%);
    top: 25%;
    right: 0;

}

.info__ttl {
    width: fit-content;
    max-width: 200px;
    margin: 0 auto 30px;
}

.info__imgwrap {
    display: flex;
    flex-wrap: wrap;

    & img {
        width: 48%;

        &:last-child {
            margin: 15px auto 0;
        }
    }
}

.info__left {
    margin-bottom: 30px;
}

.info__tel {
    display: block;
    width: 240px;
    margin: 0 auto 15px;
}

.info__snswrap {
    display: flex;
    align-items: center;
    justify-content: center;

    & a {
        display: block;
        transform: scale(.6);

        &:last-child {
            margin-left: -5%;
        }
    }
}

.info__li {
    display: flex;
    align-items: flex-start;
    padding: .5em 0;
    border-bottom: solid 1px #9f9488;
}

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

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

.info__btn {
    display: block;
    width: fit-content;
    margin: 1em 0 0 auto;
    text-decoration: underline;
}

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

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

    .information {
        padding: 80px 0;

        & iframe {
            height: 300px;
        }
    }

    .info__ttl {
        width: fit-content;
        max-width: 240px;
        margin: 0 auto 30px;
    }

    .info__imgwrap {
        display: flex;
        flex-wrap: nowrap;

        & img {
            width: 32%;
            max-width: 426px;

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

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

    .info__right {
        width: 50%;
    }

    .info__tel {
        width: 280px;
        margin: 0 auto 15px;
    }

    .info__snswrap {

        & a {
            transform: scale(.6);

            &:last-child {
                margin-left: -5%;
            }
        }
    }

    .info__li {
        padding: .5em 0;
    }

    .info__th {
        width: 6em;
    }

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

    .info__btn {
        margin: 1em 0 0 auto;
    }

    .info__mv {
        margin: 40px auto 0;
    }
}

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

        & iframe {
            height: 480px;
        }
    }

    .info__ttl {
        width: fit-content;
        max-width: 100%;
        margin: 0 auto 60px;
    }

    .info__imgwrap {

        & img {
            width: 32%;

        }
    }

    .info__left {
        width: 50%;
    }

    .info__right {
        width: 50%;
    }

    .info__tel {
        width: fit-content;
        margin: 0 auto 15px;
    }

    .info__snswrap {

        & a {
            transform: scale(1);
            margin: 0 10px;

            &:last-child {
                margin: 0 10px;
            }
        }
    }

    .info__li {
        padding: .5em 0;
    }

    .info__th {
        width: 7em;
    }

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

    .info__btn {
        margin: 1em 0 0 auto;
    }

    .info__mv {
        margin: 80px auto 0;
    }

}