﻿@charset "utf-8";
/*
base.css 
* * * * * * * * * * * * * * * * * * * * */


html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header,
hgroup, menu, nav, section,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

body {
    position: relative;
    /*padding: 0 0 145px;*/
    padding: 0 0 90px;
    color: #656565;
    line-height: 1;
    background: url(../Content/images/bg-base.gif) center top;
    background-attachment: fixed;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


article, aside, dialog, figure, footer, header,
hgroup, nav, section {
    display: block;
}

    nav ul {
        list-style: none;
    }

hr {
    border: 0px solid rgba(0,0,0,0);
    background: none;
    margin: 0;
    padding: 50px 0;
    box-shadow: none;
}

blockquote, q {
    quotes: none;
}

    blockquote:before, blockquote:after,
    q:before, q:after {
        content: "";
        content: none;
    }

a {
    margin: 0;
    padding: 0;
    color: #e68736;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

    a:hover {
        color: #e68736;
    }

    a img {
        transition: all 0.2s ease-in-out;
    }

    a:hover img {
        opacity: 0.5;
    }

    a:focus, *:focus {
        outline: none;
    }

table {
    border-collapse: collapse;
    border-spacing: 0;
}

input, button, textarea, select {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Floatバグ回避用 */
.clearfix:after {
    content: "";
    display: block;
    clear: both;
}

/* TOPへ戻るボタンの設定 */
#toTop {
    position: fixed;
    right: -60px;
    bottom: 20px;
    opacity: 0;
    z-index: 1000;
    text-align: center;
    transition: all 0.2s ease-in-out;
}

.to-top-on #toTop {
    right: 0;
    bottom: 20px;
    opacity: 1;
}

#toTop a {
    display: block;
    width: 60px;
    height: 60px;
    color: #FFF;
    font-size: 14px;
    line-height: 60px;
    text-decoration: none;
    border-radius: 5px 0 0 5px;
    background-color: rgba(101,101,101,0.7);
    box-shadow: 0 3px 5px rgba(0,0,0,0.2);
}

    #toTop a:hover {
        background-color: rgba(101,101,101,0.9);
    }

#pos {
    position: absolute;
    left: -9999px;
    top: -9999px;
    height: 0;
    visibility: hidden;
}

@charset "utf-8";
/*
layout.css 
* * * * * * * * * * * * * * * * * * * * */

#header,
#article,
.section {
    position: relative;
    clear: both;
    width: 100%;
}

#global {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255,255,255,0.9);
    border-bottom: 2px solid rgba(101,101,101,0.2);
    overflow: hidden;
    z-index: 1000;
    transition: all 0.5s ease-in-out;
}

.plan-fix #global {
    top: -103px;
}

#global ul {
    display: -webkit-flex; /* Safari */
    display: flex;
    margin: 0 auto;
    width: 960px;
}

#global li {
    -webkit-flex-direction: row; /* Safari */
    flex-direction: row;
    /*padding: 0 0 0 40px;*/
    height: 103px;
    text-align: center;
}

    #global li:last-child {
        padding: 0 0 0 10px;
    }

    #global li a,
    #global li span {
        display: block;
        height: 100px;
        line-height: 100px;
        color: rgba(101,101,101,1);
        font-size: 17px;
        white-space: nowrap;
        overflow: hidden;
    }

    #global li a:hover,
    #global li span:hover {
        /*font-weight: bold;*/
        color: rgba(230,135,54,1);
        overflow: hidden;
        position: static;
    }
    #global li.linav {
        /* PhuPhan 25/03/2021 農民市場機能 Edit↓*/
        padding: 0 10px 0 10px !important;
        /* PhuPhan 25/03/2021 農民市場機能 Edit↑*/
    }
    #global li.linav:hover {
         background: rgba(0,0,0,0.1);
    }

    #global li button {
        /* PhuPhan 25/03/2021 農民市場機能 Edit↓*/
        margin: 30px 10px 0 0;
        /* PhuPhan 25/03/2021 農民市場機能 Edit↑*/
        padding: 0 15px;
        width: 120px;
        height: 44px;
        color: rgba(255,255,255,1);
        font-size: 16px;
        line-height: 44px;
        font-weight: bold;
        border: none;
        border-radius: 5px;
        background: rgba(230,135,54,1);
        cursor: pointer;
    }

.off-plan #global li button#navBtnAgree {
    display: none;
}

#header #global,
.nav-fix #article #global {
    position: fixed;
}

#article #global li:first-child {
    display: none;
}

#article #global li:nth-child(2) {
    padding: 0;
}

#article #global li:nth-child(4) {
    padding: 0 350px 0 40px;
}

#global li:first-child a {
    line-height: 120px;
}

