 @charset "UTF-8";
/* ====================
commom
==================== */
/* *{
    outline: solid 1px #2E8B57;
} */
html{
    font-size: 62.5%;
}

body{
    color: black;
    font-family:
    "Zen Maru Gothic", serif ;
    font-style: normal;
}

img{
    max-width: 100%;
    height: auto;
}

.space{
    padding: 100px 7%;
}

@media screen and (max-width:768px){
    .space{
        padding: 50px 7%;
    }
}
.main{
    overflow: hidden;
}

.btn{
    background-color: #2E8B57;
    display: block;
    width: 420px;
    height: 65px;
    text-align: center;
    line-height: 60px;
    text-decoration: none;
    color: white;
    font-size: 2.4rem;
    font-weight: 700;
    border-radius: 30px;
    transition: 0.4s;
    position: relative;
    margin: 0 auto;
    
}
.btn::after{
    content:"＞";
    color: white;
    font-size: 2.4rem;
    font-weight: 700;
    text-align: center;
    position: absolute;
    right: 30px;
}

.btn:hover{
    background-color: orangered;
}

@media screen and (max-width:768px){
    .btn{
        width: 300px;
        height: 40px;
        font-size: 2.0rem;
        padding-bottom: 20px;
    }

    .btn::after{
        font-size: 2.0rem;
        right: 10px;
    }

}
.section__title{
    display: block;
    font-size: 4.8rem;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 4.8px; 
    margin: 0 auto;
    text-align: center;
}

.section__txt{
    padding: 50px 0 50px;
    width: 100%;
    max-width: 770px;
    font-size: 2.0rem;
    font-weight: 500;
    line-height: 2.0; 
    letter-spacing: 1.0px;
    margin: 0 auto;
    text-align: left;
    position: relative; 
}

@media screen and (max-width:900px){
    .section__txt{
        max-width: 500px;
        padding: 30px 0;
        font-size: 1.8rem;
        line-height: 1.8; 
        letter-spacing: 0.5px;
    }
}

@media screen and (max-width:768px){
    .section__title{
        font-size: 2.6rem;
    }

    .section__txt{
        max-width: 330px;
        line-height: 1.5; 
        letter-spacing: 0.1px;
    }
}

/* ====================
header
==================== */
.header{
    width: calc(100% - 6%);
    height: 130px;
    background-color:rgba(255, 255, 255, 0.60) ;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 3%;
    position: absolute;
    position: fixed;
    top: 0;
    z-index: 2;
}

.header__logo{
    width: 380px;
    height: auto;
}

.nav__logo{
    width: 170px;
    height: auto;
    display: none;
}

.menuBtn{
    display: none;
}

.nav__list{
    display: flex;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: normal;
    gap: 32px;
}

.nav__list a {
    transition: 0.3s;
}

.nav__list a:hover {
    color: #ff6600; 
}

.nav__sns{
    display: flex;
    gap: 20px;
}

.sns__item a{
    transition: 0.3s;
}

.sns__item a:hover img {
    opacity: 0.7;
    transition: opacity 0.3s;
}

.sns__item{
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
}

.close{
    display: none;
}

.spdaikon{
    display: none;
}


.popup {
    display: block;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    font-size: 2.0rem;
    font-weight: 700;
    z-index: 1500;
}

.popup.style{
    display: block;
}

.popup button, #resetSound {
    margin: 10px;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
}

#soundYes {
    width: 150px;
    height: auto;
}

#soundYes:hover {
    opacity: 0.8;
    background-color: rgba(46, 139, 87, 0.2);
    transition: 0.3s;
}

#soundNo {
    width: 150px;
    height: auto;
}

#soundNo:hover {
    opacity: 0.7;
    background-color: rgba(46, 139, 87,0.2);
    transition: 0.3s;
}

#resetSound {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #555;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 1.6rem;
    font-weight: 500;
    z-index: 900;
}

#resetSound:hover{
    background-color: #2E8B57;
    transition: 0.3s;
}

