@charset "utf-8";

*{ box-sizing:border-box; }

button,label{ cursor:pointer; }

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

i{
    font-family: "Font Awesome 5 Free"; /*←ココ！！！！！！！*/
    font-weight: 900;
}

/* レスポンシブ
----------------------------------------------------------------------------- */
@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:0 auto;
}
@media screen and (max-width:768px){
    .inner{
        width:100%;
    }
}

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

/* ２カラム */
.col-2{
    display:table-cell;
    vertical-align:top;
    width:50%;
}
/* ３カラム */
.col-3{
    display:table-cell;
    vertical-align:top;
    width:calc(100% / 3);
}
@media screen and (max-width:768px){
    /* カラムレイアウト */
    .col{
        width:100%;
        display:block;
    }

    /* ２カラム */
    .col-2{
        display:block;
        width:100% !important;
        padding-right:0 !important;
        padding-left:0 !important;
        margin-bottom:15px;
    }
    /* ３カラム */
    .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;
    }
}

/* 分類：幅調整モジュール
----------------------------------------------------------------------------- */
.w5{ width:5% !important; }
.w10{ width:10% !important; }
.w15{ width:15% !important; }
.w20{ width:20% !important; }
.w25{ width:25% !important; }
.w30{ width:30% !important; }
.w35{ width:35% !important; }
.w40{ width:40% !important; }
.w45{ width:45% !important; }
.w50{ width:50% !important; }
.w55{ width:55% !important; }
.w60{ width:60% !important; }
.w65{ width:65% !important; }
.w70{ width:70% !important; }
.w75{ width:75% !important; }
.w80{ width:80% !important; }
.w85{ width:85% !important; }
.w90{ width:90% !important; }
.w95{ width:95% !important; }
.w100{ width:100% !important; }

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


