@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:1000px;
    margin-left: auto;
    margin-right: auto;
}

@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-red2{ color:#ff6666; }
.fc-gray{ color:#bbb; }
.fc-gray2{ color:#778899!important; }
.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-blue2{
    background: #6ea8cc!important;
}
.bg-blueL{
    background: #96d4fa!important;
}
.bg-blueM{
    background: #e1f0fa!important;    
}
.bg-green{
    background: #06c755!important;    
}
.bg-pink{
    background: #ff78b0!important;
}
.bg-pink2{
    background: #fff0f5!important;
}
.bg-pink-check{
    background: #c41c70!important;
}
.bg-orange{
    background: #ffa500!important;
}
.bg-orange2{
    background:#ffdacc!important;    
}
.bg-gray{
    background:#bbb!important;
}
.bg-gray2{
    background:#ddd!important;
}
.bg-gray3{
    background:#f5f5f5!important;
}
.bg-skin{
    background:#f9f9f6!important;
}
.bg-green{
    background:#f0fff0!important;    
}
.bg-purple{
    background: #b174fc!important;
}
.cast-info{
    background-color: #8ad2ff;
    color: #fff;
}
/* 分類：インプット系
----------------------------------------------------------------------------- */
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;
}
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{
        min-width: 90px;
    }
}

/* 通常リンクボタン（.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;
}

/* 分類：テーブル
----------------------------------------------------------------------------- */
/* 一覧系テーブル */
.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;
}
/* 分類：リスト
----------------------------------------------------------------------------- */
ul.entry-list{
    display:flex;
    flex-wrap:wrap;
}
ul.entry-list li{
    width: calc( 100% / 4.1 );
    border:1px solid #6ea8cc;
    margin-right: 6px;
    margin-bottom: 10px;
}
ul.entry-list li .entry-list-wrap{
    padding:20px;
}
ul.entry-list li .entry-list-name{
}
ul.entry-list li .entry-list-txt{
    font-size:12px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}
.list-tag{
    font-size: 12px;
}
.list-tag span{
    border:1px solid #33b1ff;
    border-radius:5px;
    padding:5px 5px;
}
ul.entry-list li a{
    text-decoration: none;
}
ul.entry-list li .entry-list-img{
    width: 100%;
    height: 160px;
}
ul.entry-list li .entry-list-img img{
    width: 100%;
    height: 160px;
    object-fit: cover;
    object-position: 0px 0px;
}
@media screen and (max-width:768px){
    ul.entry-list{
        display: block;
    }
    ul.entry-list li{
        width: 100%;
    }
}

/* 分類：詳細
----------------------------------------------------------------------------- */
.entry-list-detail{
    display:flex;
    justify-content: space-between;
}
.entry-list-detail .entry-list-detail-img{
    width: 45%;
}
.entry-list-detail .entry-list-detail-img img{
    width: 100%;
    height: auto;
    object-fit: cover;
}
.entry-list-detail .entry-list-detail-txt{
    width:50%;
}
.entry-list-detail-name{
    font-size: 20px;
}
.entry-list-detail-name span{
    display:block;
    font-size: 15px;
}
.entry-list-detail-ttl{
    display:flex;
}
.entry-list-detail-point{
    background: #f0f8ff;
    padding:20px;
}

@media screen and (max-width:768px){
    .entry-list-detail,
    .entry-list-detail-ttl{
        display: block;
    }
    .entry-list-detail .entry-list-detail-img,
        .entry-list-detail .entry-list-detail-txt{
        width: 100%;
    }
    .list-tag{
        padding-left:0!important;
    }
}

/* 写真 */
.galler-list{
    display: flex;
    flex-wrap: wrap;
}
.galler-list a{
    width: 300px;
    height: 300px;
    margin: 15px;
}
.galler-list img{
    width: 300px;
    height: 300px;
    object-fit: cover;
}
.galler-list-box{
    width:100px;
    height:100px;
    margin:10px;
}
.galler-list-box > label{
    display: inline-block;
	position: relative;
	height: 100%;
	width: 100;
}

@media screen and (max-width:768px){
    .galler-list{
        justify-content: center;
    }
    .galler-list a{
        width: 100px;
        height: 100px;
        margin: 10px;
    }
    .galler-list img{
        width: auto;
        height: 100%;
    }
    .galler-list-box{
        width:100px;
        height:100px;
        margin:10px;
    }
    .galler-list-box > label{
        display: inline-block;
        position: relative;
        height: 100%;
        width: 100;
    }
}

/* 選択肢リスト（ラベルタイプ） */
.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;
}

