/*
Theme Name: ones
Description: One's International Group
*/



/* ===============================================
共通
=============================================== */
:root {
  /* 色 */
  --black-color:#333333;
  --white-color: #fff;
  --blue-color:#182f5a;
  --blue2-color:#0431b4;
  --red-color:#ed1c24;
  --orange-color:#FF8000;
  --green-color:#39b54a;
  --gray-color:#cfcfcf;
  --lightgray-color:#f3f3f3;
  --pink-color:#ea567c;
  --yellow-color:#f9cd3b;
  --turquoise-color:#00a99d;
  --lightblue-color:#1396e2;
  --darkred-color:#ab282d;
  --purple-color:#7f47dd;
}

html {
  color: var(--black-color);
  line-height: 1.4;
  font-size: 14px;
  box-sizing: border-box;
  font-family: serif;
}

body{
    margin:0;
}

p {
    margin:0 0 1em 0;
    padding:0;
}

a {
  text-decoration: none;
  color: var(--black-color);
}

ul{
  margin:0;
  padding: 0;
  list-style: none;
}

img {
    width: 100%;
    height: auto;
}

.inner {
    max-width: 1000px;
    margin:0 auto;
}

.content {
    margin-bottom: 60px;
}

.wrapper {
    margin-right: 10px;
    margin-left:10px;
}

table {
    border-collapse: collapse;
    width: 100%;
}

table tr ,table th ,table td {
    border-collapse: collapse;
}

.sp {
  display: none;
}

.main {
    display: inline-block;
    width: 80%;
    vertical-align: top;
}

.sidebar {
    display: inline-block;
    width: 18%;
    padding:5px;
    vertical-align: top;
}

.right {
    text-align:right;
}

.mb0 {
    margin-bottom: 0;
}

.mb10 {
    margin-bottom: 10px!important;
}

.mb30 {
    margin-bottom: 30px!important;
}

.mt40 {
    margin-top:40px;
}

.display_none {
    display: none;
}

h2 {
    position: relative;
    background: var(--blue-color);
    padding:15px 10px 8px;
    margin:5px 0 10px 0;
    color: var(--white-color);
}

h2:before {
    position: absolute;
    left: 0;
    top:5px;
    width: 100%;
    content: '';
    border-top:4px solid var(--white-color);
}

h4 {
    font-size: 20px;
    padding: 0 10px 5px;
    border-bottom:2px solid var(--black-color);
    margin: 0 0 20px;
}


.active_button {
    margin:30px auto;
    width: 50%;
}

/* ===============================================
ログイン前
=============================================== */

.unlogin {
    position: relative;
    width: 100%;
    height: 100vh;
}

.unlogin a {
    position: absolute;
    top: 50%;
    left:50%;
    transform: translate(-50%, -50%);
    display: block;
    color: var(--white-color);
    background: var(--blue-color);
    padding:20px 30px;
    font-size:20px;
}


/* ===============================================
ヘッダー
=============================================== */

header {
    height: 70px;
    background: var(--blue-color);
    margin-bottom: 40px;
}

h1 {
    margin:0;
    line-height: 70px
}

h1 img {
    width: 30%;
    margin-left: 20px;
    vertical-align: middle;
}




/* ハンバーガー */
#g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
    top:0;
    right:-120%;
    width:100%;
    height: 100vh;/*ナビの高さ*/
    background:#666;
    /*動き*/
    transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    right: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top:40%;
    left:40%;
    transform: translate(-20%,-40%);
}

/*リストのレイアウト設定*/

#g-nav li{
    list-style: none;
    text-align: left; 
}

#g-nav li a{
    color: var(--white-color);
    text-decoration: none;
    padding:10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
}

/*========= ボタンのためのCSS ===============*/
.openbtn{
    position:fixed;
    background: var(--blue-color);
    z-index: 9999;/*ボタンを最前面に*/
    top:10px;
    right: 20px;
    cursor: pointer;
    width: 50px;
    height:50px;
    border-radius:5px;
}
    
