﻿@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 0px;
    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;*/ 
    color: #656565;
    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,1);
    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;
    justify-content: center;
}

#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 {
        padding: 0 10px 0 10px !important;
    }

        #global li.linav:hover {
            /*background: rgba(0,0,0,0.1);*/
        }

    #global li button {
        margin: 30px 10px 0 0;
        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: ";
    }

#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 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: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;
}




/*ADS*/
#adsTitle {
    padding: 10px;
    font-weight: normal;
    font-size: 15pt;
    text-align: left;
    float: left;
    margin: 10px auto;
}

/*ADS*/
#adsBody {
    padding: 10px 0 10px 0;
    margin: 40px auto;
    background-color: #FFF;
    position: relative;
    clear: both;
    /*width: 80%;*/
    width: 1080px;
    /*text-align: center;*/
}

#tableSeaching {
    text-align: center;
    margin: auto;
    width: 98%;
    height: 34px;
}

    #tableSeaching tr td {
        border: 1px solid black;
    }

#searchBar {
    /*    background-position: 10px 12px;
    background-image: url('images/searchicon.png');
    background-repeat: no-repeat;*/
    font-size: 16px;
    padding: .75rem 5rem .75rem 1.5rem;
    width: 80%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    border: 1px solid #dedede;
    border-radius: 5px;
}

.search-button {
    position: absolute;
    right: 3.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: #e68736;
    border-radius: 5px;
    width: 60px;
    height: 30px;
    color: #FFFFFF;
    cursor: pointer;
}

.other-condition {
    font-size: 16px;
    /*padding: 12px 20px 12px 40px;*/
}

#tableDisplay {
    width: 98%;
    text-align: center;
    margin: 2px auto;
    height: 34px;
}

    #tableDisplay tr td {
        border: 1px solid black;
        position: relative;
    }

#tableSeaching tr td {
    border: 1px solid black;
}

.other-display {
    font-size: 16px;
    /*padding: 12px;*/
}

    .other-display.display-type {
        text-align: left;
    }

        .other-display.display-type span {
            padding: 10px 10px 8px 10px;
        }

.selected-type {
    border-bottom: 3px solid #e68736;
}

.list-mode {
    /*  padding: 0 5px 5px 10px;
    background-image: url('images/listmode.png');
    background-repeat: no-repeat;*/
    color: #000000;
    margin: .25rem;
}

.grid-mode {
    color: #000000;
    margin: .25rem;
    /*   padding: 0 5px 5px 10px;
    background-image: url('images/gridmode.png');
    background-repeat: no-repeat;*/
}

.list-mode-selected {
    color: #656565;
    margin: .25rem;
    /* padding: 0 5px 5px 10px;
    background-image: url('images/listmode_selected.png');
    background-repeat: no-repeat;*/
}

.grid-mode-selected {
    color: #00844f;
    margin: .25rem;
    /*  padding: 0 5px 5px 10px;
    background-image: url('images/gridmode_selected.png');
    background-repeat: no-repeat;*/
}
/* PhuPhan 29/10/2021 Map Advertisement 追加↓*/
.map-mode {
    color: #000000;
    margin: .25rem;
    /*    padding: 0 5px 5px 10px;
    background-image: url('images/mapmode.png');
    background-repeat: no-repeat;*/
}

.map-mode-selected {
    color: #ea4335;
    margin: .25rem;
    /* padding: 0 5px 5px 10px;
    background-image: url('images/mapmode_selected.png');
    background-repeat: no-repeat;*/
}
/* PhuPhan 29/10/2021 Map Advertisement 追加↑*/

/*List Mode*/
.list-container {
    margin: 10px auto auto auto;
    width: 98%;
}

.list-item {
    position: relative;
    display: flex;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    height: 100px;
    padding: 10px 0 10px 10px;
    cursor: pointer;
    transition: transform 0.1s ease;
}

    .list-item:hover {
        box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 8px 0px;
        border: 1px solid #e68736;
        transform: translateX(-2px);
        z-index: 1;
    }

