html{
    font-size: 100%;
}
a {
    text-decoration: none;
    color: #2d2d2d;
}
li {
    list-style: none;
}
img {
    width: 100%;
    vertical-align: bottom;
}
body{
    font-family: 'HGPGothicE','HGPSoeiKakugothicUB','Noto Sans JP', sans-serif;
    color: #4b2203;
}

/* 共通 */
.container{
    max-width: 1440px;
    margin: 0 auto;
}
.inner{
    margin: 0 30px;
}
.button{
    width: 200px;
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #28A745;
    border: 5px solid #218838;
    border-radius: 10px;
    color: #fff;
    /* font-size: 28px; */
    font-size: clamp(1rem, 0.786rem + 1.07vw, 1.75rem);
    font-family: HGPSoeiKakugothicUB,Noto Sans JP;
    transition: all 0.3s ease;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 6px 4px;
    outline: none;
    overflow: hidden;
    position: relative;
}
.button span{
    text-shadow:
    /* 白く縁取り */
    -1px -1px 0 #218838,  
    1px -1px 0 #218838,  
    -1px  1px 0 #218838,  
    1px  1px 0 #218838;
}
/* キラッと光るアニメーション */
.button:before {
    display: inline-block;
    position: absolute;
    content: '';
    top: -30px;
    left: -70px;
    width: 30px;
    height: 100%;
    background-color: #fff;
    animation: shiny-btn1 2.5s ease-in-out infinite;
}
@keyframes shiny-btn1 {
    0% { transform: scale(0) rotate(45deg); opacity: 0; }
    80% { transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { transform: scale(4) rotate(45deg); opacity: 1; }
    100% { transform: scale(50) rotate(45deg); opacity: 0; }
}

/* header */
.header{
    padding: 5px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}
.logo{
    border-radius: 50%;
    height: 70px;
    width: 70px;
    text-align: center;
}
h1{
    /* font-size: 40px; */
    font-size: clamp(1.625rem, 1.375rem + 1.25vw, 2.5rem);
    font-family: 'HGPSoeiKakugothicUB','Noto Sans JP';
    font-weight: normal;
}

/* mainvisual */
.mainvisual{
    background-image: url('../img/mainvisual.jpg');
    width: 100%;
    height: 800px;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content:flex-end;
    align-items: center;
}
.mv-content {
    display: flex;
    flex-direction: column;
    padding-top: 14%;
    padding-right: 13%;
}
h2{
    font-family: 'HGPSoeiKakugothicUB','Noto Sans JP';
    /* font-size: 48px; */
    font-size: clamp(1.75rem, 1.393rem + 1.79vw, 3rem);
    font-weight: normal;
    margin-bottom: 20px;
}
h2 .break{
    display: block;
}
.button-mv{
    width: 360px;
    height: 130px;
    /* font-size: 56px; */
    font-size: clamp(1.75rem, 1.25rem + 2.5vw, 3.5rem);
}

/* empathy */
.empathy{
    background-image: url('../img/共感.png');
    width: 100%;
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    align-items: center;
}
.emp-flex{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 0 160px;
    /* font-size: 24px; */
    font-size: clamp(1.25rem, 1.179rem + 0.36vw, 1.5rem);
}
.emp-left{
    display: flex;
    width: 100%;
    justify-content: flex-start;
    margin-top: 100px;
}
.emp-right{
    display: flex;
    width: 100%;
    justify-content: flex-end;
    margin-top: 100px;
}
.empathy h3{
    /* font-size: 50px; */
    font-size: clamp(1.75rem, 1.357rem + 1.96vw, 3.125rem);
    font-weight: normal;
    text-align: center;
    margin-top: 10%;
    /* 影 */
    text-shadow: rgba(0, 0, 0, 0.25) 0px 6px 4px,
    /* 白く縁取り */
    -1px -1px 0 white,  
    1px -1px 0 white,  
    -1px  1px 0 white,  
    1px  1px 0 white;
}

/* solution */
.solution{
    background-image: url('../img/食卓.jpg');
    width: 100%;
    /* height: 800px; */
    padding-bottom: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    align-items: center;
}
.solution h3{
    /* font-size: 60px; */
    font-size: clamp(1.75rem, 1.179rem + 2.86vw, 3.75rem);
    font-weight: normal;
    text-align: center;
    padding-top: 60px;
    position: relative;
    z-index: 1;
    /* 影 */
    text-shadow: rgba(0, 0, 0, 0.25) 0px 6px 4px,
    /* 白く縁取り */
    -1px -1px 0 white,  
    1px -1px 0 white,  
    -1px  1px 0 white,  
    1px  1px 0 white;
}
.solution h3 span{
    display: block;
}
/* 白い背景線 */
/* .solution h3::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 30px; 
    background: #fff;
    z-index: -1;
} */
.solution-list{
    display: flex;
    justify-content: center;
    margin-top: 170px;
}
.solution-list li{
    margin: 0 2.5px;
}

/* benefit */
.benefit{
    background-image: url('../img/葱畑1.png');
    width: 100%;
    /* height: 800px; */
    padding-bottom: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    align-items: center;
}
.benefit h3{
    /* font-size: 50px; */
    font-size: clamp(1.75rem, 1.357rem + 1.96vw, 3.125rem);
    font-weight: normal;
    color: #fff;
    padding-top: 200px;
}
.benefit-list{
    /* font-size: 26px; */
    font-size: clamp(1.25rem, 1.143rem + 0.54vw, 1.625rem);
    color: #fff;
    margin-top: 50px;
}
.benefit-list li{
    margin: 24px 0;
}
.button-bf{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 520px;
    height: 100px;
    margin-top: 20px;
    /* font-size: 40px; */
    font-size: clamp(1.125rem, 0.732rem + 1.96vw, 2.5rem);
}

/* product */
.product {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-bottom: 160px;
     /* ←下にスペースを確保 */
}
.product::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/宅配野菜.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: -1;
    transition: filter 0.5s ease-out;
    will-change: filter;
    filter: blur(var(--blur-amount, 0px));
}
.product-title{
    /* font-size: 50px; */
    font-size: clamp(1.75rem, 1.357rem + 1.96vw, 3.125rem);
    text-align: center;
    font-weight: normal;
    color: #fff;
    text-shadow: 
    /* 茶色く縁取り */
    -1px -1px 0 #4B2203,  
    1px -1px 0 #4B2203,  
    -1px  1px 0 #4B2203,  
    1px  1px 0 #4B2203;
    padding-top: 100px;
}
.product-list{
    display: flex;
    justify-content: space-evenly;
    margin-top: 60px;
}
.product-list li{
    width: 340px;
    margin: 0 2.5px;
}
.button-pd{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 520px;
    height: 100px;
    /* font-size: 40px; */
    font-size: clamp(1.125rem, 0.732rem + 1.96vw, 2.5rem);
    margin: 60px auto 0; 
    /* 上に余白、下は自動中央揃え */
}

