@charset "shift_jis";
/*---------------------------------------------------------
 * システム全体の基本設定（タグレベル）をするスタイルシート
 * BootStrapの設定を上書きする
 *---------------------------------------------------------*/

/* システム全体の基本フォントサイズ（BootStrapの設定をハック） */
:root {
    font-size:14px;
}

/* フォントまとめ（ブラウザのデフォルト設定もあるため、入力欄はタグごとに設定） */
body     { font-family : "Droid Sans Japanese", "ヒラギノ角ゴ Pro N", "Hiragino Kaku Gothic Pro", "Meiryo UI", sans-serif; }
input    { font-family : "Droid Sans Japanese", "ヒラギノ角ゴ Pro N", "Hiragino Kaku Gothic Pro", "Meiryo UI", sans-serif; }
textarea { font-family : "Droid Sans Japanese", "ヒラギノ角ゴ Pro N", "Hiragino Kaku Gothic Pro", "Meiryo UI", sans-serif; }
select   { font-family : "Droid Sans Japanese", "ヒラギノ角ゴ Pro N", "Hiragino Kaku Gothic Pro", "Meiryo UI", sans-serif; }

/* 基本タグ -------------------------------------------- */
html {
    width  : 100%;
    height : 100%;
    display: block;
}

body {
    /*ページ全体の基本テキスト色*/
    color : Black;
    width : 100%;
    height: 100%;
    background-color: transparent;
    overflow:hidden;
    word-break  : break-all;
    word-wrap   : break-word;
    white-space : normal;
}

/* アンカータグ -------------------------------------------- */
a:link {
    color: #034af3;
    text-decoration: underline;
}
a:visited {
    color: #034af3;
    text-decoration: underline;
}
a:hover {
    color: #1d60ff;
    text-decoration: none;
}
a:active {
    color: #034af3;
    text-decoration: underline;
}

/* リストタグ -------------------------------------------- */
ul {
    margin : 0;
    padding: 0;
    line-height: 1.6em;
}

li {
    margin      : 0.3rem 0;
    word-break  : break-all;
    word-wrap   : break-word;
    white-space : normal;
}

/* テーブルタグ -------------------------------------------- */
th,td {
    word-break  : break-all;
    word-wrap   : break-word;
    white-space : normal;
}

/* 文字入力タグ -------------------------------------------- */
 input[type='text'] 
