@charset "UTF-8";

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

:root {
    --primary-white: #ffffff;
    --primary-orange: #F2971C;
    --primary-black: #595757;
    --primary-lightOrange: #F2971C;
    --primary-lightBeige: #F3F0E9;
    --contentPadding: 8.5%;
}

html {
    font-size: 62.5%;
}

body {
    font-family: 'Noto Sans JP',
        Arial,
        sans-serif;
    font-style: normal;
    color: var(--primary-black);
    line-height: 1.5;
    padding-top: 80px;
}

img {
    width: 100%;
    height: auto;
    object-fit: cover;
    vertical-align: bottom;
}



/* =========================
header
========================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 55px;
    display: flex;
    align-items: center;
    background-color: var(--primary-white);
    z-index: 1050;
}

.header__topic {
    padding-left: 4.3%;
    width: 35%;
}

.header .navSP {
    opacity: 0;
    visibility: hidden;
}

.navSP.open {
    opacity: 1;
    visibility: visible;
    position: fixed;
    top: 55px;
    left: 0;
    background: #fff;
    width: 100%;
    height: 100vh;
    transition: 0.5s;
}

.nav__listPC {
    display: none;
}

.navPC {
    display: none;
}


.nav__list {
    font-size: 1.6rem;
    padding-left: 50px;
    font-weight: 600;
}

.nav__item {
    margin-top: 48px;
}

.nav__list li:nth-child(1) {
    margin-top: 60px;
}


.cart {
    display: none;
}

.cart_btn {
    background-color: var(--primary-orange);
    height: 100%;
    padding: 18px 25px;
    position: absolute;
    right: 0;
    top: 0;
}

.cart_btn img {
    width: 24px;
    height: 24px;
}

.main_pc {
    display: none;
}

/* ハンバーガーメニューの枠組み */
.sp_menu {
    position: absolute;
    width: 55px;
    height: 55px;
    right: 74px;
    top: 0;
}

.sp_menu span.open {
    background: var(--primary-black);

}

/* 三本線のスタイルを決める */
.sp_menu span {
    display: block;
    width: 20px;
    height: 2px;
    position: absolute;
    left: 17px;
    transition: all 0.5s ease;
}

/* 線の縦位置調整 */
.bar1 {
    top: calc(50% - 8px);
    background-color: var(--primary-black);
}

.bar2 {
    top: calc(50% - 1px);
    background-color: var(--primary-black);
}

.bar3 {
    top: calc(50% + 8px);
    background-color: var(--primary-black);
}

/* ハンバーガーメニューがクリックされたら
　上の線を真ん中に移動させて45℃回転 */

.bar1.open {
    top: 30px;
    transform: rotate(45deg);
}

/*
  .bar2.open がついたときに消える
*/

.bar2.open {
    opacity: 0;
}


/*
  ハンバーガーメニューがクリックされたら
  下の線は真ん中に移動させて-45℃回転
*/

.bar3.open {
    top: 30px;
    transform: rotate(-45deg);
}

/* ===================
PC header
=================== */

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

    .main_pc {
        display: block;
    }

    .main_sp {
        display: none;
    }

    .navPC {
        display: block;
    }

    .navSP {
        display: none;
    }

    .sp_menu {
        display: none;
    }

    .header {
        height: 80px;
        gap: 200px;
    }

    .header__topic {
        width: 230px;
        padding-left: 52px;
    }

    .cart {
        display: block;
        font-size: 1.8rem;
        color: var(--primary-white);
    }

    .cart_btn img {
        width: 36px;
        height: 36px;
    }

    .flex {
        display: flex;
        gap: 13px;
        justify-content: center;
        align-items: center;
    }

    .cart_btn {
        padding: 25px 25px;
    }

    .nav__list {
        display: flex;
        gap: 52px;
        padding: 0;
        font-size: 1.8rem;
    }

    .nav__list li:nth-child(1) {
        margin-top: 0;
    }

    .nav__item {
        margin-top: 0;
    }



}

/* =========================
section about
========================== */

.section--about {
    padding: 100px var(--contentPadding) 93px;
}

.top_ttl {
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
}

.top_sp {
    display: block;
}

.top_txt {
    margin-top: 62px;
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 2;
    letter-spacing: 0.1em;
}