/* 分類：検索ボックス
----------------------------------------------------------------------------- */
/* 検索
----------------------------------------------------------------------------- */
.btn-search{
    font-size: 13px;
    font-weight: bold;
    border-radius: 5px;
    min-width: 100px;
    background: #8ad2ff;
    color: #fff;
    z-index: 1000;
    padding:10px;
    letter-spacing: 2px;
    margin-left: auto;
}
.box-search{
    background: #f0f8ff;
    padding: 0;
}
.box-search .search-inner{
    padding:20px 0;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}
.search-detail{
    display: flex;
    align-items: center;
}
.search-detail input[type="text"],
.search-detail input[type="date"],
.search-detail input[type="time"],
.search-detail input[type="password"],
.search-detail input[type="number"],
.search-detail select,
.search-detail textarea{
    position: relative;
    z-index: 1000;
}

/* 検索横に新規登録ボタン */
.btn-list{
    width: 1200px;
    position: absolute;
    top:70px;
    z-index: 0;
}

@media screen and (max-width:768px){
    .box-search{
        display: block;
        padding: 10px 10px;
    }
    .search-detail{
        display: block;
    }
    .search-detail select,
    .search-detail input[type="text"]
    {
        margin-top: 5px!important;
        width: 100%!important;
    }
    .btn-search{
        margin-top: 10px!important;
        display: block;
        margin:0 auto;
    }
}

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

/* 分類：タグ
----------------------------------------------------------------------------- */
.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;
}

/* 分類：ページャー
----------------------------------------------------------------------------- */
.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:#c8e7fa;
    color:#fff;
    border-radius:50%;
    vertical-align:middle;
    text-align:center;
    font-weight:bold;
}
.pager li a:hover,
.pager li.is-current a{
    background-color:#32adfa;
    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-time{
    font-size:15px;    
    padding:0 15px;
}
/* 記事タイトル */
.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-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{
    width:100%;
    height:500px;
    object-fit: cover;
}
@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{
        height:calc(70vh - 75px);
    }
    .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;
    }
}

/* スライダー
----------------------------------------------------------------------------- */
.slick-prev,
.slick-next{
    display: none!important;
}
.prev-arrow,
.next-arrow{
    color: #fff;
    background: #000;
    position: absolute;
    top: 35%;
    z-index: 1000;
    font-size: 20px;
    padding: 10px;
}
.next-arrow{
    right:0;
}
.slick-dots li{
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}
.slide-box .slick-dots li button{
    text-indent: -9999px;
    background:#eee;
    width: 20px;
    height: 20px;
    border-radius: 10px;
}
.slide-box .slick-dots li.slick-active button{
    background: #ffcc99;
}
.shop-slide .slick-dots{
    position: absolute;
    top: 2%;
    left: 30%;
}

@media screen and (max-width:767px){
    .tbl-item{
        width: 100%;
    }
    .tbl-item th{
        width: 20%;
        font-size: 15px;
        padding-left: 0;
        padding-bottom: 0;
    }
    .tbl-item td{
        padding-bottom: 0;        
    }
    .slide-box .slick-dots li button{
        width: 15px;
        height: 15px;
    }
    .prev-arrow,
    .next-arrow{
        font-size: 15px;
        padding: 5px;
        top: 25%;
    }
}

/* タブ選択 */
ul.tab-list{
    display: flex;
}
.tab-list .is-current button{
    background: #ff78b0!important;
}
.tab-main-box{
    display: none;
}

/* アコーディオン
----------------------------------------------------------------------------- */
.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;
}

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

/* trumbowyg-reset-css
----------------------------------------------------------------------------- */
.trumbowyg-reset-css{
    box-shadow: none!important;
    background: 0 0!important;
    margin: 0px!important;
    line-height: 1.4em!important;
    font-family: "Trebuchet MS",Helvetica,Verdana,sans-serif!important;
    font-size: 13px!important;
    border: none;
}
.trumbowyg-reset-css blockquote,
.trumbowyg-reset-css div,
.trumbowyg-reset-css ol,
.trumbowyg-reset-css p,
.trumbowyg-reset-css ul{
    box-shadow: none!important;
    background: 0 0!important;
    margin: 0px!important;
    line-height: 1.4em!important;
    font-family: "Trebuchet MS",Helvetica,Verdana,sans-serif!important;
    font-size: 16px!important;
    border: none;
}
.trumbowyg-reset-css b{
    font-weight: 700!important;
}
.trumbowyg-reset-css hr{
    display:block;
    height:1px;
    border:none;
    border-top:1px solid #CCC;
}
.trumbowyg-reset-css h1{
    font-size: 32px!important;
    line-height: 38px!important;
    margin-bottom: 20px!important;
}
.trumbowyg-reset-css h2{
    font-size: 26px!important;
    line-height: 34px!important;
    margin-bottom: 15px!important;
}
.trumbowyg-reset-css h3{
    font-size: 22px!important;
    line-height: 28px!important;
    margin-bottom: 7px!important;
}
.trumbowyg-reset-css h4{
    font-size: 16px!important;
    line-height: 22px!important;
    margin-bottom: 7px!important;
}
.trumbowyg-reset-css a{
    text-decoration:none!important; 
    color: #ed2e64!important;
    outline: none!important;
}
.box-txt a:hover,
.trumbowyg-reset-css a:hover{
    text-decoration: none!important; 
}
.trumbowyg-reset-css ul{
    list-style:inside!important;
}
.trumbowyg-reset-css i{
    font-family: "游ゴシック", "游ゴシック体";
    font-weight: bold;
    font-style: italic!important;
}
/* メッセージ */
.system-modal-msg{
	padding:10px;
        font-size:13px;
        height:105px;
}
.system-modal-msg-M{
	padding:10px;
        font-size:13px;
        height:75px;
}