/*×に変化*/    
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: var(--white-color);
    width: 45%;
  }

.openbtn span:nth-of-type(1) {
    top:15px;   
}

.openbtn span:nth-of-type(2) {
    top:23px;
}

.openbtn span:nth-of-type(3) {
    top:31px;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
    opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}



/* ===============================================
フッター
=============================================== */

footer {
    background: var(--blue-color);
}

footer p.footer_copy {
    color: var(--white-color);
    text-align: center;
    padding:15px 0;
    margin-bottom: 0;
}


/* ===============================================
パンくず
=============================================== */

.breadcrumb_area {
    margin:0 10px 40px 10px;
}

.breadcrumb_area ul {
    margin: 0;
    padding-left: 0;
}

.breadcrumb_area ul li {
    display: inline-block;
    margin-right: 1em;
}


.breadcrumb_area ul i {
    margin-right: 1em;
}






/* ===============================================
フロントページ
=============================================== */

/*タブメニュー*/
/*tabの形状*/
.tab{
    display: flex;
    flex-wrap: wrap;
    justify-content:space-between;
    padding-left: 0;
    width: 100%;
    margin: 5px 0 0;
}

.tab li {
    width : calc(100% / 3 - 20px) ;
    text-align:center;
    margin:0 10px 3px 10px;
    position: relative;
}

.tab li a{
    display: block;
    padding:10px;
    color: var(--white-color);
}
/*liにactiveクラスがついた時の形状*/
.tab li.active {
    margin:0 10px 0px 10px;
}

.news_tab {
    background: var(--blue-color);
}

.subsidy_tab {
    background: var(--orange-color);
}

.funding_tab{
    background: var(--green-color);
}


.tab_batch {
    position: absolute;
    top:-10px;
    right: -7px;
}

/*エリアの表示非表示と形状*/
.area {
    display: none;/*はじめは非表示*/
    opacity: 0;/*透過0*/
    padding:20px;
}

/*areaにis-activeというクラスがついた時の形状*/
.area.is-active {
    display: block;/*表示*/
    animation-name: displayAnime;/*ふわっと表示させるためのアニメーション*/
    animation-duration: 1s;
    animation-fill-mode: forwards;
    margin:0 10px;
}

@keyframes displayAnime{
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

#news {
    border-top: 4px solid;
    border-right: 1px solid;
    border-left: 1px solid;
    border-bottom: 4px solid;
    border-color: var(--blue-color);
}

#subsidy {
    border-top: 4px solid;
    border-right: 1px solid;
    border-left: 1px solid;
    border-bottom: 4px solid;
    border-color: var(--orange-color);
}

#funding{
    border-top: 4px solid;
    border-right: 1px solid;
    border-left: 1px solid;
    border-bottom: 4px solid;
    border-color: var(--green-color);
}


/*ニュースエリア*/

.news_area {
    margin-bottom:20px;
}

.news_list {
    margin:0 0 10px;
    padding:5px 10px 15px;
    display: flex;
    align-items:flex-start;
    border-bottom:1px dashed;
    border-color:var(--gray-color);

}

.news_list dt {
    width: 15%;
    padding:2px 0 0;
}

.news_list .category {
    margin:0;
    width: 25%;
    text-align:center;
    position: relative;
}

.news_list .category span a {
    display: block;
    color: var(--white-color);
    padding:2px 5px 0;
}

.news_list .news_title {
    width: 60%;
    margin-left: 15px;
    padding:2px 0 0;
}

/*カラー設定*/

.ones_news a {
    background: var(--blue-color);
}

.subsidy_news a {
    background: var(--orange-color);
}

.funding_news a {
    background: var(--green-color);
}

.food_news a {
    background: var(--black-color);
}

.service_news a {
    background: var(--yellow-color);
}

