@charset "utf-8";

*{ box-sizing:border-box; }

button,label{ cursor:pointer; }

img{
    max-width:100%;
    height:auto;
}
.member img{
    width: 100%;
}

/* レスポンシブ
----------------------------------------------------------------------------- */
@media screen and (max-width: 768px) {
    .pc-only{ display: none !important; /* PCのみ表示 */ }
}
@media screen and (min-width: 769px) {
    .sp-only{ display: none !important; /* SPのみ表示 */ }
}


/* 分類：レイアウト
----------------------------------------------------------------------------- */
/* インナーレイアウト */
.inner{
    width:100%;
    max-width:1000px;
    margin-left: auto;
    margin-right: auto;
}
@media screen and (max-width:1000px){
    .inner{
        width:90%;
        margin: 0 auto;
    }
}

/* カラムレイアウト */
.col{
    width:100%;
    display:table;
}

/* ２カラム */
.col-2{
    display:table-cell;
    vertical-align:middle;
    width:50%;
}

/* ２カラム：サイドバー形式 */
.col-side{
    width:280px;
    display:table-cell;
    vertical-align:top;
    padding-right: 30px;
}
.col-main{
}
.col-side img{
    width: 100%;
}

@media screen and (max-width:768px){
    .col-side{
        padding-right: 0;
    }
    .col-main{
        margin-top: 20px;
    }
}

/* ３カラム */
.col-3{
    display:table-cell;
    vertical-align:top;
    width:calc(100% / 3);
}
@media screen and (max-width:768px){
    /* カラムレイアウト */
    .col{
        width:100%;
        display:block;
    }
    header .col{
        height: 60px;
    }
    /* ２カラム */
    .col-2{
        display:block;
        width:100% !important;
        padding-right:0 !important;
        padding-left:0 !important;
        margin-bottom:15px;
    }
    header .col-2{
        margin-bottom: 0;
    }
    /* ３カラム */
    .col-3{
        display:block;
        width:100% !important;
        padding-right:0 !important;
        padding-left:0 !important;
        margin-bottom:15px;
    }

    .col .col-2:last-child,
    .col .col-3:last-child{
        margin-bottom:0;
    }
}

/* 分類：サイドバーパーツ
----------------------------------------------------------------------------- */
.col-side-box{
    border:1px solid #ccc;
    border-radius: 5px;
    margin:0 0 20px;
    box-shadow: 0px 3px 0px 0px #f1f1f1;
}

/* タイトル */
.col-side-box-ttl{
    text-align:center;
    border-bottom: 1px solid #ccc;
    padding:10px;
    position: relative;
    font-weight:bold;
    background-color: #f1f1f1;
}
.col-side-box-ttl::after{
    display: inline-block;
    content:"";
    width:80px;
    height:4px;
    background: linear-gradient(90deg, rgba(79,143,208,1) 0%, rgba(164,235,194,1) 100%);
    position:absolute;
    left:calc(50% - 40px);
    bottom:-2px;
}

/* メイン */
.col-side-box-main{
    padding:10px;
}


/* 分類：文字・背景
----------------------------------------------------------------------------- */
/* 文字色 */


/* フォント */
.ff-min{
    font-family:"游明朝体", "Yu Mincho", YuMincho, "Sawarabi Mincho","Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif !important;
    font-weight:500 !important;
}