/* 文字色 */
.fc-red{ color:#d00; }
.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-stan{ color:#808080!important; }
.fc-silver{ color:#add8e6!important; }
.fc-gold{ color:#ffd700!important; }

/* フォント */
.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;
}

/* 背景色 */

.bg-red{
    background: #ff0000!important;
}
.bg-blue{
    background: #4bb7fa!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;    
}

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

select{
    cursor:pointer;
}
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;
    }
}

/* 分類：見出し
----------------------------------------------------------------------------- */

.ttl-M{
    font-size:22px;
    font-weight: bold;
    margin-bottom: 25px;
    font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "游明朝体", "Yu Mincho", YuMincho, "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
    letter-spacing: 0.1em;
}
@media screen and (max-width:768px){
    
}

.ttl-S{
    font-size:18px;
    font-weight: bold;
    margin-bottom: 20px;
    font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "游明朝体", "Yu Mincho", YuMincho, "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
    padding:10px;
    letter-spacing: 0.1em;
    border-bottom: 1px solid #eee;
}

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

/* ログインボックス */
.box-login{
    width: 100%;
    max-width:900px;
    margin: 0 auto 30px;
    background-color: #fff;
    border:1px solid #ddd;
    border-radius: 10px;
    padding:60px 30px;
}
.box-login dl{
    display: flex;
    width: 100%;
    max-width:530px;
    margin: 0 auto 20px;
    align-items: center;
}
.box-login dl dt{
    margin-right: 30px;
}
.box-login dl dd{
    width: 75%;
}
.box-login dl dd input{
    border: none;
    border-radius: 0;
    background-color:#eee;
    width:100%;
    padding: 10px;
}

.box-login-btn{
    /*text-align: center;*/
    color: #fff; 
    font-size: 125%; 
    font-weight: 600; 
    background: #43425D;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    /*width: 100%;*/
    display: block;
    height: 56px;
    text-align: center;
    text-decoration: none;
    padding: 13px 0;
    margin: 22px auto 255px;
    width: 208px;
}
.box-login-btn:hover { opacity: 0.7; }

/* 忘れた方 */
.box-login-btn-forget{
    text-align: center;
    margin-top: 20px;
}
.box-login-btn-forget a{
    color:#a6061d;
}

/* 新規会員登録 */
.box-login-entry{
    border-top: 1px solid #ddd;
    margin-top:20px;
    padding-top: 35px;
    text-align: center;
}
.box-login-entry p{
    letter-spacing: 0.2em;
    margin-bottom: 20px;
}

/* ログインせずに購入 */
.box-login-footer{
    text-align: center;
    margin-bottom: 80px;
    font-size:16px;
}
.box-login-footer .btn-green{
    margin-top: 15px;
}

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

/* スクロールボックス */
.box-scroll{
    border: 1px solid #ccc;
    padding: 20px;
    height: 200px;
    overflow-y: scroll;
    font-size:14px;
    line-height: 1.8;
}
@media screen and (max-width:768px){
    
}

/* 汎用テキスト */
.box-text{
    width: 100%;
    max-width:900px;
    padding: 0 15px;
    margin: 0 auto 100px;
}
.box-text p{
    margin-bottom: 50px;
}
@media screen and (max-width:768px){
    
}

.box-error{
    color:#4d2626;
    border:1px solid #e6b8b8;
    padding:10px;
    background-color: #ffe6e6;
    font-size: 13px;
}
/* 分類：ボタン
----------------------------------------------------------------------------- */
/* 赤ボタン */
.btn-red,
.btn-red-L{
    display: inline-block;
    height:60px;
    line-height: 60px;
    border-radius : 30px;
    color:#fff;
    border: none;
    width: 320px;
    padding: 0 25px;
    font-size:18px;
    background : -moz-linear-gradient(0% 50% 0deg,rgba(234, 100, 110, 1) 0%,rgba(222, 83, 92, 1) 29.52%,rgba(190, 38, 47, 1) 88.16%,rgba(183, 28, 37, 1) 100%);
    background : -webkit-linear-gradient(0deg, rgba(234, 100, 110, 1) 0%, rgba(222, 83, 92, 1) 29.52%, rgba(190, 38, 47, 1) 88.16%, rgba(183, 28, 37, 1) 100%);
    background : -webkit-gradient(linear,0% 50% ,100% 50% ,color-stop(0,rgba(234, 100, 110, 1) ),color-stop(0.2952,rgba(222, 83, 92, 1) ),color-stop(0.8816,rgba(190, 38, 47, 1) ),color-stop(1,rgba(183, 28, 37, 1) ));
    background : -o-linear-gradient(0deg, rgba(234, 100, 110, 1) 0%, rgba(222, 83, 92, 1) 29.52%, rgba(190, 38, 47, 1) 88.16%, rgba(183, 28, 37, 1) 100%);
    background : -ms-linear-gradient(0deg, rgba(234, 100, 110, 1) 0%, rgba(222, 83, 92, 1) 29.52%, rgba(190, 38, 47, 1) 88.16%, rgba(183, 28, 37, 1) 100%);
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#EA646E', endColorstr='#B71C25' ,GradientType=0)";
    background : linear-gradient(90deg, rgba(234, 100, 110, 1) 0%, rgba(222, 83, 92, 1) 29.52%, rgba(190, 38, 47, 1) 88.16%, rgba(183, 28, 37, 1) 100%);      
}
.btn-red-L{
    width:520px;
}

/* 緑ボタン */
.btn-green,
.btn-green-L{
    display: inline-block;
    height:60px;
    line-height: 60px;
    border-radius : 30px;
    color:#fff;
    border: none;
    width: 320px;
    padding: 0 25px;
    font-size:18px;
    background : -moz-linear-gradient(0% 50% 0deg,rgba(142, 198, 88, 1) 0%,rgba(124, 186, 83, 1) 29.52%,rgba(79, 155, 70, 1) 88.16%,rgba(69, 148, 67, 1) 100%);
  background : -webkit-linear-gradient(0deg, rgba(142, 198, 88, 1) 0%, rgba(124, 186, 83, 1) 29.52%, rgba(79, 155, 70, 1) 88.16%, rgba(69, 148, 67, 1) 100%);
  background : -webkit-gradient(linear,0% 50% ,100% 50% ,color-stop(0,rgba(142, 198, 88, 1) ),color-stop(0.2952,rgba(124, 186, 83, 1) ),color-stop(0.8816,rgba(79, 155, 70, 1) ),color-stop(1,rgba(69, 148, 67, 1) ));
  background : -o-linear-gradient(0deg, rgba(142, 198, 88, 1) 0%, rgba(124, 186, 83, 1) 29.52%, rgba(79, 155, 70, 1) 88.16%, rgba(69, 148, 67, 1) 100%);
  background : -ms-linear-gradient(0deg, rgba(142, 198, 88, 1) 0%, rgba(124, 186, 83, 1) 29.52%, rgba(79, 155, 70, 1) 88.16%, rgba(69, 148, 67, 1) 100%);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#8EC658', endColorstr='#459443' ,GradientType=0)";
  background : linear-gradient(90deg, rgba(142, 198, 88, 1) 0%, rgba(124, 186, 83, 1) 29.52%, rgba(79, 155, 70, 1) 88.16%, rgba(69, 148, 67, 1) 100%);
}
.btn-green-L{
    width:520px;
}

/* 白いボタン */
.btn-white,
.btn-white-L{
    display: inline-block;
    height:60px;
    line-height: 60px;
    border-radius : 30px;
    border: none;
    width: 320px;
    padding: 0 25px;
    font-size:18px;
    background-color: #fff; 
    border:1px solid #afafaf;
}
.btn-white-L{
    width:520px;
}

/* お気に入りボタン */
.btn-fav-off,
.btn-fav-on{
    display: inline-block;
    width:165px;
    height:35px;
    line-height: 33px;
    border-radius: 17.5px;
    border: 1px solid #333;
    background-color: transparent;
    font-size:14px;
}
.btn-fav-off i,
.btn-fav-on i{
    margin-right: 7px;
}
.btn-fav-on i{
    color: #f72056;
}

/* シンプルなボタン */
.btn-normal{
    display: inline-block;
    width:350px;
    height:70px;
    line-height:70px;
    text-align: center;
    text-decoration: none;
    border: 1px solid #aaa;
    display: inline-block;
    font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "游明朝体", "Yu Mincho", YuMincho, "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
    letter-spacing: 2px;
}

.btn-del{
    display: inline-block;
    width:50px;
    height:35px;
    line-height:30px;
    text-align: center;
    text-decoration: none;
    border: none;
    display: inline-block;
    letter-spacing: 0px;
    border-radius: 6px;
    background-color: #a9a9a9;
    color: #fff;
    font-weight: 400;
    font-size: 14px;
}

.btn-del2{
    display: inline-block;
    width:48px;
    height:36px;
    line-height:36px;
    text-align: center;
    text-decoration: none;
    border: none;
    display: inline-block;
    letter-spacing: 0px;
    border-radius: 6px;
    background-color: #a9a9a9;
    color: #fff;
    font-weight: 0;
    font-size: 14px;
}

.btn-del3{
    display: inline-block;
    width:48px;
    height:30px;
    line-height:30px;
    text-align: center;
    text-decoration: none;
    border: none;
    display: inline-block;
    letter-spacing: 0px;
    border-radius: 6px;
    background-color: #a9a9a9;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    margin-top: 50px
}

.btn-edit{
    display: inline-block;
    width:50px;
    height:35px;
    line-height:30px;
    text-align: center;
    text-decoration: none;
    border: none;
    display: inline-block;
    letter-spacing: 0px;
    border-radius: 6px;
    background-color: #38b48b;
    color: #fff;
    font-weight: 400;
    font-size: 14px;
}
.btn-read{
    display: inline-block;
    width:100px;
    height:30px;
    line-height:30px;
    text-align: center;
    text-decoration: none;
    border: none;
    display: inline-block;
    letter-spacing: 0px;
    border-radius: 6px;
    background-color: #38b48b;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
}

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


/* 分類：タグ
----------------------------------------------------------------------------- */
.tags{
    font-size:12px;
    display: inline-block;
    height:20px;
    line-height:18px;
    padding:0 10px;
}
.tag-white{
    background-color: #fff;
    border:1px solid #ccc;
}
.tag-gray{
    background-color: #ddd;
    border:1px solid #ddd;
}
.tag-black{
    background-color: #2b2b2b;
    border:1px solid #2b2b2b;
    color:#fff;
}
.tag-blue{
    background-color: #1f90b2;
    border:1px solid #1f90b2;
    color: #fff;
}
.tag-red{
    background-color: #af0d26;
    border: 1px solid #af0d26;
    color: #fff;
}


/* 分類：テーブル
----------------------------------------------------------------------------- */
/* シンプルなテーブル */
.tbl-simple{
    width: 100%;
}
.tbl-simple th,
.tbl-simple td{
    border: 1px solid #ccc;
    padding: 15px;
    font-size:14px;
}

/* 詳細系汎用テーブル */
.tbl-detail{
    width: 100%;
}
.tbl-detail th,
.tbl-detail td{
    border: 1px solid #ccc;
    padding: 10px;
    font-size:14px;
    vertical-align: top;
}
.tbl-detail tbody th{
    font-weight: bold;
    background-color: #eee;
}

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

/* 分類：スライダー
----------------------------------------------------------------------------- */
/* カルーセル形式 */
.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,
.slider-normal li a .slider-normal-img .tag-blue,
.slider-normal li a .slider-normal-img .tag-purple{
    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,
    .slider-normal li a .slider-normal-img .tag-blue,
    .slider-normal li a .slider-normal-img .tag-purple{
        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:#76cbae;
}
@media screen and (max-width:768px){
    .slider-normal .slick-prev{
        left:-15px;
    }
    .slider-normal .slick-next{
        right:-15px;
    }
}

/* ギャラリー形式 */
.slider-gallery{
    width:100%;
    margin:0 auto 30px;
}
.slider-gallery .fotorama__wrap{
    margin:0 auto;
}
.slider-gallery .fotorama__thumb-border{
    border-color:#76cbae;
}
.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;
    }
}