/* 分類：署名
----------------------------------------------------------------------------- */
.canvas-area{
    border:1px solid #333;
    border-radius:20px;
}
#canvasImg{
    min-height:150px;
}

/* 分類：吹き出し
----------------------------------------------------------------------------- */

.balloon {
    position: relative;
    display: inline-block;
    margin: 1.5em 0;
    padding: 7px 10px;
    min-width: 120px;
    max-width: 100%;
    font-size: 16px;
    background: #F4EEFA;
    border-radius: 5px;
}

.balloon:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -15px;
    border: 15px solid transparent;
    border-top: 15px solid #F4EEFA;
}

.balloon p {
    margin: 0;
    padding: 0;
}
@media screen and (max-width: 768px){

}

/* 分類：支払方法選択
----------------------------------------------------------------------------- */
.pay-box1 {
  display: block;
}
.pay-box2 {
  display: none;
}
.pay-box3 {
  display: none;
}

.explain {
    font-size:19px;
    width: 100%;
    background-color: rgb(226, 226, 226);
    border-radius: 30px;
    padding:20px;
}
.explain-strong{
    font-size:22px;
    font-weight: bold;
}

/* ドロップエリア */
.upload-drop-area{
    cursor:pointer;
    background-color:#ccc;
    color:#444;
}
/* ドロップエリア */
.upload-drop-area{
    cursor:pointer;
    background-color:#eee;
    padding: 10px;
    text-align: center;
    width:100%;
    height:60px;
    line-height:40px;
    margin:10px 0;
}
.upload-drop-area.active{
    border-radius: 3px;
    background-color:rgba(195,249,236,0.5);
    border: 2px solid #C3F9EC;
}
.oncheckbox {
	position: absolute;
	right: 0;
	top: 0;
}

.oncheckbox + img {
	border: 1px solid rgba( 0, 0, 0, 0 );
}
.oncheckbox:checked + img {
	border: 1px solid red;
}
.btn-image-select{
    color: #fff;
    padding: 0px 20px;
    border-radius: 7px;
    display: inline-block;
    margin: 0 auto;
    background-color: #ff78b0!important;
    font-size: 15px;
}

/* SPANツールチップ
----------------------------------------------------------------------------- */
.tooltip { /* 補足説明するテキストのスタイル */
  position: relative;
  cursor: pointer;
  padding: 0 5px;
  font-size: 12px;
  color: #4682b4;
}

.balloon_bottom { /* ツールチップのスタイル */
  width: 50px; /* 横幅 */
  position: absolute;
  top: 80%; /* Y軸の位置 */
  left: 50%;
  transform: translateX(-50%);
  margin-top: 15px; /* テキストとの距離 */
  padding: 8px;
  border-radius: 10px; /* 角の丸み */
  background-color: #666; /* ツールチップの背景色 */
  font-size: 12px;
  color: #fff;
  text-align: center;
  visibility: hidden; /* ツールチップを非表示に */
  opacity: 0; /* 不透明度を0％に */
  z-index: 1;
  transition: 0.5s all; /* マウスオーバー時のアニメーション速度 */
}

.balloon_bottom::before { /* 吹き出しの「しっぽ」のスタイル */
  content: "";
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-bottom: 12px solid #666; /* 最後の値は「ツールチップの背景色」と合わせる */
  position: absolute;
  bottom: 99%;
  left: 50%;
  transform: translateX(-50%);
}

.tooltip:hover .balloon_bottom { /* マウスオーバー時のスタイル */
  top: 100%; /* Y軸の位置 */
  visibility: visible; /* ツールチップを表示 */
  opacity: 1; /* 不透明度を100％に */
}