.it_news a {
    background: var(--turquoise-color);
}

.estate_news a {
    background: var(--lightblue-color);
}

.travel_news a {
    background: var(--purple-color);
}

.report_news a {
    background: var(--blue2-color);
}


/*新着バッチ*/

.batch {
    position: absolute;
    top: -10px;
    right: -7px;
}

.entry-icon-new {
    /*font-size: 24px;*/
    font-size:14px;
    color: var(--red-color);
}

/* 点滅 */
@keyframes blinking {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* 要素にアニメーションを適用 */
.blink {
    animation: blinking 0.8s ease-in-out infinite alternate;
}


/*コンテンツボタンエリア*/

.btn_area {
    display: flex;
    flex-wrap: wrap;
}

.btn_icon {
    width : calc(100% / 5 - 16px);
    margin-right: 20px;
    margin-bottom: 20px;
    transition: 0.8s;
    position: relative;
}

.btn_area .btn_icon:nth-of-type(5n) {
    margin-right: 0;
}

.btn_icon:hover {
    opacity: 0.6;
}

.icon_batch {
    position: absolute;
    top:-10px;
    right: -7px;
}


/*ワンカリ*/

.onekari_list {
    display: flex;
    flex-wrap: wrap;
}

.onekari_box {
    width : calc(100% / 4 - 15px);
    margin-right: 20px;
    margin-bottom: 20px;
    position: relative;
}


.onekari_list .onekari_box:nth-of-type(4n) {
    margin-right: 0;
}

.onekari_tmb img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    object-position: 50% 50%;
}

.onekari_price {
    position: absolute;
    bottom: 20px;
    background: rgba(0,0,0,0.5);
    width: 70%;
    border-top-right-radius:20px;
    border-bottom-right-radius: 20px;
}

.onekari_price p {
    margin:0;
    padding:8px 12px 5px;
    color: var(--white-color);

}

.soldout {
    position: absolute;
    bottom: 20px;
    background: rgba(237,28,36,0.7);
    width: 70%;
    border-top-right-radius:20px;
    border-bottom-right-radius: 20px;
}

.soldout p {
    margin:0;
    padding:8px 12px 5px;
    color: var(--white-color);

}


/*カーシェアバナー*/

.car_banner_area img {
    border:2px solid var(--blue-color);
    transition: 0.8s;
}

.car_banner_area img:hover {
    opacity: 0.6;
}









/* ===============================================
サイドバー
=============================================== */

.side_overview_area{
    border: 1px solid var(--blue-color);
    padding:10px;
    margin-bottom: 30px;
}

.side_user_name {
    text-align:center;
}

.side_user_point {
    /*font-size:34px;*/
    font-size:17px;
    color: var(--red-color);
}

.side_user_point span {
    font-size:28px;
    margin-left:3px;
}

.side_go_mypage a {
    text-align:center;
    font-size: 12px;
    display: block;
    background: var(--blue-color);
    color: var(--white-color);
    padding:6px;
    line-height: 1.2;
}

.side_navi_area {
    padding:10px;
    margin-bottom:30px;
    background: var(--lightgray-color);
}

.side_navi_area ul {
    padding-bottom: 10px;
}

.side_navi_area li {
    line-height: 2;
    padding: 6px 4px 4px;
    border-bottom:1px dashed var(--gray-color);
    transition: 0.8s;
}

.side_navi_area li:hover {
    background: var(--white-color);
}

.side_navi_area li a {
    display: block;
}



/* ===============================================
お問い合わせフォーム
=============================================== */

.contact_form tr {
    width: 100%;
    border-top:1px solid var(--gray-color);
    border-right:1px solid var(--gray-color);
}

.contact_form th {
    width: 20%;
    border-bottom:1px solid var(--gray-color);
    border-left:1px solid var(--gray-color);
    padding:10px;
    background: var(--lightgray-color);
    vertical-align:top;
    text-align: left;
}

