@charset "utf-8";

*{ box-sizing:border-box; }

button,label{ cursor:pointer; }

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

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

/* 分類：レスポンシブ
----------------------------------------------------------------------------- */
.inner{
    width:100%;
	max-width:1000px;
	margin:0 auto;
}
@media screen and (max-width:1000px){
	.inner{
		width:100%;
        padding-left:10px !important;
        padding-right:10px !important;
	}
}

/* 分類：幅モジュール
----------------------------------------------------------------------------- */
.w10{width:10% !important;}
.w20{width:20% !important;}
.w30{width:30% !important;}
.w40{width:40% !important;}
.w50{width:50% !important;}
.w60{width:60% !important;}
.w70{width:70% !important;}
.w80{width:80% !important;}
.w90{width:90% !important;}
.w100{width:100% !important;}


/* 分類：フォーム調整
----------------------------------------------------------------------------- */
input[type="text"],
input[type="password"],
input[type="date"],
input[type="time"],
input[type="tel"],
input[type="email"],
textarea,
select{
    border:1px solid #ccc;
    padding:10px;
    width:100%;
    border-radius:5px;
    font-family:inherit;
}
label{
    display:inline-block;
    margin-right:10px;
    
}
textarea{
    height:100px;
    resize:vertical;
}
select{
    cursor:pointer;
}
input[type="date"]{
    max-width:150px;
}
input[type="time"]{
    max-width:100px;
}

/* 分類：文字装飾
----------------------------------------------------------------------------- */

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