@media screen and (max-width: 1200px) {
    .header{
        background-color:rgba(255, 255, 255, 0.60) ;
        height: 70px;
        display: flex;        
    }

    .header__logo{
        width: 140px;
        height: auto;
    }
    
    .nav__logo{
        display: block;
        position: absolute;
        top: 30px;
        left: 30px;
    }
    
    .menuBtn{
        display: block;
        width: 40px;
        height: 40px;
        position: fixed;
        top: 20px;
        right: 10%;
        cursor: pointer;
        background-image: url(../images/menuBtn.svg);
        background-repeat: no-repeat;
        background-size: contain; 
        transition: 0.3s;
    }

    .menuBtn:hover{
        background-image: url(../images/menuhover.svg);
    }
    
    .sns__item a img{
        filter: invert(100%);
    }

    .close{
        display: block;
        width: 28px;
        height: 28px;
        position: fixed;
        top: 50px;
        right: 10%;
        z-index: 999;
        position: absolute;
        background-image: url(../images/close.svg);
        background-repeat: no-repeat;
        background-size: contain; 
        transition: 0.3s;
        cursor: pointer;
    }

    .close:hover{
        background-image: url(../images/closehover.svg);
    }

    .nav{
        display: block;
        background-color: #2E8B57;
        width: 100vw;
        height: 100vh;
        position: fixed;
        left: 0;
        top: 0;
        z-index: 100;
        transform: translateX(-100%);
        transition: transform 1.0s;
        overflow-y: hidden;
    }

    .nav.active{
        transform: translate(0);
    }

    .nav__list{
        text-align: center;
        color: #fff;
        display: flex;
        flex-direction: column;
        justify-content: center;
        font-size: 2.4rem;
        font-weight: 700;
        line-height: 170%; 
        letter-spacing: 0.8px;
        gap: 50px;
        margin: 200px 0;
    }

    .nav__sns{
        justify-content: center;
        margin-top: 50px;
    }

    .nav__sns a{
        transition: filter 0.3s ease;
    }
    
    .nav__sns a:hover img {
        filter: grayscale(100%) brightness(80%); 
    }

    .spdaikon{
        display: block;
        width: 80px;
        height: auto;
        position: absolute;
        bottom: 10%;
        right: 10%;
        opacity: 1;
        cursor: pointer;
    }
}

@media screen and (max-width: 800px){
    #soundYes {
        width: 100px;
        height: auto;
    }
    
    #soundNo {
        width: 100px;
        height: auto;
    }

    .popup button {
        margin: 0;
        padding: 10px 10px 0;
        border: none;
        cursor: pointer;
    }

    .popup {
        font-size: 1.6rem;
        font-weight: 500;
    }
}

@media screen and (max-width: 550px){
    .popup{
        padding: 10px;
    }

    #soundYes {
        width: 80px;
        height: auto;
    }
    
    #soundNo {
        width: 80px;
        height: auto;
    }
}

/* ====================
kyevisual
==================== */
.kyevisual{
    width: 100%;
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.kyevisual img{
    width: 100%;
    object-fit: cover;
    height: 100%;
}
.mainTxt__box{
    position: absolute;
    left: 60px;
    bottom: 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main__txt{
    padding: 0px 30px;
    text-align: center;
    background-color: white;
    border-radius: 50px;
    color: #013F1C;
    font-size: 4.8rem;
    font-weight: 700;
    line-height: normal;
}
.slick-slide{
    height: 100vh;
}

@media screen and (max-width: 1200px) {
    .mainTxt__box{
        left: 60px;
        gap: 17px;
    }

    .main__txt{
        font-size: 4.0rem;
    }
}

@media screen and (max-width: 950px){
    .mainTxt__box{
        left: 40px;
        gap: 17px;
    }

    .main__txt{
        font-size: 3.8rem;
    }
}
@media screen and (max-width:768px){
    .kyevisual{
        height: 668px;
    }

    .mainTxt__box{
        left: 30px;
        bottom: 50px;
        gap: 15px;
    }

    .main__txt{
        padding: 0px 15px; 
        font-size: 3.4rem;
    }

    .kyevisual img{
        height: 668px;
        object-fit: cover;
    }
}

/* ====================
fadeIn
==================== */
.fadeIn{
    transform: translate(0, 150px);
    opacity: 0;
    transition: 1s;
}

.fadeIn.animaited{
    transform: translate(0, 0);
    opacity: 1;
}

/* ====================
about
==================== */
.about__container{
    /* height: 500px; */
    margin: 0 auto;
}

.section__txt span{
    color: #ff6600; 
    font-size: 3.0rem;
    font-weight: 700;
}

.spBr{
    display: none;
}

.sp__tomato{
    display: none;
}

.tomato{
    width: 200px;
    height: auto;
    position: absolute;
    left: -200px;
    bottom: -50px;
    transition: transform 0.2s ease-in-out;
    cursor: pointer;
}

.character{
    animation: tiltCharacter 1s infinite alternate ease-in-out;
}

@keyframes tiltCharacter{
     0%{
        transform: rotate(0deg);
     }
     25%{
        transform: rotate(15deg);
     }
     50%{
        transform: rotate(0deg);
     }
     75%{
        transform: rotate(-15deg);
     }
     100%{
        transform: rotate(0deg);
     }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-70px); /* 上へ移動 */
    }
    50% {
        transform: translateY(0);
    }
    70% {
        transform: translateY(-25px); /* 少し跳ねる */
    }
    100% {
        transform: translateY(0);
    }
}