.contact_form td {
    border-bottom:1px solid var(--gray-color);
    border-left:1px solid var(--gray-color);
    padding:10px;
}

input[type="text"],textarea {
    width: 95%;
    padding:10px!important;
    border:1px solid var(--gray-color) ;
}

input[type="submit"]{
    color: #fff;
    padding:20px;
    width: 100%;
    background: var(--pink-color);
    border:1px solid var(--pink-color);
    transition: 0.8s;
    font-size:18px;
}

input[type="submit"]:hover {
    color: var(--pink-color);
    background: var(--white-color);
}

.wpcf7 textarea::placeholder ,.wpcf7 input::placeholder {
    color: var(--gray-color);
}

/* ===============================================
ワンカリ出品フォーム
=============================================== */

.acf-button {
    background: var(--lightgray-color);
    padding:5px 15px;
}

.acf-form-submit {
    margin:50px auto;
    width: 300px;
}

#acf-field_66c80f75e1ba9 {
    width: 30%;
}


/* ===============================================
カーシェアフォーム
=============================================== */

input[type="date"] {
    padding:10px;
    border:1px solid var(--gray-color) ;
}

.wpcf7-select {
    padding:12px;
    border:1px solid var(--gray-color) ;
}

.carchare_form tr {
    width: 100%;
    border-top:1px solid var(--gray-color);
    border-right:1px solid var(--gray-color);
}

.carchare_form th {
    width: 20%;
    border-bottom:1px solid var(--gray-color);
    border-left:1px solid var(--gray-color);
    padding:10px;
    background: var(--lightgray-color);
    vertical-align: baseline;
}

.carchare_form td {
    border-bottom:1px solid var(--gray-color);
    border-left:1px solid var(--gray-color);
    padding:20px 10px 5px;
    display: flex;
}

.carchare_form td dt {
    width: 25%;
}



/* ===============================================
ワンカリ商品詳細
=============================================== */

.item_area {
    display: flex;
}

.item_pic {
    width: 50%;
    padding:0 10px;
    box-sizing: border-box;
}

.item_detail {
    width: 50%;
    padding:0 10px;
}


.gallery{
    margin:0 0 10px 0;
}

.gallery li{
list-style:none;
}

.gallery li img{
height: 285px;
object-fit: contain;
object-position: 50% 50%;
}

.choice-btn li{
    cursor: pointer;
    outline: none;
    list-style:none;
    width : calc(100% / 3)!important;
}

.choice-btn li img{
    opacity: 0.3;
    height: 94px;
    object-fit: contain;
    object-position: 50% 50%;
}

.choice-btn li.slick-current img{
    opacity: 1;
}

.choice-btn .slick-track {
    transform: unset !important;
    width: 100%!important;
}

.price {
    font-size:24px;
    color: var(--red-color);
    margin: 0 0 20px;
    padding: 0 10px 0;
}

.price span {
    font-size: 16px;
    margin-left: 3px;
}

.item_more {
    margin-bottom: 40px;
}

.item_more tr {
    width: 100%;
    border-top:1px solid var(--gray-color);
    border-right:1px solid var(--gray-color);
}

.item_more th {
    width: 30%;
    padding:10px;
    border-bottom: 1px solid var(--gray-color);
    border-left:1px solid var(--gray-color);
    font-weight: normal;
    background: var(--lightgray-color);
}

.item_more td {
    width: 70%;
    padding:10px;
    border-bottom: 1px solid var(--gray-color);
    border-left:1px solid var(--gray-color);
}

.button_area {
    display: flex;
    position: relative;
}

.go_back ,.go_buy{
    width : calc(100% / 2);
}

.back_button {
    margin-right: 8px;
}

.buy_button {
    margin-left: 5px;
}