/* 分類：タブ切り替え
----------------------------------------------------------------------------- */
.tab{
}
@media screen and (max-width:768px){
    
}

/* タブボタン */
.tab-btn{
}
.tab-btn li{
}

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

/* タブコンテンツ */

.tab-main .tab-main-box:nth-child(n+2){
    display:none;
}
@media screen and (max-width:768px){
    
}


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

.pager li{
    display:inline-block;
    margin:0 2.5px;
}
.pager li a{
    display:block;
    width:40px;
    height:40px;
    line-height:40px;
    text-decoration:none;
    background-color:#fff;
    vertical-align:middle;
    text-align:center;
    /*border:1px solid #ddd;*/
    border-radius: 50%;
}
.pager li.first a,
.pager li.prev a,
.pager li.next a,
.pager li.last a{
    border-color: #fff;
}
.pager li a:hover,
.pager li.is-current a{
    background-color:#89c4ff;
    border-color:#111;
    color:#fff;
}
@media screen and (max-width:768px){
    .pager{
        margin:0 auto 20px;
    }
    .pager li{
        margin:0 5px 5px;
    }
    .pager li a{
        display:block;
        width:30px;
        height:30px;
        line-height:30px;
    }
}

/* 分類：システムモーダル(禁忌)
----------------------------------------------------------------------------- */
.system-modal-error{
	position:relative;
}
/* 画面領域 */
.system-modal-error-box{
	width:400px;
	height:500px;
	background-color:rgba(0,0,0,0.9);
	border-radius:5px;
	color:#fff !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);
}
/* タイトル */
.system-modal-error-ttl{
	padding:5px 10px;
	text-align:center;
	font-weight:bold;
}
.system-modal-error .system-modal-error-ttl{
	color:#fff;
	background-color:#D71345;
}