.bounce {
    animation: bounce 1.0s ease;
}

.negi1{
    width: 280px;
    height: auto;
    position: absolute;
    right: -280px;
    bottom: -100px;
}

.sp__negi{
    display: none;
}

@media screen and (max-width:1300px){
    .section__txt{
        max-width: 630px;
    }

    .tomato{
        width: 150px;
        left: -130px;
        bottom: -80px;
    }
    
    .negi1{
        width: 250px;
        right: -180px;
        top:-20%;
    }
}

@media screen and (max-width:980px){
    .negi1{
        display: none;
    }

    .sp__negi{
        display: block;
        width: 120px;
        height: auto;
        margin: 20px auto 0;
        transition: transform 0.2s ease-in-out;
        cursor: pointer;
    }

    .section__txt span{
        font-size: 2.3rem;
        font-weight: 700;
    }

    .sp__tomato{
        display: block;
        width: 100px;
        height: auto;
        margin: 0 auto;
        cursor: pointer;
    }

    .kurukuru{
        opacity: 0;
        transform: scale(0) rotate(0deg);
        animation: spinIn-out 4s infinite ease-out forwards;
    }

    @keyframes spinIn-out {
        0%{
            opacity: 0;
            transform: scale(0) rotate(0deg);
        }

        50%{
            opacity: 1;
            transform: scale(1.2) rotate(180deg);
        }

        100%{
            opacity: 1;
            transform: scale(1.8) rotate(360deg);
        }
    }

    .about__container .section__title{
        margin-bottom: 30px;
    }

    .tomato{
        display: none;
    }
}

@media screen and (max-width:550px){
    .about .section__txt{
        max-width: 330px;
        letter-spacing: 0.2;
    }
    .spBr{
        display: block; 
    }
}
/* ====================
commitment
==================== */
.commitment{
    background-color: rgba(46, 139, 87, 0.10);
}

.commitment__container{
    position: relative;
}

.nae__container{
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
    padding-bottom: 200px;
    flex-wrap: wrap;
    margin: 0 auto;
}

.nae__img{
    width:100%;
    max-width: 250px;
    height: auto;
    overflow: hidden;
    border-radius: 15%;
    margin-bottom: 15px;
}

.nae__img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tamanegi1{
    width: 320px;
    height: auto;
    position: absolute;
    left: 12%;
    bottom: 180px;
    transition: transform 0.3s ease;
}

.nasu1{
    width: 300px;
    height: auto;
    position: absolute;
    right: 18%;
    bottom: 160px;
    object-fit: contain;
}

@media screen and (max-width:1200px){
    .nae__container{
        width: 80%;
        gap: 230px 50px;
        padding-bottom: 230px;
    } 

    .nae__container li{
        width: calc(50% - 10%);
    }

    .nae__img{
        max-width: 100%;
    }

    .tamanegi1{
       top:630px;
       left: 320px;
    }

    .nasu1{
        right: 320px;
        bottom: 200px;
    }
}

@media screen and (max-width: 950px){
    .section__txt{
        max-width: 490px;
    }

    .nae__container{
        gap: 200px 50px;
        padding-bottom: 190px;
    }

    .tamanegi1{
        left: 250px;
        top: 570px;
    }
    
    .nasu1{
        right: 250px;
        bottom: 160px;
    }
}

@media screen and (max-width:768px){
    .nae__container{
        gap: 160px 50px;
    }

    .nae__img{
        max-width: 100%;

    }

    .tamanegi1{
        width: 250px;
        left:25%;
        top: 380px;
    }
    
    .nasu1{
        width: 250px;
        right: 25%;
        bottom: 130px;
    }
}

@media screen and (max-width:550px){
    .nae__container{
        gap: 100px 30px;
        padding-bottom: 130px;
    }

    .section__txt{
        max-width: 300px;
    }

    .tamanegi1{
        width: 180px;
        left:22%;
        top: 350px;
    }
    
    .nasu1{
        width: 160px;
        right: 25%;
        bottom: 140px;
    }
}
/* ====================
foodEducation
==================== */
.foodEducation__container{
    max-width: 1440px;
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin: 0 auto;
}

.foodEducation__img{
    width: 100%;
    max-width: 730px;
    height: 410px;
    overflow: hidden;
    object-fit: cover;
    border-radius: 50px;
}

.foodEducation__box1{
    text-align: right;
    display: inline-block;
    position: relative;
}

