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

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


.kv__copy {
    max-width: 860px;
    width: 90%;
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99;
}

.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;
    bottom: 20px;
    right: 5%;
    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;
    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: 0;
    }

    .kv__swiper {
        width: calc((1660/1920)*100%);
        margin: 0 0 0 auto;
    }

    .kv__copy {
        max-width: 740px;
        width: calc((740/1920)*100%);
        top: 40%;
        left: 20%;
    }

    .kv__scroll {
        max-width: 36px;
        min-width: 10px;
        width: calc((36/1092)*100%);
        position: absolute;
        bottom: 20px;
        left: 5%;
        z-index: 9;
        display: block;
    }


}


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


    .kv__swiper {
        width: calc((1660/1920)*100%);
        margin: 0 0 0 auto;
    }

    .kv__copy {
        width: calc((877/1920)*100%);
        top: 40%;
        left: 30%;
    }

    .kv__scroll {
        max-width: 36px;
        min-width: 10px;
        width: calc((36/1092)*100%);
        bottom: 20px;
        left: 5%;
    }

}

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

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

}

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

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


.conc__ttl {
    color: #fff;
    margin: 0 auto 40px;

}

.conc__box {
    padding: 0 0 30px 5%;

    display: flex;
    flex-direction: column-reverse;
    position: relative;

    &::before {
        content: "";
        position: absolute;
        width: 150%;
        height: 100%;
        background: rgba(255, 255, 255, .9);
        top: 0;
        left: 0;
    }
}

.conc__img {
    margin: 0 auto;
    max-width: 860px;
    position: relative;
    top: -20px;

}



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

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

    }

    .conc__obj01 {
        width: calc((450/1920)*100%);
        left: 0;
        top: 100%;
    }

    .conc__obj02 {
        width: calc((480/1920)*100%);
        right: 0;
        top: 100%;
    }


    .conc__ttl {
        margin: 0 auto 60px;

    }

    .conc__box {
        padding: 0 0 40px 5%;
        display: flex;
        flex-direction: row;
    }

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

    .conc__img {
        width: 50%;
        margin: 0;
        top: -20px;

    }


}

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

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

    }

    .conc__obj01 {
        width: calc((450/1920)*100%);
        left: 0;
        top: 100%;
    }

    .conc__obj02 {
        width: calc((480/1920)*100%);
        right: 0;
        top: 100%;
    }


    .conc__ttl {
        margin: 0 auto 80px;

    }

    .conc__box {
        padding: 0 0 60px 5%;
        display: flex;
        flex-direction: row;
    }

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

    .conc__img {
        width: 50%;
        margin: 0;
        top: -20px;

    }

}



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

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

}



.comm__ttl {
    margin: 0 auto 20px;
}

.comm__box {
    padding: 40px 5%;
}


.comm__obj01 {
    top: 0;
    left: -5%;
    max-width: 200px;
    width: 100px;
    pointer-events: none;
}

.comm__obj02 {
    bottom: 0;
    right: -5%;
    max-width: 200px;
    width: 100px;
    pointer-events: none;
}

.comm__btn {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
}

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



    .comm__ttl {
        margin: 0 auto 20px;
    }

    .comm__box {
        padding: 60px 5%;
    }


    .comm__obj01 {
        top: 0;
        left: -3%;
        max-width: 200px;
        width: 120px;
    }

    .comm__obj02 {
        bottom: 0;
        right: -3%;
        max-width: 200px;
        width: 120px;
    }

    .comm__btn {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

}

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

        .inner__mid {
            max-width: 1200px;
        }
    }



    .comm__ttl {
        margin: 0 auto 20px;
    }

    .comm__box {
        padding: 60px 5%;
    }


    .comm__obj01 {
        top: 0;
        left: -3%;
        max-width: 200px;
        width: 200px;
    }

    .comm__obj02 {
        bottom: 0;
        right: -3%;
        max-width: 200px;
        width: 200px;
    }

    .comm__txt {
        text-align: center;
    }

    .comm__btn {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

}


/*============================
   menu
============================*/
.menu__img {
    & img {
        object-fit: cover;
        width: 100%;
        height: 150px;
    }
}

.menu__box {
    position: relative;
    background: #fffefa;
    padding: 30px 5%;
    margin: -30px auto 30px;
    z-index: 1;
}

.menu__ttl {
    font-size: 4rem;
}

.menu__link {
    display: block;
    width: 100%;
    padding: 1em 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto 15px;
    border-top: solid 1px #2c6522;
    border-bottom: solid 1px #2c6522;

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

    & img {
        max-width: 23px;
        width: 16px;
        transition: .3s;
    }
    &:hover{
        color: #2c6522;
        & img{
            transform: translate(10px);
        }
    }
}

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

.gallery__img {
    max-width: 430px;
    width: 240px;
    margin: 0 5px;
}

@media screen and (min-width:768px) {
    .menu__img {
        & img {
            height: 250px;
        }
    }

    .menu__box {
        padding: 40px 5%;
        margin: -50px auto 40px;
    }

    .menu__ttl {
        font-size: 6rem;
    }

    .menu__lead {
        text-align: center;
    }

    .menu__link {
        width: 48%;
        padding: 1em 0;
        margin: 0;

        & img {
            max-width: 23px;
            width: 16px;
        }
    }


    .gallery__img {
        max-width: 430px;
        width: 240px;
        margin: 0 5px;
    }
}