.img-item {
    /*   width: 14%;
    height: 100px;
    float: left;*/
    width: 100%;
    height: 200px;
}
    .img-item img {
        object-fit: cover;
    }

.item-infor {
    /*width: 84%;*/
    margin: 0.25rem auto;
    float: left;
    display: flex;
    flex-direction: column;
}

.item-title {
    text-align: left;
    font-size: 1rem;
    font-weight: bold;
    padding: .25rem;
    word-break: break-word;
    height: 29px;
    /*overflow: hidden !important;*/
    text-overflow: ellipsis;
    white-space: normal;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* number of lines to show */
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.item-price {
    padding: .25rem;
    text-align: left;
    font-size: 1rem;
    color: #e68736;
    font-weight: bold;
}

.item-location {
    padding: .25rem;
    /*padding: 40px 0 0 0;*/
    text-align: left;
    vertical-align: bottom;
    margin-top: auto;
}

.user-infor {
    display: inline-block;
    font-size: .75rem;
    width: 100%;
}

.user-like {
    display: inline-block;
    width: 9%;
    text-align: right;
}

.hollow-heart {
    padding: 0 5px 5px 11px;
    background-image: url('images/hollow_heart.png');
    background-repeat: no-repeat;
}

.full-heart {
    padding: 0 5px 5px 11px;
    background-image: url('images/full_heart.png');
    background-repeat: no-repeat;
}

/*Grid Mode*/
.grid-container {
    display: inline-grid;
    /*display: -ms-inline-grid;*/
    /*grid-gap: 10px 10px;*/
    margin: 10px auto auto 10px;
    width: 100%;
    /*grid-template-columns: repeat( 4, auto );*/ /* 1 auto là 1 ô*/
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
}

    .grid-container > * {
        flex: 0 0 auto;
        width: 18%
    }

.grid-item {
    position: relative;
    display: block;
    border: 1px solid rgb(200 200 200 / 50%);
    text-align: center;
    cursor: pointer;
    margin: 0.5rem;
    transition: transform 0.1s ease;
}

    .grid-item:hover {
        box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 7px 0px;
        border: 1px solid #e68736;
        transform: translateY(-2px);
        z-index: 2;
    }

/*
    .grid-item:nth-child(1) {
        -ms-grid-column: 1;
        -ms-grid-row:1;
    }
    .grid-item:nth-child(2) {
        -ms-grid-column: 2;
        -ms-grid-row: 1;
    }
    .grid-item:nth-child(3) {
        -ms-grid-column: 3;
        -ms-grid-row: 1;
    }
    .grid-item:nth-child(4) {
        -ms-grid-column: 4;
        -ms-grid-row: 1;
    }
    .grid-item:nth-child(5) {
        -ms-grid-column: 1;
        -ms-grid-row: 2;
    }

    .grid-item:nth-child(6) {
        -ms-grid-column: 2;
        -ms-grid-row: 2;
    }

    .grid-item:nth-child(7) {
        -ms-grid-column: 3;
        -ms-grid-row: 2;
    }

    .grid-item:nth-child(8) {
        -ms-grid-column: 4;
        -ms-grid-row: 2;
    }

    .grid-item:nth-child(9) {
        -ms-grid-column: 1;
        -ms-grid-row: 3;
    }

    .grid-item:nth-child(10) {
        -ms-grid-column: 2;
        -ms-grid-row: 3;
    }

    .grid-item:nth-child(11) {
        -ms-grid-column: 3;
        -ms-grid-row: 3;
    }

    .grid-item:nth-child(12) {
        -ms-grid-column: 4;
        -ms-grid-row: 3;
    }

    .grid-item:nth-child(13) {
        -ms-grid-column: 1;
        -ms-grid-row: 4;
    }

    .grid-item:nth-child(14) {
        -ms-grid-column: 2;
        -ms-grid-row: 4;
    }

    .grid-item:nth-child(15) {
        -ms-grid-column: 3;
        -ms-grid-row: 4;
    }

    .grid-item:nth-child(16) {
        -ms-grid-column: 4;
        -ms-grid-row: 4;
    }
    .grid-item:nth-child(17) {
        -ms-grid-column: 1;
        -ms-grid-row: 5;
    }

    .grid-item:nth-child(18) {
        -ms-grid-column: 2;
        -ms-grid-row: 5;
    }

    .grid-item:nth-child(19) {
        -ms-grid-column: 3;
        -ms-grid-row: 5;
    }

    .grid-item:nth-child(20) {
        -ms-grid-column: 4;
        -ms-grid-row: 5;
    }
    */
/*DropDown Menu*/
/*the container must be positioned relative:*/
.custom-select {
    position: relative;
    font-family: Arial;
}

    .custom-select select {
        display: none; /*hide original SELECT element:*/
    }

.select-selected {
    background-color: #fff;
}

    /*style the arrow inside the select element:*/
    .select-selected:after {
        position: absolute;
        content: "";
        top: 14px;
        right: 10px;
        width: 0;
        height: 0;
        border: 6px solid transparent;
        border-color: #000 transparent transparent transparent;
    }

    /*point the arrow upwards when the select box is open (active):*/
    .select-selected.select-arrow-active:after {
        border-color: transparent transparent #fff transparent;
        top: 7px;
    }

/*style the items (options), including the selected item:*/
.select-items div, .select-selected {
    color: #000000;
    padding: 8px 16px;
    border: 1px solid transparent;
    border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
    cursor: pointer;
    user-select: none;
}

/*style items (options):*/
.select-items {
    position: absolute;
    background-color: #fff;
    top: 100%;
    left: 0;
    right: 0;
    height: auto;
    z-index: 99;
    max-height: 475px;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 3px 10px 0px;
    overflow-x: hidden;
    border: 1px solid rgb(199, 199, 199);
}

/*hide the items when the select box is closed:*/
.select-hide {
    display: none;
}

.select-items div:hover, .same-as-selected {
    background-color: rgba(0, 0, 0, 0.1);
}

/*Pagination*/
.container-pagination {
    width: 70%;
    margin: auto;
    text-align: center;
    padding: 10px;
    height: 20px;
}

.pagination {
    width: 100%;
}

    .pagination .page-point {
        display: inline-block;
        color: black;
        padding: 8px 16px;
        text-decoration: none;
        transition: background-color .3s;
    }

        .pagination .page-point.active {
            background-color: #4CAF50;
            color: white;
        }

        .pagination .page-point:hover:not(.active) {
            background-color: #ddd;
        }




/*Detail ADs*/
#detailAdvertisement, #detailMarketPlace {
    /*padding: 10px 0 10px 0;*/
    margin: 10px auto;
    background-color: #FFF;
    position: relative;
    clear: both;
    width: 980px;
    height: 1100px;
}

