@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のみ表示  }
}*/

/* 分類：ローディング
----------------------------------------------------------------------------- */
.loading{
    position:fixed;
    width:100%;
    height:100vh;
    z-index:599999999;
    top:0;
    left:0;
    background-color: rgba(255,255,255,0.5);
}
.loading img{
    position:absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    margin:auto;
}

/* 分類：レイアウト
----------------------------------------------------------------------------- */
/* インナーレイアウト */
.inner{
    width:100%;
    max-width:1200px;
    margin-left: auto;
    margin-right: auto;
}
.flex-box{
    display: flex;
    align-items: center;
    justify-content: center;
}
.flex-box-list{
    display: flex;
    align-items: center;
}

@media screen and (max-width:1000px){
    .inner{
        width:90%!important;
        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!important;
    }
    /* ２カラム */
    .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-gray{ color:#bbb; }
.fc-orange{ color:#fa8e4b!important; }
.fc-white{ color:#fff!important; }
.fc-yellow{ color:#ffd700!important; }
.fc-black{ color:#000!important; }
.fc-pink{ color:#ff78b0!important; }
.fc-blue{ color:#32adfa!important; }

/* 背景色 */

.bg-blue{ background: #4bb7fa!important; }
.bg-green{ background: #06c755!important; }
.bg-pink{ background: #ff78b0!important; }
.bg-orange{ background: #ffa500!important;}
.bg-green{ background:#f0fff0!important; }
.bg-purple{ background: #b174fc!important; }
.bg-gray{ background:#bbb!important; }

/* 分類：インプット系
----------------------------------------------------------------------------- */
input[type="text"],
input[type="date"],
input[type="time"],
input[type="password"],
input[type="number"],
input[type="datetime-local"],
select,
textarea{
    font-family:inherit;
    font-size: inherit;
    border:1px solid #ccc;
    border-radius:3px;
    padding:10px;
    -webkit-appearance: none;
    outline:none;
}
input[type="text"],
input[type="date"],
input[type="time"],
input[type="password"],
input[type="number"],
input[type="datetime-local"],
select{
    height:40px;
}
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;
    width: 35%;
    background-color: #FFFFCC;
    font-size: 15px;
}
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"],
    input[type="number"],
    select,
    textarea{
        padding:5px;
        width: 100%!important;
    }
    input[type="date"]{
        -webkit-appearance: none;
        height: 35px;
    }
}


/* 分類：見出し
----------------------------------------------------------------------------- */
/* 大見出し */
/*.ttl-L{
    font-family: serif;
    font-size: 40px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 2px;
    color: #000;
    position: relative;
    line-height: 1.2;
}
.ttl-L::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    width: 1px;
    height: 50px;
    margin: auto;
    background-color: #32adfa;
}
.ttl-L span{
    display: block;
    color:#32adfa;
    font-size: 25px;
}

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

 中見出し 
.ttl-M{
    font-size: 30px;
    font-weight: bold;
    border-left: 5px solid #32adfa;
    padding-left: 15px;
}

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

 小見出し 
.ttl-S{
    font-size:18px;
    font-weight: bold;
    margin:10px auto;
}
@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;
}

.txt-bold{
    font-weight:bold;
}

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


/* 分類：リンク
----------------------------------------------------------------------------- */
/* ボタン共通 */
.btn-normal,
.btn-copy,
.btn-app,
.btn-submit,
.btn-cancel,
.btn-tel,
.btn-mail,
.btn-modal,
.btn-detail{
    font-size: 14px;
    letter-spacing: 1px;
    min-width: 250px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    display:inline-block;
    color:#fff;
    background-color: #8ad2ff;
    text-decoration: none;
    position: relative;
    margin:0 5px;
    border-radius: 10px;
}
.btn-normal:before,
.btn-copy:before,
.btn-app: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: "\f054";
}
.btn-copy:before{
    content: "\f0c5";
}
.btn-app:before{
    content: "\f00c";
}
.btn-cancel:before{
    content: "\f00d";
    color:#9a9a9a;
}
.btn-copy{
    background: #537e99;
}
.btn-app{
    background: #6ea8cc;
}
.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-copy:hover,
.btn-app:hover,
.btn-submit:hover,
.btn-cancel:hover,
.btn-tel:hover,
.btn-mail:hover,
.btn-modal:hover{
  text-indent: -20px;
}
.btn-normal:hover:before,
.btn-copy:hover:before,
.btn-app: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;
}
.btn-submit{
    background: #b174fc;
}
.btn-plus{
    border: none;
    font-size: 10px;
}

.btn-main{
    background-color: #ff99cc;
    color: #fff;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    background: linear-gradient(45deg, #f78fbe 0%,#f4e997 43%,#f78fbe 89%,#f78fbe 89%,#f78fbe 100%);
    background-size: 200% auto;
    background-position: right center;
    border-radius: 30px;
}


@media screen and (max-width:1000px){
    .btn-normal,
    .btn-copy,
    .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,
.btn-copy.is-S{
    min-width: 100px;
    height: 30px;
    line-height: 30px;
    font-size:13px;
}

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

.is-M{
    min-width: 200px;
    height: 30px;
    line-height: 30px;
    font-size:13px;    
}

/* キャンセル系ボタン（.btn-cancel） */
.btn-cancel,
.btn-detail{
    color:#9a9a9a;
    background-color:#ddd;
}
/* キャンセル系ボタン小さめ（.btn-cancel.is-S） */
.btn-cancel.is-S,
.btn-app.is-S{
    min-width: 100px;
    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: #fff;
    color:#8ad2ff;
    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: 20px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 2px;
    width: 300px;
}
.btn-S{
    width: 30px;
    height: 30px;
    border-radius: 5px;
    font-size: 15px;
    letter-spacing: 1px;
    color: #fff;
}


@media screen and (max-width:768px){
    .btn-L{
        width: 250px;
        font-size: 15px;
        height: 50px;
        line-height: 50px;
    }
    .btn-M{
        font-size: 10px;
        padding: 10px;
    }
}

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

.list-detail{
    font-size:16px;
    width:70px;
    border: none;
    background-color:rgba(0,0,0,0);
    border-bottom: solid 1px red;
    margin-right: 12px;
}

/* 分類：テーブル
----------------------------------------------------------------------------- */
/* 一覧系テーブル */
.tbl-list{
    font-size: 13px;
    width:100%;
    white-space:nowrap;
}
.tbl-list thead th{
    padding: 5px;
    vertical-align: middle;
    padding:10px;
    background:#333;
    color:#fff;
    border: 1px solid #ccc;
}
.tbl-list tbody th,
.tbl-list tbody td{
    text-align: left;
    border:1px solid #ebe9e3;
    padding:5px;
    font-size: 15px;
}
.tbl-list tbody th{
    font-weight:bold;
    vertical-align:middle;
}
.tbl-list tbody td{
    font-size: 13px;    
    position: relative;
    vertical-align:middle;
}

@media screen and (max-width:768px){
    .tbl-list{
        margin-top: 40px;
    }
    .tbl-list tbody th,
    .tbl-list tbody td{
        padding:5px 10px;
        font-size: 15px;
    }
    .tbl-list tbody th{
        display:block;
        width:100% !important;
    }
    .tbl-list tbody td{
        display:block;
        width:100% !important;
    }
    .tbl-list tbody td:before{
        content: attr(date-label);
        display: block;
        font-weight: bold;
    }
    .tbl-list thead{
        display: none;
    }
    .tbl-list tr td input:first-child{
        margin-bottom: 10px;
    }
}

/* 詳細系テーブル */
.tbl-detail{
    font-size: 13px;
    width:100%;
    margin-bottom:30px;
}
.tbl-detail thead th{
    padding: 5px;
    vertical-align: middle;
    padding:10px;
    background:#333;
    color:#fff;
    border-right: 1px solid #ccc;
}
.tbl-detail tbody th,
.tbl-detail tbody td{
    text-align: left;
    border-bottom:1px solid #ebe9e3;
    padding:5px;
    font-size: 15px;
}
.tbl-detail tbody th{
    font-weight:bold;
    vertical-align:middle;
}
.tbl-detail tbody td{
    font-size: 13px;    
    position: relative;
    vertical-align:middle;
}

@media screen and (max-width:768px){
    .tbl-detail{
        margin-top: 40px;
    }
    .tbl-detail tbody th,
    .tbl-detail tbody td{
        padding:5px 10px;
        font-size: 15px;
    }
    .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-detail tr td input:first-child{
        margin-bottom: 10px;
    }
}
.tbl-scroll{
    overflow-x:scroll;
    margin-bottom:30px;
}

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

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

/* 分類：詳細
----------------------------------------------------------------------------- */

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

/* 選択肢リスト（ラベルタイプ） */

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

/* 検索横に新規登録ボタン */

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


/* 分類：タグ
----------------------------------------------------------------------------- */


/* 分類：ページャー
----------------------------------------------------------------------------- */

.pager-text{
    margin-bottom: 10px;
}
.pager{
    text-align:center;
    margin:0 auto 30px;
    padding-top:30px;
}

.pager li{
    display:inline-block;
    margin:0;
}
.pager li a{
    display: block;
    width: 50px;
    height: 40px;
    line-height: 40px;
    text-decoration:none;
    background-color:#fff;
    color:#000;
    vertical-align:middle;
    text-align:center;
    font-weight:bold;
    
}
.pager li a:hover,
.pager li.is-current a{
    /*background-color: #ffd700;*/
    background-color: #f48825;
    color:#fff;
}

.chevron-color{
    color:#c0c0c0;
}
@media screen and (max-width:1023px){
    .pager-sp{
        /*background-color: #FFFFCC;*/
        background-color: #e8efcb;
        width: 95%!important;
        margin: 0 auto !important;
        padding: 15px!important;
    }
    
    .pager-icn{
        width: 35px !important;
        border: 1px dashed #a9a9a9;
        border-radius: 5px;
        color:#0000ff!important;;
    }
    
    .pager-btn{
        width: 105px !important;
        border: 1px dashed #a9a9a9;
        border-radius: 5px;
        color:#0000ff!important;;
    }
    .pager li a:hover,
    .pager li.is-current a{
        background-color:#3cb371;
        color:#fff;
    }
}

@media screen and (max-width:599px){
    .pager-sp{
        /*background-color: #FFFFCC;*/
        background-color: #fff0dd;
        width: 95%!important;
        margin: 0 auto !important;
        padding: 15px 0!important;
    }
    
    .pager-icn{
        width: 35px !important;
        border: 1px dashed #a9a9a9;
        border-radius: 5px;
        color:#0000ff!important;;
    }
    
    .pager-btn{
        width: 105px !important;
        border: 1px dashed #a9a9a9;
        border-radius: 5px;
        color:#0000ff!important;;
    }
    
    .pager li a:hover,
    .pager li.is-current a{
        background-color:#3cb371;
        color:#fff;
    }
}


/* 分類：記事詳細系
----------------------------------------------------------------------------- */

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


/* 記事本文 */
@media screen and (max-width:768px){
}

/* 記事画像 */
@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.is-L{
    width: 90vw;
}

.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: #ff78b0;
    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%;
    }
}

/* レイアウト：noticeメッセージ
----------------------------------------------------------------------------- */
.notice-modal{
    position:relative;
}
.notice-modal-box{
    width:300px;
    height:180px;
    background-color:#fff;
    border-radius:5px;
    color:#000 !important;
    position:fixed;
    top:0;
    bottom:0;
    left:0;
    right:0;
    margin:auto;
    z-index:8888;
    overflow:hidden;
    box-shadow:0px 0px 10px -1px rgba(0,0,0,0.6);
}

.is-M{
    height: 250px;
    width: 400px;
}
.is-M .notice-modal-msg{
    height: 150px;    
}

/* タイトル */
.notice-modal-ttl{
    font-size: 20px;
    padding:5px 10px;
    text-align:center;
    font-weight:bold;
}
/* 禁止 */
.notice-modal.is-error .notice-modal-ttl,
.notice-modal.is-error .notice-modal-btn button{
    color:#fff;
    background-color:#ff006a;
}
/* 警告 */
.notice-modal.is-caution .notice-modal-ttl,
.notice-modal.is-caution .notice-modal-btn button{
    color:#fff;
    background-color:#ff66a6;
}
/* 通知 */
.notice-modal.is-info .notice-modal-ttl,
.notice-modal.is-info .notice-modal-btn button{
    color:#fff;
    background-color:#ff78b0;
}

/* メッセージ */
.notice-modal-msg{
    padding:10px;
    margin:0 0 20px;
    font-size: 15px;
    font-weight: bold;
}

/* ボタン */
.notice-modal-btn{
    text-align:center;
}
.notice-modal-btn button{
    display:inline-block;
    border:none;
    padding: 5px 15px;
    border-radius: 5px;
}

@media screen and (max-width:768){
    .is-M{
        height: 300px;
        width: 260px;
    }
    .is-M .notice-modal-msg{
        height: 200px;    
    }
}

/* 画像アップローダー
----------------------------------------------------------------------------- */
.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/img_noimg.jpg");
    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;
}
.img-up{
    display: none;
}

/* 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;
}

/* 複数アップロード */
.img-multi{
    display: flex;
    flex-wrap: wrap;
}
.img-multi img{
    width: 200px;
    height: 150px;
    object-fit: cover;
    margin-top: 10px;
}
.img-multi2{
    margin-top: 10px;
    display: flex;
    flex-wrap:wrap;
}
.img-multi2 img{
    width: 200px;
    height: 150px;
    object-fit: cover;
}
input[file].img-multi{
    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-multi{
    padding:10px 0;
}
.upload-multi label {
    color: white;
    background-color: #ff78b0;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 12px;
}
span.img-multi{
    display: block;
}
@media screen and (max-width:768){
    .img-multi img{
        width: 50%;
    }
}
@media screen and (max-width:1000px){
    .upload-preview{
        width: 140px;
        height: 140px;
    }
}


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

/* タブ選択 */

/* アコーディオン
----------------------------------------------------------------------------- */
.accordion-btn{
    width:100%;
    height:40px;
    border:none;
    text-align:left;
    font-family:inherit;
    background-image:url("/common/images/icn_acc_s_close.png");
    background-repeat:no-repeat;
    background-position:right 15px center;
}
.accordion-btn.is-close{
    background-image:url("/common/images/icn_acc_s_open.png");
}
.accordion-btn-b{
    width:100%;
    height:40px;
    border:none;
    text-align:left;
    font-family:inherit;
    background-image:url("/common/images/icn_acc_l_close.png");
    background-repeat:no-repeat;
    background-position:right 15px center;
}
.accordion-btn-b.is-close{
    background-image:url("/common/images/icn_acc_l_open.png");
}

/* 開閉先 */
.accordion-tgt{
    padding:5px 0;
}
.accordion-tgt.is-close{
    display:none;
}



.f-sort{
    cursor: pointer;
}
.stripe-box{
    border: 1px solid #000;
    width: 70%;
    margin: 0 auto;
    background-color: #DBDBDB;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width:1023px){
    .stripe-box{
        width: 95%;
    }
}