.back_button a {
    color: var(--black-color);
    font-size: 18px;
    padding: 21px;
    background: var(--gray-color);
    border: 1px solid var(--gray-color);
    transition: 0.8s;
    display: block;
    text-align: center;
}

.back_button a:hover {
    background: var(--white-color);
}

.wpcf7 form.sent .wpcf7-response-output {
    position: absolute;
    top: 60px;
    right: -8px;
    width: 357px;
    padding: 10px;
}

.soldout_button a {
    color:var(--white-color);
    font-size: 18px;
    padding: 21px;
    background: rgba(234,86,124,0.5);
    display: block;
    text-align: center;
}



/* ===============================================
マイページ
=============================================== */

.mypage {
    width: 70%;
    margin-left:auto;
    margin-right:auto;
}

.mypage tr {
    width: 100%;
    border-top:1px solid var(--gray-color);
    border-right:1px solid var(--gray-color);
}

.mypage th {
    width: 30%;
    padding:10px;
    border-bottom: 1px solid var(--gray-color);
    border-left:1px solid var(--gray-color);
    font-weight: normal;
    background: var(--lightgray-color);
    text-align:left;
    vertical-align: top;
}

.mypage td {
    width: 70%;
    padding:10px;
    border-bottom: 1px solid var(--gray-color);
    border-left:1px solid var(--gray-color);
}


.mypage td dl {
    display: flex;
    margin:5px 0 ;
}

.mypage td dl dt {
    width: 30%;
}

.mypage td dl dd {
    width: 18%;
    margin-left:0;
    text-align: right;
}

.mypage td p.total_point {
    font-size:18px;
    margin-bottom: 0;
}

.mypage td dl dd span ,.mypage td span{
    margin-left:3px;
    font-size:80%;
}

.repayment {
    margin:30px 0;
}

.item_list {
    display: flex;
    flex-wrap: wrap;
}

.item_list .item_box {
    width : calc(100% / 4 - 37px);
    margin-right: 20px;
    margin-bottom: 20px;
    border:1px solid var(--gray-color);
    padding:10px;
}

.item_list .item_box:nth-of-type(4n) {
    margin-right: 0;
}

.item_tmb img {
    height: 103px;
    object-fit: contain;
    object-position: 50% 50%;
}

.logout {
    margin:50px auto;
    width: 25%;
}

.logout a {
    display: block;
    background: var(--blue-color);
    border:1px solid var(--blue-color);
    color: var(--white-color);
    transition: 0.8s;
    padding:15px 30px;
    text-align:center;
}

.logout a:hover {
    background: var(--white-color);
    color: var(--blue-color);
}



/* ===============================================
アコーディオン
=============================================== */

/*アコーディオン全体*/
.accordion{
    list-style: none;
    width: 100%;
}

.accordion li{
    margin: 10px 0;
}

.accordion section {
    border: 1px solid var(--gray-color);
}

/*アコーディオンタイトル*/
.title {
    position: relative;
    cursor: pointer;
    font-weight: normal;
    padding: 10px 10px 10px 50px;
    transition: all .5s ease;
    margin:10px;
    font-size: 14px;
}

/*アイコンの＋と×*/
.title::before,
.title::after{
    position: absolute;
    content:'';
    width: 15px;
    height: 2px;
    background-color: var(--black-color);
}
.title::before{
    top:48%;
    left: 15px;
    transform: rotate(0deg);
}
.title::after{
    top:48%;
    left: 15px;
    transform: rotate(90deg);

}
/*closeというクラスがついたら形状変化*/
.title.close::before{
    transform: rotate(45deg);
}