#global li:first-child,
.nav-fix #article #global li:first-child {
    display: block;
    padding: 0;
}

.nav-fix #article #global li:nth-child(2) {
    padding: 0 0 0 40px;
}

#header #global li:nth-child(4),
.nav-fix #article #global li:nth-child(4) {
    /*PhuPhan 2019/07/03 FFVN Header Edit ↓*/
    /*padding: 0 80px 0 40px;*/
    /*padding: 0 40px 0 40px;*/
    /*PhuPhan 2019/07/03 FFVN Header Edit ↓*/
}

.off-plan #header #global li:nth-child(4) {
    padding: 0 280px 0 40px;
}

#formCo #header #global li:nth-child(2),
#formCo #header #global li:nth-child(3),
#formCo #header #global li:nth-child(4),
#formCo #header #global li:nth-child(5),
#formCo #header #global li:nth-child(6) {
    display: none;
}

#formCo #header #global li::first-child {
    display: block;
    margin: 0 auto;
    width: 100%;
    text-align: center;
}

.text-area,
.text-area2 {
    position: relative;
    clear: both;
    margin: 0 auto;
}

.text-area {
    position: relative;
    width: 530px;
}

.text-area2,
#plan .text-area {
    padding: 0 0 50px;
    width: 960px;
}

#contNew .text-area {
    width: 800px;
}

.text-area h1 {
    text-align: left;
}

.text-area p,
.text-area2 p {
    padding: 0 0 1em;
    font-size: 18px;
    line-height: 30px;
}

.text-area p {
    text-align: left;
}

#plan .text-area,
.text-area2 p {
    text-align: center;
}

.text-area p span {
    display: block;
    font-size: 13px;
    line-height: 1.2em;
}

#plan {
    background-color: rgba(255,255,255,1);
}

    #plan h1 {
        clear: both;
        padding: 20px 0 20px;
        font-size: 36px;
        line-height: 1.2em;
        font-weight: normal;
        text-align: center;
        border: none;
    }

.plan-box {
    margin: 0 auto;
    padding: 0 0 0;
    width: 60%;
    background-color: rgba(255,255,255,0.7);
    border: 1px solid rgba(159,195,77,1);
    border-radius: 20px;
    overflow: hidden;
}

    .plan-box h2 {
        padding: 1em 0 !important;
    }

    .plan-box table {
        margin: 0 auto;
        padding: 0 0 50px;
    }

    .plan-box th {
        padding: 0.5em;
        text-align: right;
        font-size: 18px;
        border-bottom: 1px dotted rgba(65,65,65,0.7);
    }

    .plan-box td {
        padding: 0.5em;
        text-align: left;
        font-size: 20px;
        border-bottom: 1px dotted rgba(65,65,65,0.7);
    }

        .plan-box td span {
            font-size: 70%;
        }

    .plan-box tr:last-child th,
    .plan-box tr:last-child td {
        border-bottom: none;
    }

#convSignup {
    position: relative;
    width: 100%;
    padding: 40px 20px 40px 0;
    color: #FFF;
    font-weight: normal;
    font-size: 30px;
    background: url(../Content/images/conv_arrow.svg) no-repeat right rgba(159,195,77,1);
    background-size: 50px 110px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

    #convSignup:hover {
        text-shadow: 0 0 5px rgba(0,0,0,0.2);
        background: url(../Content/images/conv_arrow.svg) no-repeat right rgba(159,195,77,0.7);
        background-size: 50px 110px;
    }

.plan-box2 {
    margin: 50px auto 0;
    padding: 20px 0;
    width: 60%;
    background-color: rgba(65,65,65,0.1);
}

    .plan-box2 h3 {
        padding: 0 0 1em;
        font-size: 20px;
        line-height: 1.2em;
    }

    .plan-box2 dl {
        display: block;
        clear: both;
        text-align: left;
        font-size: 14px;
        line-height: 1.2em;
    }

    .plan-box2 dt {
        position: relative;
        padding: 0 2% 1.2em 0;
        display: inline-block;
        font-weight: bold;
        text-align: right;
        width: 28%;
        vertical-align: top;
    }

    .plan-box2 dd {
        padding: 0 0 1.2em;
        display: inline-block;
        width: 69%;
    }

    .plan-box2 dt:after {
        content: "：";
        position: absolute;
        right: 0;
        top: 0;
    }

.plan-box3 {
    margin: 30px auto 0;
    padding: 20px 0;
    width: 60%;
}

    .plan-box3 ul li {
        list-style: none;
    }


