@charset "UTF8";

/*=========================================
common
=========================================*/

html {
    font-size: 62.5%;
}

body {
    font-family: "Noto Sans JP", "Montserrat", sans-serif;
    font-style: normal;
    color: #2f2f2f;
    background-color: #f1f5f2;
    line-height: 1.5;
    font-size: 1.6rem;


}



/* 見出し（h1, h2, h3など）にMontserratを指定 */
h2 {
    font-family: "Montserrat", sans-serif;
}

body {
    max-width: 1600px;
    margin: 0 auto;
}

main {
    max-width: 1600px;
    overflow: hidden;
}

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



.section {
    padding: 60px 24px;
}

.section-topic {
    font-size: 3.0rem;
    font-weight: 600;
    /* font-family: Arial, Helvetica, sans-serif; */
    color: #2d8161;
    text-align: center;
    margin-bottom: 10px;
    letter-spacing: 1.0rem;
}

.sub-title {
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    color: #555;
}

.section-messege {
    font-size: 1.7rem;
    font-weight: 600;
    color: #2d8161;
    text-align: center;

}

.btn {
    background-color: #3ecd8d;
    color: #fff;
    display: block;
    font-size: 2.0rem;
    font-weight: 600;
    width: 320px;
    height: 60px;
    text-align: center;
    border-radius: 150px;
    line-height: 60px;
}

.btn:hover {
    animation: anima-btn 1s;
}


@keyframes anima-btn {
    0% {
        box-shadow: 0 0 0 0 rgb(37 137 208 / 50%);
    }

    100% {
        box-shadow: 0 0 0 1.2em rgb(0 0 0 / 0%);
    }
}






/*sugunihuwa*/