#headerDetail {
    padding: 10px;
    font-size: 17pt;
    font-weight: bold;
    overflow: hidden;
    text-overflow: ellipsis;
}

#inforDetail {
    width: 65%;
    position: absolute;
}

#inforSeller {
    width: 350px;
    position: fixed;
    margin-left: 620px;
}


#inforDetailItem {
    margin: auto 10px;
}

#itemDetailTitle {
    font-size: 14pt;
    font-weight: bold;
    /*overflow: hidden;*/
    text-overflow: ellipsis;
    margin-bottom : 4px;
}

#itemDetailPrice, #itemAmount {
    font-size: 14pt;
    font-weight: bold;
    color: #ff0000;
}

#itemDetailLiked, .like-area {
    display: inline-block;
    width: 40%;
    text-align: right;
    cursor: pointer;
}

    #itemDetailLiked .like-area {
        color: #ff0000;
        text-align: center;
        padding: 5px;
        border: 1px solid #ff0000;
        border-radius: 50px;
    }

#itemDetailDescription {
    margin: 10px auto;
    word-break: break-word;
    white-space: pre-line;
}
/*SlideImages*/

.img-slides {
    display: none
}

.img-canvas {
    margin: auto auto auto 10px;
    vertical-align: middle;
    width: 600px;
    height: 400px;
    display: none;
}