.title.close::after{
    transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.box {
    display: none;/*はじめは非表示*/
    background: var(--lightgray-color);
    margin:0 3% 3% 3%;
    padding: 3%;
}

/*ステップフローのCSS*/
ul.stepflow {
    border: none;
    margin: 1em 0.5em;
    padding: 0;
    list-style: none;
}
ul.stepflow > li:before, ol.stepflow > li:before {
    background:var(--gray-color)!important;
}
.stepflow li {
    position: relative;
    padding: 0 0 1.5em 1.8em;
}
.stepflow>li:before {
    content: "";
    width: 3px;
    background: var(--gray-color);
    display: block;
    position: absolute;
    top: 28px;
    bottom: 0;
    left: 8px;
}
.stepflow-white {
    content: '';
    display: inline-block;
    position: absolute;
    top: 5px;
    left: 0;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: solid 3px var(--orange-color);
}
.stepflow-black {
    content: '';
    display: inline-block;
    position: absolute;
    top: 5px;
    left: 0;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: solid 3px var(--orange-color);
}
.stepflow_label {
    padding: 8px 0px 8px 0px;
    margin-bottom:8px;
    color: var(--block-color);
    font-size: .8em;
    font-weight: bold;
}
.stepflow_title {
    font-size: 1.2em;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom:15px;
}
.stepflow_content {
    font-size: .9em;
    line-height: 1.5;
    margin-top: .5em;
    padding: 0 0 1.5em;
    border-bottom: dashed 1px var(--gray-color);
}


.text_box {
    margin:10px;
    border:1px solid var(--gray-color);
    padding:10px;
}

.text_box li ,.text_box2 li{
    list-style:none;
    text-indent: -1em;
    padding-left: 1em;
}


.exhibit_btn {
    margin:20px 0;
    width: 30%;
    text-align: center;
}

.exhibit_btn a {
    display: block;
    color: var(--white-color);
    padding: 20px;
    background: var(--pink-color);
    border: 1px solid var(--pink-color);
    transition: 0.8s;
    font-size: 18px;
}

.exhibit_btn a:hover {
    color: var(--pink-color);
    background: var(--white-color);
}

.car_price tr {
    width: 100%;
    border-top:1px solid var(--gray-color);
    border-right:1px solid var(--gray-color);
}

.car_price th ,.car_price td{
    width: 30%;
    border-bottom:1px solid var(--gray-color);
    border-left:1px solid var(--gray-color);
    padding:10px 5px;
    text-align: center;
}

.car_type {
    display: flex;
    justify-content:space-between;
}

.car_pic {
    width: 55%;
    margin-right: 20px;
}

.car_text {
    width: 40%;
}

.car_text .car_name {
    font-size: 16px;
    font-weight: bold;
}


.travel_list tr {
    width: 100%;
    border-top:1px solid var(--gray-color);
    border-right:1px solid var(--gray-color);
}

.travel_list th ,.travel_list td{
    width: 50%;
    border-bottom:1px solid var(--gray-color);
    border-left:1px solid var(--gray-color);
    padding:10px 5px;
    text-align: center;
}

.travel_list th {
    background: var(--gray-color);
    color: var(--white-color);
}

.travel_list td {
    background: var(--white-color);
}

.travel_list th.border {
    border-right:1px solid var(--lightgray-color);
}

.philosophy_title {
    text-align: center;
    font-weight:bold;
}



/* ===============================================
事業紹介
=============================================== */

.outline {
    padding:0 10px;
}

.business_summary tr {
    width: 100%;
    border-top:1px solid var(--gray-color);
    border-right:1px solid var(--gray-color);
}

.business_summary th {
    width: 20%;
    border-bottom:1px solid var(--gray-color);
    border-left:1px solid var(--gray-color);
    background: var(--lightgray-color);
    padding:15px;
    vertical-align: top;
}

.business_summary td {
    border-bottom:1px solid var(--gray-color);
    border-left:1px solid var(--gray-color);
    padding:15px;
    vertical-align: top;
}
.business_summary td img {
    max-width: 250px;
    margin-top: 20px;
}


/* ===============================================
各種申請
=============================================== */

.link {
    display: flex;
}

.link li {
    width: 22%;
    margin-right:10px;
}

.link li:last-child {
    margin-right:0px;
}

.link li a {
    display: block;
    border:1px solid var(--blue-color);
    padding:8px 10px 5px;
    text-align: center;
    transition:0.6s;
}

.link li a i {
    margin-left: 6px;
}

.link li a:hover {
    background: var(--blue-color);
    color: var(--white-color);
}



/* ===============================================
会員について
=============================================== */

.benefit_area {
    display: flex;
    flex-wrap: wrap;
}

.benefit_area .benefit_box {
    width : calc(100% / 3 - 36px);
    margin-right: 20px;
    margin-bottom: 20px;
    border:1px solid var(--gray-color);
    padding:10px;
    position: relative;
}

.benefit_area .benefit_box:nth-of-type(3n) {
    margin-right: 0;
}

.benefit_title {
    text-align: center;
    border-bottom:1px solid var(--gray-color);
}

.benefit_box a {
    margin-top:20px;
    float: right;
    width: 50%;
    text-align: center;
    display: block;
    background: var(--blue-color);
    color: var(--white-color);
    font-size:11px;
    padding:3px 5px;
}



/* ===============================================
投稿ページ single
=============================================== */

.single_content {
    padding:10px;
}

.info_area {
    display: flex;
    align-items:center;
    margin-bottom: 20px;
}

.info_area dt {
    width: 12%;
}

.info_area dd {
    margin-left:0;
}

.info_area dd a{
    display: block;
    padding:5px 20px;
    color: var(--white-color);
}

.single_content_area {
    margin-top: 30px;
    background: var(--lightgray-color);
    padding:20px;
}

.single_content_inner {
    padding:20px;
    background: var(--white-color);
}




























@media only screen and (max-width: 768px) {

.inner {
    max-width: 98%;
    margin:0 auto;
}

.side_user_point {
    /*font-size: 26px;*/
    font-size:17px;
}

.side_user_point span {
    font-size: 22px;
}

.side_go_mypage a {
    font-size: 11px;
    padding: 8px 5px;
}

.news_list dt {
    width: 18%;
}

.news_list .news_title {
    width: 50%;
}

.item_more th {
    width: 40%;
}

.item_more td {
    width: 60%;
}

.back_button a ,.soldout_button a {
    font-size: 12px;
}



.buy_button input[type="submit"] {
    font-size: 12px;
}

.wpcf7 form.sent .wpcf7-response-output {
    width: 260px;
}

.mypage td dl dt {
    width: 23%;
}

.mypage td dl dd {
    width: 70%;
}


.item_list .item_box {
    width : calc(100% / 3 - 36px);
}

.item_list .item_box:nth-of-type(3n) {
    margin-right: 0;
}

.item_list .item_box:nth-of-type(4n) {
    margin-right: 20px;
}

.onekari_tmb img {
    height: 130px;
}

.onekari_price ,.soldout{
    width: 100%;
}

.side_navi_area li a {
    font-size:11px;
}

.exhibit_btn {
    width: 50%;
}

.link li {
    width: 30%;
}

.logout {
    width: 40%;
}








}























@media only screen and (max-width: 420px) {

h1 {
    line-height: 63px;
}

h1 img {
    width: 70%;
}

#g-nav ul {
    top:20%;
    left:25%;
    transform: translate(-10%,-15%);
}

.main {
    display: block;
    width: 96%;
    margin: 0 auto;
}

.sidebar {
    display: none;
}


.sp {
    display: block;
}

footer p.footer_copy {
    font-size: 12px;
}

.overview_area{
    display: flex;
    justify-content:space-around;
    align-items:center;
    border: 1px solid var(--blue-color);
}

.user_name {
    font-size: 12px;
    text-align:center;
    padding:0 3px;
}

.user_point {
    /*font-size:36px;*/
    font-size:17px;
    line-height:1.2;
    color: var(--red-color);
}

.user_point span {
    font-size:30px;
    margin-left:3px;
}

.go_mypage a {
    text-align:center;
    font-size: 12px;
    display: block;
    background: var(--blue-color);
    color: var(--white-color);
    padding:3px 7px;
    line-height: 1.2;
}


.tab li a {
    font-size: 12px;
}

.tab li.active {
    margin: 0 3px 0px 3px;
}

.tab li {
    width: calc(100% / 3 - 5px);
    margin: 0 3px 3px 3px;
}

.news_tab {
    margin-right: 3px!important;
    margin-left:0!important;
}

.funding_tab{
    margin-right: 0!important;
    margin-left:3px!important;
}

.area.is-active {
    margin: 0 ;
}


.news_list {
    flex-wrap:wrap;
}

.news_list dt {
    width: 30%;
}

.news_list .category {
    width: 40%;
}

.news_list .news_title {
    width: 100%;
    margin-left: 0;
    margin-top: 10px;
}

#acf-field_66c80f75e1ba9 {
    width: 50%;
}