/* メッセージ */
.system-modal-error-msg{
	padding:10px 10px 50px;
}

/* ボタン */
.system-modal-error-btn{
    text-align:center;
    position:absolute;
    bottom:10px;
    width:100%;
}
.system-modal-error-btn button{
    display:inline-block;
    border:none;
    padding:5px 15px;
    background-color:#D71345;
    color:#fff;
    border-radius:15px;
    width:80px;
    height:30px;
}

/* 分類：システムモーダル(警告)
----------------------------------------------------------------------------- */
.system-modal-warning{
	position:relative;
}
/* 画面領域 */
.system-modal-warning-box{
	width:400px;
	height:200px;
	background-color:rgba(0,0,0,0.9);
	border-radius:5px;
	color:#fff !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);
}
/* タイトル */
.system-modal-warning-ttl{
	padding:5px 10px;
	text-align:center;
	font-weight:bold;
}
.system-modal-warning .system-modal-warning-ttl{
	color:#fff;
	background-color:#FFCC4E;
}

/* メッセージ */
.system-modal-warning-msg{
	padding:10px 10px 50px;
}

/* ボタン */
.system-modal-warning-btn{
    text-align:center;
    position:absolute;
    bottom:10px;
    width:100%;
}
.system-modal-warning-btn button{
    display:inline-block;
    border:none;
    padding:5px 15px;
    background-color:#FFCC4E;
    color:#fff;
    border-radius:15px;
    width:80px;
    height:30px;
}

/* 分類：システムモーダル(通知)
----------------------------------------------------------------------------- */
.system-modal-info{
	position:relative;
}
/* 画面領域 */
.system-modal-info-box{
	width:400px;
	height:200px;
	background-color:rgba(0,0,0,0.9);
	border-radius:5px;
	color:#fff !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);
}
/* タイトル */
.system-modal-info-ttl{
	padding:5px 10px;
	text-align:center;
	font-weight:bold;
}
.system-modal-info .system-modal-info-ttl{
	color:#fff;
	background-color:#659AD2;
}

