﻿@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;
    color: #656565;
    line-height: 1;
    background: url(../Content/images/bg-base.gif) center top;
    background-attachment: fixed;
    /*font-family: -apple-system,"Helvetica Neue","Hiragino Kaku Gothic ProN", "游ゴシック","メイリオ",meiryo,sans-serif;*/
    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) {
    /*padding: 0 40px 0 40px;*/
}

.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 "utf-8";
/*
module.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;
}

    .section .text-area {
        margin: 0 auto;
        width: 800px;
    }

    .section h1 {
        margin: 1em 0 0;
        padding: 0.5em;
        font-size: 30px;
        line-height: 1.2em;
        font-weight: normal;
        border-bottom: 1px solid rgba(101,101,101,0.5);
    }

    .section h2 {
        padding: 1em 0 1em;
        font-size: 24px;
        line-height: 1.2em;
        font-weight: normal;
        text-align: center;
        font-weight: bold;
    }

#faq h3,
#phone h3 {
    margin: 0.5em 0 0;
    padding: 1em 1.5em;
    border-radius: 10px;
}

.section #phone h3 {
    font-size: 24px;
    background: rgba(255,255,255,0.7);
}

#faq h3 {
    padding: 1em 2.5em 1em 1.5em;
    background: rgba(255,255,255,0.7) url(../Content/images/ic-plus.svg) no-repeat right;
    cursor: pointer;
}

    #faq h3.active {
        background: rgba(255,255,255,0.7) url(../Content/images/ic-minus.svg) no-repeat right;
    }

    #faq h3:before {
        content: "Q: ";
    }


#faq h5 {
    padding: 1em 2.5em 1em 1.5em;
    background: rgba(255,255,255,0.7) url(../Content/images/ic-plus.svg) no-repeat right;
    cursor: pointer;
    margin-top: 3px;
    border-radius: 5px;
}

    #faq h5.active {
        background: rgba(255,255,255,0.7) url(../Content/images/ic-minus.svg) no-repeat right;
    }

    #faq h5:before {
        content: "";
    }

#terms h3,
#faq h3 {
    padding: 1.5em 1.5em 1.5em;
    font-size: 20px;
    line-height: 1.2em;
    font-weight: normal;
}


#terms h3 {
    padding: 4em 0 0;
    text-align: center;
}

#terms h4 {
    text-align: center;
}

#terms h4,
#faq h4 {
    font-size: 18px;
    line-height: 1.2em;
    font-weight: normal;
}

#terms h4 {
    padding: 2em 0 0.5em;
    border-bottom: 1px dotted rgba(0,0,0,0.3);
}

#faq h4 {
    padding: 1.5em 1.5em 1.5em;
}

#terms h5 {
    padding: 1.5em 0 0;
}

.section .text-area p {
    padding: 0 1em 0.5em;
    font-size: 16px;
    line-height: 1.5em;
}

#guide02 {
    padding: 4em 0;
}

#function,
.func-list {
    position: relative;
    margin: 0 auto;
    padding: 1.5em;
    width: 800px;
    border-radius: 20px;
}

#function {
    background: rgba(255,255,255,0.7);
}

.func-list {
    color: rgba(255,255,255,0.8);
    background: rgba(0,0,0,0.5);
}

#function h3 {
    padding: 1em 0 0.5em 70px;
    width: 180px;
    font-size: 15px;
    line-height: 1em;
    background-repeat: no-repeat;
    background-position: 0 0.5em;
}

#function p {
    padding: 1.5em 0 0.5em;
    width: 230px;
    font-size: 10px;
    line-height: 1.2em;
}

#function img {
    position: absolute;
    top: 40px;
    right: 25px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

#function h3:nth-child(1) {
    background-image: url(../Content/images/ff-func01-icon01.gif);
}

#function h3:nth-child(3) {
    background-image: url(../Content/images/ff-func01-icon02.gif);
}

#function h3:nth-child(5) {
    background-image: url(../Content/images/ff-func01-icon03.gif);
}

#function h3:nth-child(7) {
    background-image: url(../Content/images/ff-func01-icon04.gif);
}

#function h3:nth-child(9) {
    background-image: url(../Content/images/ff-func01-icon05.gif);
}

#function h3:nth-child(11) {
    background-image: url(../Content/images/ff-func01-icon06.gif);
}

#function h3:nth-child(13) {
    background-image: url(../Content/images/ff-func01-icon07.gif);
}

.func-list dl {
    display: block;
    float: left;
    width: 25%;
    text-align: left;
}

.func-list dt {
    font-size: 20px;
    padding: 1em 0 0.5em;
}

.func-list dd {
    padding: 0 0 0.5em;
    font-size: 14px;
}

    .func-list dd span {
        padding: 0 0 0 0.5em;
        font-size: 10px;
    }

.func-list p {
    clear: both;
    font-size: 10px;
    padding: 0 0 0.5em;
}

.toggle_container {
    margin: 0.5em 0 40px;
    padding: 2em 0;
    color: #FFF;
    background: rgba(101,101,101,0.8);
    border-radius: 10px;
}

#faq .toggle_container:before {
    content: "A";
    display: block;
    padding: 0 0 1em 2em;
}

.toggle_container_youtube {
    margin: 0.5em 0 10px;
    padding: 10px;
    color: #FFF;
    background: rgba(101,101,101,0.8);
    border-radius: 10px;
}
#faq .toggle_container_youtube:before {
    content: "";
    display: block;
    padding: 0 0 1em 2em;
}

toggle_container_youtube a {
    color: #FFF;
    text-decoration: underline
}

.toggle_container a {
    color: #FFF;
    text-decoration: underline
}

#form p {
    text-align: center;
}

#form dl {
    margin: 30px auto 50px;
    padding: 0 50px;
    width: 600px;
    background: rgba(255,255,255,0.7);
    border-radius: 20px;
}

#form dt {
    clear: both;
    padding: 3em 0 1em;
    font-size: 24px;
    line-height: 1.2em;
}

#form dd {
}

    #form dd:last-child {
        padding: 30px 0 50px;
        text-align: center;
    }

    #form dd button {
        margin: 0 auto;
        width: 150px;
        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;
    }

    #form dd label,
    #form dd input,
    #form dd span {
        display: block;
        float: left;
    }

    #form dd span {
        width: 100%;
        text-align: right;
    }

        #form dd span.label-red {
            color: #C30;
        }

        #form dd span.label-red {
            display: block;
            padding: 0 0 0 135px;
            font-size: 13px;
            font-weight: bold;
            color: #C30;
        }

    #form dd label {
        padding: 0 0.5em;
        font-size: 16px;
        line-height: 40px;
        width: 160px;
        height: 40px;
    }

    #form dd input,
    #form dd select,
    #formCo #form dd span {
        margin: 0 0 10px;
        padding: 0 0.5em;
        color: rgba(101,101,101,0.9);
        font-size: 16px;
        line-height: 40px;
        height: 40px;
        border-radius: 5px;
        overflow: hidden;
        outline: none;
    }

    #form dd input,
    #form dd select {
        border: 1px solid rgba(101,101,101,0.5);
    }

#formCo #form dd span {
    background: rgba(101,101,101,0.1);
    width: 100%;
}

#form dd input:required,
#form dd select:required,
#form dd textarea:required {
    border: 1px solid rgba(230,135,54,0.7);
}

    #form dd input:required:valid,
    #form dd select:required:valid,
    #form dd textarea:required:valid {
        border: 2px solid rgba(159,195,77,1);
    }

    #form dd input:required:invalid,
    #form dd select:required:invalid,
    #form dd textarea:required:invalid {
        border: 1px solid rgba(230,135,54,1);
        box-shadow: none;
    }

#form dd select option::-moz-focus-inner {
    border-style: none;
    outline: none;
}

#form dd input:focus,
#form dd select:focus,
#form dd textarea:focus {
    background-color: rgba(101,101,101,0.05);
}

#form dd input::-webkit-input-placeholder {
    font-size: 14px;
    color: rgba(101,101,101,1);
    text-align: right;
}

#form dd input:-ms-input-placeholder {
    font-size: 14px;
    color: rgba(101,101,101,1);
    text-align: right;
}

#form dd input::-moz-placeholder {
    font-size: 14px;
    color: rgba(101,101,101,1);
    text-align: right;
}

#form dd textarea::-webkit-input-placeholder {
    font-size: 14px;
    color: rgba(101,101,101,1);
    text-align: right;
}

#form dd textarea:-ms-input-placeholder {
    font-size: 14px;
    color: rgba(101,101,101,1);
    text-align: right;
}

#form dd textarea::-moz-placeholder {
    font-size: 14px;
    color: rgba(101,101,101,1);
    text-align: right;
}

#form dd select {
    cursor: pointer;
}

#form dd textarea {
    margin: 0 0 30px;
    padding: 1em 0.5em;
    font-size: 16px;
    line-height: 1.5em;
    border: 1px solid rgba(101,101,101,0.5);
    border-radius: 5px;
    width: 100%;
    height: 200px;
}

#syamei,
#tant,
#city,
#tel {
    width: 250px;
}

#address,
#email1,
#email2 {
    width: 400px;
}

#law {
    padding: 50px 0;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

/*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  ↑*/