#footer {
    position: absolute;
    display: block;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    margin: 0;
    padding: 0 0 10px;
    color: #656565;
    text-align: center;
    background: rgba(255,255,255,0.4);
    border-top: 15px solid rgba(101,101,101,0.5);
}

    #footer p,
    #footer ul {
        display: block;
        font-size: 12px;
        line-height: 20px;
        list-style: none;
    }

    #footer p {
        padding: 3em 0 0;
    }

    #footer ul {
        padding: 0;
    }

    #footer li {
        display: inline-block;
        list-style: none;
        padding: 0 0 0 1.5em;
    }

        #footer li a {
            color: rgba(101,101,101,0.6);
        }

            #footer li a:hover {
                color: rgba(101,101,101,1);
            }

#formCo #footer ul {
    display: none;
}


@charset "shift_jis";
/*
case.css
* * * * * * * * * * * * * * * * * * * * */

#article {
    padding: 100px 0 0;
}

    #article #hgroup h1 {
        padding: 2em 0 0;
        font-size: 40px;
        line-height: 1.2em;
        text-align: center;
        font-weight: normal;
    }

.section {
    padding: 0 0 3em;
}

    .section .text-area {
        position: relative;
        margin: 0 auto;
        width: 900px;
    }

#case .text-area {
    position: relative;
    padding: 4em 0;
}

    #case .text-area h2 {
        padding: 0 0 0.7em 300px;
        font-size: 30px;
        font-weight: normal;
    }

    #case .text-area dl {
        position: relative;
        padding: 0 130px 15px 300px;
        min-height: 135px;
        line-height: 1.2em;
        font-weight: normal;
        background-position: right 0;
        background-repeat: no-repeat;
    }

.state-gunma {
    background-image: url(../Content/images/tag_gunma.png);
}

.state-kyoto {
    background-image: url(../Content/images/tag_kyoto.png);
}

.state-toyama {
    background-image: url(../Content/images/tag_toyama.png);
}

.state-saitama {
    background-image: url(../Content/images/tag_saitama.png);
}

#case .text-area dt {
    padding: 0 5px 3px 5px;
    font-size: 24px;
    line-height: 1.2em;
    font-weight: normal;
    border-bottom: 1px dotted #333f2b;
}

#case .text-area dd {
    padding: 1em 5px 0 5px;
    font-size: 14px;
    line-height: 1.2em;
    font-weight: normal;
}

#case .text-area img.farm {
    position: absolute;
    top: 40px;
    left: 0;
}

.textbox {
    width1: 100%;
}

h3.trigger {
    position: relative;
    display: block;
    clear: both;
    margin: 0 auto;
    padding: 25px 120px 25px 25px;
    font-size: 20px;
    line-height: 25px;
    font-weight: normal;
    background-color: #FFF;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    border-radius: 10px;
}

    h3.trigger:hover {
        cursor: pointer;
        color: #82b383;
    }

    h3.trigger.active:hover {
        color: #868b86;
    }

    h3.trigger span {
        position: absolute;
        top: 10px;
        right: 10px;
        padding: 52px 0 0 0;
        width: 80px;
        height: 28px;
        color: #FFF;
        font-size: 14px;
        line-height: 28px;
        font-weight: normal;
        text-align: center;
        background-position: top center;
        background-repeat: no-repeat;
        border-radius: 5px;
        overflow: hidden;
    }

    h3.trigger:hover span {
        opacity: 0.7;
    }

    h3.trigger.active .btn-open,
    h3.trigger .btn-close {
        display: none;
    }

    h3.trigger.active .btn-close,
    h3.trigger .btn-open {
        display: block;
    }

    h3.trigger .btn-open {
        background-color: #82b383;
        background-image: url(../Content/images/btn_open.gif);
    }

    h3.trigger.active .btn-close {
        background-color: #868b86;
        background-image: url(../Content/images/btn_close.gif);
    }

.case-main {
    position: relative;
    padding: 0 0 30px 140px;
    min-height: 163px;
}

    .case-main img {
        clear: both;
        position: absolute;
        top: 0;
        left: 0;
    }

.case-sub {
    clear: both;
    position: relative;
    padding: 0 0 20px 0;
}

.toggle_container {
    margin: 10px 0;
    padding: 60px 40px 40px;
    background: #FFF;
    border-bottom: 15px solid rgba(0,0,0,0.3);
    border-radius: 10px;
}

    .toggle_container h4 {
        padding: 2em 0 0.5em 0;
        font-size: 18px;
        line-height: 1.2em;
    }

    .toggle_container p {
        padding: 0 0 1em 0;
        font-size: 14px;
        line-height: 1.5em;
    }

/*Thuy Trang 2021/8/17 FFVN Body Add ↓ */
body#guide a#guidenav,
body#contact a#contactnav,
body#resource a#resourcenav,
body#market a#marketnav {
    color: rgba(230,135,54,1);
}
/*Thuy Trang 2021/8/17 FFVN Body Add  ↑*/