.sisito1{
    width: 400px;
    height: auto;
    position: absolute;
    left: 10%;
    bottom: 30px;
}

.foodEducation__box2{
    display: flex;
    position: relative;
}

.morokosi1{
    width: 450px;
    height: auto;
    position: absolute;
    right: 5%;
    bottom: -50px;
}

.foodEducation__box3{
    text-align: right;
    display: inline-block;
    position: relative;
}

.edamame1{
    width: 450px;
    height: auto;
    left: 5%;
    bottom: -30px;
    position: absolute;
}

.slider{
    display: none;
}

@media screen and (max-width:1200px){
    .sisito1{
        left: 0;
        bottom: 10px;
    }

    .morokosi1{
        right: 0;
        bottom: -20px;
    }

    .edamame1{
        left: 0;
        bottom: -10px;
    }
}

@media screen and (max-width:1000px){
    .foodEducation__img{
        max-width: 400px;
        height: auto;
    }

    .sisito1{
        width: 300px;
    }

    .morokosi1{
        width: 400px;
    }

    .edamame1{
        width: 400px;
    }
}

@media screen and (max-width:768px){
    .foodEducation__container{
        margin: 0 auto;
        gap: 30px;
    }

    .foodEducation__box1, .foodEducation__box2, .foodEducation__box3{
        display: none;
    }

    .slick-prev:before, .slick-next:before {
        font-family: 'slick';
        font-size: 20px;
        line-height: 2;
        opacity: .75;
        color: #2e8b57;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    .foodEducation__container .slider{
        display: block;
        justify-content: center;
        margin-top: 20px;
        height: 35vh;
    }

    .foodEducation__container .slider img{
        margin: 0 auto;
        max-width: 500px;
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}

@media screen and (max-width:550px){
    .foodEducation__container .slider{
        height: 25vh;
    }

    .foodEducation__container .slider img{
        max-width: 300px;
    }
}

@media screen and (max-width:400px){
    .foodEducation__container .slider{
       margin-top: 0;
    }

    .foodEducation__container .slider img{
        max-width: 280px;
        margin-bottom: 50px;
    }
}

/* ====================
footer
==================== */
.footer{
    background-color: #2E8B57;
    width: calc(100% - 20%);
    padding: 90px 10%;
    overflow: hidden;
    position: relative;
}

.footer__container{
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
  
}
.footer__box1{
    display: flex;
    flex-direction: column;
}

.ad{
    margin-top: 70px;
    color: white;
    font-size: 2.0rem;
    font-weight: 700;
    line-height: normal;  
}

.tel{
    margin-top: 10px;
    color: white;
    font-size: 2.0rem;
    font-weight: 700;
    line-height: normal;  
}

.footer__box2{
    display: flex;
    flex-direction: column;
}

.footerNav__list{
    display: flex;
    gap: 30px;
    margin-top: 100px;
    color: #FFF;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: normal;
}

.footerNav__list a:hover {
    color: #ff6600; 
    transition: color 0.3s ease;
}

.footerNav__sns{
    display: flex;
    gap: 20px;
    margin-top: 50px;
}

.footerNav__sns a:hover img {
    filter: grayscale(100%) brightness(0%); /* グレースケール＋少し暗く */
    transition: filter 0.3s ease;
}

.footerSns__item{
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
}

.Copyright{
    margin-top: 100px;
    color: #FFF;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: normal;
}

.daikonB{
    width: 150px;
    height: auto;
    position: absolute;
    bottom: -100px;
    right: 10%;
    cursor: pointer;
}

@media screen and (max-width:1200px){
    .footer__container{
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .footer__logo{
        margin: 0 auto;
    }    
}

@media screen and (max-width:768px){
    .footer__logo{
        width: 165px;
        height: auto;
    }

    .ad{
        font-size: 1.6rem;
        font-weight: 500;
        line-height: 170%;  
        letter-spacing: 0.8px;
    }
    
    .tel{
        font-size: 1.6rem;
        font-weight: 500;
        line-height: 170%; /* 27.2px */
        letter-spacing: 0.8px;
    }

    .footerNav__list{
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 30px;
        margin-top: 60px;
        font-size: 1.6rem;
        font-weight: 700;
        line-height: 170%; 
        letter-spacing: 0.8px;
    }

    .Copyright{
        font-size: 1.0rem;
        text-align: center;
    }
}

@media screen and (max-width:500px){
    .footer{
        padding: 50px 10%;
    }

    .footerNav__list{
        gap: 15px;
        margin-top: 70px;
        font-size: 1.6rem;
    }

    .footerNav__sns{
        justify-content: center;
    }

    .daikonB{
        width: 89px;
        bottom: 30px;
        right: 5%;
    }
}