/* faq */
.faq{
    background-image: url('../img/白菜畑1.jpg');
    width: 100%;
    /* height: 800px; */
    padding-bottom: 196px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    align-items: center;
}
.faq-title{
    /* font-size: 50px; */
    font-size: clamp(1.75rem, 1.357rem + 1.96vw, 3.125rem);
    font-weight: normal;
    color: #fff;
    padding-top: 196px;
}
.faq-list{
    display: flex;
    flex-direction: column;
    text-align: left;
    color: #fff;
    margin-top: 45px;
    /* font-size: 26px; */
    font-size: clamp(1.25rem, 1.143rem + 0.54vw, 1.625rem);
    line-height: 26px;
}
.faq-list dd{
    margin-top: 8px;
    margin-bottom: 40px;
}
.faq-list dd:last-child{
    margin-bottom: 0;
}

/* reviews */
.reviews{
    background-image: url('../img/パプリカ1.jpg');
    width: 100%;
    /* height: 800px; */
    padding-bottom: 180px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    align-items: center;   
}
.reviews-title{
    /* font-size: 50px; */
    font-size: clamp(1.75rem, 1.357rem + 1.96vw, 3.125rem);
    font-weight: normal;
    text-align: center;
    padding-top: 180px;
    text-shadow: 
    /* 白く縁取り */
    -1px -1px 0 white,  
    1px -1px 0 white,  
    -1px  1px 0 white,  
    1px  1px 0 white;
}
.reviews-item{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
}
/* スライドイン共通 */
.slide-left,
.slide-right {
    transform: translateX(-100%);
    transition: all 1s ease;
}
/* 表示時にスライドインを適用 */
.slide-in-left {
    transform: translateX(0);
    animation: slideLeftIn 1s forwards;
}
.slide-in-right {
    transform: translateX(0);
    animation: slideRightIn 1s forwards;
}
/* 左から右へ */
@keyframes slideLeftIn {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}
/* 右から左へ */
@keyframes slideRightIn {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}
.reviews-item img{
    width: 170px;
    height: 170px;
}
.reviews-text{
    max-width: 600px;
    width: 100%;
    /* font-size: 28px; */
    font-size: clamp(1rem, 0.786rem + 1.07vw, 1.75rem);
    background-color: #fff;
    padding: 18px 38px;
    border-radius: 10px;
}
.right{
    margin-right: 25px;
    padding: 36px 17px;
    /* 疑似要素の基準点 */
    position: relative;
}
.right::before{
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -30px;
    border: 15px solid transparent;
    border-left: 15px solid #fff;
}
.left{
    margin-left: 25px;
    /* 疑似要素の基準点 */
    position: relative;
}
.left::before{
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -30px;
    border: 15px solid transparent;
    border-right: 15px solid #fff;
}