/* メッセージ */
.system-modal-info-msg{
	padding:10px 10px 50px;
}

/* ボタン */
.system-modal-info-btn{
    text-align:center;
    position:absolute;
    bottom:10px;
    width:100%;
}
.system-modal-info-btn button{
    display:inline-block;
    border:none;
    padding:5px 15px;
    background-color:#659AD2;
    color:#fff;
    border-radius:15px;
    width:80px;
    height:30px;
}

/* 分類：システムモーダル(成功)
----------------------------------------------------------------------------- */
.system-modal-success{
	position:relative;
}
/* 画面領域 */
.system-modal-success-box{
	width:400px;
	height:200px;
	background-color:rgba(0,0,0,0.9);
	border-radius:5px;
	color:#fff !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);
}
/* タイトル */
.system-modal-success-ttl{
	padding:5px 10px;
	text-align:center;
	font-weight:bold;
}
.system-modal-success .system-modal-success-ttl{
	color:#fff;
	background-color:#00896B;
}

/* メッセージ */
.system-modal-success-msg{
	padding:10px 10px 50px;
}

/* ボタン */
.system-modal-success-btn{
    text-align:center;
    position:absolute;
    bottom:10px;
    width:100%;
}
.system-modal-success-btn button{
    display:inline-block;
    border:none;
    padding:5px 15px;
    background-color:#A6C78E;
    color:#fff;
    border-radius:15px;
    width:80px;
    height:30px;
}

/* 分類：システムモーダル(登録確認)
----------------------------------------------------------------------------- */
.system-modal-entry{
	position:relative;
}
/* 画面領域 */
.system-modal-entry-box{
	width:400px;
	height:200px;
	background-color:rgba(0,0,0,0.9);
	border-radius:5px;
	color:#fff !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);
}
/* タイトル */
.system-modal-entry-ttl{
	padding:5px 10px;
	text-align:center;
	font-weight:bold;
}
.system-modal-entry .system-modal-entry-ttl{
	color:#fff;
	background-color:#00AEEF;
}

/* メッセージ */
.system-modal-entry-msg{
	padding:10px 10px 50px;
}

/* ボタン */
.system-modal-entry-btn{
    text-align:center;
    position:absolute;
    bottom:10px;
    width:100%;
}
.system-modal-entry-btn button{
    display:inline-block;
    border:none;
    padding:5px 15px;
    background-color:#00AEEF;
    color:#fff;
    border-radius:15px;
    width:80px;
    height:30px;
}

/* 分類：システムモーダル(削除確認)
----------------------------------------------------------------------------- */
.system-modal-delete{
	position:relative;
}
/* 画面領域 */
.system-modal-delete-box{
	width:400px;
	height:200px;
	background-color:rgba(0,0,0,0.9);
	border-radius:5px;
	color:#fff !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);
}
/* タイトル */
.system-modal-delete-ttl{
	padding:5px 10px;
	text-align:center;
	font-weight:bold;
}
.system-modal-delete .system-modal-delete-ttl{
	color:#fff;
	background-color:#00AEEF;
}

/* メッセージ */
.system-modal-delete-msg{
	padding:10px 10px 50px;
}

/* ボタン */
.system-modal-delete-btn{
    text-align:center;
    position:absolute;
    bottom:10px;
    width:100%;
}
.system-modal-delete-btn button{
    display:inline-block;
    border:none;
    padding:5px 15px;
    background-color:#00AEEF;
    color:#fff;
    border-radius:15px;
    width:80px;
    height:30px;
}



/* 確認モーダルの際に以下classを追加 */
.confirm-modal{
    background-color: #fff;
    color: #000!important;
    width: 80vw;
    height: 60vh;
}
.confirm-modal .tbl-record{
    width: 90%;
    margin: 0 auto;
}
.confirm-modal .tbl-record th{
    width: 20%;
}
.confirm-modal button{
    margin: 0 20px;
    height: 50px!important;
    width: 100px!important;
    background-color: #fff!important;
    color:#000!important;
    border:#ccc 1px solid!important;
}
.confirm-modal button:focus{
    background-color: #ed2e64!important;
    color:#fff!important;
    border:none!important;
    outline: none;
}
.confirm-modal .system-modal-msg{
    padding: 10px 10px;
}

.logout-btn {
    color: #fff;
    font-size: 80%;
    /* font-weight: 600; */
    background: #43425D;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    width: 100px;
}