.top_txt2 {
    margin-top: 35px;
}

.top_txt3 {
    margin-top: 40px;
}

.top_txt4 {
    margin-top: 42px;
}

.top_txt5 {
    margin-top: 40px;
}

.about_photo {
    margin-top: 55px;
}

.pcbr {
    display: none;
}

.pcbr01 {
    display: none;
}

/* PC section--about */

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

    .section--about {
        padding: 180px 14.5% 130px;
    }

    .top_ttl {
        font-size: 4rem;
    }

    .pcbr {
        display: none;
    }

    .pcbr01 {
        display: block;
    }

    .spbr {
        display: none;
    }

    .top_txt {
        font-size: 1.5rem;
        font-weight: 600;
        line-height: 2.5;
        letter-spacing: 0.13em;
    }

    .pcFlex {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .about_photo {
        margin: 0;
        margin-top: 35px;
        width: 430px;
    }

}


/* =========================
section reason
========================== */

.section--reason {
    background-color: var(--primary-lightBeige);
    height: auto;
    padding: 99px var(--contentPadding) 48px;
}

.ttl01 {
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
}

.ttl02 {
    color: var(--primary-orange);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    /* margin-top: 5px; */
}

.reason123 {
    margin-top: 60px;
}

.reason_ttl {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
}

.reason_ttl {
    margin-top: 25px;
}

.reason_txt {
    margin-top: 25px;
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1.8;
}

.reason {
    margin-top: 62px;
}

.reason123 li:nth-child(1) {
    margin-top: 0;
}

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

    .ttl01 {
        font-size: 4rem;
    }

    .ttl02 {
        font-size: 2rem;
    }

    .section--reason {
        padding: 0 14.5% 195px;
    }

    .reason123 {
        display: flex;
        justify-content: space-between;
        margin: 0;
        margin-top: 60px;
    }

    .reason {
        margin: 0;
        width: 30%;
    }

    .reason_ttl {
        font-size: 2rem;
    }

    .reason_txt {
        font-size: 1.5rem;
    }

}

/* =========================
section--tryset
========================== */

.section--tryset {
    padding: 92px var(--contentPadding);
}

.set_group {
    margin-top: 60px;
}

.set_groupIngroup {
    background-color: var(--primary-lightBeige);
    height: auto;
    padding: 28px 28px 41px;
}

