@charset "UTF-8";
/*ヘッダー*/
.header-fixed {
    position: fixed;
    z-index: 10000;
    top: 0;
    width: 100%;
    height: 80px;
    background-color: #f6f0ed;
}
.header {
    position: relative;
}
.header-logo_image{
    position: absolute;
    width: 100px;
    height: 32px;
    left: 25px;
    top: 25px;
}
.header-navigation {
    display: none;
}
@media (max-width: 767px)/*767pxより小さい時はこのデザイン*/ {
    /*ハンバーガーアイコン*/
    #nav-drawer {
        padding: 27px 25px 0 0;
        text-align: right;
        position: relative;
    }
    #nav-open {
        display: inline-block; /*行の中で右端に*/
        vertical-align: middle; /*行の中で真ん中に*/
        width: 40px;
        height: 26px;
    }
    #nav-open span, #nav-open span:before, #nav-open span:after {
        position: absolute;
        height: 5px;
        width: 40px;
        background-color: #1d1c1c;
        display: block;
        border-radius: 2.5px;
        content: "";/*before,afterに同じ装飾を当てたことになる*/
    }
    #nav-open span:before {
        bottom: -10px;
    }
    #nav-open span:after {
        bottom: -20px;
    }
    #nav-close /*押すと閉まるような要素を作成*/{
        z-index: 999;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #100f0f;
        opacity: 0.7;
    }
    .nav-drawer__title_image {
        width: 100px;
    }
    #nav-content {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 9999;
        width: 60%;
        height: 100%;
        background-color: #fff;
        text-align: left;
        padding: 30px 0 0 25px;
        transform: translateX(-105%);/*左側に全て隠れる*/
        transition: 0.3s ease-in-out;/*０.3秒かけて変化する*/
        box-shadow: 5px 0 25px rgba(0,0,0,0.15);
    }
    .nav-drawer__title {
        margin-bottom: 50px;
        display: block;
    }
    .nav-drawer__link-top {
        display: block;
    }
    #nav-content ul li {
        margin-bottom: 30px;
        font-weight: 600;
    }
    #nav-content ul li a {
        ruby-position: under;
        text-decoration: none;
        color: #1d1c1c;
        font-weight: 600;
    }
    #nav-content ul li a rt {
        font-weight: 400;
        text-align: left;
    }
    #nav-input:checked ~ #nav-close /*inputをチェックすると、nav-close(緑の背景)が表示される(〜の意味はnav-inputの後の要素に同じレベルの要素に指定できる)*/{
        display: block;/*表示*/
    }
    #nav-input:checked ~ #nav-content /*チェックが入ると現れる。*/{
        transform: translateX(0%);
    }
} 
@media (min-width: 768px)/*768pxより大きくなった時に作動*/{
    .header {
        max-width: 1350px;
        box-sizing: border-box;
        margin: 0 auto;
        min-height: 80px;
    }
    .header-navigation {
        display: block;
        text-align: right;
    }
    .header-navigation ruby rt {
        font-size: 1.5rem;
        font-weight: 300;
        text-align: center;
    }
    .header-navigation ul {
        position: absolute;
        top: 25px;
        right: 25px;
    }
    .header-navigation ul li {
        display: inline-block;

    }
    .header-navigation ul li a {
        ruby-position: under;
        font-weight: 500;
        text-decoration: none;
        color: #1d1c1c;
        font-size: 1.6rem;
        padding-left: 25px;
    }
}
@media (min-width: 1040px) {
    .header-fixed {
        padding-bottom: 30px    ;
    }
    .header-logo_image{
        width: 203px;
        height: 59px;
        left: 50px;
        top: 30px;
    }
    .header {
        min-height: 120px;
    }
    .header-navigation ul li a {
        font-size: 2.5rem;
    }
    .header-navigation ruby rt {
        font-size: 1.8rem;
        font-weight: 300;
    }
    .header-navigation ul {
        top: 40px;
        right: 40px;
    }
}
/*メイン*/
.main {
}
.main-mv {
    position: relative;
    background-image: url(../images/main_img01.png);
    height: 330px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto 100%;
    margin-top: 80px;
}
.main-title {
    position: absolute;
    top: 26px;
    left: 38px;
}
.title-image {
    width: 126px;
    height: 286px;
}
@media (min-width: 480px)/*480pxより大きくなった時に作動*/ {
    .main-mv {
        height: 500px;
    }
}
@media (min-width: 768px)/*768pxより大きくなった時に作動*/ {
    .main-mv {
        max-width: 1440px;
        margin: 0 auto;
        background-image: url(../images/main_img01.png);
        position: relative;
        height: 800px;
        background-repeat: no-repeat;
        background-position: center;
        background-size: auto 100%;
        margin-top: 120px;
    }
    .main-title {
        position: absolute;
        top: 30px;
        left: 75px;
    }
    .title-image {
        width: 290px;
        height: 708px;
    }
}
@media (min-width: 1040px) {
    .main {
    }
}
/*私たちについて*/
.section-about {
    max-width: 1440px;
    background-image: url(../images/about-bg.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    padding-bottom: 50px;
}
.section-about h1 {
    padding-top: 50px;
    margin: 0 auto 20px;
}
.section-about_direction {
    padding-bottom: 30px;
    margin: 0 50px;
    letter-spacing: -0.1em;
}
.section-about_direction p{
    font-size: 1.6rem;
    line-height: 1.8em;
}
.under-white {
    color: #a20021;
    font-size: 2.0rem;
    font-weight: 500;
    letter-spacing: 1px;
    background: linear-gradient(transparent 60%,rgba(255, 255, 255, 0.2) 30%,rgb(255, 255, 255,0.8) 70%,rgba(255, 255, 255,1.0));
    border-radius: 10px;
    width: 120%;
}
.section-about_cvbtn {
    width: 280px;
}
@media (min-width: 376px) {
    .brnone{
        display: none;
    }
}
@media (min-width: 768px) {
    .section-about {
        margin: 0 auto;
        background-image: url(../images/about-bg.png);
        height: 100%;
        background-repeat: no-repeat;
        background-size: 100% 100%;
        background-position: center;
        padding-bottom: 50px;
        margin-bottom: 100px;
    }
    .brnone{
        display: none;
    }
    .section-about h1 {
        padding-top: 100px;
        margin-bottom: 50px;
    }
    .section-about_direction {
        margin: 0 50px;
    }
    .section-about_direction p {
        font-size: 3.0rem;
        line-height: 2.0em;
    }
    .time {
        font-size: 5.0rem;
    }
    .under-white {
        font-size: 4.0rem;
    }
    .section-about_cvbtn {
        width: 460px;
    }
}
@media (min-width: 1040px) {
    .section-about_cvbtn {
        width: 750px;
    }
}
/*選ばれる理由*/
.section-reason {
    margin-bottom: 30px;
}
.section-reason h1 {
    width: 325px;
    line-height: 1.3em;
}
.section-reason_list {
    max-width: 325px;
    margin: 0 auto;
}
.section-reason li {
    list-style: none;
}
.section-reason_one, .section-reason_two, .section-reason_three {
    margin-bottom: 20px;
}
.section-reason_one_bg {
    background-image: url(../images/reason-point1_mobile.png);
    background-size: auto 100%;
    background-repeat: no-repeat;
    height: 390px;
}
.section-reason_one-title {
    padding: 70px 0 20px;
    font-size: 1.6rem;
}
.section-reason_one-title span {
    font-size: 2.0rem;
    color: #b97600;
}
.section-reason_one-direction {
    text-align: left;
    font-size: 1.6rem;
    color: #fff;
    padding: 30px 15px 0px;
    line-height: 1.8em;
}
.section-reason_two_bg {
    background-image: url(../images/reason-point2_mobile.png);
    background-size: auto 100%;
    background-repeat: no-repeat;
    height: 390px;
}
.section-reason_two-title {
    padding: 70px 0 20px;
    font-size: 1.6rem;
}
.section-reason_two-title span {
    font-size: 2.0rem;
    color: #b97600;
}
.section-reason_two-direction {
    text-align: left;
    font-size: 1.6rem;
    color: #fff;
    padding: 30px 15px 0px;
    line-height: 1.8em;
}
.section-reason_three_bg {
    background-image: url(../images/reason-point3_mobile.png);
    background-size: auto 100%;
    background-repeat: no-repeat;
    height: 390px;
}
.section-reason_three-title {
    padding: 70px 0 20px;
    font-size: 1.6rem;
}
.section-reason_three-title span {
    font-size: 2.0rem;
    color: #b97600;
}
.section-reason_three-direction {
    text-align: left;
    font-size: 1.6rem;
    color: #fff;
    padding: 30px 15px 0px;
    line-height: 1.6em;
}
@media (min-width: 768px) {
    .section-reason h1 {
        width: 718px;
    }
}
@media (min-width: 1180px) {
    #reason br{
        display: none;
    }
    .section-reason h1 {
        width: 718px;
    }
    .section-reason_list {
        margin: 0 auto 80px;
        max-width: 1130px;
    }
    .section-reason_list ul {
        display: flex;
        justify-content: space-between;
    }
    .section-reason_one_bg, .section-reason_two_bg, .section-reason_three_bg {
        width: 325px;
        height: 390px;
    }
}
@media (min-width: 1440px) {
    .section-reason {
        margin-bottom: 100px;
    }
    .section-reason h1 {
        width: 718px;
        margin: 0 auto 50px;
    }
    .section-reason_list {
        max-width: 1340px;
        margin: 0 auto;
    }
    .section-reason_list ul {
        display: flex;
        max-width: 1340px;
        justify-content: space-between;
    }
    .section-reason_one-direction, .section-reason_two-direction, .section-reason_three-direction {
        font-size: 2.0rem;
        padding: 80px 30px 0;
    }
    .section-reason_one_bg {
        background-image: url(../images/reason-point1_bg.png);
        height: 590px;
        width: 428px;
    }
    .section-reason_two_bg {
        background-image: url(../images/reason-point2_bg.png);
        height: 590px;
        width: 428px;
    }
    .section-reason_three_bg {
        background-image: url(../images/reason-point3_bg.png);
        height: 590px;
        width: 428px;
    }
    .section-reason_one-title, .section-reason_two-title, .section-reason_three-title {
        font-size: 2.5rem;
        padding-top: 140px;
    }
    .section-reason_one-title span, .section-reason_two-title span, .section-reason_three-title span {
        font-size: 3.0rem;
        font-family: 400;
    }
}
/*お試し*/
.section-trial {
    background-image: url(../images/trial-bg_mobile.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
}

.section-trial h1 {
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 2.0em;
    margin: 0;
    padding: 40px 0 20px;
}
.section-trial span {
    font-size: 3.0rem;
}
.section-trial_vegex_image {
    width: 100%;
    display: block;/*画像したの謎の余白を消すために使用*/
}
.section-trial_vegex_pricebox {
    background-image: url(../images/vegex-price_bg.png);
    background-size: cover;
}
.section-trial_vegex_wrapper, .section-trial_kuchibue_wrapper {
    padding: 20px 40px;
}
.section-trial_vegex_set {
    font-size: 1.6rem;
    line-height: 1.5em;
}
.section-trial_vegex_price_bg, .section-trial_kuchibue_price_bg {
    background-image: url(../images/underline-white_mobile.png);
    background-size: 100% auto;
    background-position: center;
    background-repeat: no-repeat;
    padding: 30px 0;
    max-width: 300px;
    margin: 0 auto;
}
.section-trial_vegex_price span, .section-trial_kuchibue_price span {
    font-weight: 600;
    font-family: 'Lato', sans-serif;
    letter-spacing: 0.1em;
} 
.section-trial_vegex_price_image, .section-trial_kuchibue_price_image {
    width: 80%;
    padding: 15px 0;
}
.section-trial_kuchibue_image {
    width: 100%;
    display: block;/*画像したの謎の余白を消すために使用*/
}
.section-trial_kuchibue_pricebox {
    background-image: url(../images/kuchibue-price_bg.png);
    background-size: cover;
}
.section-trial_kuchibue_set {
    font-size: 1.6rem;
    line-height: 1.5em;
    color: #fff;
}
.section-trial_kuchibue_seisan {
    color: #fff;
}
.section-trial_cvbtn {
    width: 280px;
    margin: 20px 0 40px;
}
@media (min-width: 768px) {
    .section-trial {
        background: url(../images/trial-bg02.png);
        background-repeat: no-repeat;
        background-size: 100% 100%;
        background-position: center;
    }
    .section-trial h1 {
        font-size: 3.5rem;
        padding:100px 25px 40px;
    }
    .section-trial h1 span {
        font-size: 5.5rem;
    }
    .section-trial_br {
        display: none;
    }
    .section-trial_vegex {
        display: flex;
    }
    .section-trial_vegex_image_box, .section-trial_kuchibue_image_box {
        width: 55%;
    }
    .section-trial_vegex_image, .section-trial_kuchibue_image {
        width: 100%
    }
    .section-trial_vegex_pricebox {
        display: flex;
        width: 45%;
        align-items: center;
        justify-content: center;
    }
    .section-trial_vegex_price_bg, .section-trial_kuchibue_price_bg{
        background-image: url(../images/underline-white-pc.png);
        background-size: 100% auto;
        background-position: center;
        background-repeat: no-repeat;
        padding: 30px;
        max-width: 350px;
        margin: 0 auto;
    
    }
    .section-trial_vegex_wrapper, .section-trial_kuchibue_wrapper {
        padding: 0;
        margin: 0 auto;
    }
    .section-trial_kuchibue {
        display: flex;
        flex-direction: row-reverse;
    }
    .section-trial_kuchibue_pricebox {
        display: flex;
        width: 45%;
        align-items: center;
        justify-content: center;
    }
    .section-trial_cvbtn {
        width: 580px;
        margin: 20px 0 40px;
    }
    @media (min-width: 1040px) {
        .section-trial h1 {
            font-size: 3.5rem;
            padding:100px 25px 80px;
        }
        .section-trial_vegex_price_image, .section-trial_kuchibue_price_image {
            width: 90%;
        }
        .section-trial_vegex_price_bg, .section-trial_kuchibue_price_bg{
            padding: 40px;
        }
        .section-trial_vegex_set, .section-trial_kuchibue_set {
            font-size: 2.0rem;
        }
        .section-trial .section-trial_vegex_price span, .section-trial .section-trial_kuchibue_price span {
            font-size: 5.0rem;
        }
        .section-trial_vegex_pricebox, .section-trial_kuchibue_pricebox {
            justify-content: center;
        }  
        .section-trial_vegex_seisan, .section-trial_kuchibue_seisan {
            font-size: 2.0rem;
        }
    }  
    @media (min-width: 1440px) {
        .section-trial h1 {
            padding:100px 25px 80px;

        }
        .section-trial_vegex_price_image, .section-trial_kuchibue_price_image {
            max-width: 550px;
            width: 100%;
            padding: 30px 0;
        }
        .section-trial_vegex_wrapper.section-trial_kuchibue_wrapper {
            padding: 60px 30px 100px;
            margin: 0 auto;
        }
        .section-trial .section-trial_vegex_price_bg, .section-trial .section-trial_kuchibue_price_bg{
            min-width: 550px;
            padding: 70px 10px 60px;
        }
        .section-trial .section-trial_vegex_price, .section-trial .section-trial_kuchibue_price {
            font-size: 2.0rem;
        }
        .section-trial .section-trial_vegex_price span, .section-trial .section-trial_kuchibue_price span {
            font-size: 7.0rem;
        }
        .section-trial_vegex_set, .section-trial_kuchibue_set {
            font-size: 3.0rem;
        }
        .section-trial_vegex_pricebox, .section-trial_kuchibue_pricebox {
            justify-content: center;
        }
        .section-trial_vegex_seisan, .section-trial_kuchibue_seisan {
            font-size: 3.0rem;
        }
        .section-trial_cvbtn {
            width: 755px;
            margin: 50px 0 100px;
        }
    }
}
/*農家さん*/
.section-farmar {
    margin-bottom: 40px;
}
.section-farmar h1 {
    line-height: 1.3em;
}
.section-farmar_hidamari-image {
    height: 100%;
    width: 100%;
    display: block;

}
.section-farmar_hidamari_discription {
    background-color:#fff;
    margin-bottom: 20px;
    padding: 20px 25px 35px;
}
.section-farmar_hidamari_hukidasi {
    background-image: url(../images/underline-yellow.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: bottom;
    padding: 10px 4px 8px;
    max-width: 340px;
    margin: 0 auto;
}
.section-farmar_hidamari_name {
    font-size: 2.0rem;
    font-weight: 500;
    text-align: left;
    padding: 25px 13px 20px;

}
.section-farmar_hidamari_comment {
    font-size: 1.6rem;
    text-align: left;
    line-height: 1.8em;
    padding: 0 13px;
}
.section-farmar_souryoku_image {
    height: 100%;
    width: 100%;
    display: block;
    
}
.section-farmar_souryoku_discription {
    background-color:#fff;
    padding: 20px 25px 35px;
}
.section-farmar_souryoku_hukidasi {
    background-image: url(../images/underline-green.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: bottom;
    padding: 10px 4px 8px;
    max-width: 340px;
    margin: 0 auto;
}
.section-farmar_souryoku_name {
    font-size: 2.0rem;
    font-weight: 500;
    text-align: left;
    padding: 25px 13px 20px;

}
.section-farmar_souryoku_comment {
    font-size: 1.6rem;
    text-align: left;
    line-height: 1.8em;
    padding: 0 13px;
}
@media (min-width: 768px) { 
    .section-farmar {
        margin: 0 auto;
    }  
    .section-farmar h1 {
        margin-bottom: 50px;
    }
}
@media (min-width: 1040px) { 
    .section-farmar {
        max-width: 1040px;
        margin: 0 auto;
    }  
    .section-farmar_hidamari {
        margin: 0 50px 85px;
        position: relative;
        display: flex;
    }
    .section-farmar_hidamari-image {
        border-radius: 40px 0;
    }
    .section-farmar_souryoku {
        margin: 0 50px 125px;
        position: relative;
        display: flex;
    }
    .section-farmar_hidamari-image, .section-farmar_souryoku_image {
        border-radius: 40px 0;
    }
    .section-farmar_hidamari-image_box, .section-farmar_souryoku_image_box {
        width: 51%;
        height: 51%;
    }
    .section-farmar_hidamari_discription_box, .section-farmar_souryoku_discription_box {
        width: 52%;
        height: 52%;
        position: absolute;
        top: 100px;
        right: 0;
        z-index: -10;
    }
    .section-farmar_hidamari_discription, .section-farmar_souryoku_discription {
        padding: 20px 60px 35px 
    }
}
@media (min-width: 1440px) {
    .section-farmar {
        max-width: 1440px;
        margin: 0 auto;
    }
    .section-farmar_hidamari {
        margin: 0 75px 130px;
    }
    .section-farmar_souryoku {
        margin: 0 75px 170px;
    }
    .section-farmar_br {
        display: none;
    }
    .section-farmar_hidamari_hukidasi, .section-farmar_souryoku_hukidasi {
        font-size: 2.5rem;
        padding: 50px 0 20px;
        max-width: 524px;
    }
    .section-farmar_hidamari_name {
        font-size: 2.3rem;
    }
    .section-farmar_souryoku_name {
        font-size: 2.3rem;
    } 
    .section-farmar_hidamari_comment, .section-farmar_souryoku_comment {
        font-size: 2.0rem;
        letter-spacing: -0.04em;
    }
    .section-farmar_hidamari_comment br {
        display: none;
    }
    .section-farmar_hidamari_discription, .section-farmar_souryoku_discription {
        padding: 20px 80px 70px 
    }
}
/*品質保証*/
.section-hosyo {
    background-image: url(../images/hosyo-bg_mobile.png);
    width: 100%;
    background-repeat: no-repeat;
    background-size: 100% auto;
    padding: 40px 0;
}
.section-hosyo h1 {
    padding: 0;
    margin: 0 auto;
}
.section-hosyo h3 {
    font-size: 1.6rem;
    font-weight: 400;
    padding-bottom: 30px;
}
.section-hosyo h3 span {
    font-size: 3.0rem;
    color: #a20021;
    line-height: 1.5em;
}
.section-hosyo_farmer {
    display: flex;
    flex-direction: row-reverse;
    position: relative;
    align-items: center;
}
.section-hosyo_farmer_comment {
    width: 57%;
    background-color: #ffffff96;
    left: 0px;
    font-size: 1.6rem;
    text-align: left;
    position: absolute;
    line-height: 1.8em;
    padding: 10px 25px 10px 30px;
	box-shadow: 0 0 10px 10px #ffffff96;
}
.section-hosyo_farmer_comment span {
    display: inline-block;
}
.section-hosyo_farmer_image {
    width: 55%;
}
.section-hosyo_woman {
    display: flex;
    position: relative;
    align-items: center;
}
.section-hosyo_woman_comment {
    width: 46%;
    font-size: 1.6rem;
    color: #fff;
    background-color: #00000064;
    text-align: left;
    position: absolute;
    right: 0;
    line-height: 1.8em;
    padding: 10px 40px 10px 50px;
    box-shadow: 0 0 10px 10px #00000064;
    letter-spacing: -1px;
}
.section-hosyo_woman_image {
    width: 55%;
}
.section-hosyo_discription {
    margin: 20px 0 30px 0;
    font-size: 1.6rem;
    line-height: 2.0em;
    padding: 0 25px;
    letter-spacing: -1px;
}
.section-hosyo_discription span {
    font-size: 2.5rem;
    color: #a20021;
}
.section-hosyo_btn_image {
    width: 70%;
}
.br-pc {
    display: none;
}
@media (min-width: 768px) {
    .section-hosyo {
        padding-bottom: 90px;
    }
    .section-hosyo h1 {
        font-size: 5.0rem;
        padding: 70px 0 50px;
        margin-bottom: 0;
    }
    .section-hosyo h3 {
        font-size: 3.5rem;
    } 
    .section-hosyo h3 span {
        font-size: 5.0rem;
    }
    .section-hosyo_farmer_comment {
        font-size: 2.0rem;
        padding: 60px 20px;
        width: 50%;
    }
    .section-hosyo_farmer_comment br {
        display: none;
    }
    .section-hosyo_woman_comment {
        font-size: 2.0rem;
        padding: 60px 20px;
        width: 50%;
    }
    .section-hosyo_discription {
        margin: 70px 0 60px;
        font-size: 2.8rem;
    }
    .section-hosyo_discription span {
        font-size: 5.0rem;
    }
    .section-hosyo_btn_image {
        width: 700px;
    }
}
@media (min-width: 1040px) {
    .section-hosyo {
        background-image: url(../images/hosyo-bg_img.png);
        width: 100%;
        background-repeat: no-repeat;
        background-size: 100% 100%;
        padding-bottom: 90px;
    }
    .section-hosyo h3 {
        padding: 0;
    }
    .section-hosyo_br {
        display: none;
    }
    .section-hosyo_wrapper {
        margin: 0 50px;
    }
    .section-hosyo_box {
        display: flex;
        max-width: 1340px;
        justify-content: center;
        margin: 50px auto 0;
    }
    .section-hosyo_farmer {
        width: 50%;
    }
    .section-hosyo_farmer_comment {
        padding: 25px 33px;
    }
    .section-hosyo_woman {
        width: 50%;
    }
        .section-hosyo_woman_comment {
            padding: 62px 29px;
        }
        .section-hosyo_discription_one, .section-hosyo_discription_two {
        display: none;
    }
    .br-pc {
        display: block;
    }
}
@media (min-width: 1440px){
    .section-hosyo_farmer_comment, .section-hosyo_woman_comment {
        letter-spacing: 0.05em;
        line-height: 1.3em;
    }
    .br-pc {
        display: none;
    }
}
/*声*/
.section-voice h1 {
    line-height: 1.5em;
}
.section-voice h3 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 20px;
}
.section-voice_box {
    color: #fff;
    text-align: left;
}
.section-voice_a, .section-voice_o, .section-voice_m {
    max-width: 325px;
    width: 100%;
    background-color: #a4a47e;
    margin: 0 auto 20px;
}
.section-voice_commenta_image, .section-voice_commento_image, .section-voice_commentm_image {
    max-width: 300px;
    width: 100%;
    padding: 20px 12px 10px;
}
.section-voice_a_image, .section-voice_o_image, .section-voice_m_image {
    max-width: 300px;
    width: 100%;
    display: block;
    margin: 0 auto;
}
.kanagawa_a, .chiba_o, .tokyo_m {
    font-size: 1.8rem;
    padding: 30px 12px;
}
.kanagawa_a_discription{
    font-size: 1.6rem;
    line-height: 1.8em;
    padding: 0 12px 40px;
}
.chiba_o_discription, .tokyo_m_discription {
    font-size: 1.6rem;
    line-height: 1.8em;
    padding: 0 12px 40px;
    letter-spacing: -1px;
}
.tokyo_m_discription span {
    display: inline-block;
}
.tokyo_m_discription br {
    display: none;
}
@media (min-width: 768px) {
    .section-voice {
        margin-top: 100px;
    }
    .section-voice h3 {
        font-size: 4.0rem;
        font-weight: 400;
        margin-bottom: 50px;
    }
    
}
@media (min-width: 1040px) {
    .section-voice_br {
        display: none;
    }
    .section-voice_box {
        max-width: 1040px;
        display: flex;
        margin: 0 auto;
    }
}
@media (min-width: 1440px) {
    .section-voice_box {
        max-width: 1240px;
        margin: 0 auto;

    }
    .section-voice_a, .section-voice_o, .section-voice_m {
        max-width: 400px;
        width: 100%;
        margin: 0 10px;
    }
    .section-voice_commenta_image, .section-voice_commento_image, .section-voice_commentm_image {
        max-width: 330px;
        width: 100%;
        padding: 20px 30px 10px;
    }
    .section-voice_a_image, .section-voice_o_image, .section-voice_m_image {
        max-width: 350px;
        width: 100%;
        display: block;
        margin: 0 auto;
    }
    .kanagawa_a, .chiba_o, .tokyo_m {
        font-size: 2.2rem;
        padding:25px 25px 30px;
    }
    .kanagawa_a_discription, .chiba_o_discription, .tokyo_m_discription {
        font-size: 2.0rem;
        line-height: 2.0em;
        padding: 0 25px 40px;
        letter-spacing: normal;
    }
    .kanagawa_a_discription span {
        letter-spacing: -0.1em;
    }
    .tokyo_m_discription br {
        display: block;
    }
}
/*質問*/
.section-faq {
    padding-bottom: 40px;
}
.section-faq_qone, .section-faq_qtwo {
    font-size: 2.0rem;
    line-height: 2.0em;
    font-weight: 400;
    margin-bottom: 20px;
    text-align: center;
}
.section-faq_one, .section-faq_two {
    max-width: 325px;
    background-color: #fff;
    position: relative;
    margin: 0  auto 30px;
}
.section-faqone_a, .section-faqtwo_a {
    font-size: 2.3rem;
    line-height: 1.5em;
    font-weight: 500;
    text-align: center;
    padding: 25px 0;
}
.section-faqone_a_discription, .section-faqtwo_a_discription {
    line-height: 2.0em;
    padding: 0 18px 40px;
    text-align: left;
    letter-spacing: -0.03em;
}
.section-faqone_border-box {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 100%;
    height: 100%;
    top: 10px;
    border: solid 1px #1d1c1c;
    z-index: -10;
}
.section-faqtwo_border-box {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 100%;
    height: 100%;
    top: 10px;
    border: solid 1px #1d1c1c;
    z-index: -10;
}
@media (min-width: 376px) {
    .section-faqtwo_a_discription br {
        display: none;
    }
}

@media (min-width: 768px) {
    .section-faq {
        padding-bottom: 80px;
    }
    .section-faq_one, .section-faq_two {
        max-width: 668px;
        background-color: #fff;
        position: relative;
        margin: 0  auto 30px;
    }
    .section-faqone_border-box {
        position: absolute;
        top: 5px;
        left: 5px;
        border: solid 1px #1d1c1c;
        z-index: -10;
    }
    .section-faqtwo_border-box {
        position: absolute;
        top: 5px;
        left: 5px;
        width: 100%;
        height: 100%;
        border: solid 1px #1d1c1c;
        z-index: -10;
    }
    .section-faq_br {
        display: none;
    }
}
@media (min-width: 1040px) {
    .section-faq_qone_br {
        display: none;
    }
    .section-faq_qone, .section-faq_qtwo {
        font-size: 3.0rem;
        margin: 80px 0 40px;
    }
    .section-faq_one, .section-faq_two {
        background-color: #fff;
        position: relative;
        max-width: 1000px;
        margin: 0  auto 30px;
    }
    .section-faqone_a, .section-faqtwo_a {
        padding: 40px 0;
        font-size: 3.5rem;
    }
    .section-faqone_a_discription, .section-faqtwo_a_discription {
        font-size: 2.5rem;
        padding: 0 50px 85px;
        text-align: center;
        letter-spacing: -0.0em;
    }
    .section-faqone_border-box {
        position: absolute;
        top: 5px;
        left: 5px;
        top: 10px;
        border: solid 1px #1d1c1c;
        z-index: -10;
    }
    .section-faqtwo_border-box {
        position: absolute;
        top: 5px;
        left: 5px;
        top: 10px;
        border: solid 1px #1d1c1c;
        z-index: -10;
    }
}
/*最後のお試し*/
.section-trial_under {
    background-image: url(../images/bgtrialunder_mobile1.png);
    background-size: 100% 100%;
    background-position: center;
}
.section-trial_under-h1 {
    padding: 40px 25px 30px;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 2.0em;
    margin: 0 auto;
}
.section-trial_under-h1 span {
    font-size: 3.0rem;
}
.section-trial_under .section-trial_vegex_price span, .section-trial_kuchibue_price span {
    font-size: 3.0rem;
}
@media (min-width: 768px) {
    .section-trial_under {
        background-image: url(../images/trial-bg02.png);
    }
    .section-trial_under-h1 {
        font-size: 3.5rem;
        padding:100px 25px 80px;
    }
    .section-trial_under-h1 span {
        font-size: 5.5rem;
    }
}
@media (min-width: 1040px) {
    .section-trial_under-h1 {
        font-size: 3.5rem;
    }
    .section-trial_under .section-trial_vegex_price span, .section-trial_under .section-trial_kuchibue_price span {
        font-size: 5.0rem;
    }
}
@media (min-width: 1440px) {
    .section-trial_under .section-trial_vegex_price span, .section-trial_under .section-trial_kuchibue_price span {
        font-size: 7.0rem;
    }
    .section-trial_under .section-trial_vegex_price, .section-trial_under .section-trial_kuchibue_price {
        font-size: 2.0rem;
    }
    .section-trial_under .section-trial_vegex_price_bg, .section-trial_under .section-trial_kuchibue_price_bg{
        min-width: 550px;
        padding: 70px 10px 60px;
    }
}

/*フッター*/
.footer {
    max-height: 150px;
    padding-bottom: 17px;
}
.footer-logo_box {
    margin: 0 auto;
}
.footer-logo_image {
    margin: 20px auto 15px;
    max-width: 130px;
    width: 100%;
}
small {
    font-size: 1.3rem;
}
@media (min-width: 768px) {
    .footer {
        padding-bottom: 30px;
    }
    .footer-logo_image {
        margin: 25px auto 20px;
        max-width: 200px;
        width: 100%;
    }
    small {
        font-size: 1.8rem;
    }
}