.fadeInAnime {
    animation-name: fadeInAnime1;
    animation-timing-function: ease-in-out;
    animation-duration: 8s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeInAnime1 {
    0% {
        opacity: 0;
    }

    20% {
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    60% {
        opacity: 1;
    }


    to {
        opacity: 1;
    }
}

.fadeInAnime2 {
    animation-name: fadeInAnime2;
    animation-timing-function: ease-in-out;
    animation-duration: 8s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeInAnime2 {
    0% {
        opacity: 0;
    }

    20% {
        opacity: 0;
    }

    40% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    to {
        opacity: 1;
    }
}

/*yuayura*/

.animation {
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-duration: 30s;
    width: 128px;
}

.keyframe3 {
    animation-name: anim_s;
    transform: rotate(30deg);
    animation-duration: 30s;
}

@keyframes anim_s {
    50% {
        transform: rotate(-30deg);
    }

    100% {
        transform: rotate(30deg);
    }
}

/*
huwa
*/

.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    opacity: 0;
}



@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* スクロールをしたら出現する要素にはじめに透過0を指定　*/

.fadeUpTrigger {
    opacity: 0;
}


/*=======================================
common　pc  
/*======================================*/

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

    .section {
        padding-top: 120px;
    }

    .section-topic {
        font-size: 3.8vw;
        font-weight: 600;
        /* font-family: Arial, Helvetica, sans-serif; */
        color: #2d8161;
        text-align: left;
        margin-bottom: 30px;
        letter-spacing: 1.0rem;
    }

    .sub-title {
        font-size: 1.8rem;
        font-weight: 600;
        text-align: left;
        margin-bottom: 60px;
    }

    .section-messege {
        font-size: 2.8rem;
        font-weight: 600;
        color: #2d8161;
        text-align: left;
        margin-bottom: 30px;
    }
}




/*======================================
commonここまで
========================================*/



.header {
    height: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.first-logo {
    width: 7em;
    height: auto;
    padding-left: 24px;
}

.hamburger-menu {
    width: 60px;
    height: 60px;
    position: relative;
    border: none;
    background-color: #2d8161;
    border-radius: 50%;
    appearance: none;
    padding: 0;
    cursor: pointer;
    margin: 0px 24px 0 24px;
    z-index: 11;
}

.hamburger-menu_bar {
    display: inline-block;
    width: 44%;
    height: 1.5px;
    background: #ffffff;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: .5s;
}

.hamburger-menu_bar:first-child {
    top: 20px;
}

.hamburger-menu_bar:nth-child(2) {
    top: 30px;
}

.hamburger-menu_bar:last-child {
    top: 40px;
}

.hamburger-menu--open .hamburger-menu_bar {
    top: 50%;
}

.hamburger-menu--open .hamburger-menu_bar:first-child {
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.hamburger-menu--open .hamburger-menu_bar:last-child {
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

.hamburger-menu--open .hamburger-menu_bar:nth-child(2) {
    display: none;
}

.navigation {
    display: none;
    background-image: url(../images/sky-nav.png);
    background-size: cover;
    background-position: bottom;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 10;
}

.navigation_list {
    text-align: center;
    list-style: none;
    padding: 30px 0 200px;
    margin: 0;
}

.header-btn {
    margin: 30px auto 0 auto;
}

.navigation_link {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    display: block;
    padding: 24px 0;
    transition: .5s;
    font-family: "Montserrat", sans-serif;
}

@media (hover: hover) and (pointer: fine) {
    .navigation_link:hover {
        background: #333;
    }
}

/*========================================
 header_pc
 =========================================*/
@media screen and (min-width: 1024px) {
    .header {
        height: 100px;
        display: flex;
        justify-content: space-between;
        align-items: center;

        margin: 0 auto;
    }

    .first-logo {
        padding-right: 50px;
        width: 18em;
    }

    .hamburger-menu {
        display: none;
    }

    .navigation {
        display: block;
        background-image: none;
        position: relative;
        top: 50%;
        transform: translateY(-50%);
        align-self: flex-end;
        text-align: right;
        margin-right: -24px;
        /* 余分な右マージンを補正 */
    }

    .navigation_list {
        padding: 18px 24px 18px 60px;
        display: flex;
        list-style: none;
        margin: -18px;
        flex-direction: row;
        align-content: stretch;
        flex-wrap: nowrap;
        align-items: baseline;
        justify-content: flex-end;
        gap: 1%;
        letter-spacing: 0.3rem;
        font-weight: 800;
    }

    .navigation_list>li:last-child {
        margin-bottom: 0;
        /* 最後のリストアイテムの余白を削除 */
    }

    .header-btn {
        display: block;
        margin: 45px 24px 0 auto;
    }

    .btn {
        width: 300px;
        height: 65px;
        line-height: 65px;
    }

    .navigation_link {
        color: #2d8161;
        font-weight: 500;
        font-size: 1.8rem;
        font-family: "Montserrat";
        text-decoration: none;
        font-weight: 700;
        height: auto;
        padding-left: 10px;
        padding-right: 10px;
        margin-right: 10px;
    }

    .navigation_link:hover {

        font-weight: 700;
        font-size: 2.4rem;
    }

    .header-btn:hover+.navigation {
        display: none;
    }
}


/*--------------------------------------------------------
main-visual sp
-------------------------------------------------*/


.main-container {
    background-color: #ffffff;
    background-size: cover;
}

.main_visual {
    width: 100%;
    max-width: 100%;
    height: 0;
    padding-top: 100%;
    position: relative;
    overflow: hidden;

}

.main_visual img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;

}

.main_message {

    margin: 0 auto;
    padding: 25px 0 0px;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d8161;
    writing-mode: vertical-rl;
    letter-spacing: 0.5rem;
    line-height: 2;
}


.main_message_btn {
    margin: 0 auto;
    position: absolute;
    top: -6%;
    left: 50%;
    transform: translate(-50%, -50%);
}


/*=========================================
main_visual_pc
========================================*/

@media screen and (min-width:768px) {
    .main_message {
        font-size: 2.4rem;
        padding: 60px;
    }
}

@media screen and (min-width: 1024px) {
    .main_visual {
        display: none;
    }

    .main-container {
        width: 100%;
        background-image: url(../images/sonomamahappa_pc.png);
        background-size: cover;
        aspect-ratio: 5 / 2.5;
    }

    .main_message {

        margin: 0;
        padding: 10%;
        font-size: 2vw;
        font-weight: 600;
        color: #2d8161;
        writing-mode: vertical-rl;
        letter-spacing: 0.9rem;
        line-height: 2.2;
    }

    .main_message_btn {
        display: none;
    }
}


/*=========================================
about_sp
=======================================*/


.about {
    padding: 60px 0 0;
    position: relative;
}

.about_image {
    object-fit: cover;
    aspect-ratio: 1.5/1;
    height: 80%;
    object-position: 0 80%;
    width: 90%;
    border-radius: 20px;
    margin: 0 20px 30px;
}

.about_message {
    padding: 0 24px;
    padding-bottom: 30px;
    width: 340px;
    margin: 0 auto;
}


.about_description {
    margin: 0 24px 60px 24px;
    background-size: 100%;
    font-size: 1.4rem;

}

.vegetable-image-first {
    position: relative;
}

.vegetable-image-first_carrot {
    width: 50px;
    position: absolute;
    top: 100%;
    right: 48px;
}



@media screen and (max-width: 1023px) {
    .about_message.about_description br {
        display: none;
    }
}



/*=========================================
about_pc
========================================*/
@media screen and (min-width: 1024px) {

    .about {
        padding-top: 120px;
    }

    .about-container {
        display: flex;
        flex-direction: row;
        align-items: center;
        width: 85%;
        margin: 0 auto;
        position: relative;
    }



    .about-box {
        position: absolute;
        left: 60%;
        top: -7px;
    }



    .about-text {
        position: absolute;
        top: 64%;
        left: 60%;
    }

    .about_image {
        order: 1;
        max-width: 450px;
        border-radius: 30px;
        aspect-ratio: 1 / 1.3;
    }

    .about_message {
        margin: 0 0 60px 0;
        max-width: 440px;
        font-size: 2.8rem;
        padding: 0;
    }

    .about_description {
        width: 350px;
        margin-bottom: 60px;
        font-size: 2.0rem;
    }

    .about_message.about_description br {
        content: "\00a0";
        /* 半角スペースを挿入 */
        display: inline-block;
        /* インラインブロック要素として表示 */
        width: 100%;
        /* 幅を100%に設定 */
        height: 20px;
        /* 高さを調整（必要に応じて変更） */
    }

    .line-break-here {
        white-space: pre-wrap;
        /* テキスト内の改行を維持 */
    }

    .vegetable-image-first_carrot {
        width: 100px;
        position: absolute;
        top: 84%;
        right: 48px;
        transform: rotate(28deg);
    }
}

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



    .vegetable-image-first_carrot {
        width: 100px;
        position: absolute;
        top: 81%;
        right: -113px;
        transform: rotate(28deg);
    }
}

/*=======================================================
farmers sp
=================================================*/

.farmers {
    padding-bottom: 100px;
    position: relative;
    overflow: hidden;
}

.farmers:after {
    content: "";
    position: absolute;
    width: 690vw;
    height: 690vw;
    background: linear-gradient(233deg, #E5F6E1 30.67%, #E8F7E4 37.25%, #F7FCF5 56.39%, #FDFEFD 70.13%, #FFF 88.16%);

    border-radius: 50%;
    top: 0%;
    right: -249%;
    z-index: -1;
}


.farmers_messege {
    margin: 0 70px 30px 70px;
}

.farmers_image {
    margin-bottom: 30px;
    border-radius: 20px;
}

.farmers_voice {
    margin: 0 24px 20px 24px;
    font-size: 1.6rem;
}

.farmers_name {
    margin: 0 24px 20px 24px;
    font-size: 1.2rem;
}

.farmers_description {
    margin: 0 24px 0px 24px;
    padding-bottom: 40px;
    font-size: 1.4rem;
}

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

    .farmers {
        padding-left: 15%;
        padding-right: 15%;
    }

    .farmers_image {
        margin-bottom: 30px;

    }

}


/*===========================================
farmers pc
=====================================*/


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

    .farmers {
        padding-left: 100px;
        padding-right: 100px;
        padding-bottom: 400px;
    }

    .farmers:after {
        content: "";
        position: absolute;
        width: 200vw;
        height: 170vw;
        background: linear-gradient(179deg, #E5F6E1 1.18%, #E8F7E4 18.02%, #ECF9E9 34.85%, #F7FCF5 51.68%, rgba(253, 254, 253, 0.30) 68.51%, rgba(255, 255, 255, 0.10) 85.34%, rgba(255, 255, 255, 0.70) 102.17%);
        border-radius: 50%;
        top: 0%;
        right: -10%;
        z-index: -1;
    }

    .farmers_messege {
        margin: 0 0 80px 0;
    }

    .farmers-container {
        max-width: 900px;
    }

    .farmers dl {
        display: flex;
        justify-content: center;
        gap: 3%;
        margin-bottom: 100px;

    }

    .farmers dt img {
        aspect-ratio: 1.7 / 1;
        object-fit: cover;
        border-radius: 20px;

    }

    .farmers-container:first-child {
        margin-right: 1%;
    }

    .farmers_voice {
        margin-left: 0;
        font-size: 2.2rem;
    }

    .farmers_name {
        margin-left: 0;
        font-size: 1.6rem;
        font-weight: 600;
    }

    .farmers_description {
        margin-left: 0;
        width: 400px;
        font-size: 1.5rem;
    }

    .farmers_image {
        max-width: 400px;
    }

}

@media screen and (min-width: 1200px) {
    .farmers dl {
        display: flex;
        justify-content: center;
        gap: 5%;
        margin-bottom: 100px;
    }
}

@media screen and (min-width: 1200px) {
    .farmers dl {
        display: flex;
        justify-content: center;
        gap: 8%;
        margin-bottom: 100px;
    }
}

/*===============================================================
try sp
=========================================================*/


.try {
    padding: 50px 24px;
    background-color: #fff;
    border-radius: 20px;
    position: relative;
}



.try_messege {
    font-size: 1.2rem;
    color: #2d8161;
    font-weight: 600;
    text-align: center;
    margin: 0 24px;
}

.try_set {
    font-size: 1.6rem;
    color: #2d8161;
    font-weight: 600;
    text-align: center;
    margin: 0 24px 20px 24px;
}

.try_image {
    margin-bottom: 20px;
}

.try_set-name {
    font-size: 1.6rem;
    padding: 0 24px;
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.try_set-price {
    padding: 0 24px;
    margin-bottom: 30px;
    font-size: 1.4rem;

}

.try_btn {
    margin: 20px auto 0 auto;
    text-align: center;
}

.try_btn-container {
    display: flex;
    justify-content: center;
    padding-top: 10px;
}

.vegetable-image {
    height: 0;
}

.vegetable_3 {

    position: relative;
    top: -45VW;
    right: -40vw;
    width: 200px;
    width: 40%;


}

@media screen and (min-width:540px) {
    .try {
        padding-left: 10%;
        padding-right: 10%;
    }

    .try2 {
        margin-left: 15%;
        margin-right: 15%;
    }

    .try_messege {
        font-size: 1.6rem;
    }

    .try_set {
        font-size: 2.2rem;
    }

    .try_set-name {
        font-size: 2.0rem;
    }

    .vegetable-image {}

    .vegetable_3 {

        position: absolute;
        top: -30vw;
        right: 25vw;
        width: 200px;
        width: 28%;

    }
}

/*--------------------------------------------
try PC
------------------------------------------*/

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

    .try {
        background-color: #fff;
        margin: 0 auto;
        max-width: 1100px;

    }

    .try1 dl {
        display: block;

    }


    .try_image {
        margin-bottom: 20px;
        aspect-ratio: 1.6 / 1;
        object-fit: cover;
        border-radius: 20px;
    }

    .try_container_main {
        display: flex;
        justify-content: center;
        gap: 5%;
    }

    .try dl {
        width: 326px;
        margin: 0 auto;

    }

    .try_messege {
        font-size: 2.4rem;

    }

    .try_set:hover {
        font-size: 4.2rem;
        letter-spacing: 0.2rem;

    }

    .try_set {
        font-size: 4rem;
        margin-bottom: 50px;
    }


    .vegetable-image {
        position: relative;

    }

    .vegetable_3 {
        position: absolute;
        top: -26vw;
        right: 38vw;
        width: 200px;
        width: 28%;
    }
}


/*==========================================
reason sp
=====================================*/


.reason {
    margin-top: 50px;
}

.reason_messege {
    font-size: 2.0rem;
    font-weight: 600;
    color: #2d8161;
    text-align: left;
    margin-bottom: 30px;
}

.reason_number {
    padding: 0;
    font-family: 'Montserrat';
    font-size: 3.0rem;
    margin-bottom: 20px;
    font-weight: 800;
    color: #3ecd8d;
}

.reason_messege_title {
    padding: 0 24px;
    font-weight: 700;
    color: #2d8161;
    font-size: 1.8rem;
    margin-bottom: 30px;

}

.reason_messege_description {
    padding: 0 24px;
    margin-bottom: 40px;
    font-size: 1.4rem;
}

.reason_messege_description2 {
    padding: 0 24px;
    margin-bottom: 40px;
    font-size: 1.4rem;
}

@media screen and (min-width:540px) {
    .reason {
        padding-left: 12%;
        padding-right: 12%;
        padding-top: 100px;
    }
}


/*=================================================
reason pc
======================================*/

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


    .reason {
        padding: 50px 100px 80px;
        margin-top: 0;
    }

    .reason_container {

        display: flex;
        gap: 5%;
        flex-direction: row;
        justify-content: center;
        margin-bottom: 100px;
        justify-content: flex-end;

    }

    .reason_messege_title {
        padding: 0 24px;
        font-weight: 700;
        color: #2d8161;
        font-size: 3.0rem;
        margin-bottom: 30px;

    }

    .reason-messege-container {
        width: 50%;
        max-width: 400px;
    }

    .reason-image-container {
        width: 50%;
        max-width: 500px;
    }

    .reason-second-container {
        display: flex;
        flex-direction: row-reverse;
        margin-bottom: 100px;
        justify-content: flex-end;


    }

    .reason-messege-container2 {

        max-width: 500px;
        width: 50%;

    }

    .reason-image-container2 {

        max-width: 500px;
        width: 50%;

    }

    .reason-image-container2 img {
        width: 500px;
        max-width: 100%;
    }

    .reason-second-container p {
        margin-left: 10%;
    }

    .reason_messege_description2 {
        margin-left: 15%;
        padding: 0;
    }
}

/*=============================================
organic sp
===========================================*/


.organic_figure {
    max-width: 400px;
    margin: 0 auto;
}

.organic {
    position: relative;
}

.organic_messege {
    font-size: 1.2rem;
    color: #2d8161;
    margin: 0 80px 10px 24px;
    font-weight: 600;
}

.organic_messege2 {
    font-size: 1.8rem;
    color: #2d8161;
    margin: 0 80px 40px 24px;
    font-weight: 600;
}

.organic-image1 {
    width: 80px;
    position: absolute;
    top: -8vw;
    right: 5vw;
}


.organic-image2 {
    display: none;
}

.organic_description {
    font-size: 1.4rem;
    margin: 0 24px 40px 24px;
    margin-bottom: 40px;
}

.organic_sub-title {
    font-size: 1.7rem;
    font-weight: 600;
    color: #2d8161;
    text-align: center;
    margin: 0 55px 30px 55px;
}

.figure1 {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 500;
    border-radius: 10px;
    width: 300px;
    height: 90px;
    text-align: center;
    margin: 0 auto;
    display: grid;
    place-items: center center;
}

.figure2 {
    font-size: 1.4rem;
    color: #333;
    font-weight: 500;
    border-radius: 10px;
    width: 148px;
    height: 90px;
    line-height: 90px;
    text-align: center;

}

.organic_type-nature {
    background-color: #2d8161;
    margin-bottom: 10px;
}

.organic_method-1 {
    background-color: #92cbb7;
    width: 300px;
    margin-bottom: 10px;
    margin: 0 auto;
}

.organic_warrant {
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
    margin: 0 auto 40px auto;
    line-height: 1;
    margin-top: 10px;

}

.organic_type-organic {
    background-color: #53b846;
    margin-bottom: 10px;
}

.organic_method-2 {
    background-color: #b8edb2;
}

.organic_method-3 {
    background-color: #9cc797;
    margin-bottom: 65px;
}

.organic ul {
    display: flex;
    justify-content: center;
    gap: 1%;
}

.organic_type-reduced {
    background-color: #64b7b6;
    margin-bottom: 10px;
}

.organic_method-4 {
    background-color: #9fe5e4;
}

.organic_method-5 {
    background-color: #97c3c2;
}


@media screen and (min-width:540px) {
    .organic {
        padding-left: 12%;
        padding-right: 12%;
    }

    .figure1 {
        width: 400px;
    }

    .figure2 {
        width: 200px;
    }

    .organic_method-1 {
        width: 400px;
    }

    .organic ul {
        display: flex;
        justify-content: center;
        gap: 1%;

    }
}

/*=========================================
organic pc
====================================*/

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


    .organic_messege {
        font-size: 2.4rem;
        text-align: center;
    }

    .organic_messege2 {
        font-size: 3.0rem;
        text-align: center;

        margin: 0 80px 40px 24px;

    }

    .organic-image1 {
        top: 0;
        right: 13vw;
        width: 10vw;

    }

    .organic-image2 {
        display: block;
        position: absolute;
        width: 10vw;
        top: 0;
        left: 10.5vw;
    }

    .organic_description {
        padding: 0 10%;
        margin-bottom: 80px;
    }

    .organic_sub-title {
        font-size: 2.6rem;
        margin-bottom: 40px;
    }

    .organic_figure {
        display: flex;
        gap: 5%;
        justify-content: center;
    }

    .figure2 {
        width: 143.5px;

    }

    .organic_method-1 {
        width: 300px;

    }

    .figure1 {
        width: 370px;
        margin: 0 auto 10px;
    }



    .organic_method-1 {
        width: 370px;
    }

    .organic ul {
        display: flex;
        width: 100%;
        gap: 3%;
    }

    .figure1 {
        font-size: 1.2rem;
        color: #fff;
        font-weight: 600;
        border-radius: 10px;
        width: 300px;
        height: 90px;
        text-align: center;
        margin: 0 auto 10px;
        display: grid;
        place-items: center center;
    }

    .figure2 {
        font-size: 1.6rem;
        color: #333;
        font-weight: 600;
        border-radius: 10px;
        max-width: 300px;
        height: 90px;
        line-height: 90px;
        text-align: center;

    }

    .organic_type-nature {
        background-color: #2d8161;
        margin-bottom: 10px;
    }

    .organic_method-1 {
        background-color: #92cbb7;
        width: 300px;
        margin-bottom: 10px;
    }




}

