@charset "UTF-8";
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, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}
*{
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
     min-width: 0;
    min-height: 0;
}
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
html {
    font-size: 62.5%;
}
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
    display:block;
}
nav ul {
    list-style:none;
}
blockquote, q {
    quotes:none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}
a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align: baseline;
    background:transparent;
    text-decoration: none;
    cursor: pointer;
}
body{
    font-size: 1.5rem;
    line-height: 1.7;
    color: #333333;
    font-family: 'Noto Sans JP', "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro", "メイリオ", sans-serif;
    word-break: break-word;
    font-weight: 400;
}
.NotoSerifJP{
    font-family: 'Noto Serif JP', "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
.Barlow{
    font-family: 'Barlow', sans-serif;
}
/*remove highlight color touch on mobile*/
input,textarea,button,select,div,a,span {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}
a, input, div, select, textarea, img, button {
    outline: none;
}
a:focus, a:visited, input:focus, select:focus, textarea:focus, button:focus {
    outline: none !important;
    box-shadow: none;
}
ol, ul {
    margin: 0;
    padding: 0;
}
/* change border colour to suit your needs */
hr {
    display:block;
    height:1px;
    border:0;
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}

button {
    font-family: inherit;
    cursor: pointer;
}
img {
    width /***/: auto;
    height: auto;
    border: none;
    vertical-align: bottom;
    max-width: 100%;
    image-rendering: -webkit-optimize-contrast;
}
a {
    text-decoration: none;
    cursor: pointer;
}
.hover:hover{
    transition: all .3s;
    opacity: 0.7;
    filter:alpha(opacity=70);
    -ms-filter: "alpha(opacity=70)";
}
.container {
    margin: 0 auto;
    max-width: 1180px;
    position: relative;
    z-index: 10;
    padding-left: 20px;
    padding-right: 20px;
}
.container.md{
    max-width: 1080px;
}
.anchor-link{
    display: block;
    line-height: 0;
}
table{
    width: 100%;
    border-collapse: collapse;
}
.wrapper-content{
    padding: 10px 0 50px;
}
.text-center{
    text-align: center;
}
.text-right{
    text-align: right;
}
@media(max-width: 640px){
    .container{
        padding-left: 15px;
        padding-right: 15px;
    }
}
/*
==============================================================
=========================== pagetop ==========================
==============================================================
*/
#pagetop {
    color: #fff;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 70px;
    display: inline-block;
    bottom: 30px;
    right: 20px;
    position: fixed;
    z-index: 900;
    cursor: pointer;
    display: none;
    background: rgb(0, 92, 184 , 0.9);
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}
#pagetop:before{
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -10px;
    margin-top: -5px;
    width: 20px;
    height: 20px;
    border-color: #fff;
    border-width: 0 2px 2px 0px;
    border-style: solid;
    display: inline-block;
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    transition: .3s;
}
#pagetop:hover:before{
    margin-top: -8px;
}
@media(max-width: 767px){
    #pagetop {
        width: 40px;
        height: 40px;
        right: 10px;
        bottom: 50px;
    }
    #pagetop:before{
        width: 16px;
        height: 16px;
        margin-left: -8px;
    }
}
/*
==============================================================
========================= End pagetop ========================
==============================================================
*/
/*
==============================================================
======================= hamburger menu =======================
==============================================================
*/
.hamburger-menu {
    position: absolute;
    right: 20px;
    top: 50%;
    width: 40px;
    height: 24px;
    margin-top: -12px;
    cursor: pointer;
    z-index: 1001;
    display: none;
}
.hamburger-menu .bar,
.hamburger-menu .bar:after,
.hamburger-menu .bar:before {
    width: 100%;
    height: 3px;
}
.hamburger-menu .bar {
    position: relative;
    transform: translateY(12px);
    background: rgba(0, 0, 0, 1);
    transition: all 0ms 300ms;
    display: block;
}
.hamburger-menu .bar.active {
    background: rgba(0, 0, 0, 0); 
}
.hamburger-menu .bar:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 12px;
    background: rgba(0, 0, 0, 1);
    transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.hamburger-menu .bar:after {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    background: rgba(0, 0, 0, 1);
    transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.hamburger-menu .bar.active:after {
    top: 0px;
    transform: rotate(30deg);
    transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);;
}
.hamburger-menu .bar.active:before {
    bottom: 0px;
    transform: rotate(-30deg);
    transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);;
}
@media(max-width: 767px){
    .hamburger-menu{
        display: block;
    }
}
/*
==============================================================
====================== End hamburger menu ====================
==============================================================
*/
/*
==============================================================
========================== Animation =========================
==============================================================
*/
@-webkit-keyframes aniHeaderMenu {
    0% {-webkit-transform: translate3d(0, -80%, 0);transform: translate3d(0, -80%, 0);}
    100% {-webkit-transform: translate3d(0, 0, 0);transform: translate3d(0, 0, 0);}
}
@keyframes aniHeaderMenu {
    0% {-webkit-transform: translate3d(0, -80%, 0);transform: translate3d(0, -80%, 0);}
    100% {-webkit-transform: translate3d(0, 0, 0);transform: translate3d(0, 0, 0);}
}
/*
==============================================================
========================= End Animation ======================
==============================================================
*/
/*
==============================================================
============================ Common ==========================
==============================================================
*/
.txt-line {
    position: relative;
    display: inline-block;
}
.txt-line::before {
    background: #000;
    content: '';
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
    margin: auto;
    transform-origin: center top;
    transform: scale(0, 1);
    transition: transform .3s;
}
.txt-line:hover::before {
    transform-origin: center top;
    transform: scale(1, 1);
}
.lb-sp{
    display: none;
}
.lb-pc{
    display: block;
}
.title-box{
    text-align: center;
    padding: 100px 0 50px;
}
.title-box .title{
    font-family: 'Noto Serif JP', "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    /*font-size: 5rem;*/
    font-size: 4.5rem;
    font-weight: 700;
    color: #8ABB2A;
    line-height: 1.4;
}
.title-box .title br{
    display: none;
}
.title-box .en{
    font-family: 'Barlow', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
}
.title-box.bg1{
    padding-bottom: 30px;
}
.title-box.bg1 .txt{
    background: url('../img/bg-title1.png') no-repeat;
    background-size: 100% 100%;
    padding: 5px 60px 20px 60px;
    text-align: center;
    color: #fff;
    margin-top: 10px;
    display: inline-block;
}
.title-box .desc{
    padding-top: 30px;
}
.scroll-horizontal{
    display: block;
    overflow-x: auto;
    width: 100%;
}
@media(max-width: 860px){
    .title-box .title{
        font-size: 4rem;
    }
}
@media(max-width: 640px){
    .lb-sp{
        display: block;
    }
    .lb-pc{
        display: none;
    }
    .title-box{
        padding: 55px 0 30px;
    }
    .title-box .en{
        font-size: 1.4rem;
        font-size: 3.8vw;
    }
    .title-box .title{
        font-size: 2.6rem;
        font-size: 7vw;
    }
    .title-box .title br{
        display: block;
    }
}
.maxw-50 {
    max-width: 50px !important;
}
.maxw-100 {
    max-width: 100px !important;
}
.maxw-150 {
    max-width: 150px !important;
}
.w-200 {
    width: 200px !important;
}
.maxw-200 {
    max-width: 200px !important;
}
.maxw-250 {
    max-width: 250px !important;
}
.w-300 {
    width: 300px;
    min-width: 300px;
}
/*===================== tags ======================*/
.tags .tag-box{
    display: flex;
    flex-wrap: wrap;
}
.tags .tag-box .search-box{
    width: 300px;
    display: flex;
    justify-content: flex-end;
}
.tags .tag-box .search{
    background: #E6E6E6 url('../img/ic-search.png') no-repeat;
    background-position: left 10px center;
    background-size: 25px 26px;
    border-radius: 50vh;
    height: 48px;
    border: medium none;
    padding: 5px 15px 5px 45px;
    width: 140px;
}
.tags .tag-box ul{
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    margin: 0 -3px;
}
.tags .tag-box ul li{
    padding: 0 3px;
    margin-bottom: 6px;
    list-style: none;
}
.tags .tag-box ul li a{
    color: initial;
    display: block;
    border: 2px solid #8ABB2A;
    border-radius: 50vh;
    padding: 5px 15px;
    transition: 0.2s;
}
@media(min-width: 640px){
    .tags .tag-box ul li a:hover{
        background: #8ABB2A;
        color: #fff;
    }
}
@media(max-width: 860px){
    .tags .tag-box ul{
        flex: auto;
        width: 100%;
    }
    .tags .tag-box .search-box{
        width: 100%;
        padding-top: 20px;
    }
}
@media(max-width: 640px){
    .tags .tag-box ul li a{
        font-size: 1.3rem;
    }
}
/*================= list01 ==================*/
.list01 ul{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}
.list01 ul li{
    width: 25%;
    padding: 0 10px;
    margin-bottom: 20px;
    list-style: none;
}
.list01 ul li .inner{
    display: block;
    width: 100%;
    height: 100%;
    border: 1px solid #8D8D8D;
    padding-bottom: 30px;
    background: #fff;
    position: relative;
    transition: 0.2s;
}
.list01 ul li .inner a{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
.list01 ul li .inner:hover{
    opacity: 0.7;
}
.list01 ul li .img{
    text-align: center;
    padding: 10px;
    background: #FBFBFB;
    padding-top: 40%;
    position: relative;
    overflow: hidden;
}
.list01 ul li .img img{
    position: absolute;
    left: 10%;
    right: 0;
    top: 0;
    bottom: 0;
    width: 80%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
.list01 ul li .txt-box{
    padding: 0 15px;
}
.list01 ul li h3{
    font-size: 1.6rem;
    font-weight: 500;
    padding: 20px 15px 15px 15px;
    line-height: 1.5;
}
.list01 ul li .item{
    display: flex;
}
.list01 ul li .item .lbl{
    width: 50px;
}
.list01 ul li .item .txt{
    flex: 1;
}
.list01 ul li:first-child h3{
    color: #8ABB2A;
}
.list01 .arrow{
    text-align: center;
    padding: 10px 0 30px;
    position: relative;
    z-index: 10;
}
.list01 .arrow img{
    max-width: 48px;
}
@media(max-width: 860px){
    .list01 ul li{
        width: 50%;
    }
}
@media(max-width: 576px){
    .list01 ul{
        margin: 0;
    }
    .list01 ul li{
        width: 100%;
        padding: 0;
    }
    .list01 .arrow img{
        max-width: 32px;
    }
}
.view-more {
    text-align: center;
    padding: 20px 0;
}
.view-more a{
    display: inline-block;
    min-width: 376px;
    height: 50px;
    line-height: 38px;
    border: 1px solid #8ABB2A;
    border-radius: 50vh;
    color: initial;
    position: relative;
    padding: 5px 15px;
    font-size: 2rem;
    font-weight: 500;
    transition: 0.2s;
}
.view-more a:before,
.view-more a:after{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    transition: 0.2s;
}
.view-more a:before{
    width: 50px;
    background: #8ABB2A;
    border-radius: 50vh;
}
.view-more a:after {
    bottom: 17px;
    border: solid #fff;
    border-width: 0 2px 2px 0px;
    display: inline-block;
    width: 14px;
    height: 14px;
    top: 50%;
    margin-top: -7px;
    left: 13px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    transition: 0.2s;
}
.view-more a:hover:before{
    background: #FF9B06;
}
@media(max-width: 480px){
    .view-more a{
        width: 100%;
        min-width: auto;
    }
}
.c-btn {
    background: #FF9B06;
    border: 2px solid #FF9B06;
    border-radius: 2px;
    display: block;
    font-weight: bold;
    width: 300px;
    padding: 18px 60px;
    text-align: center;
    cursor: pointer;
    transition: .3s cubic-bezier(0.45, 0, 0.55, 1);
    box-shadow: 0 0 4px rgb(0, 0, 0, 0.2);
    font-size: 2rem;
    font-weight: 500;
    color: #fff;
    position: relative;
    line-height: 1.4;
}
.c-btn.grad {
    background: #FF9B06;
    background: -moz-linear-gradient(100deg, #FFC506 0%, #FF9B06 100%);
    background: -webkit-linear-gradient(100deg, #FFC506 0%, #FF9B06 100%);
    background: linear-gradient(100deg, #FFC506 0%, #FF9B06 100%);
    background-size: 200% 100%;
    border: none;
}
.c-btn.grad:hover {
    background-position: 100% 0;
}
.c-btn:before,
.c-btn:after{
    content: '';
    position: absolute;
    border-radius: 50vh;
    right: 25px;
    top: 50%;
    transition: 0.2s;
}
.c-btn:before{
    width: 34px;
    height: 34px;
    margin-top: -17px;
    background: #DC8500;
}
.c-btn:after{
    width: 6px;
    height: 6px;
    margin-top: -3px;
    background: #fff;
    right: 39px;
}
@media(max-width: 640px){
    .c-btn {
        font-size: 1.6rem;
        padding-left: 45px;
        padding-right: 45px;
    }
    .c-btn:before,
    .c-btn:after{
        right: 15px;
        top: 50%;
    }
    .c-btn:before{
        width: 32px;
        height: 32px;
        margin-top: -17px;
    }
    .c-btn:after{
        width: 6px;
        height: 6px;
        margin-top: -4px;
        background: #fff;
        right: 28px;
    }
}
/*=================== main banner ==================*/
.main-banner{
    position: relative;
}
.main-banner img{
    display: flex;
    width: 100%;
    object-fit: cover;
    object-position: center;
    min-height: 250px;
}
.main-banner .main-banner-box{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 10;
}
.main-banner .main-banner-box .container{
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.main-banner .main-banner-box .inner{
    display: inline-block;
    text-align: center;
}
.main-banner .en{
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    width: 100%;
    text-align: center;
    padding-bottom: 5px;
}
.main-banner .txt{
    font-size: 5rem;   
    font-weight: 700;
    line-height: 1.3;
    color: #8ABB2A;
    width: 100%;
    text-align: center;
}
@media(max-width: 640px){
    .main-banner img{
        min-height: 300px;
    }
    .main-banner .en{
        font-size: 1.6rem;
    }
    .main-banner .txt{
        font-size: 3.7rem;
    }
}
/*=================== breadcrumb ==================*/
.breadcrumbs{
    display: inline-block;
    width: 100%;
    height: fit-content;
    padding-top: 24px;
    font-size: 1.3rem;
    padding: 15px 0;
    letter-spacing: 0.02em;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
.breadcrumbs li{
    display: inline-block;
}
.breadcrumbs li a,
.breadcrumbs li h1{
    font-weight: 400;
    color: initial;
    transition: 0.2s;
}
.breadcrumbs li a{
    position: relative;
    padding-right: 27px;
    transition: 0.2s;
}
.breadcrumbs li a:before{
    content: '>';
    position: absolute;
    top: -1px;
    right: 10px;
}
.breadcrumbs li a:hover{
    color: #8ABB2A;
}
.breadcrumb .aioseo-breadcrumbs a,
.breadcrumb .aioseo-breadcrumbs span{
    color: #000;
    transition: 0.2s;
}
.banner .breadcrumb .aioseo-breadcrumbs a,
.banner .breadcrumb .aioseo-breadcrumbs span{
    color: #fff;
    transition: 0.2s;
}
.breadcrumb .aioseo-breadcrumbs span:first-child{
    text-transform: uppercase;
}
.breadcrumb .aioseo-breadcrumb-separator{
    font-size: 2rem;
    display: inline-block;
    line-height: 1;
    padding: 0 2px;
    position: relative;
    top: 1px;
}
@media(min-width: 640px){
    .breadcrumb .aioseo-breadcrumbs a:hover{
        color: #8ABB2A;
    }
}

/*
==============================================================
========================== End common ========================
==============================================================
*/
/*
==============================================================
============================ Header ==========================
==============================================================
*/
header{
    position: sticky;
    left: 0;
    right: 0;
    top: 0;
    z-index: 100;
    background: url('../img/bg-header.jpg') no-repeat;
    background-size: 100% 100% !important;
    -webkit-box-shadow: 0px 1px 12px 0px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 1px 12px 0px rgba(0, 0, 0, 0.1);
}
header .inner{
    display: flex;
    align-items: center;
    padding: 10px 0;
}
header .logo{
    display: inline-block;
}
header .logo img{
    width: 220px;
}
header nav {
    padding-left: 20px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
header nav ul{
    display: flex;
    align-items: center;
}
header nav ul li{
    position: relative;
    list-style: none;
}
header ul li a{
    font-family: 'Noto Serif JP', "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    position: relative;
    transition: .2s;
    color: #333;
    line-height: 1.5;
    padding: 10px 20px;
    font-size: 1.6rem;
    font-weight: 700;
    display: block;
}
header ul li a .en{
    display: block;
    color: #8ABB2A;
    font-family: 'Barlow', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1;
}
header .menu-backdrop{
    position: fixed;
    left: 0;
    right: 0;
    top: 56px;
    bottom: 0;
    z-index: 1;
    background: rgba(0,0,0,.6);
    display: none;
}
@media(max-width: 1100px){
    header ul li a{
        padding: 10px 17px;
        font-size: 1.5vw;
    }
}
@media(min-width: 768px){
    header ul li a::before,
    header ul li.current-menu-item a::before{
        background: #8ABB2A;
        content: '';
        height: 1px;
        position: absolute;
        left: 20px;
        right: 20px;
        bottom: 5px;
        margin: auto;
        transform-origin: center top;
        transform: scale(0, 1);
        transition: transform .3s;
    }
    header ul li a:hover::before,
    header ul li.current-menu-item a::before {
        transform-origin: center top;
        transform: scale(1, 1);
    }
}
@media(max-width: 980px){
    header .logo img {
        width: 150px;
    }
    header ul li a{
        padding: 10px 12px;
        font-size: 1.5vw;
    }
    header nav ul li.inquiry{
        padding-left: 10px;
    }
    header nav ul li.inquiry a{
        padding-left: 14px;
        padding-right: 14px;
    }
}
@media(max-width: 767px){
    header{
        box-shadow: unset;
    }
    header .container{
        padding: 0;
    }
    header .inner{
        padding: 0;
    }
    header .logo img {
        width: 130px;
    }
    header .top-box{
        display: block;
        width: 100%;
        padding: 10px 15px;
        -webkit-box-shadow: 0px 1px 12px 0px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 1px 12px 0px rgba(0, 0, 0, 0.1);
        z-index: 10;
        position: relative;
        height: 56px;
    }
    header.active .menu-backdrop{
        display: block;
    }
    header nav{
        position: fixed;
        right: 0;
        left: 100%;
        top: 56px;
        bottom: 0;
        background: none;
        width: 100%;
        transition: all 0.5s;
        z-index:2;
        padding: 0;
    }
    header.active nav{
        left: 0;
    }
    header nav ul{
        display: block;
        width: 320px;
        height: 100%;
        padding: 8px 15px 15px 15px;
        overflow: auto;
        background: #fff;
        position: relative;
    }
    header nav ul li {
        padding: 0;
        width: 100%;
    }
    header nav ul li a{
        text-align: left;
        padding: 15px 17px 15px 10px;
        position: relative;
        border-bottom: 1px solid #e2e2e0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    header nav ul li a,
    header ul li a .en{
        font-size: 1.3rem;
    }
    header nav ul li a::after {
        content: '';
        position: absolute;
        right: 0;
        top: 50%;
        margin-top: -4px;
        border: solid #333;
        border-width: 0 1px 1px 0px;
        display: inline-block;
        width: 8px;
        height: 8px;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        transition: 0.2s;
    }
}
@media(max-width: 414px){
    header nav ul{
        width: 100%;
    }
}
/*
==============================================================
========================= End header =========================
==============================================================
*/
/*
==============================================================
=========================== Banner ===========================
==============================================================
*/
.home-banner{
    position: relative;
}
.home-banner picture img{
    display: flex;
    object-fit: cover;
    object-position: center;
    width: 100%;
}
.home-banner .content-box{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.home-banner .content-box h2{
    font-family: 'Noto Serif JP', "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    color: #fff;
    text-align: center;
    font-size: 6.5rem;
    text-shadow: 0 3px 8px #000;
    line-height: 1.2;
    font-weight: 800;
    padding-bottom: 30px;
    letter-spacing: 0.2em;
}
.home-banner .content-box .desc{
    font-family: 'Noto Serif JP', "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    text-align: center;
    /*color: #8ABB2A;*/
    color: #333;
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    line-height: 1.7;
    text-shadow: 4px 4px 5px #fff, -4px -4px 5px #fff;
}
.home-banner .content-box .desc .line{
    /*background: linear-gradient(rgba(0, 0, 0, 0) 45%, rgba(132, 246, 242, 0.8) 0%);*/
    background: rgb(255, 255, 255, 0.8);
    padding:0 10px;
    border-radius: 2px;
}
.home-banner .content-box .btn-group{
    margin: 0 auto;
    display: flex;
    justify-content: center;
    padding-top: 5vw;
}
.home-banner .content-box .btn-group a{
    display: inline-block;
    font-size: 2rem;
    font-weight: 500;
    color: #fff;
    border-radius: 2px;
    box-shadow: 0 0 7px rgb(0, 0, 0, 0.6);
    position: relative;
    padding: 10px 60px;
    width: 360px;
    text-align: center;
    margin: 0 30px;
    transition: 0.2s;
}
.home-banner .content-box .btn-group a,
.home-banner .content-box .btn-group a.seller{
    background: #005CB8;
}
.home-banner .content-box .btn-group a.buyer{
    background: #9ACE36;
}
.home-banner .content-box .btn-group a:before,
.home-banner .content-box .btn-group a:after{
    content: '';
    position: absolute;
    border-radius: 50vh;
    right: 20px;
    top: 50%;
    transition: 0.2s;
}
.home-banner .content-box .btn-group a:before{
    width: 34px;
    height: 34px;
    margin-top: -17px;
}
.home-banner .content-box .btn-group a:after{
    width: 6px;
    height: 6px;
    margin-top: -3px;
    background: #fff;
    right: 34px;
}
.home-banner .content-box .btn-group a:before,
.home-banner .content-box .btn-group a.seller:before{
    background: #54A7F9;
}
.home-banner .content-box .btn-group a.buyer:before{
    background: #B2E600;
}
@media(min-width: 640px){
    .home-banner .content-box .btn-group a:hover,
    .home-banner .content-box .btn-group a.seller:hover{
        background: #9ACE36;
    }
    .home-banner .content-box .btn-group a:hover:before,
    .home-banner .content-box .btn-group a.seller:hover:before{
        background: #B2E600;
    }
    .home-banner .content-box .btn-group a.buyer:hover{
        background: #005CB8;
    }
    .home-banner .content-box .btn-group a.buyer:hover:before{
        background: #54A7F9;
    }
}
@media(max-width: 1200px){
    .home-banner picture img{
        height: 520px;
    }
}
@media(max-width: 1024px){
    .home-banner .content-box h2{
        font-size: 5.5vw;
    }
    .home-banner .content-box .desc{
        font-size: 3vw;   
    }
}
@media(max-width: 960px){
    .home-banner picture img{
        height: 420px;
    }
    .home-banner .content-box .btn-group a{
        width: 50%;
        margin: 0 20px;
        font-size: 2vw;
    }
}
@media(max-width: 640px){
    .home-banner picture img{
        height: auto;
    }
    .home-banner .content-box h2{
        font-size: 9vw;
        padding-bottom: 20px;
    }
    .home-banner .content-box .desc {
        font-size: 4.5vw;
        text-shadow: 2px 2px 2px #fff, -2px -2px 2px #fff;
    }
    .home-banner .content-box .desc .line{
        padding-left: 5px;
        padding-right: 5px;
    }
    .home-banner .content-box .btn-group{
        flex-wrap: wrap;
        margin: 0;
    }
    .home-banner .content-box .btn-group a{
        width: 100%;
        margin: 0 7vw;
        font-size: 3.7vw;
        margin-bottom: 20px;
        padding: 12px 15px;
    }
}
@media(max-width: 414px){
    .home-banner picture img{
        height: 360px;
    }
}
/*
==============================================================
========================= End banner =========================
==============================================================
*/
/*
==============================================================
============================= home ===========================
==============================================================
*/
.home .reason{
    padding-bottom: 90px;
}
.home .reason .title-box{
    padding-bottom: 0;
}
.home .reason .items .item{
    display: flex;
    margin-bottom: 80px;
}
.home .reason .items .item:last-child{
    margin-bottom: 0;
}
.home .reason .items .item .img-box{
    width: 45%;
}
.home .reason .items .item .txt-box{
    max-width: calc(5% + 590px);
    padding-top: 90px;
}
.home .reason .items .item.even .txt-box{
    padding-left: 30px;
    padding-right: 20px;
    margin-right: auto;
}
.home .reason .items .item.odd .txt-box{
    padding-left: 20px;
    padding-right: 30px;
    margin-left: auto;
}
.home .reason .items .item .txt-box h3{
    font-family: 'Noto Serif JP', "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    font-weight: 700;
    font-size: 3.5rem;
    line-height: 1.5;
    color: #fff;
    position: relative;
    overflow: hidden;
    padding: 4px 20px 4px 30px;
    margin-bottom: 30px;
}
.home .reason .items .item .txt-box h3:before{
    content: '';
    position: absolute;
    top: -20px;
    bottom: -20px;
    right: -10px;
    width: 20px;
    background: #fff;
    transform: rotate(20deg);
}
.home .reason .items .item.even .txt-box h3{
    background: #005CB8;
}
.home .reason .items .item.odd .txt-box h3{
    background: #8ABB2A;
}
.home .reason .items .item .txt-box ul{
    padding-left: 30px;
}
.home .reason .items .item .txt-box ul li{
    margin-bottom: 40px;
    list-style: none;
}
.home .reason .items .item .txt-box ul li:last-child{
    margin-bottom: 0px;
}
.home .reason .items .item .txt-box ul li .title{
    font-size: 2rem;
    font-weight: 700;
    background-position: top 12px left !important;
    background-size: 23px 19px !important;
    padding: 0 0 5px 30px;
}
.home .reason .items .item.even .txt-box ul li .title{
    background: url('../img/ic-check1.png') no-repeat;
}
.home .reason .items .item.odd .txt-box ul li .title{
    background: url('../img/ic-check2.png') no-repeat;
}
@media(max-width: 1200px){
    .home .reason .items .item .img-box{
        width: 47%;
    }
    .home .reason .items .item .txt-box{
        width: 53%;
        max-width: 590px;
    }
}
@media(max-width: 860px){
    .home .reason .title-box{
        padding-bottom: 40px;
    }
    .home .reason .items .item{
        flex-wrap: wrap;
        margin-bottom: 140px;
    }
    .home .reason .items .item .img-box,
    .home .reason .items .item .txt-box{
        width: 100%;
    }
    .home .reason .items .item .txt-box{
        max-width: 100%;
        padding: 0 30px 40px 0 !important;
    }
    .home .reason .items .item.even{
        flex-direction: column-reverse;
    }
}
@media(max-width: 640px){
    .home .reason{
        padding-bottom: 60px;
    }
    .home .reason .title-box{
        padding-bottom: 30px;
    }
    .home .reason .items .item{
        margin-bottom: 90px;
    }
    .home .reason .items .item .txt-box h3{
        font-size: 2rem;
        max-width: 320px;
        margin-bottom: 15px;
    }
    .home .reason .items .item .txt-box{
        padding-right: 20px !important;
        padding-bottom: 25px !important
    }
    .home .reason .items .item .txt-box ul{
        padding-left: 20px;
    }
    .home .reason .items .item .txt-box ul li{
        font-size: 1.4rem;
        margin-bottom: 25px;
    }
    .home .reason .items .item .txt-box ul li .title{
        font-size: 1.5rem;
        padding-left: 26px;
    }
    .home .reason .items .item .txt-box ul li .title {
        background-size: 20px 16px !important;
        background-position: top 7px left !important;
    }
}
/*====================== compare-price ==================*/
.home .compare-price{
    padding: 0px 0 85px;
    position: relative;
}
.home .compare-price:before{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: url('../img/bg1.jpg') no-repeat;
    background-size: 100% 100%;
}
.compare-price  .scroll-horizontal{
    margin: 0 -20px;
    width: auto;
}
.compare-price table.compare{
    border-collapse: unset;
    border-spacing: 20px;
}
.compare-price table tr td{
    padding: 15px 5px;
    text-align: center;
    vertical-align: middle;
    position: relative;
    width: 25%;
    line-height: 1.5;
}
.compare-price table tr:first-child td{
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.3;
}
.compare-price table tr td img{
    width: 24px;
    padding-bottom: 1px;
    padding-right: 5px;
}
.compare-price table tr td:first-child p{
    padding-left: 20px;
}
.compare-price table tr:nth-child(even) td:before{
    content: '';
    position: absolute;
    left: -20px;
    right: -20px;
    top: -10px;
    bottom: -10px;
    background: #E7F2D1;
    z-index: -2;
}
.compare-price table tr:nth-child(even) td:first-child:before{
    left: 0;
}
.compare-price table tr:nth-child(even) td:last-child:before{
    right: 0;
}
.compare-price table tr td:nth-child(2):before{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: -10px;
    bottom: -11px;
    background: #8ABB2A;
    box-shadow: 0 0 12px rgb(0, 0, 0, 0.35);
    clip-path: inset(0px -20px 0px -20px);
    z-index: -1;
}
.compare-price table tr:nth-child(even) td:nth-child(2):before{
    background: #7DB124;
}
.compare-price table tr td:nth-child(3):after,
.compare-price table tr td:nth-child(4):after{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: -10px;
    bottom: -10px;
    box-shadow: 0 0px 12px rgb(0, 0, 0, 0.35);
    clip-path: inset(0px -20px 0 -20px);
    z-index: -1;
}
.compare-price table tr td:nth-child(4):after{
    right: 0px;
}
.compare-price table tr:nth-child(1) td:nth-child(2):before,
.compare-price table tr:nth-child(1) td:nth-child(3):after,
.compare-price table tr:nth-child(1) td:nth-child(4):after{
    border-radius: 10px 10px 0 0;
    clip-path: inset(-20px -20px 0 -20px);
}
.compare-price table tr:last-child td:nth-child(2):before,
.compare-price table tr:last-child td:nth-child(3):after,
.compare-price table tr:last-child td:nth-child(4):after{
    border-radius: 0 0 10px 10px;
    clip-path: inset(0px -20px -20px -20px);
}
.compare-price table tr td:nth-child(2){
    color: #fff;
}
@media(max-width: 860px){
    .compare-price table tr:first-child td{
        font-size: 1.9vw;
    }
    .compare-price table tr td{
        font-size: 1.5vw;
    }
}
@media(max-width: 640px){
    .home .compare-price{
        padding-bottom: 60px;
    }
    .compare-price .scroll-horizontal{
        margin: 0 -15px;
    }
    .compare-price table.compare{
        border-spacing: 8px;
    }
    .compare-price table tr td{
        width: 31%;
        font-size: 2.5vw;
        padding: 10px 2px;
        font-weight: 500;
    }
    .compare-price table tr td:first-child{
        width: 7%;
        max-width: 7%;
        font-size: 3.8vw;
        font-weight: 500;
        padding-right: 0;
        padding-left: 1.5%;
    }
    .compare-price table tr:first-child td{
        font-size: 3.5vw;
    }
    .compare-price table tr td:first-child p{
        text-align: left;
        writing-mode: tb-rl;
        padding-left: 0px;
        white-space: nowrap;
    }
    .compare-price table tr td img{
        width: 16px;
    }
    .compare-price table tr:nth-child(even) td:before{
        left: -8px;
        right: -8px;
        top: -4px;
        bottom: -5px;
    }
    .compare-price table tr td:nth-child(2):before{
        top: -4px;
        bottom: -5px;
        box-shadow: 0 0 6px rgb(0, 0, 0, 0.35);
        clip-path: inset(0px -15px 0px -15px);
    }
    .compare-price table tr:nth-child(even) td:nth-child(2):before{
        background: #7DB124;
    }
    .compare-price table tr:nth-child(even) td:nth-child(2):before{
        background: #7DB124;
        left: 0;
        right: 0;
        top: -4px;
        bottom: -5px;
    }
    .compare-price table tr td:nth-child(3):after,
    .compare-price table tr td:nth-child(4):after{
        top: -4px;
        bottom: -5px;
        box-shadow: 0 0px 6px rgb(0, 0, 0, 0.35);
        clip-path: inset(0px -15px 0 -15px);
    }
    .compare-price table tr td:nth-child(4):after{
        right: 0px;
    }
    .compare-price table tr:nth-child(1) td:nth-child(2):before,
    .compare-price table tr:nth-child(1) td:nth-child(3):after,
    .compare-price table tr:nth-child(1) td:nth-child(4):after{
        border-radius: 6px 6px 0 0;
        clip-path: inset(-15px -15px 0 -15px);
    }
    .compare-price table tr:last-child td:nth-child(2):before,
    .compare-price table tr:last-child td:nth-child(3):after,
    .compare-price table tr:last-child td:nth-child(4):after{
        border-radius: 0 0 6px 6px;
        clip-path: inset(0px -15px -15px -15px);
    }
}
/*====================== news ==================*/
.home .news{
    padding-bottom: 100px;
}
.home .news .container{
    max-width: 860px;
}
.home .news .title-box{
    padding-bottom: 20px;
}
.home .news ul li{
    border-bottom: 1px solid #8D8D8D;
    list-style: none;
}
.home .news ul li a{
    display: flex;
    color: initial;
    font-size: 1.5rem;
    padding: 35px 0;
    transition: 0.2s;
    position: relative;
}
.home .news ul li a:before{
    content: '▶︎ ';
    position: absolute;
    right: 10px;
}
.home .news ul li a .date{
    width: 135px;
    color: #828282;
    font-weight: 500;
}
.home .news ul li a .txt{
    flex: 1;
    padding-left: 10px;
    padding-right: 20px;
}
/*.home .news ul li:first-child{
    border-bottom-color: #333;
}
.home .news ul li:first-child .txt{
    color: #8ABB2A;
}*/
@media(min-width: 641px){
    .home .news ul li a:hover{
        color: #8ABB2A;
    }
}
@media(max-width: 640px){
    .home .news{
        padding-bottom: 60px;
    }
    .home .news ul li a{
        flex-wrap: wrap;
        padding: 15px 0;
    }
    .home .news ul li a .txt{
        flex: auto;
        width: 100%;
        padding-left: 0;
    }
}
/*====================== investment ==================*/
.home .investment{
    position: relative;
}
.home .investment:before{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: -150px;
    background: url('../img/bg1.jpg') no-repeat;
    background-size: 100% 100%;
}
.home .investment .tab-title{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-end;
}
.home .investment .tab-title li{
    padding: 0 10px;
    width: 30%;
}
.home .investment .tab-title a{
    display: block;
    padding: 22px 10px 10px 10px;
    background: #8ABB2A;
    border-radius: 10px 10px 0 0;
    color: #fff;
    font-size: 2.2rem;
    font-weight: bold;
    text-align: center;
    position: relative;
}
.home .investment .tab-title a br{
    display: none;
}
.home .investment .tab-title a.active{
    background: none;
    border: 2px solid #8ABB2A;
    border-bottom: none;
    color: #333;
    background: #fff;
}
.home .investment .tab-title a.active:before{
    content: '';
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: -2px;
    height: 4px;
    background: #fff;
}
.home .investment .tab-content{
    border: 2px solid #8ABB2A;
    border-radius: 10px;
    background: #fff;
    padding: 3.2vw 2.5vw 1vw 2.5vw;
}
.home .investment li{
    list-style: none;
}
.home .investment .tab-content ul.items a{
    color: initial;
    display: block;
    transition: 0.2s;
}
.home .investment .tab-content  ul.items{
    display: flex;
    flex-wrap: wrap;
}
.home .investment .tab-content  ul.items li{
    width: 25%;
    padding: 0 15px;
    margin-bottom: 30px;
}
.home .investment .tab-content  ul.items li a{
    background: #E1E1E1;
    border-radius: 3px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    height: 100%;
    min-height: 50px;
    padding: 10px 5px;
    line-height: 1.5;
}
.home .investment .tab-content  ul.items li.active a{
    color: #fff;
    background: #8ABB2A;
}
.home .investment .tab-content  ul.items li a:hover{
    color: #fff;
    background: #8ABB2A;   
}
.home .investment .tags{
    padding: 20px 17px 40px 17px;
}
@media(max-width: 1024px){
    .home .investment .tab-content  ul.items li{
        padding: 0 10px;
        margin-bottom: 20px;
    }
    .home .investment .tab-title a{
        font-size: 2vw;
    }
    .home .investment .tab-content  ul.items li a{
        font-size: 1.3vw;
    }
}
@media(max-width: 860px){
    .home .investment .tab-content  ul.items li{
        width: 33.33%;
    }
    .home .investment .tab-content  ul.items li a{
        font-size: 1.6vw;
    }
    .home .investment .tags{
        padding: 20px 10px 30px 10px;
    }
}
@media(max-width: 640px){
    .home .investment .tab-content  ul.items li{
        width: 50%;
    }
    .home .investment .tab-content  ul.items li a{
        font-size: 2.2vw;
    }
    .home .investment .tab-title{
        align-items: unset;
    }
    .home .investment .tab-title li{
        padding: 0 5px;
        width: 32%;
    }
    .home .investment .tab-title a br{
        display: block;
    }
    .home .investment .tab-title a{
        font-size: 3vw;
        padding: 5px 0;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 8px 8px 0 0;
    }
    .home .investment .tab-content{
        padding-top: 30px;
    }
    .home .investment .tab-content ul.items li{
        padding: 0 8px;
        margin-bottom: 16px;
    }
    .home .investment .tab-content ul.items li a{
        font-size: 2.9vw;
    }
}
/*
==============================================================
=========================== End home =========================
==============================================================
*/
.faq{
    padding-bottom: 80px;
}
.faq .items .item{
    border-bottom: 1px solid #8D8D8D;
}
.faq .items .item .q{
    font-weight: 500;
    display: flex;
    padding: 22px 0;
    position: relative;
    cursor: pointer;
}
.faq .items .item .q:before,
.faq .items .item .q:after{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    transition: 0.2s;
}
.faq .items .item .q:after {
    border: solid #8ABB2A;
    border-width: 0 2px 2px 0px;
    display: inline-block;
    width: 14px;
    height: 14px;
    top: 50%;
    margin-top: -7px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.faq .items .item .q.show:after{
     -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
    margin-top: 0;
}
.faq .items .item .icon{
    width: 50px;
    display: inline-block;
}
.faq .items .item .txt{
    flex: 1;
    padding: 5px 50px 0 0px;
}
.faq .items .item .icon{
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    position: relative;
    bottom: 2px;
    width: 40px;
    white-space: nowrap;
}
.faq .items .item .a{
    padding-bottom: 22px;
    display: none;
}
.faq .items .item .a .inner{
    display: flex;
}
.faq .view-more{
    padding-top: 50px;
}
.faq ul,
.faq ol{
    padding-left: 15px;
}
@media(max-width: 640px){
    .faq{
        padding-bottom: 45px;
    }
    .faq .items .item .q,
    .faq .items .item .a{
        padding: 18px 0;
    }
    .faq .items .item .a{
        padding-top: 5px;
    }
    .faq .items .item .q:before,
    .faq .items .item .q:after{
        right: 5px;
    }
    .faq .items .item .txt{
        padding-right: 30px;
    }
}
/*
==============================================================
======================== group contact =======================
==============================================================
*/
.group-contact .container{
    max-width: 1040px;
}
.group-contact .contact-box{
    background: url('../img/bg-contact.jpg') no-repeat;
    background-size: 100% 100%;
    border-radius: 10px;
    text-align: center;
    padding: 50px 0 75px;
}
.group-contact .contact-box .title{
    color: #fff;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 60px;
    padding: 0 15px;
    line-height: 1.5;
}
.group-contact .contact-box .title br{
    display: none;
}
.group-contact .contact-box .title span{
    display: inline-block;
    position: relative;
    padding: 10px 40px 18px 40px;
}
.group-contact .contact-box .title span:before,
.group-contact .contact-box .title span:after{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    background-size: 32px 57px !important;
}
.group-contact .contact-box .title span:before{
    left: 0;
    background: url('../img/title-spl-l.png') no-repeat;
    background-position: left center;
}
.group-contact .contact-box .title span:after{
    right: 0;
    background: url('../img/title-spl-r.png') no-repeat;
    background-position: right center;
}
.group-contact .contact-box a,
.custom-btn-contact a{
    display: inline-block;
    font-size: 2rem;
    font-weight: 500;
    color: #fff;
    border-radius: 2px;
    box-shadow: 0 0 7px rgb(0, 0, 0, 0.3);
    position: relative;
    padding: 25px 20px;
    width: 560px;
    text-align: center;
    transition: 0.2s;
    background: #FF9B06 !important;
    background: -moz-linear-gradient(100deg, #FFC506 0%, #FF9B06 100%);
    background: -webkit-linear-gradient(100deg, #FFC506 0%, #FF9B06 100%);
    background: linear-gradient(100deg, #FFC506 0%, #FF9B06 100%);
}
.group-contact .contact-box a br{
    display: none;
}
.group-contact .contact-box a span,
.custom-btn-contact a strong{
    padding: 0 60px 0 80px;
    display: inline-block;
    background: url('../img/ic-email-white.png') no-repeat;
    background-position: left top 5px;
    background-size: 55px 25px;
}
.group-contact .contact-box a:before,
.group-contact .contact-box a:after,
.custom-btn-contact a strong:before,
.custom-btn-contact a strong:after{
    content: '';
    position: absolute;
    border-radius: 50vh;
    right: 30px;
    top: 50%;
    transition: 0.2s;
}
.group-contact .contact-box a:before,
.custom-btn-contact a strong:before{
    width: 34px;
    height: 34px;
    margin-top: -17px;
    background: #DC8500;
}
.group-contact .contact-box a:after,
.custom-btn-contact a strong:after{
    width: 6px;
    height: 6px;
    margin-top: -3px;
    background: #fff;
    right: 44px;
}
.group-contact .contact-box a:hover,
.custom-btn-contact a strong:hover{
    opacity: 0.8;
}
@media(max-width: 821px) {
    .custom-btn-contact {
        width: 75% !important;
    }
}
@media(max-width: 640px){
    .group-contact .contact-box{
        padding: 25px 0 45px;
    }
    .group-contact .contact-box .title br{
        display: block;
        line-height: 0;
    }
    .group-contact .contact-box .title{
        font-size: 2.4rem;
        margin-bottom: 20px;
        padding: 0 15px;
    }
    .group-contact .contact-box .title span{
        padding: 10px 30px 18px 30px;
    }
    .group-contact .contact-box .title span:before,
    .group-contact .contact-box .title span:after{
        width: 30px;
        background-size: 22px 60px !important;
    }
    .group-contact .contact-box .btn-box{
        padding: 0 20px;
    }
    .group-contact .contact-box a, .custom-btn-contact, .custom-btn-contact a{
        width: 100% !important;
        font-size: 1.5rem;
        padding: 18px 10px;
        line-height: 1.5;
    }
    .group-contact .contact-box a br{
        display: block;
        line-height: 0;
    }
    .group-contact .contact-box a span, .custom-btn-contact a strong{
        padding: 0 40px;
        background-position: left top 5px;
        background-size: 35px 16px;
    }
    .group-contact .contact-box a:before,
    .group-contact .contact-box a:after,
    .custom-btn-contact a:before,
    .custom-btn-contact a:after{
        right: 15px;
        top: 50%;
        transition: 0.2s;
    }
    .group-contact .contact-box a:before,
    .custom-btn-contact a:before{
        width: 34px;
        height: 34px;
        margin-top: -17px;
        background: #DC8500;
    }
    .group-contact .contact-box a:after,
    .custom-btn-contact a:after{
        width: 6px;
        height: 6px;
        margin-top: -3px;
        background: #fff;
        right: 29px;
    }
    .custom-btn-contact a strong:after {
        right: 24px;
    }
    .custom-btn-contact a strong:before {
        right: 10px;
    }
}
@media(max-width: 374px){
    .group-contact .contact-box .title{
        font-size: 1.9rem;
    }
    .group-contact .contact-box a{
        font-size: 1.4rem;
    }
}
/*
==============================================================
====================== End group contact =====================
==============================================================
*/
.home .can-do{
    display: block;
    margin-top: 70px;
    background: #FBFBFB;
    padding-bottom: 85px;
}
.home .can-do .item{
    margin-bottom: 20px;
}
.home .can-do .item:last-child{
    margin-bottom: 0px;
}
.home .can-do .item h3{
    font-size: 2rem;
    font-weight: 700;
    padding-left: 38px;
    position: relative;
    margin-bottom: 15px;
}
.home .can-do .item h3:before,
.home .can-do .item h3:after{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
}
.home .can-do .item h3:before{
    width: 28px;
    height: 28px;
    background: #8ABB2A;
    border-radius: 50vh;
    top: 4px;
}
.home .can-do .item h3:after {
    border: solid #fff;
    border-width: 0 2px 2px 0px;
    display: inline-block;
    width: 10px;
    height: 10px;
    top: 50%;
    margin-top: -4px;
    left: 8px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    transition: 0.2s;
}
.home .can-do ul{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -12px;
    padding-left: 38px;
}
.home .can-do ul li{
    width: 33.33%;
    padding: 0 12px;
    margin-bottom: 24px;
    list-style: none;
}
.home .can-do ul li a{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    border: 1px solid #8ABB2A;
    padding: 10px 15px;
    text-align: center;
    color: initial;
    line-height: 1.4;
    transition: 0.2s;
}
.home .can-do ul li a:hover{
    background: #8ABB2A;;
    color: #fff;
}
@media(max-width: 640px){
    .home .can-do{
        margin-top: 45px;
        padding-bottom: 45px;
    }
    .home .can-do ul{
        padding-left: 0;
        margin: 0 -7px;
    }
    .home .can-do ul li{
        width: 50%;
        padding: 0 7px;
        margin-bottom: 15px;
    }
    .home .can-do ul li a{
        min-height: 60px;
    }
}
@media(max-width: 480px){
    .home .can-do .item h3{
        font-size: 1.8rem;
        padding-left: 32px;
    }
    .home .can-do .item h3:before{
        width: 24px;
        height: 24px;
        top: 4px;
    }
    .home .can-do .item h3:after {
        width: 8px;
        height: 8px;
        margin-top: -3px;
        left: 7px;
    }
     .home .can-do ul{
        margin: 0;
    }
    .home .can-do ul li{
        width: 100%;
        padding: 0;
        margin-bottom: 15px;
    }
}
/*
==============================================================
============================= Footer =========================
==============================================================
*/
footer{
    background: #EFEFEF;
    padding-top: 100px;
}
footer .info{
    text-align: center;
    padding-bottom: 50px;
}
footer .info .container{
    max-width: 620px;
}
footer .info .logo{
    display: inline-block;
}
footer .info .logo img{
    max-width: 340px;
}
footer ul li{
    list-style: none;
}
footer .info ul{
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    padding-top: 60px;
}
footer .info ul li{
    padding: 0 30px;
    font-weight: 500;
    line-height: 1.5;
}
footer .info ul li a{
    color: initial;
}
footer .nav-box{
    background: #8ABB2A;
    color: #fff;
}
footer .nav-box .container{
    max-width: 900px;
}
footer .nav-box .nav a{
    color: #fff;
    display: block;
    padding-left: 15px;
}
footer .nav-box{
    background: #8ABB2A;
    color: #fff;
}
footer .nav-box .nav ul#menu-footer-menu{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 50px 0 80px;
}
footer .nav-box .nav ul#menu-footer-menu > li > a{
    font-size: 2rem;
    font-weight: 700;
    padding-left: 0;
    padding-bottom: 5px;
}
footer .nav-box .nav li.home a{
    font-size: 1.9rem;
}
footer .copy-right{
    text-align: center;
    border-top: 1px solid #FFFDF6;
    padding: 10px 10px;
    font-size: 1.2rem;
    font-weight: 300;
}
footer .copy-right br{
    display: none;
}
@media(max-width: 640px){
    footer{
        padding-top: 55px;
    }
    footer .container{
        padding: 0 30px;
    }
    footer .info{
        padding-bottom: 45px;
    }
    footer .info .logo img{
        width: 200px;
    }
    footer .info ul{
        flex-wrap: wrap;
        padding-top: 40px;
    }
    footer .info ul li{
        width: 100%;
        padding: 0;
        text-align: center;
        margin-bottom: 20px;
    }
    footer .info ul li:last-child{
        margin-bottom: 0;
    }
    footer .nav-box .nav ul:first-child {
        margin-bottom: 10px;
    }
    footer .nav-box .nav{
        padding: 40px 0 15px;
    }
    footer .nav-box .nav ul{
        width: 100%;
        margin-bottom: 25px;
    }
    footer .nav-box .nav li{
        margin-bottom: 10px;
    }
    footer .nav-box .nav li:last-child{
        margin-bottom: 0;
    }
    footer .nav-box .nav li:first-child{
        margin-bottom: 5px;
    }
    footer .nav-box .nav li:first-child a{
        font-size: 1.8rem;
    }
    footer .nav-box .nav a{
        padding-left: 10px;
    }
    footer .copy-right br{
        display: block;
    }
}
@media(max-width: 374px){
    footer .copy-right{
        font-size: 1rem;
    }
}
/*
==============================================================
============================== Form ==========================
==============================================================
*/
input,
textarea
{
    border: 1px solid #D8D8D8;
    padding: 13px 10px;
    background: #fff;
    width: 100%;
    border-radius: 5px;
}
textarea
{
    resize: none;
}
input[type="checkbox"],
input[type="radio"],
input[type="button"],
input[type="submit"]
{
    border: none;
    padding: 0;
    background: none;
    width: auto;
}
input.form-control,
textarea.form-control
{
    width: 100%;
}
.custom-select{
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}
.custom-select select {
    /*for chrome*/
   -webkit-appearance:none;
   /*for firefox*/
   -moz-appearance:none;
   -ms-appearance:none;
   appearance:none;
   outline:0;
   box-shadow:none;
   background: none;
   background-image: none;
   padding: 13px 10px;
   cursor:pointer;
   border: 1px solid #231815;
   width: 100%;
   position: relative;
}
label.checkbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: left;
    -ms-flex-pack: left;
    -webkit-justify-content: left;
    justify-content: left;
    -webkit-box-align: flex-start;
    -ms-flex-align: flex-start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    line-height: 1.3;
}
label.checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
label.checkbox .checkmark {
    position: absolute;
    top: 1px;
    left: 0px;
    height: 20px;
    width: 20px;
    border: 1px solid #231815;
    background: #fff;
}
/*label.chk:hover input ~ .checkmark {
    background-color: #ccc;
}*/
label.checkbox input:checked ~ .checkmark {
    background-color: #231815;
}
label.checkbox .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
label.checkbox input:checked ~ .checkmark:after {
    display: block;
}
label.checkbox .checkmark:after {
    left: 7px;
    top: 2px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
input[type='radio'] {
    position: relative;
    box-sizing: border-box;
    width: 22px;
    height: 22px;
    vertical-align: middle;
    cursor: pointer;
    content: '';
    background-color: #FFF;
    border: 1px solid #231815;
    appearance: button;
    -webkit-appearance: none;
    padding: 0;
    margin: 0;
    position: relative;
    bottom: 2px;
    right: 0px;
    margin-right: 10px;
}
input[type='radio'] {
    border-radius: 100%;
}
input[type='radio']:checked:after {
    position: absolute;
    top: 4px;
    left: 4px;
    display: block;
    width: 12px;
    height: 12px;
    content: '';
    background: #231815;
    border-radius: 6px;
}
/*.required span
{
    position: relative;
    padding-right: 20px;
}
.required span::after{
    content: '※';
    position: absolute;
    top: 50%;
    right: 0px;
    margin-top: -8px;
    color: #A2272D;
    letter-spacing: 2px;
    line-height: 100%;
    font-weight: normal;
}*/
.form-row
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    flex-wrap: wrap;
}
.form-row label.title{
    padding: 0 20px;
    width: 230px;
    font-weight: 700;
}
.form-row .control{
    flex: 1;
}
.form-row.flex-start
{
    -webkit-box-align: flex-start;
    -ms-flex-align: flex-start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
}
.form-row.flex-start label.title
{
    padding-top: 10px;
}
.error{
    color: #A2272D;
    font-size: 0.875rem;
    display: block;
}
.form-row .btn-group{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}
@media(max-width: 576px){
    input[type="checkbox"],
    input[type="radio"]{
        width: 16px;
        height: 16px;
        bottom: -4px;
    }
    .form-row label.title{
        width: 100% !important;
        min-width: 100% !important;
        margin-bottom: 3px;
        padding: 0;
    }
    .form-row .control{
        flex: auto;
    }
    .form-row.flex-start label.title{
        padding-top: 0px;
    }
    form .btn-group{
        padding-top: 45px;
    }
}
/*
==============================================================
=========================== End Form =========================
==============================================================
*/
/*
==============================================================
=========================== End Footer =======================
==============================================================
*/
/*
==============================================================
=========================== select2 ==========================
==============================================================
*/
.select2-container {
    z-index: 300;
}
.control-select-full {
    width: 100%;
}
.select2-container--default .select2-selection--single {
    border-radius: 0;
    border: 1px solid #D8D8D8;
}
.select2-dropdown
{
    border: 1px solid #D8D8D8;
}
.select2-container .select2-selection--single {
    height: 44px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 42px !important;
    color: inherit;
}
.select2-container--default .select2-selection--single .select2-selection__placeholder {
    position: relative;
    bottom: 1px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 44px;
    width: 44px;
    top: 0;
    right: 0;
    border: none;
    background: none;
    border-radius: 0;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b,
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
   /* border-color: #000 transparent transparent transparent;
    border-width: 8px 6px 0 6px;*/
    border-style: solid;
    display: inline-block;
    padding: 5px;
    width: 0;
    height: 0;
    border-color: #231815;
    margin-left: -8px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}
.select2-container--default .select2-selection--single .select2-selection__arrow b
{
    border-width: 0 1px 1px 0px;
    margin-top: -7px;
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-width: 1px 0px 0px 1px;
    margin-top: -3px;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
    z-index: 100;
    position: absolute;
    right: 1px;
    bottom: 1px;
    top: 1px;
    width: 44px;
    background: #fff;
    text-align: center;
    color: #000;
    line-height: 42px;
    border-radius: 0;
    font-size: 1.6rem;
}
.select2-container--default .select2-search--dropdown .select2-search__field
{
    padding: 10px;
}
.select2-container--default .select2-selection--single .select2-selection__placeholder
{
    color: #ccc;
}
.select2-container--default .select2-selection--multiple .select2-selection__rendered
{
    padding: 2px 5px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice
{
    margin-top: 2px;
    margin-bottom: 2px;
}
.custom-select{
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}
/*
==============================================================
========================= End select2 ========================
==============================================================
*/
/*
==============================================================
=========================== ma page ==========================
==============================================================
*/
.ma-content{
    display: flex;
    flex-wrap: wrap;
    padding: 20px 0 60px;
}
.ma-content .search-title{
    font-size: 2rem;
    font-weight: 700;
    border-bottom: 1px solid #707070;
    padding-bottom: 10px;
    margin-bottom: 40px;
}
.ma-content .search-box{
    width: 340px;
}
.ma-content .search-box .search-content{
    background: #F5F9ED;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgb(0, 0, 0, 0.16);
    padding: 30px 25px;
}
.ma-content .content-box{
    flex: 1;
    padding-left: 35px;
}
.ma-content .form-row{
    width: 100%;
    margin-bottom: 15px;
}
.ma-content .form-row .form-label{
    display: block;
    font-weight: 700;
    font-size: 1.5rem;
    padding-bottom: 5px;
    width: 100%;
}
.ma-content .form-row .control{
    flex: auto;
}
.slider-box {
    width: 100%;
    padding: 35px 20px 0 7px;
}
.slider-box .ui-widget.ui-widget-content{
    background: #CBCBCB;
    border-radius: 50vh;
    border: none;
    height: 12px;
}
.slider-box .ui-slider-horizontal .ui-slider-handle{
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 50vh;
    box-shadow: 0 0 3px rgb(0, 0, 0, 0.23);
    border: none;
    top: -9px;
}
.slider-box .ui-slider-horizontal .ui-slider-handle:before{
    content: '';
    position: absolute;
    left: 5px;
    top: 5px;
    width: 20px;
    height: 20px;
    background: #FF9B06;
    border-radius: 50vh;
}
.slider-box .ui-draggable,
.slider-box .ui-droppable {
    background-position: top;
}
.slider-box .ui-widget-header {
    background: #FF9B06;
}
.slider-box .value {
    position: absolute;
    top: -30px;
    left: calc(100% - 28px);
    margin: 0 0 0 -20px;
    width: auto;
    white-space: nowrap;
    text-align: center;
    display: block;
    font-weight: normal;
    color: #333 !important;
    font-weight: 700;
}
.slider-box .value.price-range-min{
    margin-left: 0;
}
.slider-box .value.price-range-max{
    left: unset;
    right: 0;
}
.ma-content .form-row .control input{
    border-color: #8ABB2A;
    border-radius: 50vh;
}
.select2-container--default.fm1 .select2-dropdown{
    border-color: #8ABB2A;
    margin-top: 32px !important;
}
.select2-container--default.fm1 .select2-selection--single {
    border-color: #8ABB2A;
    border-radius: 22px;
}
.select2-container--default.fm1 .select2-selection--single .select2-selection__arrow {
    height: 44px;
    width: 44px;
    top: 0;
    right: 0;
    border: none;
    background: none;
    border-radius: 0 22px 22px 0;
}
.select2-container--default.fm1 .select2-selection--single .select2-selection__clear {
    z-index: 100;
    position: absolute;
    right: 1px;
    bottom: 1px;
    top: 1px;
    width: 44px;
    background: #fff;
    text-align: center;
    color: #000;
    line-height: 42px;
    border-radius: 0;
    font-size: 1.6rem;
    border-radius: 0 22px 22px 0;
}
.ma-content .form-row .c-btn{
    width: 100%;
    margin-top: 15px;
}
.pagination-box .total-page{
    font-size: 2rem;
    font-weight: 500;
    border-top: 1px solid #707070;
    padding-top: 10px;
    margin-top: 30px;
}
.pagination-box .page-numbers{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.pagination-box .page-numbers li{
    list-style: none;
    font-weight: 700;
    padding: 0 5px;
    display: inline-block;
    line-height: 1;
    position: relative;
}
.pagination-box .page-numbers li a,
.pagination-box .page-numbers li span{
    color: initial;
    display: block;
    min-width: 32px;
    height: 32px;
    padding: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    transition: 0.2s;
}
.pagination-box .page-numbers li a:hover,
.pagination-box .page-numbers li span{
    background: #FF9B06;
    color: #fff;
    border-radius: 50vh;
}
.pagination-box .page-numbers li a.prev,
.pagination-box .page-numbers li a.next{
    text-indent: -9999999px;
}
.pagination-box .page-numbers li a.prev:hover,
.pagination-box .page-numbers li a.next:hover{
    opacity: 0.7;
    transition: 0.2s;
}
.pagination-box .page-numbers li a.prev:hover,
.pagination-box .page-numbers li a.next:hover{
    background: none;
}
.pagination-box .page-numbers li a.prev:before,
.pagination-box .page-numbers li a.prev:after,
.pagination-box .page-numbers li a.next:before,
.pagination-box .page-numbers li a.next:after{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    z-index: -1;
}
.pagination-box .page-numbers li a.prev:before,
.pagination-box .page-numbers li a.next:before{
    width: 20px;
    height: 2px;
    background: #333333;
    top: 50%;
    margin-top: -1px;
}
.pagination-box .page-numbers li a.prev:after,
.pagination-box .page-numbers li a.next:after {
    border: solid #333333;
    border-width: 0 2px 2px 0px;
    display: inline-block;
    width: 10px;
    height: 10px;
    top: 50%;
    margin-top: -5px;
    transition: 0.2s;
}
.pagination-box .page-numbers li a.prev:before{
    right: unset;
    left: 5px;
}
.pagination-box .page-numbers li a.prev:after {
    left: 5px;
    right: unset;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}
.pagination-box .page-numbers li a.next:before{
    right: 5px;
    left: unset;
}
.pagination-box .page-numbers li a.next:after {
    right: 5px;
    left: unset;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    transition: 0.2s;
}
.pagination-box .page-numbers li a.prev:hover,
.pagination-box .page-numbers li a.prev:hover,
.pagination-box .page-numbers li a.next.trans:hover,
.pagination-box .page-numbers li a.next.trans:hover{
    cursor: pointer;
    background-color: transparent !important;
}
/**************** buy-list **************/
ul.buy-list{
    padding: 30px 0;
}
ul.buy-list li{
    list-style: none;
    margin-bottom: 20px;
    position: relative;
}
ul.buy-list li:last-child{
    margin-bottom: 0;
}
ul.buy-list li .inner{
    position: relative;
    transition: 0.2s;
    padding: 30px;
    border: 1px solid #CBCBCB;
}
ul.buy-list li .top{
    display: inline-block;
    width: 100%;
    font-weight: 500;
    font-size: 1.2rem;
    border-bottom: 1px solid #707070;
    padding-bottom: 15px;
    margin-bottom: 20px;
}
ul.buy-list li .top .top-inner{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -6px;
}
ul.buy-list li .top p{
    padding: 6px 7px;
    line-height: 1.2;
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}
ul.buy-list li .top .new span{
    color: #fff;
    background: #FF9B06;
    text-align: center;
    border-radius: 3px;
    font-weight: 700;
    padding: 6px 7px;
}
ul.buy-list li .top .bg{
    padding: 0 6px;
}
ul.buy-list li .top .bg span{
    display: inline-block;
    background: #8ABB2A;
    color: #fff;
    border-radius: 50vh;
    padding: 6px 8px;
}
ul.buy-list li .top .rate{
    background: url('../img/ic-star.png') no-repeat;
    padding-right: 28px;
    background-size: 22px 21px;
    background-position-x: right;
    background-position-y: center;
}
ul.buy-list li .content{
    display: flex;
    flex-wrap: wrap;
}
ul.buy-list li .content .img-box{
    width: 200px;
}
ul.buy-list li .content .txt-box{
    flex: 1;
    padding-left: 20px;
}
ul.buy-list li .content .img-box .img{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
ul.buy-list li .content .img-box .img img{
    width: 100%;
}
ul.buy-list li .content .img-box h3{
    font-weight: 700;
    font-size: 1.4rem;
    line-height: 1.4;
    text-align: center;
    color: #fff;
    padding: 8px 10px;
    background: #8ABB2A;
}
ul.buy-list li .content .txt-box .cat{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}
ul.buy-list li .content .txt-box .cat .cat-item{
    padding: 0 10px;
    line-height: 1.2;
    font-weight: 500;
    font-size: 1.2rem;
    margin-bottom: 10px;
}
ul.buy-list li .content .txt-box .cat .cat-item p{
    color: #FF9B06;
    border: 1px solid #FF9B06;
    padding: 4px 10px;
}
ul.buy-list li .content .txt-box h2{
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.4;
    padding: 0px 0 15px;
}
ul.buy-list li .content .txt-box .items{
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #CBCBCB;
}
ul.buy-list li .content .txt-box .items .item{
    width: 33.33%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
    align-items: flex-start;
    border-right: 1px solid #CBCBCB;
}
ul.buy-list li .content .txt-box .items{
    border-left: 1px solid #CBCBCB;   
}
ul.buy-list li .content .txt-box .items .item-title,
ul.buy-list li .content .txt-box .items .item .value{
    font-size: 1.5rem;
}
ul.buy-list li .content .txt-box .items .item-title{
    line-height: 1.4;
    color: #fff;
    background: #8ABB2A;
    text-align: center;
    width: 100%;
    padding: 5px 7px;
}
ul.buy-list li .content .txt-box .items .item-title p{
    text-align: center;
}
ul.buy-list li .content .txt-box .items .item .value{
    width: 100%;
    padding: 7px 7px;
    font-size: 1.5rem;
    font-weight: 700;
    flex: 1;
    text-align: center;
    line-height: 1.3;
}
ul.buy-list li .content .txt-box .desc{
    font-size: 1.5rem;
    border-top: 1px solid #707070;
    display: inline-block;
    width: 100%;
    padding-top: 12px;
    margin-top: 20px;
}
ul.buy-list li a{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
@media(max-width: 1440px){
    ul.buy-list li .content .txt-box .items .item-title,
    ul.buy-list li .content .txt-box .items .item .value{
        font-size: 1vw;
    }
}
@media(min-width: 769px){
    ul.buy-list li:hover .inner{
        border-color: #8ABB2A;
        transform: scale(1.01) !important;
        box-shadow: 0 2px 12px rgb(0, 0, 0, 0.15);
    }
}
@media(max-width: 1024px){
    .ma-content .search-box{
        width: 100%;
        padding-bottom: 40px;
    }
    .ma-content .search-box .search-content{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .ma-content .search-box .form-row{
        width: 50%;
        padding: 0 20px;
    }
    .ma-content .content-box{
        flex: auto;
        padding-left: 0;
    }
    ul.buy-list li .content .txt-box .items .item-title,
    ul.buy-list li .content .txt-box .items .item .value{
        font-size: 1.4vw;
    }
    .pagination-box .page-numbers li a,
    .pagination-box .page-numbers li span {
        font-size: 1.8vw;
    }
}
@media(max-width: 768px){
    .pagination-box .page-numbers li a,
    .pagination-box .page-numbers li span {
        font-size: 2vw;
    }
}
@media(max-width: 640px){
    .ma-content .search-title{
        text-align: center;
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    .ma-content .search-box{
        padding-bottom: 30px;
    }
    .ma-content .search-box .search-content{
        padding: 30px 20px;
    }
    .ma-content .search-box .form-row{
        width: 100%;
        padding: 0;
    }
    .pagination-box .page-numbers li a,
    .pagination-box .page-numbers li span {
        font-size: 2.5vw;
    }
    .pagination-box .total-page{
        text-align: center;
        font-size: 1.8rem;
    }
    ul.buy-list li .content .txt-box .items .item-title,
    ul.buy-list li .content .txt-box .items .item .value{
        font-size: 1.4vw;
    }
    ul.buy-list li .inner{
        padding: 25px 15px;
    }
    ul.buy-list li .content .img-box{
        width: 100%;
        padding-bottom: 15px;
    }
    ul.buy-list li .content .txt-box{
        flex: auto;
        padding-left: 0;
    }
    ul.buy-list li .content .txt-box h2{
        font-size: 1.6rem;
    }
    ul.buy-list li .content .txt-box .items .item{
        width: 50%;
    }
    ul.buy-list li .content .txt-box .items .item-title,
    ul.buy-list li .content .txt-box .items .item .value{
        font-size: 2.5vw;
    }
}
@media(max-width: 428px){
    .pagination-box .page-numbers li a,
    .pagination-box .page-numbers li span {
        font-size: 3.7vw;
    }   
    ul.buy-list li .content .txt-box .items .item-title,
    ul.buy-list li .content .txt-box .items .item .value{
        font-size: 3.6vw;
    }
}
@media(max-width: 374px){
    .pagination-box .page-numbers li a,
    .pagination-box .page-numbers li span {
        font-size: 4vw;
    }   
}
/*
==============================================================
========================= End ma page ========================
==============================================================
*/
/*
==============================================================
========================= contact form =======================
==============================================================
*/
.contact-form{
    padding-bottom: 50px;
}
.contact-form .title-box p{
    margin-bottom: 0;
}
.contact-form .title-box {
    padding-top: 30px;
}
.contact-form .title-box h2{
    border-bottom: none;
    padding-bottom: 0;
    margin: 0;
}
.contact-form table tr th,
.contact-form table tr td{
    padding: 15px 10px;
    vertical-align: middle;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}
.contact-form table tr th{
    background: #FAFAFA;
    width: 260px;
    text-align: left;
    font-weight: 700;
}
.contact-form table .ct-lbl{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.contact-form table .num {
    width: 30px;
    height: 30px;
    color: #fff;
    background: #333;
    border-radius: 50vh;
    font-size: 1.5rem;
    font-weight: normal;
    display: inline-block;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 7px;
}
.contact-form table .required .txt
{
    position: relative;
    padding-right: 38px;
}
.contact-form table .required  .txt::after{
    content: '必須';
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -7px;
    color: #A2272D;
    letter-spacing: 2px;
    line-height: 100%;
    font-weight: normal;
    border: 1px solid #DD0000;
    font-size: 1.1rem;
    line-height: 1;
    padding: 1px 3px 2px 3px;
    display: inline-block;
    font-weight: 600;
}
.contact-form .policy-box{
    padding-left: 0;
    padding-right: 0;
    border-bottom: none;
}
.contact-form .policy-desc{
    text-align: center;
    font-weight: 700;
    font-size: 2rem;
    padding: 25px 0 15px;
}
.contact-form .privacy-policy {
    display: inline-block;
    width: 100%;
    height: 200px;
    overflow-y: auto;
    margin-bottom: 20px;
    padding: 15px 20px;
    border: 1px solid #CCC;
}
.contact-form .privacy-policy p{
    margin-bottom: 0;
}
.contact-form .confirm{
    text-align: center;
}
.contact-form .btn-group{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 30px 0;
}
.contact-form .btn-group input[type="submit"] {
    border-radius: 2px;
    display: block;
    font-weight: bold;
    width: 300px;
    padding: 18px 20px;
    text-align: center;
    cursor: pointer;
    transition: .3s cubic-bezier(0.45, 0, 0.55, 1);
    box-shadow: 0 0 4px rgb(0, 0, 0, 0.2);
    font-size: 2rem;
    font-weight: 500;
    color: #fff;
    position: relative;
    line-height: 1.4;
    background: -moz-linear-gradient(100deg, #FFC506 0%, #FF9B06 100%);
    background: -webkit-linear-gradient(100deg, #FFC506 0%, #FF9B06 100%);
    background: linear-gradient(100deg, #FFC506 0%, #FF9B06 100%);
    background-size: 200% 100%;
    border: none;
    margin: 0 15px 15px 15px;
}
.contact-form .btn-group input[name="submitBack"] {
    background: -moz-linear-gradient(100deg, #444 0%, #000 100%);
    background: -webkit-linear-gradient(100deg, #444 0%, #000 100%);
    background: linear-gradient(100deg, #444 0%, #000 100%);
    background-size: 200% 100%;
}
.contact-form .btn-group input[type="submit"]:hover {
    background-position: 100% 0;
}
.contact-form .contact_confirm .policy-box,
.contact-form .contact_confirm .confirm{
    display: none !important;
}
.contact_thank{
    text-align: center;
    font-weight: 600;
    padding: 50px 0;
}
.contact_thank .view-more{
    margin: 30px 0;
}
.contact_thank .mw_wp_form_send_error{
    color: #ff0000;
}
@media(max-width: 640px){
    .contact-form{
        padding-bottom: 0px;
    }
    .contact-form table tr th,
    .contact-form table tr td{
        padding: 15px 10px;
        vertical-align: middle;
        border-top: none;
        border-bottom: none;
    }
    .contact-form table tr th,
    .contact-form table tr td{
        background: none;
        width: 100%;
        display: block;
    }
    .contact-form table tr th{
        padding-bottom: 0;
    }
    .contact-form table tr td{
        padding-bottom: 8px;
    }
    .contact-form .btn-group input[type="submit"] {
        font-size: 1.8rem;
        padding-left: 15px;
        padding-right: 15px;
    }
    .contact_thank{
        padding: 30px 0;
    }
}
@media(max-width: 414px){
    .contact-form .btn-group input[type="submit"]{
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
}
/*
==============================================================
======================= End contact form =====================
==============================================================
*/
.page-detail h2,
.page-detail h3,
.page-detail h4,
.page-detail h5,
.page-detail h6{
    font-family: 'Noto Serif JP', "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    font-weight: 700;
    margin: 3rem 0 1rem;
    line-height: 1.5;
}
.page-detail h2{
    font-size: 2.6rem;
    border-bottom: 1px solid #333;
    padding-bottom: 1rem;
}
.page-detail h3{
    font-size: 2.2rem;
    /* background: #f8f3e5; */
    padding: 0 0.7rem;
}
.page-detail h4{
    font-size: 2rem;
    border-bottom: 1px solid #333;
    padding-bottom: 0.8rem;
}
.page-detail h5,
.page-detail h6{
    font-size: 1.7rem;
}
.page-detail h2:first-child,
.page-detail h3:first-child,
.page-detail h4:first-child,
.page-detail h5:first-child,
.page-detail h6:first-child{
    margin-top: 0;
    margin-bottom: 5px;
}
.page-detail strong{
    font-weight: 700;
}
.page-detail ol,
.page-detail ul{
    margin: 0 0 1.2em 1.2em;
}
.page-detail p{
    margin-bottom: 1rem;
}
.page-detail img{
    max-width: 100% !important;
    height: auto !important;
}
.page-detail pre {
    background: #eee;
    line-height: 1.6;
    margin-bottom: 1.6em;
    max-width: 100%;
    overflow: auto;
    padding: 1.6em;
}
.page-detail blockquote {
    position: relative;
    padding: 2rem 2rem 2rem 7rem;
    margin: 2rem 0;
    line-height: 2.0;
    border: 1px solid #efeff0;
    box-shadow: 0 3px 0 rgba(239,239,240,0.4);
}
.page-detail blockquote::before {
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: 'ＭＳ Ｐゴシック', sans-serif;
    font-size: 6rem;
    line-height: 1.0;
    color: #000;
    content: '“';
}
.page-detail blockquote a{
    color: #523c16;
    word-break: break-all;
}
.page-detail .alignleft {
    float: left;
    margin: 0.5em 1em 0.5em 0;
}
.page-detail .alignright {
    float: right;
    margin: 0.5em 0 0.5em 1em;
}
.page-detail .aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
@media(max-width: 640px){
    .page-detail h2{
        font-size: 2.1rem;
    }
    .page-detail h3{
        font-size: 1.8rem;
    }
    .page-detail h4{
        font-size: 1.7rem;
    }
    .page-detail h5,
    .page-detail h6{
        font-size: 1.6rem;
    }
}
/* sell-list */
.sell-list-table {
    overflow-x: scroll;
    margin: 25px 0px;
}
.sell-list {
    width: 100%;
    min-width: 810px;
    border: 1px solid #8D8D8D;
    border-collapse: collapse;
}
.sell-list tr {
    padding: 5px 10px;
    border-bottom: 0.5px solid #8D8D8D;
    width: 100%;
    position: relative;
}
.sell-list tbody tr:hover td,
.sell-checkbox:hover {
    background-color: #8abb2a !important;
    cursor: pointer;
    color: #fff !important;
}

.sell-list tr th,
.sell-list tr td {
    padding: 5px;
    text-align: left;
    vertical-align: middle;
    position: relative;
} 

.sell-list tr th:nth-child(odd),
.sell-list tr td:nth-child(odd) {
    background-color: #f6f9ee;
}
.sell-list tr th,
.sell-list tr td:nth-child(2) {
    text-align: center;
}
.sell-list tr td .company-logo {
    max-width: 50px;
    max-height: 50px;
    position: relative;
}
.sell-list tr .item-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.trophy_icon {
    width: 9px;
    height: 1.1rem;
    background: url(https://batonz.jp/_nuxt/img/0f5d37a.svg) center no-repeat;
    display: inline-block;
    margin-right: 4px;
}
.trophy_of_MA {
    background-color: #186cbe;
    color: #ffffff;
    padding:3px 10px;
    font-size: 1.2rem;
    border-radius: 50vh;
}
.sell-page.ma-content {
    padding-bottom: 0 !important;
}
.sell-page .form-row.keyword .control{
    width: 50%;
    text-align: center;
}
.sell-page .form-row.keyword .control input{
    width: 50%;
    border-radius: 5px;
    background: #E6E6E6 url(../img/ic-search.png) no-repeat;
    background-position: left 10px center;
    background-size: 25px 26px;
    border-radius: 50vh;
    height: 48px;
    border: medium none;
    padding: 5px 15px 5px 45px;
}
.sell-page .form-row .btn-group button{
    padding: 10px 30px;
    font-size: 2rem;
    font-weight: 500;
    background-color: #FF9B06;
    border: none;
    color: #ffffff;
    border-radius: 2px;
    box-shadow: 0 0 7px rgb(0, 0, 0, 0.3);
    position: relative;
    text-align: center;
}
.sell-list tbody tr td:first-child > div:first-child {
    float: left;
    margin-right: 5px;
}
@media (max-width: 1024px) {
    .sell-list tbody tr td:first-child > div:first-child {
        float: none;
    }
}
/* Buyer */
.buyer-content {
    display: flex;
    flex-direction: row;
    position: relative;
    width: 100%;
    /* height: 480px; */
    padding: 30px 10px;
    column-gap: 20px;
    background-color: #ffffff;
}
.buyer-content .bg-content {
    width: 50%;
    height: 400px;
    background-image: url('https://batonz.jp/rails/active_storage/blobs/redirect/eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaHBBNzlyQmc9PSIsImV4cCI6bnVsbCwicHVyIjoiYmxvYl9pZCJ9fQ==--1bbbe9d74fa02264461d75c2b2027da904ff9fcf/%EF%BC%B3%EF%BC%A1%EF%BC%B7%EF%BC%A11.jpg&quot');
    background-position: center center;
}
.buyer-content .text-content {
    width: 100%;
    /* height: 400px; */
}
.content-description {
    border-top: 3px solid #8abb2a;
    padding-top: 20px;
}
.buyer-detail {
    background-color: #efefef;
    padding: 30px 10px;
}
.buyer-detail article {
    margin-bottom: 30px;
    margin-top: 30px;
    background-color: #ffffff;
}
.buyer-detail article.table-detail {
    overflow-x: auto;
}
.buyer-detail article.table-detail section {
    min-width: 560px;
}
.fs-24 {
    font-size: 24px;
}
.fs-18 {
    font-size: 18px;
}
.buyer-detail table tr th {
    width: 25%;
    max-width: 25%;
}
.buyer-detail table th,
.buyer-detail table td {
    padding: 10px 20px;
    text-align: left;
    border: 1px solid #8abb2a;
    border-collapse: collapse;
}
.buyer-detail table th {
    background-color: #8abb2a;
    color: #ffffff;
}
.buyer-detail table tr:not(:last-child) th {
    border-bottom: 1px solid #ffffff !important;
}
.container.fs-18 {
    padding: 0 !important;
}
/* Common */

.text-center {
    text-align: center !important;
}
.flex {
    display: flex !important;
}
.flex-row {
    flex-direction: row !important;
}
.flex-column {
    flex-direction: column !important;
}
.mr-5 {
    margin-right: 5px;
}
.mr-10 {
    margin-right: 10px;
}
.h4 {
    font-size: 2rem;
}
.orange {
    color: #ff9b06 !important;
}
.align-center {
    align-items: center;
}
.space-between {
    justify-content: space-between !important;
}
.space-around {
    justify-content: space-around !important;
}
.maxw-33-percent {
    max-width: 33.33% !important;
}
/* /.common */
.seller-detail {
    font-size: 1.5rem;
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 1.25rem;
    padding: 15px;
}
.seller-detail .box-item {
    border: 1px solid #efefef;
    border-radius: 1rem;
    padding: 20px;
    --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow);
}
.w-75-percent {
    width: 75%;
    box-sizing: border-box;
}
.w-25-percent {
    width: 25%;
    box-sizing: border-box;
}
.seller-detail .contact {
    position: relative;
}
.seller-detail .contact p {
    font-size: 1.5rem;
    margin: 0 20px 24px;
}
.seller-detail .contact h4 {
    padding: 24px 20px 12px;
}
.seller-detail .contact .btn-group {
    position: relative;
    width: 100%;
    padding: 0 20px 20px 20px;
}
.seller-detail .contact button {
    font-size: 1.5rem;
    padding: 10px 20px;
    border-radius: 1rem;
    font-weight: 600;
    background-color: #f5a200;
    border: none;
    color: #ffffff;
}
.seller-detail .contact .social-contact {
    border-top: 1px solid #efefef;
    position: relative;
}
.seller-detail .contact .social-contact {
    font-size: 1.5rem;
}
.seller-detail .contact .social-contact .action {
    width: 100%;
    justify-content: space-around;
}
.seller-detail .contact .social-contact .social-media {
    justify-content: space-around;
}
.seller-detail .information {
    width: 100%;
    gap: 28px;
}
.seller-detail .icon-media {
    padding: 5px 10px;
    border-radius: 1rem;
    background-color: #efefef;
}
.seller-detail .icon-media:hover {
    cursor: pointer;
    transform: scale(1.2);
    transform-origin: center center;
}
.seller-detail .common-content .common-more {
    padding: 10px 0 0 0;
}
.seller-detail .common-content >div:last-child {
    padding: 24px 0;
}
.seller-detail .common h4 span {
    font-weight: normal !important;
}
.seller-detail .common .banner {
    padding-top: 16px;
    border-top: 1px solid #efefef;
}
.seller-detail .common .banner img {
    /* width: 100%;
    max-height: 500px; */
    box-sizing: border-box;
}
.seller-detail .detail > h4 {
    border-bottom: 1px solid #efefef;
}
.seller-detail .detail .detail-list {
    padding-top: 16px;
}
.seller-detail .detail .detail-list .item {
    padding: 10px;
    border: 1px solid #efefef;
}
.seller-detail .detail .detail-list .item h4 {
    font-size: 1.5rem;
}
.seller-detail .detail p {
    color: rgb(144 141 164);
}
.seller-detail .rating .choices {
    padding-bottom: 20px;
}
.seller-detail .rating .choice {
    padding: 8px auto;
}
.seller-detail .rating .textarea {
    position: relative;
    padding: 15px 0;
    border-top: 1px solid #efefef;
}
.seller-detail .rating .textarea textarea {
    width: 100%;
    resize: none;
}
.seller-detail .rating button {
    padding: 10px 20px;
    font-weight: bold;
    border: none;
    border-radius: 1rem;
}
.seller-detail .rating button.submit-btn {
    background-color: #f5a200;
    color: #ffffff;
    margin-right: 10px;
}
@media (max-width: 1024px) {
    .seller-detail {
        flex-direction: column;
    }
    .seller-detail > article {
        width: 100%;
    }
}
ul.main-menu li.lang-item > a{
    padding: 0 5px;
    line-height: 100%;
}
@media (max-width: 767px) {
    ul.main-menu li.lang-item > a{
        padding: 10px 5px;
    }
}
.mb-10 {
    margin-bottom: 10px;
}
.display-none {
    display: none !important;
}
.seller-detail .contact-form .mw_wp_form form .btn {
    padding: 12px 15px !important;
}
.back-btn {
    background-color: #dc3545;
}
/*
==============================================================
========================== Detail page =======================
==============================================================
*/
.post-detail{
    position: relative;
    padding: 40px 0 80px;
}
.post-detail .container{
    max-width: 1390px;
    padding-left: 75px;
    padding-right: 75px;
}
.post-detail .btn-sidebar{
    position: absolute;
    top: 0;
    right: 0;
}
.post-detail .main {
    display: flex;
    flex-wrap: wrap;
}
.post-detail .main .main-content{
    flex: 1;
    padding-right: 6.5%;
}
.post-detail .main .sidebar-box{
    width: 250px;
}
.post-detail .sidebar-box .sidebar-group{
    display: inline-block;
    width: 100%;
    margin-bottom: 30px;
}
.post-detail .sidebar-box .sidebar-group:last-child{
    margin-bottom: 0;
}
.post-detail .sidebar-box .sidebar-title{
    background: #2D6000;
    color: #fff;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    padding: 6px 10px;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}
.post-detail .sidebar-box ul.latest-posts li{
    display: block;
    border-bottom: 1px solid #ccc;
}
.post-detail .sidebar-box ul li:last-child{
    border-bottom: none;
}
.sidebar-box ul li a{
    display: block;
    font-size: 1.4rem;
    color: initial;
    padding: 10px 0px;
    transition: 0.2s;
    position: relative;
    line-height: 1.6;
}
.sidebar-box ul.latest-posts li a:before{
    content: '▶︎ ';
}
.post-detail .sidebar-box .sidebar-group:last-child .sidebar-title{
    margin-bottom: 15px;
}

.post-detail .info__date{
    font-size: 1.4rem;
    padding: 5px 0 15px;
}
.post-detail .info__image{
    display: inline-block;
    width: 100%;
    text-align: center;
    margin: 1rem 0;
}
.post-detail .info__image img{
    display: block;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    height: auto;
}
.post-detail .info__content h2,
.post-detail .info__content h3,
.post-detail .info__content h4,
.post-detail .info__content h5,
.post-detail .info__content h6{
    font-weight: 700;
    position: relative;
    letter-spacing: 0.08em;
}
.post-detail .main-content .ttl{
    font-size: 2.8rem;
    font-weight: bold;
    line-height: 1.5;
    margin: 0 0 15px 0 !important;
    border: none;
    padding: 0;
    letter-spacing: 0;
}
.post-detail .info__content h2 {
    padding: 0.3em 0;
    font-size: 2.7rem;
    font-weight: bold;
    line-height: 1.554;
    letter-spacing: -.02em;
    border-top: solid 1px #1c1b1b;
    border-bottom: solid 1px #1c1b1b;
    margin-top: 30px;
    margin-bottom: 30px;
}
.post-detail .info__content h3 {
    padding-bottom: 10px;
    font-weight: bold;
    line-height: 1.554;
    letter-spacing: -.02rem;
    border-bottom: 3px dotted black;
    font-size: 2.4rem;
    margin-bottom: 30px;
}
.post-detail .info__content h4,
.post-detail .info__content h5,
.post-detail .info__content h6{
    padding-bottom: 10px;
    font-weight: bold;
    line-height: 1.554;
    letter-spacing: -.02rem;
    border-bottom: 3px dotted black;
    margin: 30px 0;
}
.post-detail .info__content h4 {
    font-size: 2.1rem;
}
.post-detail .info__content h5 {
    font-size: 2rem;
}
.post-detail .info__content h6 {
    font-size: 1.8rem;
}
.post-detail .info__content h2:first-child,
.post-detail .info__content h3:first-child,
.post-detail .info__content h4:first-child,
.post-detail .info__content h5:first-child,
.post-detail .info__content h6:first-child{
    margin-top: 0;
}
.post-detail .info__content strong{
    font-weight: 700;
}
/* .post-detail .info__content a{
    color: #2D6000;
} */
.post-detail .info__content ol,
.post-detail .info__content ul{
    margin: 0 0 1.2em 1.2em;
}
.post-detail .info__content ol li,
.post-detail .info__content ul li{
    list-style: inherit;
}
.post-detail .info__content p{
    margin-bottom: 1.5rem;
}
.post-detail .info__content img{
    max-width: 100% !important;
    height: auto !important;
}
.post-detail .info__content pre {
    background: #eee;
    line-height: 1.6;
    margin-bottom: 1.6em;
    max-width: 100%;
    overflow: auto;
    padding: 1.6em;
}
.post-detail .info__content blockquote {
    position: relative;
    padding: 2rem 2rem 2rem 7rem    ;
    margin: 2rem 0;
    line-height: 2.0;
    border: 1px solid #efeff0;
    box-shadow: 0 3px 0 rgba(239,239,240,0.4);
}
.post-detail .info__content blockquote::before {
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: 'ＭＳ Ｐゴシック', sans-serif;
    font-size: 6rem;
    line-height: 1.0;
    color: #000;
    content: '“';
}
.post-detail .info__content blockquote a{
    color: #2D6000;
    word-break: break-all;
}
.post-detail .info__content .alignleft {
    float: left;
    margin: 0.5em 1em 0.5em 0;
}
.post-detail .info__content .alignright {
    float: right;
    margin: 0.5em 0 0.5em 1em;
}
.post-detail .info__content .aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.his-list{
    margin-top: 35px;
    position: relative;
}
.his-list:before{
    content: '';
    position: absolute;
    left: 92px;
    top: 10px;
    bottom: 8px;
    width: 1px;
    background: #FFA206;
}
.his-list li{
    display: flex;
    font-size: 1.6rem;
    margin-bottom: 35px;
}
.his-list li:last-child{
    margin-bottom: 0;
}
.his-list li .date{
    width: 120px;
    color: #8ABB2A;
    letter-spacing: 0.1em;
    font-weight: bold;
    position: relative;
}
.his-list li .date:after{
    content: '';
    position: absolute;
    top: 9px;
    right: 23px;
    width: 10px;
    height: 10px;
    border-radius: 50vh;
    background: #FFA206;
}
.his-list li .content{
    flex: 1;
}
/*our-team ================================*/
.our-team .title {
    margin-top: 33px;
    margin-bottom: 32px;
    letter-spacing: 0.05em;
}
.our-team .title h3 {
    font-size: 2.5rem;
    font-weight: 500;
    color: #006120;
    position: relative;
}
.our-team .title h3::before {
    position: absolute;
    display:block;
    top:0;
    left:0;
    bottom:0;
    content: attr(data-content);
    background-color:#fff;
    color:#fff;
    z-index:-1;
    padding-right:13.5px;
}
.our-team .title h3::after {
    position:absolute;
    content:'';
    display: block;
    left:120px;
    right:0;
    top:50%;
    background-color:#006120;
    height:1px;
    min-height:1px;
    z-index:-2;
}
@media (max-width: 640px){
    .our-team {
        padding-top: 68px;
    }
    .our-team .title {
        margin-top: -8px;
        margin-bottom: 40px;
    }
    .our-team .profile-title {
        margin-bottom: 37px;
    }
}
.members {
    display: flex;
    flex-wrap: wrap;
    margin-left: -9px;
    margin-right: -9px;
}
.members .member {
    width: 50%;
    padding-left: 9px;
    padding-right: 9px;
    margin-bottom: 10px;
}
.members .member .member-content {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    column-gap: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #828282;
}
.members .member blockquote {
    width: 100%;
}
.member-avatar {
    margin-bottom: 21px;
    position: relative;
    padding-top: 75%;
}
.member-avatar img{
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
}
.member-position {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    margin-bottom: 0 !important;
    font-style: italic;
    color: #333333;
}
.member-name {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 10px !important;
    letter-spacing: 0.05em;
    color: #333333;
    line-height: 1.5;
}
.member-txt {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    color: #333333;
}
.about-table tr {
    border-top: 1px solid #828282;
    border-bottom: 1px solid #828282;
    width: 100%;
}
.about-table th,
.about-table td{
    border: none !important;
}
.about-table th {
    background: #fafafa;
    padding: 10px 0px 10px 15px;
    width: 20%;
    line-height: 160%;
    text-align: left;
}
.about-table td {
    padding: 10px 0px 10px 15px;
    width: 80%;
    line-height: 160%;
}
/*banner ================================*/
.banner {
    position: relative;
}
.seller-detail .banner p {
    width: 100%;
}
.banner .banner-img {
    height: 367px;
    object-fit: cover;
    object-position: center;
    background-color: #ccc;
}
.banner img {
    display: flex;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.banner .txt-box {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    line-height: 1.09;
    letter-spacing: 0.1em;
}
.banner .txt-box .txt-inner {
    display: inline-block;
    text-align: center;
    padding: 0 45px;
}
.banner .txt-box .banner-title {
    font-size: 4rem;
    margin-bottom: 10px;
    font-weight: bold;
    color: #8ABB2A;
}
.banner .txt-box .sm {
    font-size: 2rem;
}
@media (max-width: 640px) {
    .banner .banner-img {
        height: 192px;
    }
    .banner .txt-box .txt-inner {
        padding: 0;
        margin-top: 35px;
    }
    .banner .txt-box .banner-title {
        font-size: 3.5rem;
        margin-bottom: 0px;
    }
    .banner .txt-box .sm {
        font-size: 1.5rem;
        line-height: 2;
    }
    .breadcrumbs {
        padding-top: 14px;
        font-size: 0.8rem;
    }
    .banner.personal-service .txt-box .txt-inner {
        margin-top: 0px;
    }
}
@media (max-width: 374px) {
    .banner .txt-box .banner-title {
        font-size: 9vw;
    }
    .banner .txt-box .sm {
        font-size: 4vw;
    }
}