/* 強調テキスト */
.txt-strong{
    background: linear-gradient(transparent 40%, #ffff66 40%);
}

/* 文字色 */
.fc-gray{
    color:#777;
}
.fc-red{
    color:#a40000;
}

/* 太さ */
b{
    font-weight:bold !important;
}

/* 導入文 */
.intro{
    text-align:center;
    font-size:18px;
    line-height:36px;
    margin:0 0 30px;
}
@media screen and (max-width:1000px){
    .intro{
        font-size:16px;
        line-height:32px;
        margin:0 0 20px;
    }
}

/* 分類：見出し
----------------------------------------------------------------------------- */
/* 大見出し */
.ttl-L{
    text-align:center;
    font-weight:bold;
    font-size:25px;
    margin:0 0 30px;
}
.ttl-L span{
    font-size:18px;
    display:block;
    color:#16408c;
}
@media screen and (max-width:1000px){
    .ttl-L{
        font-size:20px;
        margin:0 0 10px;
    }
    .ttl-L span{
        font-size:16px;
    }
}

/* 中見出し */
.ttl-M{
    background-image:url("/common/images/bg_ttl_m.png");
    background-position:left center;
    background-repeat:no-repeat;
    background-size:25px 5px;
    font-size:20px;
    font-weight:bold;
    padding:0 40px;
    margin:0 0 20px;
}
@media screen and (max-width:1000px){
    .ttl-M{
        background-size:25px 5px;
        font-size:18px;
        padding:0 35px;
        margin:0 0 15px;
    }
}

/* 小見出し */
.ttl-S{
    font-size:18px;
    font-weight:bold;
    border-bottom:1px solid #16408c;
    margin:0 0 20px;
    padding:15px;
}
@media screen and (max-width:1000px){
    .ttl-S{
        font-size:16px;
        padding:10px;
    }
}

/* 最小見出し */
.ttl-SS{
    font-size:16px;
    font-weight:bold;
    color:#16408c;
    margin:0 0 20px;
}
@media screen and (max-width:1000px){
    
}

/* ステップ形式の見出し */
.ttl-step{
    color:#16408c;
    border-bottom:1px solid #b5b5b5;
    margin:0 0 30px;
    padding:0 20px 15px;
    font-size:18px;
    font-weight:bold;
}
.ttl-step span{
    font-family:'Dancing Script', cursive;
    font-size:30px;
    padding-right:10px;
}
.ttl-step-line{
    background-image:url("/common/images/arr_09.png");
    background-size:100px 20px;
    background-repeat:no-repeat;
    background-position:center center;
    height:20px;
    margin:0 0 30px;
}
@media screen and (max-width:1000px){
    .ttl-step{
        margin:0 0 15px;
        padding:0 10px 10px;
        font-size:16px;
    }
    .ttl-step span{
        font-size:20px;
    }
}


/* 分類：ボックス
----------------------------------------------------------------------------- */
/* 非表示 */
.dn {
    display:none;
}

/* ポイント */
.box-point{
    background-color:#eff4f5;
    padding:30px;
    position:relative;
    margin:0 0 30px;
}
.box-point::before{
    content:"";
    display:block;
    position:absolute;
    width:64px;
    height:74px;
    top:-36px;
    right:10px;
    background-image:url("/common/images/img_box_point.png");
}
.box-point .ttl-SS{
    font-size:20px;
}
@media screen and (max-width:1000px){
    .box-point{
        padding:15px;
        position:relative;
        margin:0 0 20px;
    }
    .box-point::before{
        width:32px;
        height:37px;
        top:-18px;
        right:10px;
        background-size:100% auto;
    }
    .box-point .ttl-SS{
        font-size:18px;
    }
}

/* シンプル */
.box-normal{
    width:100%;
    border:3px solid #004896;
    border-radius:10px;
    padding:20px 30px 0;
    margin:0 0 20px;
}
.box-normal .ttl-SS{
    font-size:20px;
}
.box-normal p{
    margin:0 0 20px;
}
@media screen and (max-width:1000px){
    .box-normal{
        padding:15px 15px 0;
    }
    .box-normal .ttl-SS{
        font-size:18px;
    }
    .box-normal p{
        margin:0 0 15px;
    }
}

/* シンプル（グレー） */
.box-gray{
    width:100%;
    border:2px solid #ccc;
    border-radius:10px;
    padding:20px 30px 0;
    margin:0 0 20px;
}
.box-gray .ttl-SS{
    font-size:20px;
}
.box-gray p{
    margin:0 0 20px;
}
@media screen and (max-width:1000px){
    .box-gray{
        padding:10px 10px 0;
    }
    .box-gray p{
        margin:0 0 10px;
    }
}

/* シンプルベタ塗り（水色） */
.box-skyblue{
    background-color:#f7f7f7;
    padding:15px;
    width:100%;
}
@media screen and (max-width:1000px){
    
}

/* ２カラムボックス */
.box-2col{
    display:table;
    width:100%;
    margin:0 0 30px;
    table-layout:fixed;
}
.box-2col-L,
.box-2col-R{
    display:table-cell;
    width:50%;
    vertical-align:top;
    
}
.box-2col-L img,
.box-2col-R img{
    max-width:100%;
    height:auto;
}
.box-2col-L{
    padding-right:15px;
}
.box-2col-R{
    padding-left:15px;
}
@media screen and (max-width:1000px){
    .box-2col{
        display:block;
        width:100%;
        margin:0 0 30px;
    }
    .box-2col-L,
    .box-2col-R{
        display:block;
        width:100%;
        vertical-align:top;
    }
    .box-2col-L img,
    .box-2col-R img{
        max-width:100%;
        height:auto;
    }
    .box-2col-L{
        padding-right:0;
    }
    .box-2col-R{
        padding-left:0;
        padding-top:10px;
    }
}

/* 汎用アコーディオンボックス */
.box-open{
    margin:0 0 30px;
    background-color:#e4eff6;
    border-radius:5px;
}

.box-open dt{
    padding:15px;
    border-bottom:1px solid #fff;
    cursor:pointer;
    background-image:url("/common/images/arr_05.png");
    background-repeat:no-repeat;
    background-position:right 20px center;
    background-size:auto 7px;
}
.box-open dt.is-open{
    background-image:url("/common/images/arr_06.png");
}

.box-open dd{
    display:none;
    padding:15px;
}
@media screen and (max-width:1000px){
    .box-open{
        margin:0 0 20px;
    }

    .box-open dt{
        padding:10px 25px 10px 10px;
        border-bottom:1px solid #fff;
        background-position:right 10px center;
    }
    .box-open dd{
        padding:10px;
    }
}



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

/* メインボタン */
.btn-main{
    display:inline-block;
    text-align:center;
    width:280px;
    height:40px;
    line-height:40px;
    border:none;
    border-radius:20px;
    margin:0 10px;
    text-decoration:none;
    font-family:inherit;
    font-size:16px;
    color:#fff;
    background-image: -moz-linear-gradient(to right, #0a559f 0%, #48a0d3 50%, #0a559f 100%);
    background-image: -webkit-linear-gradient(to right, #0a559f 0%, #48a0d3 50%, #0a559f 100%);
    background-image: url("/common/images/arr_04.png"),linear-gradient(to right, #0a559f 0%, #48a0d3 50%, #0a559f 100%);
    background-size: 24px auto,200% auto;
    background-position:left 95% center,left center;
    background-repeat:no-repeat;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all  0.5s ease;
}
.btn-main:hover{
    background-position:left 97% center,right center;
}

/* キャンセルボタン */
.btn-cancel{
    display:inline-block;
    text-align:center;
    width:280px;
    height:40px;
    line-height:40px;
    border:none;
    border-radius:20px;
    margin:0 10px;
    text-decoration:none;
    font-family:inherit;
    font-size:16px;
    color:#333;
    background-color:#ddd;
}

/* シンプルボタン */
.btn-blue,
.btn-dark{
    text-align:center;
    text-decoration:none;
    width:215px;
    height:40px;
    line-height:40px;
    color:#fff;
    display:inline-block;
    margin:0 5px;
}

/* シンプルボタン（青） */
.btn-blue{
    background-color:#16408c;
}

/* シンプルボタン（グレー） */
.btn-dark{
    background-color:#434343;
}

/* 分類：タグ
----------------------------------------------------------------------------- */
.tag{
    display:inline-block;
    min-width:120px;
    height:25px;
    background-color:#16408c;
    color:#fff;
    padding:1px 10px;
    text-align:center;
    border-radius:12.5px;
    margin:0 10px;
}



/* 分類：リンク
----------------------------------------------------------------------------- */

/* 画像付き①② */
.link-img-L,
.link-img-M{
    
}
.link-img-L li,
.link-img-M li{
    display:inline-block;
    margin:0 30px 50px 0;
    float:left;
}

.link-img-L li a,
.link-img-M li a{
    display:block;
    text-decoration:none;
    background-image:url("/common/images/bg_dot.gif");
    border-radius:5px;
    position:relative;
    text-align:center;
}
.link-img-L li a img,
.link-img-M li a img{
    margin-top:-10px;
    vertical-align:top;
}
.link-img-L li a span,
.link-img-M li a span{
    position:absolute;
    bottom:-20px;
}
.link-img-L li a:hover .btn-main,
.link-img-M li a:hover .btn-main{
    background-position:left 97% center,right center;
}
@media screen and (max-width:1000px){
    
    .link-img-L li a img,
    .link-img-M li a img{
        width:100px;
        height:auto;
        
    }
    
/*    .link-img-L,
    .link-img-M{

    }
    .link-img-L li,
    .link-img-M li{
        display:inline-block;
        margin:0 30px 50px 0;
        float:left;
    }

    .link-img-L li a,
    .link-img-M li a{
        display:block;
        text-decoration:none;
        background-image:url("/common/images/bg_dot.gif");
        border-radius:5px;
        position:relative;
        text-align:center;
    }
    .link-img-L li a img,
    .link-img-M li a img{
        margin-top:-10px;
        vertical-align:top;
    }
    .link-img-L li a span,
    .link-img-M li a span{
        position:absolute;
        bottom:-20px;
    }
    .link-img-L li a:hover .btn-main,
    .link-img-M li a:hover .btn-main{
        background-position:left 97% center,right center;
    }*/
}

/* 画像付き①（大） */

.link-img-L li{
    width:485px;
    margin:0 30px 50px 0;
}
.link-img-L li:nth-child(2n){
    margin-right:0;
}
.link-img-L li a{
    height:150px;
}
.link-img-L li a span{
    left:102px;
}
@media screen and (max-width:1000px){
    .link-img-L li{
        width:100%;
        margin:0 0 40px;
    }
    .link-img-L li:nth-child(2n){
        margin-right:0;
    }
    .link-img-L li a{
        width:300px;
        margin:0 auto;
        height:100px;
    }
    .link-img-L li a img{
        width:100px;
        height:auto;
    }
    .link-img-L li a span{
        left:0;
    }
}


/* 画像付き②（中） */
.link-img-M li{
    width:320px;
    margin:0 20px 50px 0;
}
.link-img-M li:nth-child(3n){
    margin-right:0;
}
.link-img-M li a{
    height:180px;
}
.link-img-M li a span{
    left:10px;
}
.link-img-L li a img{
    height:160px;
    width:auto;
}
@media screen and (max-width:1000px){
    .link-img-M li{
        width:100%;
        margin:0 auto 40px;
    }
    .link-img-M li a{
        width:300px;
        margin:0 auto;
        height:100px;
    }
    .link-img-L li a img{
        height:100px;
        width:auto;
    }
    .link-img-M li a span{
        left:0;
    }
}


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

/* 通常リスト */
.list-main{
    margin:0 0 20px;
}
.list-main li{
    background-image:url("/common/images/arr_02.png");
    background-position:left top 5px;
    background-size:6px 12px;
    background-repeat:no-repeat;
    padding-left:15px;
    margin:0 0 10px;
}

/* Q&Aリスト */
.list-qa{
    margin:0 0 20px;
}
.list-qa dl{
    border-bottom:1px solid #bfbfbf;
    display:block;
}
.list-qa dl dt::before,
.list-qa dl dd::before{
    font-family:'Dancing Script', cursive;
    font-weight:bold;
    display:inline-block;
    color:#16408c;
    font-size:25px;
    padding-right:10px;
}
/* Q */
.list-qa dl dt{
    padding:20px;
    display:block;
    width:100%;
    background-image:url("/common/images/arr_05.png");
    background-repeat:no-repeat;
    background-position:98% center;
    background-size:auto 7px;
    cursor:pointer;
}
.list-qa dl dt.is-open{
    background-image:url("/common/images/arr_06.png");
}
.list-qa dl dt::before{
    content:"Q.";
}
/* A */
.list-qa dl dd{
    display:none;
    background-color:#f7f7f7;
    padding:20px;
}
.list-qa dl dd::before{
    content:"A.";
}
@media screen and (max-width:1000px){
    .list-qa dl dt::before,
    .list-qa dl dd::before{
        font-size:20px;
    }
    /* Q */
    .list-qa dl dt{
        padding:10px;
    }
    /* A */
    .list-qa dl dd{
        padding:10px;
    }
}

/* 店舗リスト */
.list-shop{
    border-top:1px solid #bfbfbf;
}
.list-shop li{
    border-bottom:1px solid #bfbfbf;
}
.list-shop-main{
    display:table;
    width:100%;
    padding:20px;
}
.list-shop-main-img,
.list-shop-main-txt{
    display:table-cell;
    vertical-align:top;
}
.list-shop-main-img{
    width:200px;
}
.list-shop-main-img p{
    width:100%;
    height:120px;
    border-radius:5px;
    overflow:hidden;
    position:relative;
}
.list-shop-main-img p img{
    position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100%;
	height: auto;
}
.list-shop-main-txt{
    padding-left:20px;
}
.list-shop-main-txt .ttl-SS{
    margin-bottom:10px !important;
    font-size:18px;
}
.is-close .list-shop-main-txt .ttl-SS{
    color:#a9a9a9;
}
.is-close .list-shop-main-txt .ttl-SS::after{
    content:"本日は店休日です";
    font-size:13px;
    color:#fff;
    background-color:#f29c9f;
    display:inline-block;
    padding:1px 10px;
    margin-left:10px;
    vertical-align:middle;
    border-radius:30px;
}

.list-shop-btn{
    padding:10px;
    background-color:#eee;
    text-align:center;
}
@media screen and (max-width:1000px){
    .list-shop-main{
        display:block;
        padding:15px;
    }
    .list-shop-main-img,
    .list-shop-main-txt{
        display:block;
    }
    .list-shop-main-img{
        margin:0 auto 10px;
    }
    .list-shop-main-txt{
        padding-left:0;
    }
    .list-shop-main-txt .ttl-SS{
        font-size:16px;
    }
    .list-shop-btn{
        padding:10px;
    }
    .list-shop-btn .btn-dark{
        margin-bottom:5px;
    }
}

/* 汎用リスト */
.list-normal{
    border-top:1px solid #bfbfbf;
    width:100%;
    margin:0 0 20px;
}

.list-normal li{
    background-image:url("/common/images/arr_01.png");
    background-position:right 5px bottom 5px;
    background-repeat:no-repeat;
    display:table;
    width:100%;
    border-bottom:1px solid #bfbfbf;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
}
.list-normal li:hover{
    background-color:#f8f8f8;
}
.list-normal li a{
    display:block;
    padding:20px 30px 20px 20px;
    text-decoration:none;
    color:#333;
}

.list-normal-img,
.list-normal-txt{
    display:table-cell;
    vertical-align:middle;
}

.list-normal-img{
    width:270px;
    padding-right:20px;
}
.list-normal-img p{
    position:relative;
    width:100%;
    height:150px;
    overflow:hidden;
    background-color:#eee;
    border-radius:10px;
}
.list-normal-img p img{
    position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: auto;
	height: 100%;
}
.list-normal-txt .ttl-SS{
    font-size:20px;
    margin-bottom:10px;
}
.list-normal-txt p{
    margin:0 0 10px;
}
.list-normal-txt-marks img{
    width:50px;
    height:auto;
}
@media screen and (max-width:1000px){
    .list-normal li{
        display:block;
    }
    .list-normal li a{
        padding:15px;
    }

    .list-normal-img,
    .list-normal-txt{
        display:block;
    }

    .list-normal-img{
        width:280px;
        padding-right:0;
        margin:0 auto 10px;
    }
    .list-normal-img p img{
        width: 100%;
        height: auto;
    }
    .list-normal-txt .ttl-SS{
        font-size:18px;
    }
    .list-normal-txt-marks img{
        margin-bottom:3px;
    }
}

/* 洗濯マークリスト */
.list-mark{
    margin:0 0 10px;
}
.list-mark li{
    width:50%;
    display:inline-block;
    float:left;
    margin:0 0 20px;
}

.list-mark-img,
.list-mark-txt{
    display:table-cell;
    vertical-align:middle;
}
.list-mark-txt{
    padding-left:20px;
}
@media screen and (max-width:1000px){
    .list-mark li{
        width:100%;
        display:block;
        float:none;
        margin:0 0 10px;
    }

    .list-mark-img{
        width:50px;
        vertical-align:top;
    }
    
    .list-mark-txt{
        padding-left:20px;
        vertical-align:top;
    }
}

/* 横並び画像リスト（補正等） */
.list-img{
    text-align:center;
    margin:0 0 30px;
}
.list-img li{
    display:inline-block;
    border-radius:10px;
    overflow:hidden;
    position:relative;
    width:250px;
    margin:0 10px;
}

.list-img li img{
    max-width:100%;
    height:auto;
}
@media screen and (max-width:1000px){
    .list-img{
        margin:0 0 20px;
    }
    .list-img li{
        width:120px;
        margin:0 5px 10px;
    }

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

/* ２カラムリスト */
.list-2col{
}
.list-2col li{
    display:inline-block;
    width:calc( 50% - 15px );
    float:left;
    margin-right:30px;
    margin-bottom:30px;
}
.list-2col li:nth-child(2n){
    margin-right:0;
}
.list-2col li a{
    display:block;
}
.list-2col li a img{
    max-width:100%;
    height:auto;
}
@media screen and (max-width:1000px){
    .list-2col li{
        display:block;
        width:100%;
        float:none;
        margin-right:0;
        margin-bottom:20px;
    }
}

/* 分類：テーブル
----------------------------------------------------------------------------- */

.tbl-normal,
.tbl-price{
    margin:0 0 20px;
    border-spacing:3px;
    border-collapse:separate;
    width:100%;
}

/* 汎用テーブル */
.tbl-normal th,
.tbl-normal td{
    padding:10px 20px;
}
.tbl-normal th{
    background-color:#16408c;
    color:#fff;
    width:160px;
    text-align:left;
    vertical-align:top;
}
.tbl-normal td{
    background-color:#eee;
}
.tbl-normal .is-required{
    background-color:#a40000;
}
@media screen and (max-width:1000px){
    .tbl-normal th,
    .tbl-normal td{
        padding:5px 10px;
    }
    .tbl-normal th{
        width:80px;
    }
    form .tbl-normal th,
    form .tbl-normal td{
        display:block;
        width:100%;
    }
    
}

/* 価格表用テーブル */
.tbl-price{
    width:100%;
}
.tbl-price th,
.tbl-price td{
    padding:5px 10px;
}

.tbl-price thead th{
    background-color:#16408c;
    color:#fff;
}
.tbl-price tbody th{
    background-color:#486eb2;
    color:#fff;
}
.tbl-price tbody td{
    background-color:#eee;
    vertical-align:middle;
    text-align:center;
}
.tbl-price tbody td strong{
    font-size:25px;
    font-weight:bold;
    color:#16408c;
    padding-right:10px;
}

/* 分類：スライダー
----------------------------------------------------------------------------- */

/* 記事系スライダー */
.slider-article{
    margin:0 0 30px;
    text-align:center;
}

.slider-article li{
    display:inline-block;
    max-width:360px;
    min-height:350px;
    position:relative;
}
.slider-article li a{
    color:#333;
    text-decoration:none;
    display:block;
    position:relative;
    padding-top:180px;
}
.slider-article li a:hover .slider-article-txt{
    background-color:#f8f8f8;
}

.slider-article-img{
    width:360px;
    height:250px;
    position:absolute;
    z-index:-1;
    top:0;
    left:0;
    overflow:hidden;
}
.slider-article-img img{
    position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100%;
	height: auto;
}

.slider-article-txt{
    background-color:#fff;
    text-align:center;
    padding:15px;
    background-image:url("/common/images/arr_01.png");
    background-repeat:no-repeat;
    background-position:right 5px bottom 5px;
    width:300px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
    margin:0 auto ;
}

.slider-article .slick-next,
.slider-article .slick-prev{
    border:none;
    background-color:transparent;
    top:40%;
    position:absolute;
    z-index:7777;
}
.slider-article .slick-next{
    right:10px;
}
.slider-article .slick-prev{
    left:10px;
}

.slider-article-txt .ttl-SS{
    text-align:center;
    font-size:18px;
    margin-bottom:5px;
}

.slider-article-txt p{
    margin:0 0 10px;
}

.slider-article-txt-mark img{
    display:inline-block !important;
    width:50px;
    height:50px;
    margin:0 2px;
}
@media screen and (max-width:1000px){
    .slider-article{
    }

    .slider-article li{
        max-width:280px;
        padding:0 10px;
        min-height:150px;
    }

    .slider-article-img{
        width:100%;
        height:250px;
    }

    .slider-article-txt{
        padding:10px;
        width:90%;
    }
    .slider-article-txt .ttl-SS{
        font-size:16px;
    }

    .slider-article .slick-next,
    .slider-article .slick-prev{
        top:40%;
    }
    .slider-article .slick-next img,
    .slider-article .slick-prev img{
        width:17px;
        height:auto;
    }
    .slider-article .slick-next{
        right:5px;
    }
    .slider-article .slick-prev{
        left:5px;
    }

    .slider-article-txt p{
        margin:0 0 10px;
    }
    .slider-article li a{
        padding-top:150px;
    }

    .slider-article-txt-mark img{
        width:40px;
        height:40px;
    }
}

/* レイアウト：システムメッセージ
----------------------------------------------------------------------------- */
.system-modal{
	position:relative;
}
.system-modal-box{
	width:300px;
	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-ttl{
	padding:5px 10px;
	text-align:center;
	font-weight:bold;
}
/* 禁止 */
.system-modal.is-error .system-modal-ttl,
.system-modal.is-error .system-modal-btn button{
	color:#fff;
	background-color:#c9234e;
}
/* 警告 */
.system-modal.is-caution .system-modal-ttl,
.system-modal.is-caution .system-modal-btn button{
	color:#fff;
	background-color:#c99c23;
}
/* 通知 */
.system-modal.is-info .system-modal-ttl,
.system-modal.is-info .system-modal-btn button{
	color:#fff;
	background-color:#83ca37;
}

/* メッセージ */
.system-modal-msg{
	padding:10px;
	margin:0 0 20px;
}

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

/* 画像アップロードプレビュー
-------------------------------------------------------------------------*/

.f-upload-preview{
	background-color:#eee;
	width:300px;
	height:200px;
	padding:10px;
	background-image:url("/common/images/img_noimage.png");
	background-repeat:no-repeat;
	background-position:center center;
	background-size:64px 64px;
	cursor:pointer;
}

.f-upload-preview img{
	max-width:100%;
	max-height:100%;
}