.set_ttl {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.set_name {
    font-size: 1.6rem;
    font-weight: 600;
    margin-top: 25px;
    letter-spacing: 0.12em;
}

.set_price {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.set_priceBox {
    margin-top: 25px;
    background: linear-gradient(transparent 78%, #f6ae54 30%);
    display: inline-block;
}

.set_tax {
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.08em;
}

.set_txt {
    font-size: 1.4rem;
    margin-top: 25px;
    letter-spacing: 0.05em;
}

.set_group02 {
    margin-top: 47px;
}

.set_btnBox {
    margin-top: 52px;
}

.set_btnTxt {
    font-size: 2rem;
    letter-spacing: 0.1em;
    font-weight: 700;
    text-align: center;
}

.btn {
    display: block;
    background: var(--primary-orange);
    box-shadow: 5px 5px 13px rgba(137, 135, 135, 0.5);
    width: 90%;
    color: var(--primary-white);
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    padding: 23px 49px 24px 44px;
    margin: 22px auto 0;
    position: relative;
}

.btn::after {
    content: '';
    display: inline-block;
    width: 21px;
    height: 13px;
    background-image: url(../image/rightArrow.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    right: 39px;
    top: 36px;
    transform: translateY(-50%);
}

.section--qualityAssurance {
    margin-top: 100px;
}

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

    .section--tryset {
        padding: 0 14.5% 0;
    }

    .set_group {
        margin-top: 80px;
    }

    .set_group01,
    .set_group02 {
        display: flex;
        flex-direction: row-reverse;
        justify-content: center;
        align-items: center;
        background-color: var(--primary-lightBeige);
    }

    .set_groupPhoto,
    .set_groupIngroup {
        flex: 1;
    }

    .btn {
        width: 30%;
    }

}

/* =========================
qualityAssurance
========================== */

.section--qualityAssurance {
    background-image: url(../image/guarantee_photo_sp.jpg);
    width: 100%;
    height: auto;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 0 var(--contentPadding);
}

.guaranteeBox {
    background-color: rgba(255, 255, 255, 0.7);
    position: relative;
}

.guarantee_ttl {
    text-align: center;
}

.qualityAssurance_top {
    margin-top: 45px;
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    line-height: 2;
    letter-spacing: 0.07em;
}

.qualityAssurance_txt {
    font-size: 1.4rem;
    margin-top: 35px;
    padding: 0 14px 60px;
    font-weight: 500;
    line-height: 2;
    letter-spacing: 0.07em;
}

.qualityAssurance_txt::after {
    content: '';
    display: block;
    width: 97px;
    height: 84px;
    background-image: url(../image/carrot_rogo.png);
    background-size: cover;
    position: absolute;
    right: 15px;
    bottom: -43px;
}

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

    .section--qualityAssurance {
        background-image: url(../image/guarantee_photo.jpg);
    }

    .pcbr {
        display: none;
    }

    .qualityAssurance_top,
    .qualityAssurance_txt {
        font-size: 1.6rem;
    }

    .qualityAssurance_txt {
        margin: 0 auto;
        max-width: 846px;
        text-align: center;
        margin-top: 25px;
        line-height: 2.3;
    }

    .guaranteeBox {
        max-width: 1022px;
        margin-inline: auto;
        padding-top: 75px;
    }

    .qualityAssurance_txt::after {
        width: 230px;
        height: 200px;
        background-size: cover;
        bottom: -102px;
    }


}



/* =========================
section--contractFarmer
========================== */

.section--contractFarmer {
    margin-top: 123px;
    background-color: var(--primary-lightBeige);
    padding: 92px var(--contentPadding);
}

.farmer {
    margin-top: 77px;
}

.farmer_catch {
    margin-top: 17px;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.farmer_place1 {
    width: 278px;
    margin-top: 17px;
    padding: 5px 5px 5px 10px;
    font-size: 1.5rem;
    letter-spacing: 0.08em;
    font-weight: 500;
    border: 1px solid var(--primary-black);
}

.farmer_txt {
    margin-top: 17px;
    font-size: 1.4rem;
    line-height: 1.8;
    font-weight: 500;
}

.farmer_photo2 {
    margin-top: 40px;
}

.farmer_place2 {
    margin-top: 17px;
    width: 246px;
    padding: 5px 5px 5px 10px;
    font-size: 1.5rem;
    letter-spacing: 0.08em;
    font-weight: 500;
    border: 1px solid var(--primary-black);

}

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


    .section--contractFarmer {
        padding: 0 14.5% 145px;
        margin-top: 200px;
    }

    .farmer {
        display: flex;
        align-items: flex-start;
        gap: 63px;
    }

    .farmerWrapper {
        display: flex;
        flex-direction: column;
        width: 50%;

    }

    .farmer_photo2 {
        margin-top: 0px;
    }

    .farmer_txt {
        font-size: 1.6rem;
    }




}



/* =========================
section--voice
========================== */


.section--voice {
    padding: 92px var(--contentPadding);
}

.voice_photo1 {
    margin-top: 77px;
    position: relative;
}

.voice_catch {
    margin-top: 20px;
    font-size: 1.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.voice_txt {
    margin-top: 20px;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.8;
}


.voice_photo1::before {
    content: '神奈川県A様';
    display: block;
    width: 125px;
    height: 31px;
    background-color: #F2971C;
    position: absolute;
    left: 0;
    bottom: 0;
    font-weight: 400;
    font-size: 1.6rem;
    text-align: center;
    line-height: 2;
    color: #fff;
    letter-spacing: 0.09em;
}


.voice_photo2 {
    margin-top: 44px;
    position: relative;
}

.voice_photo2::before {
    content: '東京都M様';
    display: block;
    width: 125px;
    height: 31px;
    background-color: #F2971C;
    position: absolute;
    left: 0;
    bottom: 0;
    font-weight: 400;
    font-size: 1.6rem;
    text-align: center;
    line-height: 2;
    color: #fff;
    letter-spacing: 0.09em;
}

.voice_photo3 {
    margin-top: 44px;
    position: relative;
}

.voice_photo3::before {
    content: '千葉県O様';
    display: block;
    width: 125px;
    height: 31px;
    background-color: #F2971C;
    position: absolute;
    left: 0;
    bottom: 0;
    font-weight: 400;
    font-size: 1.6rem;
    text-align: center;
    line-height: 2;
    color: #fff;
    letter-spacing: 0.09em;
}

.green_photo {
    position: relative;
}

.green_photo::after {
    content: '';
    display: block;
    background-image: url(../image/cabbage_rogo.png);
    background-size: cover;
    width: 84px;
    height: 72px;
    position: absolute;
    right: 33px;
    top: 80px;
}

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

    .section--voice {
        padding: 0 14.5% 145px;
    }

    .voice {
        margin: 0 auto;
        margin-top: 90px;
        max-width: 1022px;
        display: flex;
        gap: 44px;
    }

    .voice_photo1,
    .voice_photo2,
    .voice_photo3 {
        margin-top: 0;
    }

    .voiceWrapper {
        width: 30%;
    }

    .green_photo::after {
        content: '';
        display: block;
        background-image: url(../image/cabbage_rogo.png);
        background-size: cover;
        width: 194px;
        height: 167px;
        position: absolute;
        right: 169px;
        top: 328px;
    }



}


/* ==========================
よくあるご質問
========================== */
.section--question {
    background-color: #F3F0E9;
    margin-top: 100px;
    font-size: 1.4rem;
    line-height: 1.8;
    letter-spacing: 0.03em;
    padding: 0 var(--contentPadding) 50px;
}

.ttl {
    padding-top: 160px;
}

.pcbr {
    display: block;
}

.q,
.a {
    color: #F2971C;
    font-size: 1.9rem;
    font-weight: 700;
    line-height: 1;
}

.wrapper {
    border: solid 2px #595757;
    background-color: #F3F0E9;
    border-radius: 15px;
    margin-top: 85px;
    padding: 25px;
}

.menImg,
.womenImg {
    width: 83px;
    height: 113px;
    margin-top: 45px;
    margin-left: 25px;
}

.womenImg {
    width: 83px;
    height: 113px;
    margin-top: 45px;
    margin-left: auto;
    margin-right: 25px;
}

.q_wrapper,
.a_wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 35px;
}

.a_wrapper {
    margin-top: 20px;
}

.wrapper01 {
    position: relative;
}

.wrapper01::after {
    content: '';
    display: block;
    background-image: url(../image/q_arrow.png);
    background-size: cover;
    width: 20px;
    height: 24px;
    position: absolute;
    bottom: -22px;
    left: 53px;
}

.wrapper02 {
    position: relative;
}

.wrapper02::after {
    content: '';
    display: block;
    background-image: url(../image/q_arrow.png);
    background-size: cover;
    width: 20px;
    height: 24px;
    position: absolute;
    bottom: -22px;
    right: 53px;
}

.s_rogo {
    width: 170px;
    margin: 0 auto;
}

.copylight {
    width: 101px;
    margin: 12px auto 0;
}

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


    .section--question {
        padding: 0 14.5% 150px;
        margin-top: 250px;

    }


    .qa_flex {
        display: flex;
        gap: 40px;
        align-items: flex-end;
    }

    .pcbr {
        display: none;
    }

    .q_wrapperTxt,
    .a_txt {
        font-size: 1.5rem;

    }

    .wrapper {
        padding: 50px;
        margin-top: 0;
        margin-top: 40px;
    }

    .wrapper01::after {
        transform: rotate(-90deg);
        top: 160px;
        /* left: 828px; */
        right: -20px;
        left: unset;
    }

    .wrapper02::after {
        transform: rotate(90deg);
        top: 160px;
        left: -20px;
    }

    .menImg,
    .womenImg {
        margin: 0;
        width: 150px;
        flex-shrink: 0;
        height: auto;
    }

    .qa_flex02 {
        display: flex;
        flex-direction: row-reverse;
        gap: 40px;
        align-items: flex-end;
        margin-top: 150px;
    }

    .s_rogo {
        padding-top: 150px;
    }

    .copylight {
        padding-bottom: 60px;
    }

}