@charset "utf-8";

body {
    width: 100%;
    box-sizing: border-box;
    color: #333;
    background-color: #fafafa;
    font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
    font-feature-settings: "palt";
    letter-spacing: .8px;
    line-height: 1.6;
}

body p:not(:last-of-type) {
    margin-bottom: 1em;
}


p {
    line-height: 1.6;
}

.container {
    width: 100%;
    overflow: hidden;
}

img {
    vertical-align: bottom;
    max-width: 100%;
}


/*ヘッダー*/
.header_logo {
    position: fixed;
    top: 20px;
    left: 15px;
    height: 80px;
    z-index: 1;
}

.header_logo img {
    width: 160px;
    height: auto;
}

.heading_primary {
    margin-bottom: 36px;
    text-align: center;
    line-height: 1.4;
    font-weight: bold;
    font-size: 32px;
    color: #fff;
    font-family: tbchibirgothicplusk-pro, sans-serif;
    font-weight: 400;
    font-style: normal;
}


/*ファーストビュー*/
.fv {
    padding-top: 80px;
    width: 100vw;
    height: 100vh;
}

.fv_fullscreen {
    background: url(../img/fv02.jpeg) no-repeat center center / cover;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 0;
}

.fv_fullscreen::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    filter: brightness(75%);
    /* 最背面へ */
    z-index: -1;
}

.fv_txt {
    width: 70%;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    padding: 2em;
    line-height: 1.8;
    /*    letter-spacing: 5;*/
    text-align: justify;
    background-color: rgba(250, 250, 250, 0.8);
    border-radius: 10px;
}

.fv_txt p:not(:last-of-type) {
    margin-bottom: 0.5em;
}


#animated-example {
    margin: 30px auto;
    width: 35px;
}