.item_area {
    display: block;
}

.item_pic ,.item_detail{
    width: auto;
    margin-bottom: 30px;
}

.gallery li img {
    height: 250px;
}

.contact_form th {
    display: block;
    width: auto;
    text-align: left;
    padding-top: 25px;
}

.contact_form td{
    display: block;
    width: auto;
}



.back_button a ,.buy_button input[type="submit"],.soldout_button a {
    font-size: 14px;
}

.wpcf7 form.sent .wpcf7-response-output {
    width: 93%;
}

.mypage {
    width: 96%;
}

.mypage th ,.mypage td {
    display: block;
    width: auto;
}

.mypage td dl dt {
    width: 40%;
}

.mypage td dl dd {
    width: 30%;
}


.item_list .item_box {
    width : calc(100% / 2 - 32px);
}

.item_list .item_box:nth-of-type(2n) {
    margin-right: 0;
}

.item_list .item_box:nth-of-type(3n) {
    margin-right: 20px;
}

.onekari_box {
    width : calc(100% / 3 - 14px);
}


.onekari_list .onekari_box:nth-of-type(3n) {
    margin-right: 0;
}

.onekari_list .onekari_box:nth-of-type(4n) {
    margin-right: 20px;
}

.onekari_tmb img {
    height: 96px;
}