/* producer */
.producer{
    background-image: url('../img/野菜イラスト1.png');
    width: 100%;
    /* height: 800px; */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    align-items: center;
    padding-bottom: 160px;
     /* ←下にスペースを確保 */
}
.prof{
    /* font-size: 24px; */
    font-size: clamp(1.125rem, 1.018rem + 0.54vw, 1.5rem);
    display: flex;
    /* imgとpの高さを常に同じにする */
    align-items: stretch;
    padding-top: 80px;
    
}
.prof img{
    width: 30%;
    object-fit: cover;
    border-radius: 10px 0px 0px 10px;
}
.prof p{
    display: flex;
    align-items: center;
    line-height: 28px;
    background-color: #fff;
    padding: 30px 40px;
    border-radius: 0 10px 10px 0;
}
.pro-text{
    position: static;
    /* font-size: 36px; */
    font-size:clamp(1.375rem, 1.125rem + 1.25vw, 2.25rem);
    font-family: HGPSoeiKakugothicUB,Noto Sans JP;
    font-weight: normal;
    text-align: center;
    color: #fff;
    margin-bottom: 0;
    text-shadow: 
    /* 茶色く縁取り */
    -1px -1px 0 #4B2203,  
    1px -1px 0 #4B2203,  
    -1px  1px 0 #4B2203,  
    1px  1px 0 #4B2203;
    margin-top: 80px;
}
.pro-textmain{
    /* font-size: 48px; */
    font-size: clamp(1.75rem, 1.393rem + 1.79vw, 3rem);
    font-family: HGPSoeiKakugothicUB,Noto Sans JP;
    font-weight: normal;
    text-align: center;
    color: #fff;
    text-shadow: 
    /* 茶色く縁取り */
    -1px -1px 0 #4B2203,  
    1px -1px 0 #4B2203,  
    -1px  1px 0 #4B2203,  
    1px  1px 0 #4B2203;
}
.button-pr{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 660px;
    height: 150px;
    /* font-size: 40px; */
    font-size: clamp(1.5rem, 1.214rem + 1.43vw, 2.5rem);
    margin: 80px auto 0; 
}

/* footer */
footer{
    text-align: center;
    padding: 30px 0;
}
footer p{
    /* font-size: 20px; */
    font-size: clamp(1rem, 0.929rem + 0.36vw, 1.25rem);
    align-items: center;
}