div.img-slides.fade canvas {
    margin: auto auto auto 10px;
    vertical-align: middle;
    width: 600px;
    height: 400px;
}

/* Slideshow container */
.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
}

/* Next & previous buttons */
#buttonSlide {
    width: 100%;
}

.prev-image, .next-image {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

/* Position the "next button" to the right */
.next-image {
    right: 27px;
}

.prev-image {
    left: 10px;
    border-radius: 3px 0 0 3px;
}


    /* On hover, add a black background color with a little bit see-through */
    .prev-image:hover, .next-image:hover {
        background-color: rgba(0,0,0,0.8);
    }

/* Caption text */
.time-text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 40px 8px 12px;
    margin: 0 0 0 10px;
    position: absolute;
    bottom: 0px;
    width: 548px;
    text-align: right;
    background-color: rgba(0,0,0,0.4);
}

/* Number text (1/3 etc) */
.number-text {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

/* The dots/bullets/indicators */
#dotImages {
    position: absolute;
    top: 350px;
    width: 100%;
}

.dot-button {
    cursor: pointer;
    height: 10px;
    width: 10px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

    .active, .dot-button:hover {
        background-color: #717171;
    }

/* Fading animation */
.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}

@-webkit-keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
    .prev, .next, .text {
        font-size: 11px
    }
}


/*User Infor*/
#UserContact {
    padding: 10px;
    height: 120px;
}

#imageUser {
    float: left;
    width: 15%;
    height: 70px;
}

    #imageUser img {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        border: 2px solid rgba(224, 107, 40, 0.5);
    }

#inforUse {
    width: 80%;
}

#inforUser div {
    margin: 3px 0 3px 0;
    float: right;
    width: 80%;
}

#userName {
    font-size: 13pt;
    font-weight: bold;
}

#userDetail {
    margin: 10px 0 0 0;
}

#UserPhone {
    width: 300px;
    padding: 20px;
    margin: 10px;
    background-color: #56c53b;
    color: white;
    text-align: center;
    font-size: 15pt;
}

/*QRCODE*/
.QRcode-container {
    /*Thùy Trang 25/10/2021 QRCODE Edit ↓*/
    /*width: 340px;*/
    width: 170px;
    /*Thùy Trang 25/10/2021 QRCODE  Edit ↑*/
    margin: 10px;
    text-align: center;
    /*Thùy Trang 25/10/2021 QRCODE Add ↓*/
    padding-left: 80px;
    padding-right: 80px;
    /*Thùy Trang 25/10/2021 QRCODE  Add ↑*/
    
}


    .QRcode-container #content {
        border: dashed 2px #CCC;
        padding: 10px;
        cursor: pointer;
    }

    .QRcode-container #QRcode {
        /*Thùy Trang 25/10/2021 QRCODE Edit ↓*/
        /*width: 300px;*/
        width: 140px;
        /*Thùy Trang 25/10/2021 QRCODE Edit ↑*/
        /*Thùy Trang 25/10/2021 QRCODE Edit ↓*/
        /*height: 300px;*/
        height: 140px;
        /*Thùy Trang 25/10/2021 QRCODE Edit ↑*/
        background-color: white;
    }

.un-selected-ads-type {
    color: darkgrey;
    cursor: pointer;
}
    .un-selected-ads-type:hover {
        color: #e68736;
    }

.item-place-no-data {
    text-align: center;
    margin: 15px;
}