.btn_icon {
    width : calc(100% / 4 - 8px);
    margin-right:10px;
    margin-bottom: 10px;
}

.btn_area .btn_icon:nth-of-type(5n) {
    margin-right: 10px;
}

.btn_area .btn_icon:nth-of-type(4n) {
    margin-right: 0;
}

.exhibit_btn {
    width: 100%;
}


.car_type {
    display: block;
}

.car_pic {
    width: auto;
    margin-right: 0px;
    margin-bottom: 10px;
}

.car_text {
    width: auto;
}

.car_text .car_name {
    text-align: center;
}

.carchare_form th {
    display: block;
    width: auto;
    text-align: left;
    padding-top: 25px;
}

.carchare_form td{
    width: auto;
}

.carchare_form td dt {
    width: 40%;
}

.active_button {
    width: 80%;
}

.business_summary th ,.business_summary td {
    display: block;
    width: auto;
}

.business_summary th {
    text-align: left;
}


.benefit_area {
    display: block;
}

.benefit_area .benefit_box {
    width : auto;
    margin-right: 0px;
}

.benefit_box a {
    float: none;

}

.info_area dt {
    width: 25%;
}

.single_content {
    padding: 0px;
}

.single_content_area {
    background: var(--white-color);
    padding: 0px;
}

.single_content_inner {
    padding: 0px;
}


.link {
    justify-content:space-between;
}

.link li {
    width: auto;
    margin-right:3px;
}

.link li a {
    font-size: 13px;
    border:0;
    padding:8px 5px 5px;
}

.logout {
    width: 50%;
}











}