/* -----responsive--------------------------- */
@media all and (max-width:1057px){
    .button{
        width: 150px;
        /* font-size: 24px; */
    }
    .button-mv{
        width: 300px;
        /* font-size: 48px; */
    }
    .button-bf,.button-pd{
        width: 480px;
        /* font-size: 32px; */
    }
    .button-pr{
        width: 540px;
        /* font-size: 36px; */
    }
}
@media all and (max-width:768px){
    .mv-content {
        padding-top: 7%;
        padding-right: 7%;
    }
    .button{
        width: 130px;
        /* font-size: 20px; */
    }
    /* ✨ 放射状の光 */
    .button::before {
        width: 25px;
        height: 25px;
    }
    .button-mv{
        width: 240px;
        height: 100px;
        /* font-size: 36px; */
    }
    .empathy{
        background-position: 80% center;
    }
    .emp-flex{
        margin: 0 40px;
    }
    /* 白い背景線 */
    /* .solution h3::after{
        height: 20px;
    } */
    .solution-list{
        flex-wrap: wrap;
        margin-top: 90px;
    }
    .solution-list li{
        margin-top: 10px;
    }

    .button-bf,.button-pd{
        width: 360px;
        /* font-size: 28px; */
    }
    .product{
        padding: 60px 0 60px 0;
    }
    .product-list{
        flex-wrap: wrap;
        margin-top: 40px;
    }
    .product-list li{
        width: 75%;
        margin-bottom: 10px;
    }
    .prof{
        flex-direction: column;
        padding-top: 40px;
    }
    .prof img{
        width: 100%;
        border-radius: 10px 10px 0px 0px;
        object-position: 90% 50%;
        object-fit: fill;
    }
    .prof p{
        border-radius: 0 0px 10px 10px;
        padding: 15px;
    }
    .reviews-item{
        flex-direction: column;
        /* text-align: center; */
        margin-top: 80px;
    }
    .slide-right img{
        order: 1;
    }
    .slide-right p{
        order: 2;
    }
    .reviews-text{
        margin-top: 25px;
    }
    .right{
        margin-right: 0;
    }
    .right::before{
        top: -30px;
        /* left: 50%; */
        right: 50%;
        transform: translateX(50%);
        border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 15px solid #fff;
    }
    .left{
        margin-left: 0;
    }
    .left::before{
        top: -30px;
        left: 50%;
        transform: translateX(-50%);
        border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 15px solid #fff;
    }
    .button-pr{
        /* width: 420px; */
        width: 100%;
        height: 100px;
        font-size: 28px;
        margin-top: 40px;
    }
}
@media all and (max-width:430px){
    .button{
        width: 100px;
        height: 50px;
        /* font-size: 16px; */
    }
    .header{
        padding: 5px 20px;
    }
    .logo{
        height: 50px;
        width: 50px;
    }
    .mv-content {
        padding-top: 1%;
        padding-right: 7%;
    }
    .button-mv{
        width: 180px;
        height: 80px;
        /* font-size: 28px; */
    }
    .emp-flex{
        padding-top: 75%;
        /* font-size: 20px; */
    }
    .emp-left,.emp-right{
        margin-top: 45px;
    }
    /* .solution h3::after{
        position: static;
    } */
    .solution-list{
        margin-top: 140px;
    }
    .solution-list li{
        width: 48%;
    }
    .benefit h3{
        /* font-size: 28px; */
        padding-top: 150px;
    }
    .button-bf,.button-pd{
        /* width: 300px; */
        width: 100%;
        height: 80px;
        /* font-size: 24px; */
    }
    .button-pd{
        margin-top: 20px;    
    }
    .product{
        height: auto;
    }
    .product-title{
        /* font-size: 28px; */
        padding-top: 40px;
    }
    .product-list li{
        margin-bottom: 4px;
    }
    .faq-title{
        /* font-size: 28px; */
        padding-top: 80px;
    }
    .reviews-title{
        /* font-size: 28px; */
        padding-top: 80px;
    }
    .reviews-item img{
        width: 100px;
        height: 100px;
    }
    .reviews-text{
        width: 100%;
        /* font-size: 16px; */
        padding: 15px 20px;
    }
    .producer{
        height: auto;
        padding-bottom: 100px;
    }
    .pro-text{
        /* font-size: 22px; */
        margin-top: 40px;
    }
    .pro-textmain{
        /* font-size: 28px; */
        margin-bottom: 10px;
    }
    .button-pr{
        /* width: 300px; */
        width: 100%;
        height: 80px;
        /* font-size: 24px; */
    }
}