/*=============================================
voice sp
============================================*/

.voice {
    padding-bottom: 20px;
    position: relative;
}

.voice:after {
    content: "";
    position: absolute;
    width: 700vw;
    height: 950vw;
    background: linear-gradient(179deg, #E5F6E1 1.18%, #E8F7E4 18.02%, #ECF9E9 34.85%, #F7FCF5 51.68%, rgba(253, 254, 253, 0.30) 68.51%, rgba(255, 255, 255, 0.10) 85.34%, rgba(255, 255, 255, 0.70) 102.17%);

    border-radius: 50%;
    top: -8%;
    right: -178%;
    z-index: -1;
}


.voice dl {
    font-size: 1.2rem;
    text-align: center;
}

.voice dt {
    margin-bottom: 20px;

}

.voice dd {
    margin-bottom: 60px;
}

.voice p {
    margin: 0 24px;
    text-align: left;
}

.voice_image {
    width: 300px;
    height: 300px;
    margin: 30px 0 20px;
}

.voice_customer {
    font-size: 1.6rem;
    font-weight: 600;
}

.voice_customer-name {
    font-weight: 500;
    font-size: 1.2rem;
}

@media screen and (min-width:540px) {
    .voice {
        padding-left: 12%;
        padding-right: 12%;
    }

}

/*=============================================
voice pc
============================================*/

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


    .voice {
        padding: 100px 100px;
    }

    .voice:after {
        content: "";
        position: absolute;
        width: 200vw;
        height: 170vw;
        background: linear-gradient(179deg, #E5F6E1 1.18%, #E8F7E4 18.02%, #ECF9E9 34.85%, #F7FCF5 51.68%, rgba(253, 254, 253, 0.30) 68.51%, rgba(255, 255, 255, 0.10) 85.34%, rgba(255, 255, 255, 0.70) 102.17%);
        border-radius: 50%;
        top: -4%;
        right: -10%;
        z-index: -1;
    }

    .voice dl {
        display: flex;
        gap: 1%;
    }

    .try2 {
        position: relative;
    }


}


/*===================================
money sp
================================*/

.money-back-guarantee {
    position: relative;
}

.money-back-guarantee_description {
    font-size: 1.3rem;
    margin: 60px 48px 40px 48px;
    line-height: 2;
    color: #2d8161;
}


.vegetable3-2 {
    position: absolute;
    top: 55%;
    right: 0;
    width: 50%;
}

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


    .vegetable3-2 {
        position: absolute;
        top: 55%;
        right: 0;
        width: 35%;
    }
}