/* 強調テキスト */
.fc-strong{
    font-weight:bold;
    background: linear-gradient(transparent 30%, #fef6b2 30%);
    padding:0 5px;
}

.fc-red{ color:#d00; }
.fc-grey{ color:#bbb; }

/* 分類：インプット系
----------------------------------------------------------------------------- */
input[type="text"],
input[type="date"],
input[type="time"],
input[type="password"],
input[type="number"],
select,
textarea{
    font-family:inherit;
    font-size: inherit;
    border:1px solid #ccc;
    border-radius:3px;
    padding:5px 10px;
    -webkit-appearance: none;
}

select{
    cursor:pointer;
    padding-right:30px !important;
    background-image:url("/common/images/icn_select.png");
    background-repeat:no-repeat;
    background-size:10px 5px;
    background-position:right 10px center;
}
input[type="text"]{
    width:100%;
}
textarea{
    width:100%;
    min-height:100px;
    resize:vertical;
}
@media screen and (max-width: 1100px) {
    input[type="text"],
    input[type="date"],
    input[type="time"],
    input[type="password"],
    select,
    textarea{
        padding:5px;
        width: 100%!important;
    }
    input[type="date"]{
        -webkit-appearance: none;
        height: 35px;
    }
}


/* 分類：見出し
----------------------------------------------------------------------------- */
/* 大見出し */
.ttl-L{
    text-align: center;
    font-size:25px;
    font-weight:bold;
    letter-spacing: 2px;
    padding-bottom: 20px;
}
.ttl-L span{
    display: block;
    color:#d2d2d2;
    font-size:15px;
    font-weight: normal;
    padding:5px 0;
}
.ttl-L::after{
    content:"";
    width: 200px;
    height:2px;
    display:block;
    margin:10px auto 30px;
    background: #fd9700;
}

@media screen and (max-width:768px){
    .ttl-L{
        font-size:22px;
    }
    .ttl-L span{

    }
}

/* 中見出し */
.ttl-M{
    font-size:20px;
    font-weight: bold;
    vertical-align: middle;
    margin-bottom: 20px;
    border-left:3px solid #fd9700; 
    padding-left: 10px;
}

@media screen and (max-width:768px){
    .ttl-M{
        margin-top:20px;
        font-size: 18px;
    }
}

/* 小見出し */
.ttl-S{
    font-size:18px;
    font-weight: bold;
    margin:0 auto 20px;
}
@media screen and (max-width:768px){
    .ttl-S{

    }
}

/* 分類：テキスト
----------------------------------------------------------------------------- */
/* 一般テキスト */
.main p{

}
@media screen and (max-width:768px){
    .main p{

    }
}

/* 装飾 */
.txt-strong{
    background: linear-gradient(transparent 40%, #fff100 40%);
    padding: 0 5px;
}

/* 分類：ボックス
----------------------------------------------------------------------------- */



/* 分類：リンク
----------------------------------------------------------------------------- */
/* ボタン共通 */
.btn-normal,
.btn-submit,
.btn-cancel,
.btn-tel,
.btn-mail,
.btn-modal,
.btn-detail{
    font-size: 16px;
    letter-spacing: 1px;
    min-width: 250px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    display:inline-block;
    color:#fff;
    background-color: #fd9700;
    text-decoration: none;
    padding:0 20px;
    border-radius: 10px;
    position: relative;
    margin:0 5px;
}
.btn-normal:before,
.btn-submit:before,
.btn-cancel:before,
.btn-tel:before,
.btn-mail:before,
.btn-modal:before{
    font-family: "Font Awesome 5 Free";
    font-size: 15px;
    color: #fff;
    font-weight:900;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 0;
    top: 0;
    opacity: 0;
    height: 100%;
    width: 40px;
    transition: all 0.2s linear 0s;
}

.btn-normal:before,
.btn-submit:before{
    content: "\f061";
}
.btn-cancel:before{
    content: "\f00d";
    color:#9a9a9a;
}

.btn-modal{
    color: #fff;
    background-color: #fd9700;
}
.btn-modal:before{
    color:#333;
    content: "\f2d2";
}

.btn-tel,.btn-mail{
    background-color:#79cbdc;
}
.btn-tel:before{
    content: "\f2a0";
}
.btn-mail:before{
    content: "\f0e0";
}

.btn-normal:hover,
.btn-submit:hover,
.btn-cancel:hover,
.btn-tel:hover,
.btn-mail:hover,
.btn-modal:hover{
  text-indent: -20px;
}
.btn-normal:hover:before,
.btn-submit:hover:before,
.btn-cancel:hover:before,
.btn-tel:hover:before,
.btn-mail:hover:before,
.btn-modal:hover:before{
  opacity: 1;
  text-indent: 0px;
}

@media screen and (max-width:1000px){
    .btn-normal,
    .btn-submit,
    .btn-cancel {
        margin-bottom: 10px;
    }
    .btn-tel{
        margin-bottom:20px;
    }
}

/* 成約ボタン */
.btn-order{
    margin-top:10px;
}
.btn-order img{
    width:300px;
    height:auto;
    transition: all 0.2s linear 0s;
}
.btn-order:hover img{
    opacity:0.5;
}


@media screen and (max-width:768px){
    .btn-normal,
    .btn-submit,
    .btn-cancel{

    }
}

/* 通常リンクボタン（.btn-normal） */
.btn-normal{

}
.btn-normal:hover{

}
@media screen and (max-width:768px){
    .btn-normal{

    }
}

/* 通常ボタン小さめ（.btn-normal.is-S） */
.btn-normal.is-S{
    min-width: 120px;
    height: 30px;
    line-height: 30px;
    font-size:13px;
}

@media screen and (max-width:768px){
    .btn-normal.is-S{
        margin: 10px auto;
    }
}

/* キャンセル系ボタン（.btn-cancel） */
.btn-cancel,
.btn-detail{
    color:#9a9a9a;
    background-color:#ddd;
}
/* キャンセル系ボタン小さめ（.btn-cancel.is-S） */
.btn-cancel.is-S{
    min-width: 120px;
    height: 30px;
    line-height: 30px;
    font-size:13px;
}

.btn-detail{
    height: auto;
    line-height: revert;
    line-height: revert;
    padding: 5px 15px;
}


/* 目立たせたいボタン（.btn-L,.btn-S） */
.btn-L,
.btn-M
{
    background-color: #333;
    color:#fff;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    background-size: 200% auto;
    background-position: left center;
}
.btn-L:hover,
.btn-M:hover,
.btn-S:hover{
     background-position: right center;
}
.btn-L{
    width:600px;
    height:80px;
    line-height: 80px;
    font-size: 28px;
    box-shadow: 0px 0px 9.3px 0.7px rgba(100, 100, 100, 0.36);
    border-radius: 5px;
    font-weight: bold;
    letter-spacing: 2px;
}
.btn-M{
    padding: 10px 20px;
    border-radius: 5px;
    font-size:20px;
    font-weight: bold;
    letter-spacing: 2px;
    box-shadow: 0px 0px 9.3px 0.7px rgba(100, 100, 100, 0.36);

}
.btn-S{
    background: #000;
    width: 190px;
    height: 40px;
    line-height: 40px;
    border-radius: 5px;
    font-size: 15px;
    letter-spacing: 1px;
    color: #fff;
}

@media screen and (max-width:768px){
    .btn-M{
        min-width: 60%;
    }
}

/* 押せないバージョン */
.btn-L.is-disabled,
.btn-M.is-disabled,
.btn-S.is-disabled{
    opacity:0.5;
    pointer-events: none;
}

/* フォローボタン */
/*
※後で直す！
.btn-fav-on,
.btn-fav-off{
    font-size:15px;
    background-color: #eee;
    color:#ccc;
    width:40px;
    height:30px;
    border-radius: 10px;
    padding: 0 10px;
}
.btn-fav-on i,
.btn-fav-off i{
    font-size:18px;
    margin-right: 5px;
}
.btn-fav-on{
    background-color: #e8dd6a;
    color:#333;
}
.btn-fav-on i{
    color:#fff;
}
*/


/* 分類：ボタン
----------------------------------------------------------------------------- */


.btn-L{

}
@media screen and (max-width:768px){
    .btn-L{
        width: 100%;
        height: auto;
        font-size: 15px;
        line-height: 40px;
    }
}

/* 分類：テーブル
----------------------------------------------------------------------------- */
/* 詳細系テーブル */
.tbl-detail{
    background-color:#fff;
    width:100%;
    border:2px solid #EBE9E4;
    margin-bottom:30px;
}
.tbl-detail thead th{
    padding:10px;
    background:#333;
    color:#fff;
    border-right: 1px solid #ccc;
}
.tbl-detail tbody th,
.tbl-detail tbody td{
    border:1px solid #ebe9e3;
    padding:10px 15px;

}
.tbl-detail tbody th{
    background-color:#f9f9f6;
    font-weight:bold;
    vertical-align:top;
}
.tbl-detail tbody td{
    vertical-align:top;
    position: relative;
}

@media screen and (max-width:768px){
    .tbl-detail{
        margin-bottom:20px;
    }
    .tbl-detail tbody th,
    .tbl-detail tbody td{
        border:1px solid #ebe9e3;
        padding:5px 10px;
    }
    .tbl-detail tbody th{
        display:block;
        width:100% !important;
    }
    .tbl-detail tbody td{
        display:block;
        width:100% !important;
    }
    .tbl-detail tbody td:before{
        content: attr(date-label);
        display: block;
        font-weight: bold;
    }
    .tbl-detail thead{
        display: none;
    }
}

/* 詳細系テーブル */
.tbl-premium{
    width:100%;
}
.tbl-premium th,
.tbl-premium td{
    padding:15px;
    text-align: center;
    font-size:16px;
}
.tbl-premium thead th{
    font-weight: bold;
    font-size:20px;
    border:15px solid #fff;
}
.tbl-premium thead tr th:nth-child(2){
    color:#fff;
    background-color: #79cbdc;
}
.tbl-premium thead tr th:nth-child(3){
    background-color: #e8dd6a;
}
.tbl-premium tbody th{
    font-weight: bold;
    font-size:16px;
    width:20%;
    text-align: right;
}
.tbl-premium tbody tr{
    border-bottom: 1px solid #ddd;
}
.tbl-premium tbody tr:nth-child(even){
    background-color: #f4f3f1;
}
.tbl-premium tbody td{
    width:40%;
    padding:20px 15px;
}

@media screen and (max-width:768px){
    .tbl-premium caption{
        font-size: 20px;
        padding: 10px;
    }
    caption.tbl-premium-caption1{
        color: #fff;
        background-color: #79cbdc;
    }
    caption.tbl-premium-caption2{
        background-color: #e8dd6a;
    }
    .top-premium iframe{
        height:50%;
    }
    .tbl-premium tbody tr{
        align-items: center;
        display: flex;
    }
    .tbl-premium tbody th{
        font-size: 14px;
        width: 40%;
        text-align: left;
    }
    .tbl-premium tbody td{
        width: 60%;
    }
}

/* 一覧系テーブル */
.tbl-list{
    background-color:#fff;
    width:100%;
    border:2px solid #EBE9E4;
    margin-bottom:30px;
}
.tbl-list thead th{
    padding:10px;
    background:#333;
    color:#fff;
    border-right: 1px solid #ccc;
}
.tbl-list tbody th,
.tbl-list tbody td{
    border:1px solid #ebe9e3;
    padding:5px 10px;

}
.tbl-list tbody th{
    background-color:#f9f9f6;
    font-weight:bold;
    vertical-align:top;
}
.tbl-list tbody td{
    vertical-align:top;
    position: relative;
}
.tbl-list td .btn-normal,
.tbl-list td .btn-submit,
.tbl-list td .btn-cancel{
    display: inline-block;
    min-width: 50px;
    height:25px;
    line-height: 25px;
    border-radius: 5px;
    padding:0 10px;
    margin:0 2.5px;
    font-size:13px;
}
.tbl-list td .btn-normal::before,
.tbl-list td .btn-submit::before,
.tbl-list td .btn-cancel::before{
    display: none;
    text-indent: 0;
}
.tbl-list td .btn-normal:hover,
.tbl-list td .btn-submit:hover,
.tbl-list td .btn-cancel:hover{
    text-indent: 0;
}

/* 分類：リスト
----------------------------------------------------------------------------- */

/* お知らせリスト */
.list-news{

}
.list-news li a{
    display:block;
    border-bottom: 1px solid #b3b3b3;
    padding:15px 25px 15px 15px;
    text-decoration: none;
}
.list-news-date{
    font-weight: bold;
    margin-right: 10px;
}

@media screen and (max-width:768px){
    .list-news-date{
        display: block;
        padding-bottom: 5px;
        margin-right: 0;
    }
    .list-news li a{
        padding: 5px;
    }
}

/* 企業・ユーザーリスト */
.list-main{
    
}
.list-main li{
    width: 100%;
    display: table;
    margin:0 auto 50px;
    clear:both;
}
.list-main-img,
.list-main-txt{
    display: table-cell;
    vertical-align: top;
}
.list-main-img{
    width:150px;
    position: relative;
}
.list-main-img > span{
    position: absolute;
    color:#d00;
    z-index:3;
    top:5px;
    left:5px;
    display: inline-block;
    width:80px;
    height:30px;
    border: 2px solid #d00;
    background-color:rgba(224, 184, 184,0.5);
    text-align: center;
    font-weight: bold;
}
.list-main-img-count{
    text-align: center;
    padding-top:10px;
}
.list-main-img-count span{
    display: inline-block;
    background-color: #f6f5ea;
    border: none;
    font-size: 11px;
    height: 25px;
    line-height: 25px;
    border-radius: 0;
    padding: 0 5px;
    margin: 0 2.5px 5px;
}
.list-main-txt{
    padding-left:20px;
}
.list-main-txt-ttl{
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}
.list-main-txt-ttl span{
    font-size: 14px;
    padding-left: 10px;
    font-weight: normal;
    color:#999;
    vertical-align: middle;
}
.list-main-txt-info{
    border-bottom: 2px solid #eee;
    padding:0 10px 5px;
    margin-bottom: 10px;
}

.list-main-txt-tag{
    float:left;
    width:calc(100% - 200px);
}

.list-main-txt-btn{
    float:right;
    display: inline-block;
    padding-top:15px;
}
.list-main-txt-btn a,
.list-main-txt-btn button{
    min-width:180px;
    margin:0 5px 5px;
    height:50px;
    line-height:50px;
}

/* リスト用メモ */
.list-main-memo{
    
}
.list-main-memo textarea{
    min-height:50px;
    height:50px;
    font-size:13px;
    display: inline-block;
    width:60%;
    vertical-align: middle;
    margin-bottom: 10px;
    margin-right: 10px;
}
.list-main-memo button{
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 10px;
    height:50px;
    line-height: 50px;
    padding:0 15px;
    border-radius: 5px;
}

@media screen and (max-width:767px){
    .list-main{
        width:100%;
    }
    .list-main-img{
        width:60%;
    }
    .list-main li{
        display: block;
    }
    .list-main-img,
    .list-main-txt{
        display: block;
    }
    .list-main-img{
        margin:0 auto 10px;
    }
    .list-main-txt{
        padding-left:20px;
    }

    .list-main-txt-tag{
        float:none;
        width:100%;
    }

    .list-main-txt-btn{
        float:none;
        text-align: center;
        display: block;
        padding-top:0;
    }
}

/* ボックスリスト */
.list-box{
    margin-bottom: 50px;
}
.list-box li{
    border:1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0px 3px 0px 0px #f1f1f1;
    overflow: hidden;
    margin:0 0 20px;
}
.list-box li>a{
    text-decoration: none;
    display:block;
}
.list-box-ttl{
    padding:10px;
    position:relative;
    text-align: center;
}
.list-box-ttl i{
    font-size:16px;
    margin:0 20px;
}
.list-box-ttl::before{
    display: inline-block;
    font-family: "Font Awesome 5 Free";
    font-size: 20px;
    font-weight:900;
    margin-right: 10px;
}
.is-truck .list-box-ttl{
    border-bottom: 3px solid #79cbdc;
}
.is-truck .list-box-ttl::before{
    content:"\f0d1";
    color:#79cbdc;
}
.is-item .list-box-ttl{
    border-bottom: 3px solid #e8dd6a;
}
.is-item .list-box-ttl::before{
    content:"\f466";
    color:#e8dd6a;
}

.list-box li:hover .list-box-ttl::after{
    opacity: 1;
    text-indent: 0px;
}

.list-box-main{
    padding: 10px;
}
.list-box-main span{
    display: inline-block;
    margin-right: 5px;
    border:1px solid #ccc;
    padding:0 15px;
    height: 30px;
    line-height: 30px;
    border-radius: 15px;
    margin-bottom: 10px;
}
.list-box-main span i{
    margin-right: 5px;
    font-size:18px;
}
.list-box-main span.is-recommend{
    background-color: #eb6877;
    border:1px solid #eb6877;
    color:#fff;
}
.list-box-main span.is-new{
    background-color: #f6b37f;
    border:1px solid #f6b37f;
    color:#fff;
}
.list-box-main span.is-pickup{
    background-color: #56c4f0;
    border:1px solid #56c4f0;
    color:#fff;
}
.list-box-main span.is-hurry{
    background-color: #e8dd6a;
    border:1px solid #e8dd6a;
}
.list-box-main span.is-decide{
    background-color: #8ad1eb;
    border:1px solid #8ad1eb;
}
.list-box-main span.is-end{
    text-align: center;
    border-radius: 0;
    background-color: #dee2e3;
    border:1px solid #dee2e3;
}

.list-box-main-btn{
    text-align: center;
}
.list-box-main-btn a,
.list-box-main-btn button{
    display: inline-block !important;
    min-width: 200px;
}

.list-box-bottom{
    background-color: #f5f5f5;
    padding:5px 10px;
    text-align: right;
    width:100%;
    vertical-align: middle;
}
.list-box-bottom-img{
    display: inline-block;
    width:40px;
    height: 40px;
    border-radius:20px;
    overflow:hidden;
    position:relative;
    margin-right: 5px;
    margin-bottom:-5px;
}
.list-box-bottom a{
    display: inline-block;
    text-decoration: none;
}
.list-box-bottom-img img{
    position:absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    max-width: 99999px;
    width: auto;
    height: 100%;
}
.list-box-bottom-img span{

}

.list-box-button{
    background-color: #f5f5f5;
    padding:10px;
    text-align: center;
}

@media screen and (max-width:767px){
    .list-box-main span{
    font-size: 10px;
    height: 20px;
    line-height: 20px;
    padding: 0 10px;
    }
    .list-box-bottom{
        font-size: 10px;
    }
}

/* 選択肢リスト（ラベルタイプ） */
.list-label{

}
.list-label li{
    display:inline-block;
}
.list-label li label{
    display: block;
    background-color: #fff;
    color: #bbb;
    padding: 0 15px;
    text-align: left;
    border:1px solid #ccc;
    height:40px;
    line-height:40px;
    border-radius: 20px;
    margin:0 10px 10px 0;
}
.list-label li input{
    display: none;
}
.list-label li .is-checked{
    color: #333;
    font-weight: bold;
}

/* ３カラムラベルリスト */
.list-label-3col li{
    width:32%;
    font-size: 13px;
}
@media screen and (max-width:767px){
    .list-label-3col li{
        width:100%;
    }
}

/* フォローリスト */
.list-follow{

}
.list-follow li{
    display: table;
    width:100%;
    border-bottom:1px solid #ccc;
    padding:15px;
}
.list-follow-img,
.list-follow-txt,
.list-follow-btn{
    display: table-cell;
    vertical-align: top;
}
.list-follow-img{
    width:120px;
}
.list-follow-img a{
    display: block;
    width: 100px;
    height: 100px;
    border-radius: 50px;
    overflow: hidden;
    position: relative;
}
.list-follow-img a img{
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    max-width: 99999px;
    width: auto;
    height: 100%;
}
.list-follow-txt{

}
.list-follow-txt-ttl{
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}
.list-follow-txt-ttl a{
    text-decoration: none;
}
.list-follow-btn{
    vertical-align:middle;
    width:160px;
    text-align:right;
}

@media screen and (max-width:767px){
    .list-follow li{
        display: block;
    }
    .list-follow-txt{
        display: block;
        margin-bottom: 10px;
    }
}


/* 分類：検索ボックス
----------------------------------------------------------------------------- */
.box-search{
    margin: 0 0 35px 0;

}

/* エリア */
.box-search-area-box{
    background-color:#fff;
    border-radius: 5px;
    display:none;
}
.box-search-area-box:nth-child(1){
    display:block;
}
.box-search-area-box-ttl{
    padding:10px 20px;
    color:#fff;
    border-radius: 5px;
    font-size:18px;
    font-weight: bold;
}

@media screen and (max-width:767px){
    .box-search{
        margin-top: 20px;
    }
}


/* 選択中エリア */
.box-search-area-select dl{
    width:100%;
}
.box-search-area-select dl dt{
    vertical-align: middle;
    width:100%;
    background-color: #37404f;
    color:#fff;
    text-align:center;
    font-size:15px;
    font-weight:bold;
    position: relative;
    padding:5px;
    border-radius: 5px 5px 0 0 / 5px 5px 0 0;
}
.box-search-area-select dl dt::after{
    content: "";
    width:12px;
    height: 6px;
    background-image: url("/company/images/img_arr.png");
    background-repeat: no-repeat;
    background-size:12px 6px;
    display: inline-block;
    position:absolute;
    left:calc(50% - 6px);
    bottom:-6px;
}
.box-search-area-select dl dd{
    /*width:calc(50% - 120px);*/
    padding:15px;
    font-size:14px;
    background-color: #fff;
    border-radius:  5px;
}

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

}

/* ラベル */
.box-search-area-type{
    margin-bottom: 50px;
}
.box-search-area-type li{

}
.box-search-area-type li input{
    display:none;
}
.box-search-area-type li{
    display: inline-block;
    margin:0 5px 10px;
}
.box-search-area-type li input{
    display: none;
}
.box-search-area-type li label{
    display:block;
    background-color:#fff;
    color:#bbb;
    padding:0 15px;
    text-align: left;
    border:1px solid #ccc;
    height:40px;
    line-height: 40px;
    border-radius: 20px;
}
.box-search-area-type li label i{
    margin-right: 5px;
}
.box-search-area-type li input[type="checkbox"]:checked + label{
    border:1px solid #37404f;
    color:#fff;
    background-color:#37404f;
}

.box-search .tbl-detail td label{
    display: inline-block;
    margin-right: 10px;
}

/* フォローボックス */
.box-follow{
    display: table;
    width: 100%;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    padding: 20px 0;
    margin-bottom: 50px;
}
.box-follow-L,
.box-follow-R{
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}
.box-follow-L{
    border-right: 1px solid #ccc;
    width: 40%;
}
.box-follow-R{
    width:60%;
}
.box-follow-R ul{

}
.box-follow-R ul li{
    display: inline-block;
    font-size: 12px;
    padding: 0 15px;
}
.box-follow-R ul li span{
    font-size: 20px;
    font-weight: bold;
}
.box-follow-img{
    width: 150px;
    height: 150px;
    border-radius: 75px;
    overflow: hidden;
    margin: 0 auto 30px;
    position: relative;
}
.box-follow-img img{
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    max-width: 99999px;
    width: auto;
    height: 100%;
}

@media screen and (max-width:767px){
    .box-follow{
        display: block;
    }
    .box-follow-L{
        display: block;
        width: 100%;
        border-right: none;
        margin-bottom: 10px;
    }
    .box-follow-R{
        display: block;
        width: 100%;
    }
}

/* 企業連絡先ボックス */
.box-contact{
    background-color: #f6f6f6;
    border-radius: 5px;
    margin-bottom: 50px;
    display: table;
    width:100%;
    padding:20px 0;
}
.box-contact-address,
.box-contact-tel{
    display: table-cell;
    width:50%;
    padding:20px;
    vertical-align: top;
    font-size: 16px;
    line-height: 2.0;
}
.box-contact-address{
    border-right: 2px solid #fff;
}
.box-contact-tel{
    text-align: center;
}
.box-contact-tel a{
    font-size: 25px;
    font-weight: bold;
    text-decoration: none;
}
.box-contact-address span,
.box-contact-tel span{
    display: block;
    margin:-65px auto 10px;
    width:60px;
    height:60px;
    border-radius: 30px;
    font-size: 30px;
    line-height: 60px;
    text-align: center;
}
.box-contact-address span{
    color: #fff;
    background-color: #79cbdc;
}
.box-contact-tel span{
    background-color: #e8dd6a;
}

@media screen and (max-width:1000px){
    .box-contact-address,
    .box-contact-tel{
        width: 100%;
        display: block;
    }
    .box-contact-address{
        margin-bottom: 50px;
        text-align: center;
    }
}
@media screen and (max-width:767px){
    .box-contact{
        display: block;
    }
}


/* 注意文、エラーボックス */
.box-error{
    color:#4d2626;
    border:1px solid #e6b8b8;
    padding:10px;
    background-color: #ffe6e6;
    font-size: 13px;
}

.box-notice{
    border:1px solid #9bc94b;
    padding:10px;
    background-color: #ebf2df;
    font-size: 12px;
}

/* 一括選択ボックス */
.box-all{
    margin: 0 0 10px;
    text-align: right;
}
.box-all button,
.box-all select{
    height:35px;
    line-height: 35px;
    padding-top: 0;
    padding-bottom: 0;
}
.box-all button{
    min-width: 150px;
    width: 150px;
}

/* 分類：スライダー
----------------------------------------------------------------------------- */
/* カルーセル形式 */
.slider-normal{
    margin-bottom:30px;
}
.slider-normal li{
    padding:0 15px 30px;
}
.slider-normal li a{
    display:block;
    box-shadow: 0px 2px 6.72px 0.28px rgba(204, 204, 204, 0.8);
    background-color: #fff;
    text-decoration:none;
}

.slider-normal li a .slider-normal-img{
    position:relative;
    margin-bottom:0;
    height:200px;
    overflow:hidden;
}

.slider-normal li a .slider-normal-img img{
    width:100%;
    height:auto;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.slider-normal li a .slider-normal-img .tag-green,
.slider-normal li a .slider-normal-img .tag-orange,
.slider-normal li a .slider-normal-img .tag-pink{
    position:absolute;
    left:-10px;
    bottom:0;
    z-index:7777;
}

.slider-normal li a .slider-normal-txt{
    padding:15px;
    margin-bottom:0;
}
@media screen and (max-width:768px){
    .slider-normal{
        margin-bottom:20px;
    }
    .slider-normal li{
        padding:0 5px 5px;
    }

    .slider-normal li a .slider-normal-img{
        position:relative;
        margin-bottom:0;
        height:160px;
    }
    .slider-normal li a .slider-normal-img .tag-green,
    .slider-normal li a .slider-normal-img .tag-orange,
    .slider-normal li a .slider-normal-img .tag-pink{
        left:-5px;
    }
    .slider-normal li a .slider-normal-txt{
        padding:10px;
    }
}

/* カルーセル形式：コントローラー */
.slider-normal .slick-prev,
.slider-normal .slick-next{
    position:absolute;
    top:calc( 50% - 70px);
    width:40px;
    height:40px;
    font-size:0;
    border:none;
    background-size:100% auto;
    z-index:8888;
}
.slider-normal .slick-prev{
    left:-50px;
    background-image:url("/common/images/slider_prev.png");
}
.slider-normal .slick-next{
    right:-50px;
    background-image:url("/common/images/slider_next.png");
}
.slider-normal .slick-dots{
    text-align:center;
}
.slider-normal .slick-dots li{
    display:inline-block;
}
.slider-normal .slick-dots li button{
    color:rgba(0,0,0,0);
    width:15px;
    height:15px;
    border:none;
    background-color:#bfbfbf;
    border-radius:7.5px;
    font-size:0;
}
.slider-normal .slick-dots li.slick-active button{
    background-color:#79cbdc;
}
@media screen and (max-width:768px){
    .slider-normal .slick-prev{
        left:-15px;
    }
    .slider-normal .slick-next{
        right:-15px;
    }
}

/* ギャラリー形式 */
.slider-gallery{
    width:100%;
    max-width: 600px;
    margin:0 auto 30px;
}
.slider-gallery .fotorama__wrap{
    margin:0 auto;
}
.slider-gallery .fotorama__thumb-border{
    border-color:#79cbdc;
}
.slider-gallery .fotorama__arr{
    width:40px;
    height:40px;
    background-size:100% auto;
    background-position:left top !important;
}

.slider-gallery .fotorama__arr--next{
    background-image:url("/common/images/slider_next.png") !important;
    right:10px;
}
.slider-gallery .fotorama__arr--prev{
    background-image:url("/common/images/slider_prev.png") !important;
    left:10px;
}
@media screen and (max-width:768px){
    .slider-gallery{
        margin:0 auto 20px;
    }
    .slider-gallery .fotorama__arr--next{
        right:0;
    }
    .slider-gallery .fotorama__arr--prev{
        left:0;
    }
}

/* 分類：タグ
----------------------------------------------------------------------------- */
.tag{
    display:inline-block;
    min-width: 100px;
    height:30px;
    line-height: 30px;
    text-align:center;
    border-radius: 15px;
    padding:0 10px;
    margin-left:10px;
    background-color:#79cbdc;
    color:#fff;

}

.tag-normal,
.tag-red,
.tag-orange,
.tag-yellow{
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    padding: 0 15px;
    height: 30px;
    line-height: 30px;
    border-radius: 15px;
}

.tag-red{
    background-color: #eb6877;
    border: 1px solid #eb6877;
    color: #fff;
}
.tag-orange{
    background-color: #f6b37f;
    border: 1px solid #f6b37f;
    color: #fff;
}
.tag-yellow{
    background-color: #e8dd6a;
    border: 1px solid #e8dd6a;
}


/* 分類：ページャー
----------------------------------------------------------------------------- */
.pager{
    text-align:center;
    margin:0 auto 30px;
    padding-top:30px;
}

.pager li{
    display:inline-block;
    margin:0 7.5px;
}
.pager li a{
    display:block;
    width:35px;
    height:35px;
    line-height:35px;
    text-decoration:none;
    background-color:#fff;
    border-radius:3px;
    vertical-align:middle;
    text-align:center;
    font-weight:bold;
}
.pager li a:hover,
.pager li.is-current a{
    background-color:#fd9700;
    color:#fff;
}
@media screen and (max-width:768px){
    .pager{
        margin:0 auto 20px;
    }
    .pager li{
        margin:0 4px 5px;
    }
    .pager li a{
        display:block;
        width:30px;
        height:30px;
        line-height:30px;
    }
}

/* 分類：記事詳細系
----------------------------------------------------------------------------- */
.article{
    margin-bottom:80px;
}
@media screen and (max-width:768px){

}

/* 記事タイトル */
.article-ttl{
    border-bottom: 1px solid #d7d3d0;
    padding:15px;
    margin:0 auto 15px;
    font-size:20px;
    font-weight:bold;
}
@media screen and (max-width:768px){
    .article-ttl{
        padding:10px;
        margin:0 auto 15px;
        font-size:18px;
    }
}

/* 代表画像 */
.article-thumb{
    text-align:center;
    padding-bottom:20px;
}
.article-thumb img{
    max-width:500px;
    height:auto;
}
@media screen and (max-width:768px){

}

/* 記事情報 */
.article-info{
    text-align:right;
}
.article-info-date{
    display:inline-block;
}
@media screen and (max-width:768px){

}

/* 記事本文 */
.article-body{
    padding:15px;
}
@media screen and (max-width:768px){
    .article-body{
        padding:10px;
    }
}

/* 記事画像 */
.article-img{
    text-align:center;
    margin-bottom:20px;
}
.article-img img{
    max-width:500px;
    width:100%;
    height:auto;
}
@media screen and (max-width:768px){
}

/* 分類：モーダルウィンドウ
----------------------------------------------------------------------------- */
.modal{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100vh;
    background-color:rgba(0,0,0,0.5);
    z-index:99999;
    overflow:hidden;
}
.modal-window{
    position:absolute;
    top:0;
    left:0;
    right: 0;
    bottom:0;
    margin:auto;
    width:950px;
    height:70vh;
    background-color:#fff;
    border-radius: 5px;
    box-shadow:0px 0px 8px -1px rgba(0,0,0,0.5);
}

.modal-window-ttl{
    text-align: center;
    font-size:18px;
    border-bottom: 1px solid #ccc;
    padding: 15px;
    position: relative;
    font-weight: bold;
    background-color: #f1f1f1;
    border-radius:5px 5px 0px 0px;
    height: 60px;
}
.modal-window-ttl::after{
    display: inline-block;
    content: "";
    width: 80px;
    height: 4px;
    background: #fd9700;
    position: absolute;
    left: calc(50% - 40px);
    bottom: -2px;
}

.modal-window-main{
    height:calc(70vh - 130px);
    overflow: scroll;
    padding:15px;
}

.modal-window-footer{
    position:absolute;
    left:0;
    bottom:0;
    text-align: center;
    padding:10px;
    width: 100%;
    background-color:#f5f5f5;
    border-radius:0px 0px 5px 5px;
    height:70px;
}

@media screen and (max-width:1000px){
    .modal-window{
        width: 90%;
        height: 80%;
    }
    .modal-window-main{

    }
    .box-search-area-box-list li span{
        width: 100%;
    }
}
/* 画像アップローダー
----------------------------------------------------------------------------- */
.upload{
    display:inline-block;
    position:relative;
    margin:0 10px 10px 0;
}

/* プレビューエリア */
.upload-preview{
    display:block;
    border:5px solid #eee;
    width:250px;
    height:250px;
    background-image:url("/common/images/noimage.png");
    background-repeat:no-repeat;
    background-position:center center;
    background-size:100% auto;
    cursor:pointer;
    overflow:hidden;
    position:relative;
}
.upload-preview img{
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: auto;
    max-width:99999px;
    height: 100%;
}

.upload-input{
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    text-align:center;
    padding:10px;
}
.upload-input button{
    display: inline-block;
    margin: 0 5px 5px;
    border-radius: 3px;
    padding: 5px 10px;
    font-size: 14px;
    box-shadow: 0px 1px 0px 1px #bbb;
    border:none;
    font-family:inherit;
}
.upload-input-file-btn{
    background-color: #333;
    color: #fff;
}
.upload-clear{
    background-color:#ccc;
    color:#444;
}

/* PDFアップローダー */
.upload.is-pdf{
    margin:0 !important;
}
.upload.is-pdf .upload-input{
    position:relative !important;
    padding:0 !important;
}
.upload-input-file-name{
    font-size:13px;
}

/* 企業検索ボックス（汎用）
----------------------------------------------------------------------------- */
.company-search{
    margin-bottom: 50px;
}

.company-search dl{
    display: table;
    width: 100%;
    margin-bottom: 30px;
}
.company-search dt,
.company-search dd{
    display: table-cell;
    vertical-align: bottom;
}
.company-search dt p{
    color:#999;
    font-size:13px;
    margin-bottom: 5px;
}
.company-search dt input{
    border:3px solid #FFD57A;
    border-radius: 5px;
    padding:10px;
}
.company-search dd{
    width:280px;
    text-align: right;
}
@media screen and (max-width:768px){
    
    .company-search{
        width:100%;
        margin-bottom: 50px;
    }

    .company-search dl{
        display: block;
        margin-bottom: 30px;
    }
    .company-search dt,
    .company-search dd{
        display: block;
    }
    .company-search dt{
        margin-bottom: 15px;
    }
    .company-search dt p{
        font-size:12px;
    }
    .company-search dd{
        width:100%;
        text-align: center;
    }
    
}

/* 親タブ */
.company-search > .tab > .tab-btn li{
    display: inline-block;
    float:left;
    background-color: #eee;
    margin-right: 3px;
    padding:10px 20px;
    min-width:160px;
    text-align: center;
    cursor:pointer;
    font-size: 14px;
}
.company-search > .tab > .tab-btn li.is-current{
    background-color: #FFD57A;
}
.company-search > .tab > .tab-main{
    border:5px solid #FFD57A;
    padding:20px;
    margin-bottom: 20px;
}
@media screen and (max-width:768px){
    .company-search > .tab > .tab-btn li{
        padding:10px 5px;
        font-size: 12px;
        min-width:80px;
    }
    .company-search > .tab > .tab-main{
        padding:10px;
    }
}

/* 子タブ */
.company-search .tab .tab{
    width: 100%;
    display: table;
}
.company-search .tab .tab .tab-btn,
.company-search .tab .tab .tab-main{
    display: table-cell;
    vertical-align: top;
}

.company-search .tab .tab .tab-btn{
    width:250px;
    padding-right: 30px;
}
.company-search .tab .tab .tab-btn li{
    padding:5px 10px;
    font-size:13px;
    cursor:pointer;
    position: relative;
}
.company-search .tab .tab .tab-btn li.is-current{
    background-color:#FFD57A;
}
.company-search .tab .tab .tab-btn li.is-current::after{
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 5px 6px;
    border-color: transparent transparent transparent #FFD57A;
    top:calc(50% - 5px);
    right: -6px;
}
.company-search .tab .tab .tab-main{
    border-left: 1px solid #ddd;
    padding: 0 20px;
}
.company-search .company-search-lbl li{
    display: inline-block;
    width: 50%;
    vertical-align: top;
    float:left;
    padding-left: 15px;
    font-size:13px;
}
.company-search .company-search-lbl li:first-child{
    width: 100% !important;
    padding-left:0;
}
.company-search .company-search-lbl li:nth-child(2n){
    clear:left;
}
.company-search .company-search-lbl li label{
    display: block;
}
.company-search .company-search-lbl li label input[type="checkbox"]{
    width: 18px;
    height:18px;
    vertical-align: middle;
    margin-right: 10px;
}

.company-footer-btn{
    text-align: center;
}

@media screen and (max-width:768px){
    .company-search .tab .tab{
        display: block;
    }
    .company-search .tab .tab .tab-btn,
    .company-search .tab .tab .tab-main{
        display: block;
    }

    .company-search .tab .tab .tab-btn{
        width:100%;
        padding-right: 0;
    }
    .company-search .tab .tab .tab-btn li{
        padding:5px 10px;
        cursor:pointer;
        position: relative;
    }
    .company-search .tab .tab .tab-btn li.is-current{
        background-color:#FFD57A;
    }
    .company-search .tab .tab .tab-btn li.is-current::after{
        display: none;
    }
    .company-search .tab .tab .tab-main{
        border-left: none;
        padding: 10px 0;
        border-top:1px solid #ddd;
    }
    .company-search .company-search-lbl li{
        display: block;
        width: 100%;
        float:none;
        padding-left: 10px;
    }
    .company-search .company-search-lbl li label{
        padding:0;
        font-size:13px;
    }
}

/* 分類：ツールチップ
----------------------------------------------------------------------------- */
.tip-help{
    background-color:transparent;
    position: relative;
}
.tip-help i{
    font-size:18px;
}
.tip-help span{
    position:absolute;
    bottom:40px;
    left:-150px;
    width:300px;
    font-size:13px;
    line-height: 20px;
    text-align: left;
    z-index:9999;
    padding:20px;
    color:#333;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
    display: none;
    
    background-color: rgba(237, 228, 149,0.9);
}
.tip-help:hover span{
    bottom:40px;
    display: block;
}
.tip-help span::after{
    content:"";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 10px 0 10px;
    border-color: rgba(237, 228, 149,0.9) transparent transparent transparent;
    position: absolute;
    bottom:-10px;
    left:155px;
}