.wrapper-trending-keywords {
    overflow-x: auto;
    display: flex;
    list-style: none;
    padding: 0;
    margin-bottom: 8px;
    margin-top: 8px;
    margin-left: 10px;
}

    .wrapper-trending-keywords .item-keyword {
        margin-right: 8px;
        background-color: #fff;
        text-transform: capitalize;
        padding: 10px;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        background-color: #f1f0ed;
        margin-bottom: 8px;
    }

        .wrapper-trending-keywords .item-keyword .text-style {
            text-align: center;
            font-size: 13px;
            width: 100%;
            overflow: hidden;
            text-overflow: ellipsis;
            line-height: 16px;
            -webkit-line-clamp: 2;
            display: -webkit-box;
            -webkit-box-orient: vertical;
        }

.wrapper-overflow i.icon-next-active {
    pointer-events: all;
    opacity: 1;
}

.wrapper-overflow i.iconNext {
    display: block;
    /*pointer-events: none;
    opacity: 0;*/
    right: 8px;
    transform: translateY(-50%);
    transition: opacity .5s;
}

.wrapper-overflow i {
    position: absolute;
    top: 50%;
    background: url(https://static.chotot.com/storage/chotot-icons/svg/next.svg) 50% no-repeat;
    background-size: 100%;
    width: 28px;
    height: 28px;
    z-index: 2;
    cursor: pointer;
    display: none;
    transition: all .2s ease-in-out;
    outline: none;
    user-select: none;
}

.wrapper-overflow {
    position: relative;
    height: 50px;
    overflow-y: hidden;
}

.wrapper-overflow i.iconPrev {
    display: block;
    pointer-events: none;
    background: url(https://static.chotot.com/storage/default/slide-prev.svg) 50% no-repeat;
    background-size: 100%;
    opacity: 0;
    transition: opacity .5s;
    transform: translateY(-50%);
    left: 7px;
}

.wrapper-overflow i.icon-prev-active {
    pointer-events: all;
    opacity: 1;
}

.breadcrumb___3YLMN {
    margin: 12px 0 8px 12px;
    background-color: transparent;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 0;
}

    .breadcrumb___3YLMN .breadcrumbItem___3Oeqy > a {
        color: #33659c;
    }
        .breadcrumb___3YLMN .breadcrumbItem___3Oeqy > a:hover {
            text-decoration: underline;
        }

    .breadcrumb___3YLMN .breadcrumbItem___3Oeqy {
        font-size: 12px;
        display: inline;
        color: #33659c;
    }

    .breadcrumb___3YLMN .link___1-Pk4:after {
        color: #33659c;
        content: "\BB ";
        padding: 0 5px;
    }

/* PhuPhan 25/03/2021 農民市場機能オーダー Add↓*/
#OrderProduction {
    width: 300px;
    padding: 20px;
    margin: 10px;
    background-color: #e68736;
    color: white;
    text-align: center;
    font-size: 15pt;
    cursor: pointer;
}

#btnCheckAdsCode {
    float: right;
    background-color: #dedede;
    color: #fff;
    padding: 10px;
    margin: 10px 10px;
    cursor: pointer;
}

    #btnCheckAdsCode:hover {
        background-color: rgba(230,135,54,1);
    }

.tooltiptext {
    visibility: hidden;
    position: absolute;
    background-color: #555;
    color: #fff;
    text-align: center;
    padding: 15px 0;
    border-radius: 6px;
    z-index: 1;
    opacity: 0;
    transition: opacity 1s;
}

.tooltip-bottom {
    top: 5%;
    left: 46%;
}
    .tooltip-bottom::after {
        content: "";
        position: absolute;
        top: 24%;
        left: 100%;
        margin-top: -5px;
        border-width: 5px;
        border-style: solid;
        border-color: transparent transparent transparent #555;
    }

.input-check-order {
    background: white;
    width: 90%;
    height: 30px;
    font-size: 12pt;
    box-sizing: border-box;
    position: relative;
    padding: 10px;
}