@media screen and (min-width:1025px) {
    .menu__img {
        & img {
            height: 380px;
        }
    }

    .menu__box {
        padding: 40px 5%;
        margin: -120px auto 80px;
        max-width: 1400px;
    }

    .menu__ttl {
        font-size: 9rem;
    }

    .menu__items {
        justify-content: center;
    }

    .menu__link {
        width: 46%;
        max-width: 560px;
        padding: 2em 0;
        margin: 0 2%;

        & img {
            max-width: 23px;
            width: 23px;
        }
    }


    .gallery__img {
        max-width: 430px;
        width: 430px;
        margin: 0 10px;
    }
}

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

.pro__left {
    margin: 0 0 30px;
}

.pro__ttl {
    margin: 0 auto 30px;
}

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

    .pro__left {
        width: 50%;
        margin: 0;
    }

    .pro__ttl {
        margin: 0 auto 40px;
    }

    .pro__img {
        width: 45%;
    }
}

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

    .pro__left {
        width: 50%;
        margin: 0;
    }

    .pro__txtwarp {
        max-width: 600px;
        margin: 0 0 0 auto;
        padding: 0 5% 0 0;
    }

    .pro__ttl {
        margin: 0 0 60px;
    }

    .pro__img {
        width: 45%;
    }
}


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

.voice__ttl {
    margin: 0 auto 40px;
}

.voice__atc {
    max-width: 380px;
    margin: 0 auto 30px;
}

.voice_info {
    margin: 1em 0 .5em;
    display: flex;
    align-items: center;

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

.voice__h3 {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

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

    .voice__ttl {
        margin: 0 auto 60px;
    }

    .voice__atc {
        width: 24%;
        margin: 0;
    }

    .voice_info {
        margin: 1em 0 .5em;

    }

}

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

    .voice__ttl {
        margin: 0 auto 80px;
    }

    .voice__atc {
        width: 24%;
    }

    .voice_info {
        margin: 1em 0 .5em;

    }

}


/*============================
   info
============================*/
.infomation {
    padding: 60px 0 0;

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

.info__ttl {
    .font-en {
        font-size: 4rem;
    }

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

.info__atc {
    max-width: 600px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 1;

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

    .arw {
        max-width: 60px;
        width: 40px;
        position: absolute;
        left: 60%;
        top: 70%;
        transform: translate(-50%, -50%);
    }
}

.info__btn {
    display: block;
    max-width: 300px;
    width: 60%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 50%;
    top: 100%;
    transform: translate(-50%, -50%);
    background: #2c6522;
    color: #fff;
    box-shadow: 6px 6px 29px rgba(32, 30, 30, .2);

}

.info__atc:nth-child(2) .info__btn {
    background-color: #fff;
    color: #2c6522;
}

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

        &::before {

            height: calc(100% - 100px);
        }
    }

    .info__ttl {
        .font-en {
            font-size: 6rem;
        }

    }

    .info__items {
        align-items: flex-start;
    }

    .info__atc {
        width: 48%;
        margin: 0;


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

        .arw {
            max-width: 60px;
            width: 40px;
            left: 60%;
            top: 70%;
        }
    }

    .info__btn {
        max-width: 300px;
        width: 60%;
        height: 80px;

    }

}

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

        .inner__mid {
            max-width: 1280px;
        }

        &::before {

            height: calc(100% - 160px);
        }
    }

    .info__ttl {
        .font-en {
            font-size: 9rem;
        }

    }

    .info__atc {
        width: 48%;


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

        .arw {
            max-width: 60px;
            width: 60px;
            left: 60%;
            top: 70%;
        }
    }

    .info__btn {
        max-width: 300px;
        width: 60%;
        height: 130px;

    }
}

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

    &::before {
        content: "";
        position: absolute;
        width: 100%;
        height: calc(100% + 60px);
        background: url(../images/news_bg.png)no-repeat center bottom/100%, #fffcf2;
        left: 0;
        bottom: 0;
    }

}


.news__ttl {
    margin-bottom: 30px;
    mix-blend-mode: multiply;

    .font-en {
        background: #fffcf2;
    }

    .txt {
        background: #fffcf2;
    }

}

.news__atc {
    display: block;
    margin-bottom: 2em;

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


.news__date {
    white-space: nowrap;
}


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

}

.news__btn {
    position: relative;
    display: block;
    max-width: 210px;
    width: 120px;
    margin: 1em 0 0 auto;
}

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

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

        }

    }

    .news__left {
        width: 20%;
    }

    .news__atcwrap {
        width: 75%;
    }

    .news__ttl {
        margin-bottom: 0;
    }

    .news__atc {
        margin-bottom: 2em;

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



    .news__atc--ttl {
        padding-left: 2em;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;

    }


}

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

        &::before {
            height: calc((100% + 250px));
            bottom: -50px;
            background-size: cover;
        }

        .inner__mid {
            max-width: 1200px;
        }

    }

    .news__left {
        width: 15%;
    }

    .news__atcwrap {
        width: 80%;
    }


    .news__atc {
        margin-bottom: 2em;

    }



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

    }

    .news__btn {
        max-width: 210px;
        width: 100%;
        margin: 1em 0 0 auto;
    }


}