.animated {
    animation-duration: 2s;
    animation-fill-mode: both;
    animation-iteration-count: infinite;
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeInDown {
    animation-name: fadeInDown;
}

.arrow_y {
    width: 100px;
    margin: 50px auto;
    color: #fff;
    text-align: center;
    letter-spacing: 0.3em;
}

/*========*/
.description {
    width: 80%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding: 60px 0;
}

.heading_secondary {
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    font-family: tbchibirgothicplusk-pro, sans-serif;

    font-weight: 400;

    font-style: normal;
}

.text {
    display: inline-block;
}



.balloon {
    position: relative;
    display: inline-block;
    background-color: #fafafa;
    border-bottom: solid 2px #525252;
    padding: 1em 0;
    min-width: 240px;
    max-width: 100%;
    margin-bottom: 80px;
}

.balloon:before,
.balloon:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.balloon:before {
    border: solid 12px transparent;
    border-top: solid 12px #525252;
}

.balloon:after {
    border: solid 14px transparent;
    border-top: solid 14px #fafafa;
    margin-top: -5px;
}

.balloon .heading_secondary {
    margin: 0;
    padding: 0;
}

.balloon_brown {
    position: relative;
    display: inline-block;
    background-color: #E6D0C5;
    border-bottom: solid 2px #525252;
    padding: 1em 0;
    min-width: 240px;
    max-width: 100%;
    margin-bottom: 80px;
}

.balloon_brown:before,
.balloon_brown:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.balloon_brown:before {
    border: solid 12px transparent;
    border-top: solid 12px #525252;
}

.balloon_brown:after {
    border: solid 14px transparent;
    border-top: solid 14px #E6D0C5;
    margin-top: -5px;
}

.balloon .heading_secondary {
    margin: 0;
    padding: 0;
}

.heading_secondary_wrap {
    padding: 50px auto 30px;
    text-align: center;
}

.reason_wrap {
    margin-bottom: 100px;
}

.heading_tertiary_wrap {
    display: flex;
}

.heading_tertiary_wrap img {
    width: auto;
    height: 64px;
}

.heading_tertiary {
    margin-left: 48px;
    font-size: 26px;
    font-family: tbchibirgothicplusk-pro, sans-serif;
    font-weight: 400;
    font-style: normal;
}

.img_txt {
    display: flex;
    flex-direction: column;
}

.free_wrap {
    text-align: center;
}

.free {
    margin-bottom: 1em;
    font-size: 24px;
    font-family: tbchibirgothicplusk-pro, sans-serif;
    font-weight: 400;
    font-style: normal;
}

.free::before {
    content: "";
    display: inline-block;
    width: 1.5em;
    height: 2em;
    background: url(../img/line.svg) no-repeat;
    background-size: contain;
}

.marker {
    background: linear-gradient(transparent 60%, #ff6 60%);
}

.reason_free {
    font-size: 20px;
    margin-bottom: 1em;
    font-family: tbchibirgothicplusk-pro, sans-serif;
    font-weight: 400;
    font-style: normal;
}


/*ボックス全体*/
.switchbox {
    margin: 10px 0;
    padding: 0;
    text-align: center;
}

/*ラベル*/
.switchbox label {
    display: block;
    font-weight: bold;
    cursor: pointer;
    font-size: 20px;
    padding-bottom: 0.5em;
}

/*チェックボックスを非表示にする*/
.switchbox input {
    display: none;
}

/*中身を非表示にしておく*/
.switchbox div {
    height: 0;
    overflow-y: hidden;
    transition: 0.8s;
    /*ゆっくり表示させる*/
    opacity: 0;
}

/*クリックで中身を表示*/
.switchbox input:checked + label + div {
    height: auto;
    opacity: 1;
}

/*アイコン*/
.switchbox label::before {
    content: '\f067';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    padding-right: 8px;
}

/*クリックでアイコン入れ替え*/
.switchbox input:checked + label::before {
    content: '\f068';
}

/*
=================================
=================================
*/
.section_customer_wrap {
    background: url(../img/gridEM0clear256.png) top;
    background-color: #E6D0C5;
    padding: 60px 0;
}

.customer {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.customer_voice {
    padding-bottom: 72px;
}

.customer_txt_wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    vertical-align: baseline;
    position: relative;
    background-color: #fafafa;
    padding: 3em;
    margin-bottom: 5%;
    max-width: 300px;
    border-radius: 50% 50% 50% 70%/50% 50% 70% 60%;
}

.customer_txt_wrap p:not(:last-of-type) {
    margin-bottom: 1em;
}

.customer_txt_wrap:after {
    top: 99%;
    left: 50%;
    border: solid transparent;
    content: "";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(250, 250, 250, 0);
    border-top-color: #fafafa;
    border-width: 10px;
    margin-left: -10px;
}


.customer_profile {
    display: flex;
    align-items: flex-end;
}

.customer_profile p {
    text-align: center;
    margin-left: 5%;
}

.customer_voice:nth-of-type(2) .customer_profile p {
    margin-left: 0;
    margin-right: 5%;
}

.space_pc {
    margin-right: 0;
}

.profile_reverse {
    justify-content: flex-end;
}

.img_customer_wrap {
    width: 160px;
}

.img_customer_wrap img {
    border-radius: 50%;
}

.farmer {
    padding-top: 60px;
}

.farmer_voice {
    width: 85%;
    margin-left: auto;
    margin-right: auto;
}

.farmer_name {
    margin-top: 20px;
    text-align: right;
}

.farmer_voice_txt {
    margin: 30px auto 60px;
    text-align: justify;
}

/*
=======================
=======================
*/

.scene {
    color: #fff;
}

.fullscreen_vegetable {
    background: url(../img/scene.jpeg) no-repeat center center / cover;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 0;
}

.fullscreen_vegetable::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    filter: brightness(55%);
    /* 最背面へ */
    z-index: -1;
}

.scene_wrap {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    padding: 60px 0;
}

.heading_secondary_scene {
    text-align: center;
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 0.25em;
    font-family: tbchibirgothicplusk-pro, sans-serif;
    font-weight: 400;
    font-style: normal;
}



.scene p {
    font-size: 16px;
    text-align: center;
}

.scene dl {
    margin-top: 60px;
}

.scene dl dt {
    font-size: 26px;
    margin-bottom: 0.5em;
}

.fa-check-square {
    margin-right: 0.25em;
}

.scene dl dd {
    font-size: 16px;
    margin-bottom: 3em;
    line-height: 1.5;
}

/*
==================
ダウンロード
==================
*/
.download {
    background-color: #39B54A;
}

.download_wrap {
    width: 70%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 60px;
    padding-bottom: 60px;
}

.download_txt {
    margin-bottom: 40px;
    text-align: center;
    line-height: 1.4;
    font-size: 40px;
    color: #fff;
    font-family: tbchibirgothicplusk-pro,
        sans-serif;
    font-weight: 600;
    font-style: normal;
    letter-spacing: 0.05em;
}

.download p {
    text-align: center;
    line-height: 1.8;
    color: #fff;
}

.download_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.download_btn_sp {
    width: 250px;
}

.download_btn_sp a {
    text-align: center;
}

.download_btn_sp a:first-of-type {
    margin-top: 19px;
}

.download_btn_sp:first-of-type {
    margin-bottom: 40px;
}

/*
==================
フッター
==================
*/
.footer {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding: 40px 0;
}

.footer img {
    width: 160px;
    margin-bottom: 20px;
}

.local_navi li {
    margin-bottom: 10px;
}

.small {
    margin-top: 20px;
}

/*
========================
767px以上CSS
========================
*/

@media screen and (min-width:767px) {

    .sp_br {
        display: none;
    }

    .header_logo {
        position: fixed;
        top: 24px;
        left: 30px;
    }

    .header_logo img {
        width: 240px;
        height: auto;
    }

    .heading_primary {
        margin-bottom: 50px;
        margin-left: 5%;
        font-size: 56px;
        text-align: left;
    }

    .fv_txt {
        margin-left: 5%;
        padding: 1em;
        line-height: 1.6;
        text-align: justify;
        background-color: rgba(250, 250, 250, 0.8);
    }

    .fv_txt p {
        font-size: 20px;
    }


    .heading_secondary {
        font-size: 48px;
    }

    .heading_tertiary_wrap img {
        width: auto;
        height: 80px;
    }

    .heading_tertiary {
        margin-left: 48px;
        font-size: 32px;
    }

    .reason_wrap {
        font-size: 20px;
    }

    .img_txt {
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    .txt_reason {
        width: 400px;
        margin-left: 100px;
    }

    .txt_reason p {
        margin-bottom: 1em;
    }

    .img_txt img {
        max-width: 400px;
        width: 40%;
    }

    .free {
        margin-bottom: 36px;
        font-size: 32px;
        font-weight: bold;
        text-align: center;
        line-height: 1.4;
    }

    .free_wrap p {
        font-size: 20px;
    }

    .reason_free {
        font-size: 24px;
    }



    .balloon {
        padding: 2em 0;
    }

    .balloon_brown {
        padding: 2em 0;
    }

    /*
    ============================================
*/
    .customer_all {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .customer_voice {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .customer_voice:nth-of-type(2) {
        flex-direction: row-reverse;
    }



    .customer_txt_wrap {
        position: relative;
        background-color: #fafafa;
        padding: 4em;
        margin-right: 5%;
        width: auto;
        border-radius: 50% 50% 50% 70%/50% 50% 70% 60%;
        font-size: 20px;
    }


    .customer_voice:nth-of-type(2) .customer_txt_wrap {
        margin-right: 0;
        margin-left: 5%;
    }

    .customer_txt_wrap:after {
        top: 50%;
        left: 96%;
        border: solid transparent;
        content: "";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none;
        border-color: rgba(250, 250, 250, 0);
        border-top-color: #fafafa;
        border-width: 30px;
        margin-left: -30px;
    }

    .customer_voice:nth-of-type(2) > .customer_txt_wrap:after {
        top: 50%;
        left: 3%;
        border: solid transparent;
        content: "";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none;
        border-color: rgba(250, 250, 250, 0);
        border-top-color: #fafafa;
        border-width: 30px;
        margin-left: -30px;
    }


    .customer_profile {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .profile_reverse {
        display: flex;
        flex-direction: column-reverse;
    }

    .img_customer_wrap {
        width: 250px;
        margin-bottom: 1em;
    }

    /*=========================================*/
    .farmer_wrap {
        margin-left: auto;
        margin-right: auto;
        display: flex;
    }

    .farmer_wrap:nth-last-of-type(2) {
        flex-direction: row-reverse;
    }

    .farmer_wrap img {
        margin: 0;
        width: 50%;
        width: 50%;
        object-fit: cover
    }

    .farmer_voice {
        display: flex;
        padding: 60px;
        flex-direction: column-reverse;
    }

    .farmer_voice p {
        font-size: 20px;
        margin-bottom: 1.5em;
    }



    /*
    ===================================
    scene
    ===================================
*/

    .heading_secondary_scene {
        font-size: 48px;
    }



    .scene p {
        font-size: 20px;
    }


    .list_item {
        width: 25%;
        display: flex;
        flex-direction: column;
    }

    .scene dl {
        margin-top: 60px;
        display: flex;
        align-items: stretch;
    }


    .list_item:not(:last-of-type) {
        padding-right: 5%;
    }

    .scene dl dd {
        font-size: 20px;
        margin-bottom: 3em;
        line-height: 1.5;
    }

    .scene dl dt {
        font-size: 32px;
        margin-bottom: 20%;
        font-family: tbchibirgothicplusk-pro, sans-serif;
        font-weight: 400;
        font-style: normal;
    }



    .scene dl dd {
        font-size: 20px;
        margin-bottom: auto;
    }


    /*    ==============================================================*/
    /*-------------------------------------------------*/

    .download_btn {
        flex-direction: row;
    }

    .download_btn_sp {
        display: flex;
        align-self: flex-end;
        flex-direction: column;
    }

    .download_btn_sp img {
        display: block;
    }

    .download_btn_sp:first-of-type {
        margin: 0;
    }

    .download_btn_sp p {
        font-size: 0.8em;
    }

    .download_link {
        margin-top: auto;
    }

    .local_navi ul {
        display: flex;
    }

    .local_navi li {
        margin-right: 40px;
    }

    .space_pc {
        margin-right: 1em;
    }
}