,input[type='password'] 
,input[type='tel'] 
,input[type='email'] 
,input[type='number'] 
,input[type='date'] 
,input[type='month'] 
{
    padding: 0.375rem 0.75rem;
    line-height: 1.5;
    background-color: #ffffff;
    background-clip: padding-box;
    border       : 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
 input[type='text']::placeholder
,input[type='password']::placeholder
,input[type='tel']::placeholder
,input[type='email']::placeholder
,input[type='number']::placeholder
,input[type='date']::placeholder
,input[type='month']::placeholder
,input[type='text']::-moz-placeholder
,input[type='password']::-moz-placeholder
,input[type='tel']::-moz-placeholder
,input[type='email']::-moz-placeholder
,input[type='number']::-moz-placeholder
,input[type='date']::-moz-placeholder
,input[type='month']::-moz-placeholder
{
    color  : #6c757d;
    opacity: 1;
}

 input[type='text']:focus 
,input[type='password']:focus 
,input[type='tel']:focus 
,input[type='email']:focus 
,input[type='number']:focus 
,input[type='date']:focus 
,input[type='month']:focus 
{
    background-color: #ffffff;
    border-color    : #D3D3D3;
    outline         : 0;
    box-shadow      : 0 0 0 0.2rem rgba(211, 211, 211, 0.75);
}

 input[type='text'][readonly] 
,input[type='password'][readonly] 
,input[type='tel'][readonly] 
,input[type='email'][readonly] 
,input[type='number'][readonly] 
,input[type='date'][readonly] 
,input[type='month'][readonly] 
,input[type='text']:disabled 
,input[type='password']:disabled 
,input[type='tel']:disabled 
,input[type='email']:disabled 
,input[type='number']:disabled 
,input[type='date']:disabled 
,input[type='month']:disabled
{
    color           :#808080 !important;
    background-color:#D3D3D3 !important;
}

textarea {
    overflow-y:scroll;
}
textarea:focus {
    border-color    : #D3D3D3 !important;
    box-shadow      : 0 0 0 0.2rem rgba(211, 211, 211, 0.75) !important;
}

/* ボタンタグ -------------------------------------------- */
 input[type='button'] 
,input[type='submit'] 
,button
{
    font-weight:bold !important;
    margin     :0.2rem 0.3rem;
}

 input[type='button']:disabled
,input[type='submit']:disabled 
,button:disabled
{
    cursor: default;
}

/* コンボタグ-------------------------------------------- */
select[type='a'],select:not([type='a']) { /*（優先度上昇）*/
    padding: 0.375rem 0.5rem;
    border : 1px solid #ced4da;
    border-radius: 0.25rem;
    line-height: 1.5;
    background-color: #ffffff;
    background-clip: padding-box;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

select[type='a']:focus,select:not([type='a']):focus {
    border-color : #D3D3D3;
    outline      : 0;
    box-shadow   : 0 0 0 0.2rem rgba(211, 211, 211, 0.75);
}


/* チェックボックス -------------------------------------------- */
input[type="checkbox"] {
    opacity: 0;
}
input[type="checkbox"] ~ label {
    position: relative;
    display: inline-block;
    padding: 0.5rem 0 0.5rem 2rem;
    cursor: pointer;
}
input[type="checkbox"] ~ label::before {
    position: absolute;
    content: '';
    top   : 0.6rem;
    left  : 0.1rem;
    width : 1.7rem;
    height: 1.7rem;
    background: #e6e6e6;
}
input[type="checkbox"]:checked ~ label::after {
    position: absolute;
    content: '';
    top   : 0.8rem;
    left  : 0.3rem;
    width : 1.2rem;
    height: 0.7rem;
    border-left  : 4px solid #82cddd;
    border-bottom: 4px solid #82cddd;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
input[type="checkbox"]:disabled ~ label {
    cursor: default;
}
input[type="checkbox"]:checked:disabled ~ label::after {
    border-left-color  : #7b7b7b;
    border-bottom-color: #7b7b7b;
}
input[type="checkbox"]:focus ~ label::before {
    box-shadow : 0 0 0 0.2rem rgba(151, 151, 151, 0.75);
}

@media (min-width: 768px) {
    input[type="checkbox"] ~ label::before {
        width : 1.5rem;
        height: 1.5rem;
    }
    input[type="checkbox"]:checked ~ label::after {
        width : 1.3rem;
        height: 0.8rem;
    }
}
/* ラジオボタン ------------------------------------------------- */
input[type="radio"] {
    opacity: 0;
}
input[type="radio"] ~ label {
    position: relative;
    display: inline-block;
    padding: 0.5rem 0 0.5rem 2rem;
    cursor: pointer;
}
input[type="radio"] ~ label::before {
    position: absolute;
    content: '';
    top   : 0.6rem;
    left  : 0.1rem;
    width : 1.5rem;
    height: 1.5rem;
    background: #D3D3D3;
    border-radius: 100%;
}
input[type="radio"]:checked ~ label::after {
    position: absolute;
    content: '';
    top   : 0.95rem;
    left  : 0.45rem;
    width : 0.8rem;
    height: 0.8rem;
    background: #82cddd;
    border-radius: 100%;
}
input[type="radio"]:disabled ~ label {
    cursor: default;
}
input[type="radio"]:checked:disabled ~ label::after {
    background: #7b7b7b;
}
input[type="radio"]:focus ~ label::before {
    box-shadow : 0 0 0 0.2rem rgba(151, 151, 151, 0.75);
}

label {
    margin-bottom:0;
}

@media (min-width: 768px) {
    input[type="radio"]:checked ~ label::after {
        top   : 1.0rem;
        left  : 0.55rem;
        width : 0.7rem;
        height: 0.7rem;
    }
}


/*↓.NET MVC用エラーメッセージ↓------------------------------------------*/
.validation-summary-errors {
    font-weight: bold;
    color      : #dc3545 !important;
    padding-left: 1.5rem;
}
/*↑.NET MVC用エラーメッセージ↑------------------------------------------*/


/*↓bootStrapのクラスをハック↓-------------------------------------------*/
.row {
    padding:0;
    margin :0;
}
.row>div:not([class*="offset-"])[class*="col-"] {
    padding:0;
    margin :0;
}
.row.ns_col_middle>div[class^="col-"] {
    align-self:center;
}
.form-group {
    padding:0;
    margin :0;
    line-height: 1.7rem;
}
.form-check {
    padding:0;
    margin :0;
    line-height: 1.7rem;
}
.focus.btn, .btn:focus {
    box-shadow : 0px 0px 0px 0.2rem rgba(211, 211, 211, 0.75);
}
/*↑bootStrapのクラスをハック↑-------------------------------------------*/

/*↓レイアウト指定↓------------------------------------------------------*/
/*幅指定*/
.ns_w_auto { width: auto !important; }
.ns_w_1  { width: 1rem !important; }  .ns_w_2  { width: 2rem !important; }  .ns_w_3  { width: 3rem !important; }  .ns_w_4  { width: 4rem !important; }  .ns_w_5  { width: 5rem !important; }  .ns_w_6  { width: 6rem !important; }  .ns_w_7  { width: 7rem !important; }  .ns_w_8  { width: 8rem !important; }  .ns_w_9  { width: 9rem !important; }  .ns_w_10 { width:10rem !important; }
.ns_w_11 { width:11rem !important; }  .ns_w_12 { width:12rem !important; }  .ns_w_13 { width:13rem !important; }  .ns_w_14 { width:14rem !important; }  .ns_w_15 { width:15rem !important; }  .ns_w_16 { width:16rem !important; }  .ns_w_17 { width:17rem !important; }  .ns_w_18 { width:18rem !important; }  .ns_w_19 { width:19rem !important; }  .ns_w_20 { width:20rem !important; }
.ns_w_21 { width:21rem !important; }  .ns_w_22 { width:22rem !important; }  .ns_w_23 { width:23rem !important; }  .ns_w_24 { width:24rem !important; }  .ns_w_25 { width:25rem !important; }  .ns_w_26 { width:26rem !important; }  .ns_w_27 { width:27rem !important; }  .ns_w_28 { width:28rem !important; }  .ns_w_29 { width:29rem !important; }  .ns_w_30 { width:30rem !important; }
/*高さ指定*/
.ns_h_auto { height: auto !important; }
.ns_h_1  { height: 1rem !important; }  .ns_h_2  { height: 2rem !important; }  .ns_h_3  { height: 3rem !important; }  .ns_h_4  { height: 4rem !important; }  .ns_h_5  { height: 5rem !important; }  .ns_h_6  { height: 6rem !important; }  .ns_h_7  { height: 7rem !important; }  .ns_h_8  { height: 8rem !important; }  .ns_h_9  { height: 9rem !important; }  .ns_h_10 { height:10rem !important; }
.ns_h_11 { height:11rem !important; }  .ns_h_12 { height:12rem !important; }  .ns_h_13 { height:13rem !important; }  .ns_h_14 { height:14rem !important; }  .ns_h_15 { height:15rem !important; }  .ns_h_16 { height:16rem !important; }  .ns_h_17 { height:17rem !important; }  .ns_h_18 { height:18rem !important; }  .ns_h_19 { height:19rem !important; }  .ns_h_20 { height:20rem !important; }
.ns_h_21 { height:21rem !important; }  .ns_h_22 { height:22rem !important; }  .ns_h_23 { height:23rem !important; }  .ns_h_24 { height:24rem !important; }  .ns_h_25 { height:25rem !important; }  .ns_h_26 { height:26rem !important; }  .ns_h_27 { height:27rem !important; }  .ns_h_28 { height:28rem !important; }  .ns_h_29 { height:29rem !important; }  .ns_h_30 { height:30rem !important; }
/*最小幅指定*/
.ns_min_w_1  { min-width: 1rem !important; }  .ns_min_w_2  { min-width: 2rem !important; }  .ns_min_w_3  { min-width: 3rem !important; }  .ns_min_w_4  { min-width: 4rem !important; }  .ns_min_w_5  { min-width: 5rem !important; }  .ns_min_w_6  { min-width: 6rem !important; }  .ns_min_w_7  { min-width: 7rem !important; }  .ns_min_w_8  { min-width: 8rem !important; }  .ns_min_w_9  { min-width: 9rem !important; }  .ns_min_w_10 { min-width:10rem !important; }
.ns_min_w_11 { min-width:11rem !important; }  .ns_min_w_12 { min-width:12rem !important; }  .ns_min_w_13 { min-width:13rem !important; }  .ns_min_w_14 { min-width:14rem !important; }  .ns_min_w_15 { min-width:15rem !important; }  .ns_min_w_16 { min-width:16rem !important; }  .ns_min_w_17 { min-width:17rem !important; }  .ns_min_w_18 { min-width:18rem !important; }  .ns_min_w_19 { min-width:19rem !important; }  .ns_min_w_20 { min-width:20rem !important; }
.ns_min_w_21 { min-width:21rem !important; }  .ns_min_w_22 { min-width:22rem !important; }  .ns_min_w_23 { min-width:23rem !important; }  .ns_min_w_24 { min-width:24rem !important; }  .ns_min_w_25 { min-width:25rem !important; }  .ns_min_w_26 { min-width:26rem !important; }  .ns_min_w_27 { min-width:27rem !important; }  .ns_min_w_28 { min-width:28rem !important; }  .ns_min_w_29 { min-width:29rem !important; }  .ns_min_w_30 { min-width:30rem !important; }
/*最小高指定*/
.ns_min_h_1  { min-height: 1rem !important; }  .ns_min_h_2  { min-height: 2rem !important; }  .ns_min_h_3  { min-height: 3rem !important; }  .ns_min_h_4  { min-height: 4rem !important; }  .ns_min_h_5  { min-height: 5rem !important; }  .ns_min_h_6  { min-height: 6rem !important; }  .ns_min_h_7  { min-height: 7rem !important; }  .ns_min_h_8  { min-height: 8rem !important; }  .ns_min_h_9  { min-height: 9rem !important; }  .ns_min_h_10 { min-height:10rem !important; }
.ns_min_h_11 { min-height:11rem !important; }  .ns_min_h_12 { min-height:12rem !important; }  .ns_min_h_13 { min-height:13rem !important; }  .ns_min_h_14 { min-height:14rem !important; }  .ns_min_h_15 { min-height:15rem !important; }  .ns_min_h_16 { min-height:16rem !important; }  .ns_min_h_17 { min-height:17rem !important; }  .ns_min_h_18 { min-height:18rem !important; }  .ns_min_h_19 { min-height:19rem !important; }  .ns_min_h_20 { min-height:20rem !important; }
.ns_min_h_21 { min-height:21rem !important; }  .ns_min_h_22 { min-height:22rem !important; }  .ns_min_h_23 { min-height:23rem !important; }  .ns_min_h_24 { min-height:24rem !important; }  .ns_min_h_25 { min-height:25rem !important; }  .ns_min_h_26 { min-height:26rem !important; }  .ns_min_h_27 { min-height:27rem !important; }  .ns_min_h_28 { min-height:28rem !important; }  .ns_min_h_29 { min-height:29rem !important; }  .ns_min_h_30 { min-height:30rem !important; }
/*最大幅指定*/
.ns_max_w_1  { max-width: 1rem !important; }  .ns_max_w_2  { max-width: 2rem !important; }  .ns_max_w_3  { max-width: 3rem !important; }  .ns_max_w_4  { max-width: 4rem !important; }  .ns_max_w_5  { max-width: 5rem !important; }  .ns_max_w_6  { max-width: 6rem !important; }  .ns_max_w_7  { max-width: 7rem !important; }  .ns_max_w_8  { max-width: 8rem !important; }  .ns_max_w_9  { max-width: 9rem !important; }  .ns_max_w_10 { max-width:10rem !important; }
.ns_max_w_11 { max-width:11rem !important; }  .ns_max_w_12 { max-width:12rem !important; }  .ns_max_w_13 { max-width:13rem !important; }  .ns_max_w_14 { max-width:14rem !important; }  .ns_max_w_15 { max-width:15rem !important; }  .ns_max_w_16 { max-width:16rem !important; }  .ns_max_w_17 { max-width:17rem !important; }  .ns_max_w_18 { max-width:18rem !important; }  .ns_max_w_19 { max-width:19rem !important; }  .ns_max_w_20 { max-width:20rem !important; }
.ns_max_w_21 { max-width:21rem !important; }  .ns_max_w_22 { max-width:22rem !important; }  .ns_max_w_23 { max-width:23rem !important; }  .ns_max_w_24 { max-width:24rem !important; }  .ns_max_w_25 { max-width:25rem !important; }  .ns_max_w_26 { max-width:26rem !important; }  .ns_max_w_27 { max-width:27rem !important; }  .ns_max_w_28 { max-width:28rem !important; }  .ns_max_w_29 { max-width:29rem !important; }  .ns_max_w_30 { max-width:30rem !important; }
/*最大高指定*/
.ns_max_h_1  { max-height: 1rem !important; }  .ns_max_h_2  { max-height: 2rem !important; }  .ns_max_h_3  { max-height: 3rem !important; }  .ns_max_h_4  { max-height: 4rem !important; }  .ns_max_h_5  { max-height: 5rem !important; }  .ns_max_h_6  { max-height: 6rem !important; }  .ns_max_h_7  { max-height: 7rem !important; }  .ns_max_h_8  { max-height: 8rem !important; }  .ns_max_h_9  { max-height: 9rem !important; }  .ns_max_h_10 { max-height:10rem !important; }
.ns_max_h_11 { max-height:11rem !important; }  .ns_max_h_12 { max-height:12rem !important; }  .ns_max_h_13 { max-height:13rem !important; }  .ns_max_h_14 { max-height:14rem !important; }  .ns_max_h_15 { max-height:15rem !important; }  .ns_max_h_16 { max-height:16rem !important; }  .ns_max_h_17 { max-height:17rem !important; }  .ns_max_h_18 { max-height:18rem !important; }  .ns_max_h_19 { max-height:19rem !important; }  .ns_max_h_20 { max-height:20rem !important; }
.ns_max_h_21 { max-height:21rem !important; }  .ns_max_h_22 { max-height:22rem !important; }  .ns_max_h_23 { max-height:23rem !important; }  .ns_max_h_24 { max-height:24rem !important; }  .ns_max_h_25 { max-height:25rem !important; }  .ns_max_h_26 { max-height:26rem !important; }  .ns_max_h_27 { max-height:27rem !important; }  .ns_max_h_28 { max-height:28rem !important; }  .ns_max_h_29 { max-height:29rem !important; }  .ns_max_h_30 { max-height:30rem !important; }

@media (min-width: 768px) {
    /*幅指定*/
    .ns_md_w_auto { width: auto !important; }
    .ns_md_w_1  { width: 1rem !important; }  .ns_md_w_2  { width: 2rem !important; }  .ns_md_w_3  { width: 3rem !important; }  .ns_md_w_4  { width: 4rem !important; }  .ns_md_w_5  { width: 5rem !important; }  .ns_md_w_6  { width: 6rem !important; }  .ns_md_w_7  { width: 7rem !important; }  .ns_md_w_8  { width: 8rem !important; }  .ns_md_w_9  { width: 9rem !important; }  .ns_md_w_10 { width:10rem !important; }
    .ns_md_w_11 { width:11rem !important; }  .ns_md_w_12 { width:12rem !important; }  .ns_md_w_13 { width:13rem !important; }  .ns_md_w_14 { width:14rem !important; }  .ns_md_w_15 { width:15rem !important; }  .ns_md_w_16 { width:16rem !important; }  .ns_md_w_17 { width:17rem !important; }  .ns_md_w_18 { width:18rem !important; }  .ns_md_w_19 { width:19rem !important; }  .ns_md_w_20 { width:20rem !important; }
    .ns_md_w_21 { width:21rem !important; }  .ns_md_w_22 { width:22rem !important; }  .ns_md_w_23 { width:23rem !important; }  .ns_md_w_24 { width:24rem !important; }  .ns_md_w_25 { width:25rem !important; }  .ns_md_w_26 { width:26rem !important; }  .ns_md_w_27 { width:27rem !important; }  .ns_md_w_28 { width:28rem !important; }  .ns_md_w_29 { width:29rem !important; }  .ns_md_w_30 { width:30rem !important; }
    /*高さ指定*/
    .ns_md_h_auto { height: auto !important; }
    .ns_md_h_1  { height: 1rem !important; }  .ns_md_h_2  { height: 2rem !important; }  .ns_md_h_3  { height: 3rem !important; }  .ns_md_h_4  { height: 4rem !important; }  .ns_md_h_5  { height: 5rem !important; }  .ns_md_h_6  { height: 6rem !important; }  .ns_md_h_7  { height: 7rem !important; }  .ns_md_h_8  { height: 8rem !important; }  .ns_md_h_9  { height: 9rem !important; }  .ns_md_h_10 { height:10rem !important; }
    .ns_md_h_11 { height:11rem !important; }  .ns_md_h_12 { height:12rem !important; }  .ns_md_h_13 { height:13rem !important; }  .ns_md_h_14 { height:14rem !important; }  .ns_md_h_15 { height:15rem !important; }  .ns_md_h_16 { height:16rem !important; }  .ns_md_h_17 { height:17rem !important; }  .ns_md_h_18 { height:18rem !important; }  .ns_md_h_19 { height:19rem !important; }  .ns_md_h_20 { height:20rem !important; }
    .ns_md_h_21 { height:21rem !important; }  .ns_md_h_22 { height:22rem !important; }  .ns_md_h_23 { height:23rem !important; }  .ns_md_h_24 { height:24rem !important; }  .ns_md_h_25 { height:25rem !important; }  .ns_md_h_26 { height:26rem !important; }  .ns_md_h_27 { height:27rem !important; }  .ns_md_h_28 { height:28rem !important; }  .ns_md_h_29 { height:29rem !important; }  .ns_md_h_30 { height:30rem !important; }
    /*最小幅指定*/
    .ns_md_min_w_1  { min-width: 1rem !important; }  .ns_md_min_w_2  { min-width: 2rem !important; }  .ns_md_min_w_3  { min-width: 3rem !important; }  .ns_md_min_w_4  { min-width: 4rem !important; }  .ns_md_min_w_5  { min-width: 5rem !important; }  .ns_md_min_w_6  { min-width: 6rem !important; }  .ns_md_min_w_7  { min-width: 7rem !important; }  .ns_md_min_w_8  { min-width: 8rem !important; }  .ns_md_min_w_9  { min-width: 9rem !important; }  .ns_md_min_w_10 { min-width:10rem !important; }
    .ns_md_min_w_11 { min-width:11rem !important; }  .ns_md_min_w_12 { min-width:12rem !important; }  .ns_md_min_w_13 { min-width:13rem !important; }  .ns_md_min_w_14 { min-width:14rem !important; }  .ns_md_min_w_15 { min-width:15rem !important; }  .ns_md_min_w_16 { min-width:16rem !important; }  .ns_md_min_w_17 { min-width:17rem !important; }  .ns_md_min_w_18 { min-width:18rem !important; }  .ns_md_min_w_19 { min-width:19rem !important; }  .ns_md_min_w_20 { min-width:20rem !important; }
    .ns_md_min_w_21 { min-width:21rem !important; }  .ns_md_min_w_22 { min-width:22rem !important; }  .ns_md_min_w_23 { min-width:23rem !important; }  .ns_md_min_w_24 { min-width:24rem !important; }  .ns_md_min_w_25 { min-width:25rem !important; }  .ns_md_min_w_26 { min-width:26rem !important; }  .ns_md_min_w_27 { min-width:27rem !important; }  .ns_md_min_w_28 { min-width:28rem !important; }  .ns_md_min_w_29 { min-width:29rem !important; }  .ns_md_min_w_30 { min-width:30rem !important; }
    /*最小高指定*/
    .ns_md_min_h_1  { min-height: 1rem !important; }  .ns_md_min_h_2  { min-height: 2rem !important; }  .ns_md_min_h_3  { min-height: 3rem !important; }  .ns_md_min_h_4  { min-height: 4rem !important; }  .ns_md_min_h_5  { min-height: 5rem !important; }  .ns_md_min_h_6  { min-height: 6rem !important; }  .ns_md_min_h_7  { min-height: 7rem !important; }  .ns_md_min_h_8  { min-height: 8rem !important; }  .ns_md_min_h_9  { min-height: 9rem !important; }  .ns_md_min_h_10 { min-height:10rem !important; }
    .ns_md_min_h_11 { min-height:11rem !important; }  .ns_md_min_h_12 { min-height:12rem !important; }  .ns_md_min_h_13 { min-height:13rem !important; }  .ns_md_min_h_14 { min-height:14rem !important; }  .ns_md_min_h_15 { min-height:15rem !important; }  .ns_md_min_h_16 { min-height:16rem !important; }  .ns_md_min_h_17 { min-height:17rem !important; }  .ns_md_min_h_18 { min-height:18rem !important; }  .ns_md_min_h_19 { min-height:19rem !important; }  .ns_md_min_h_20 { min-height:20rem !important; }
    .ns_md_min_h_21 { min-height:21rem !important; }  .ns_md_min_h_22 { min-height:22rem !important; }  .ns_md_min_h_23 { min-height:23rem !important; }  .ns_md_min_h_24 { min-height:24rem !important; }  .ns_md_min_h_25 { min-height:25rem !important; }  .ns_md_min_h_26 { min-height:26rem !important; }  .ns_md_min_h_27 { min-height:27rem !important; }  .ns_md_min_h_28 { min-height:28rem !important; }  .ns_md_min_h_29 { min-height:29rem !important; }  .ns_md_min_h_30 { min-height:30rem !important; }
    /*最小幅指定*/
    .ns_md_max_w_1  { max-width: 1rem !important; }  .ns_md_max_w_2  { max-width: 2rem !important; }  .ns_md_max_w_3  { max-width: 3rem !important; }  .ns_md_max_w_4  { max-width: 4rem !important; }  .ns_md_max_w_5  { max-width: 5rem !important; }  .ns_md_max_w_6  { max-width: 6rem !important; }  .ns_md_max_w_7  { max-width: 7rem !important; }  .ns_md_max_w_8  { max-width: 8rem !important; }  .ns_md_max_w_9  { max-width: 9rem !important; }  .ns_md_max_w_10 { max-width:10rem !important; }
    .ns_md_max_w_11 { max-width:11rem !important; }  .ns_md_max_w_12 { max-width:12rem !important; }  .ns_md_max_w_13 { max-width:13rem !important; }  .ns_md_max_w_14 { max-width:14rem !important; }  .ns_md_max_w_15 { max-width:15rem !important; }  .ns_md_max_w_16 { max-width:16rem !important; }  .ns_md_max_w_17 { max-width:17rem !important; }  .ns_md_max_w_18 { max-width:18rem !important; }  .ns_md_max_w_19 { max-width:19rem !important; }  .ns_md_max_w_20 { max-width:20rem !important; }
    .ns_md_max_w_21 { max-width:21rem !important; }  .ns_md_max_w_22 { max-width:22rem !important; }  .ns_md_max_w_23 { max-width:23rem !important; }  .ns_md_max_w_24 { max-width:24rem !important; }  .ns_md_max_w_25 { max-width:25rem !important; }  .ns_md_max_w_26 { max-width:26rem !important; }  .ns_md_max_w_27 { max-width:27rem !important; }  .ns_md_max_w_28 { max-width:28rem !important; }  .ns_md_max_w_29 { max-width:29rem !important; }  .ns_md_max_w_30 { max-width:30rem !important; }
    /*最小高指定*/
    .ns_md_max_h_1  { max-height: 1rem !important; }  .ns_md_max_h_2  { max-height: 2rem !important; }  .ns_md_max_h_3  { max-height: 3rem !important; }  .ns_md_max_h_4  { max-height: 4rem !important; }  .ns_md_max_h_5  { max-height: 5rem !important; }  .ns_md_max_h_6  { max-height: 6rem !important; }  .ns_md_max_h_7  { max-height: 7rem !important; }  .ns_md_max_h_8  { max-height: 8rem !important; }  .ns_md_max_h_9  { max-height: 9rem !important; }  .ns_md_max_h_10 { max-height:10rem !important; }
    .ns_md_max_h_11 { max-height:11rem !important; }  .ns_md_max_h_12 { max-height:12rem !important; }  .ns_md_max_h_13 { max-height:13rem !important; }  .ns_md_max_h_14 { max-height:14rem !important; }  .ns_md_max_h_15 { max-height:15rem !important; }  .ns_md_max_h_16 { max-height:16rem !important; }  .ns_md_max_h_17 { max-height:17rem !important; }  .ns_md_max_h_18 { max-height:18rem !important; }  .ns_md_max_h_19 { max-height:19rem !important; }  .ns_md_max_h_20 { max-height:20rem !important; }
    .ns_md_max_h_21 { max-height:21rem !important; }  .ns_md_max_h_22 { max-height:22rem !important; }  .ns_md_max_h_23 { max-height:23rem !important; }  .ns_md_max_h_24 { max-height:24rem !important; }  .ns_md_max_h_25 { max-height:25rem !important; }  .ns_md_max_h_26 { max-height:26rem !important; }  .ns_md_max_h_27 { max-height:27rem !important; }  .ns_md_max_h_28 { max-height:28rem !important; }  .ns_md_max_h_29 { max-height:29rem !important; }  .ns_md_max_h_30 { max-height:30rem !important; }
}

/*オーバーフロー設定*/
.ns_ovflw_auto    { overflow  :auto   !important; }
.ns_ovflw_hidden  { overflow  :hidden !important; }
.ns_ovflw_scroll  { overflow  :scroll !important; }
.ns_ovflw_x_auto  { overflow-x:auto   !important; }
.ns_ovflw_x_hidden{ overflow-x:hidden !important; }
.ns_ovflw_x_scroll{ overflow-x:scroll !important; }
.ns_ovflw_y_auto  { overflow-y:auto   !important; }
.ns_ovflw_y_hidden{ overflow-y:hidden !important; }
.ns_ovflw_y_scroll{ overflow-y:scroll !important; }
@media (min-width: 768px) {
    .ns_md_ovflw_auto    { overflow  :auto   !important; }
    .ns_md_ovflw_hidden  { overflow  :hidden !important; }
    .ns_md_ovflw_scroll  { overflow  :scroll !important; }
    .ns_md_ovflw_x_auto  { overflow-x:auto   !important; }
    .ns_md_ovflw_x_hidden{ overflow-x:hidden !important; }
    .ns_md_ovflw_x_scroll{ overflow-x:scroll !important; }
    .ns_md_ovflw_y_auto  { overflow-y:auto   !important; }
    .ns_md_ovflw_y_hidden{ overflow-y:hidden !important; }
    .ns_md_ovflw_y_scroll{ overflow-y:scroll !important; }
}

/*上下アライン*/
.ns_vali_top { vertical-align :top; }
.ns_vali_bas { vertical-align :baseline; }
.ns_vali_mid { vertical-align :middle; }
.ns_vali_btm { vertical-align :bottom; }

/*上下アライン（子要素）*/
.ns_vali_child_top > * { vertical-align :top; }
.ns_vali_child_bas > * { vertical-align :baseline; }
.ns_vali_child_mid > * { vertical-align :middle; }
.ns_vali_child_btm > * { vertical-align :bottom; }

/*上下アライン（子要素）*/
.ns_vali_desc_top * { vertical-align :top; }
.ns_vali_desc_bas * { vertical-align :baseline; }
.ns_vali_desc_mid * { vertical-align :middle; }
.ns_vali_desc_btm * { vertical-align :bottom; }

/*IME-Mode指定(IE Only)*/
.ns_ime_auto {
    ime-mode:auto !important;
}
.ns_ime_on {
    ime-mode:active !important;
}
.ns_ime_off {
    ime-mode:inactive !important;
}
.ns_ime_fix {
    ime-mode:disabled !important;
}

/*テキストにアンダーライン*/
.ns_text_under {
    text-decoration: underline;
    cursor         : pointer;
}

/*テキスト太字*/
.ns_text_bold {
    font-weight:bold;
}

/*PC版でのみ表示項目*/
@media (max-width: 767px) {
    .ns_md_show { display:none !important; }
}
/*↑レイアウト指定↑------------------------------------------------------*/