@media screen and (min-width:800px) {
    .vegetable3-2 {
        position: absolute;
        top: -150%;
        right: 0;
        width: 35%;
    }
}


/*===================================
money pc
================================*/

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


    .money-back-guarantee_description {
        font-size: 1.6rem;
        margin: 120px auto 100px auto;
        line-height: 2;
        color: #2d8161;
        max-width: 900px;
    }

    .vegetable3-2 {
        width: 300px;
        position: absolute;
        top: -15vw;
        right: 1vw;
        width: 40%;
    }

}

/*=================================
faq sp
===============================*/

.faq {
    padding: 120px 24px 60px;
}

.qa-1 {
    max-width: 1240px;
    margin-bottom: 7px;
    border: 0.5px solid #999;
    background-color: #fff;
    border-radius: 10px;
    padding: 30px 24px;
}

.qa-1 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em 1em 5em;
    color: #333;
    font-size: 1.2rem;
    font-weight: 500;
    cursor: pointer;
}

.qa-1 summary::before,
.qa-1 p::before {
    position: absolute;
    left: 1em;
    font-weight: 600;
    font-size: 1.2rem;
}

.qa-1 summary::before {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 900;
    background-color: #2d8161;
    content: "Q";
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.qa-1 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #333;
    border-right: 3px solid #333;
    content: '';
    transition: transform .5s;
}