.label-check-order {
    font-size: 10pt;
    text-align: left;
    margin: 5px 20px;
}

#btnCheckOrder {
    margin: 10px 15px;
    padding: 10px;
    background-color: rgba(230,135,54,1);
    float: right;
    cursor: pointer;
}
/* PhuPhan 25/03/2021 農民市場機能オーダー Add↑*/

/*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  ↑*/
/* PhuPhan 29/10/2021 Map Advertisement 追加↓*/
.body-map {
    padding: 5px 30px 5px 30px;
    height: 65vh;
    background-color: #FFFFFF;
    border-radius: 0 0 5px 5px;
    overflow: hidden;
    overflow-y: auto;
    transition: 0.5s;
    box-shadow: 0 12px 30px 1px rgba(80,143,244, 0.1);
    text-align: center;
}

.main-map {
    transition: left 0.5s, width 0.5s;
}

.title-link-on-map {
    font-size: 14pt;
    position: absolute;
    background-color: white;
    top: 5px;
    width: 300px;
}

.link-on-map {
    margin: 5px auto;
    cursor:pointer;
}

    .link-on-map:hover {
        color: rgba(230,135,54,1);
    }
/* PhuPhan 29/10/2021 Map Advertisement 追加↑*/
/* PhuPhan 07/09/2023 FFPR Procurement 追加↓*/
.tag-new {
    position: absolute;
    padding: 0.25rem 0.5rem;
    background: #ff6a1f;
    color: white;
    top: .5rem;
    left: -0.25rem;
}

    .tag-new:before {
        content: "";
        display: inline-block;
        position: absolute;
        left: 0;
        bottom: -0.1875rem;
        border-top: 0.1875rem solid;
        border-left: 0.1875rem solid transparent;
        -webkit-filter: brightness(60%);
        filter: brightness(60%);
    }

.list-item .tag-new {
    font-size: .75rem;
}

.wraper-container {
    position: fixed;
    z-index: 1001;
    display: flex;
    justify-content: space-evenly;
    width: 100vw;
    cursor: pointer;
}

.wraper {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    height: 2.125rem;
}

    .wraper:hover {
        color: #e68736;
    }

    .wraper > * {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 0.25rem;
        margin-left: 0.25rem;
    }

.login-container, .purchasing-container {
    display: flex;
}

.bulkhead {
    border-right: 2px solid rgba(128, 128, 128, 0.1);
    height: 20px;
    margin: 0 0.5rem;
    margin-top: 0.3125rem;
}

.fix-pos-center-Y {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.fix-pos-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cart {
    position: relative;
    color: #e68736;
}

#adsTag{
    display: none;
}

.noselect {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}

.link-swap {
    position: fixed;
    z-index: 5;
    top: 200px;
    right: 0;
    background: #adc178;
    color: #6c584c;
    border-right: 0;
    border-top-left-radius: 60px;
    border-bottom-left-radius: 60px;
    padding: 10px;
    height: 70px;
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all .15s ease;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.125rem;
    text-align: center;
    line-height: 1.5rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

    .link-swap > div {
        width: 60%;
    }

    .link-swap:hover {
        background: #87986a;
        color: #cfe1b9;
    }

    .link-swap svg {
        height: 70px;
        width: 70px;
        border-radius: 100%;
        background: #dde5b6;
        color: #a98467;
        transition: all .15s ease;
    }

    .link-swap:hover svg {
        background: #cfe1b9;
        color: #6c584c;
    }

    .link-swap.market {
        background: #f28482;
        color: #fed9b7;
    }

        .link-swap.market:hover {
            background: #f07167;
            color: #fdfcdc;
        }

        .link-swap.market svg {
            background: #fdfcdc;
            color: #f07167;
        }

        .link-swap.market:hover svg {
            color: #f28482;
        }


    .link-swap svg > * {
        transform: translate(-15px, 15px);
    }

/* PhuPhan 07/09/2023 FFPR Procurement 追加↑*/