.qa-1[open] summary::after {
    transform: rotate(225deg);
}

.qa-1 p {
    position: relative;
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 3em 1.5em;
    color: #333;
    font-size: 1.2rem;
    transition: transform .5s, opacity .5s;
}

.qa-1[open] p {
    transform: none;
    opacity: 1;
}

/*=========================================
qa pc
=======================================*/

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


    .faq {
        padding: 330px 10% 5%;
    }

    .qa-1 summary {

        font-size: 1.6rem;

    }

    .qa-1 p {

        font-size: 1.4rem;
    }


}

/*=====================================
footer sp
=================================*/

.last-btn {
    margin: 0 auto 40px auto;

}

.last-vegetable {
    position: relative;
}

.last-carrot {
    width: 50px;
    position: absolute;
    top: -4vw;
    right: 4vw;
}


.last-logo {
    width: 100px;
    height: auto;
    padding-left: 24px;
}

.copyright {
    margin: 40px auto 20px auto;
    font-size: 10px;
    /* font-family: Arial, Helvetica, sans-serif; */
    text-align: center;
}



/*===================================
footer pc
===================================*/


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

    .last-carrot {
        width: 6%;
        top: -4vw;
        right: 30%;
    }
}

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

    .last-carrot {
        width: 6%;
        top: -4vw;
        right: 35.5%;
    }

    .last-logo {
        width: 180px;
    }
}