/******************************************************************************
******************************************************************************
**
** utility.sc.cssにおいて ( var.3.1.1 )
** -- alignではtext-align/vertical-alignのCSS指定
** -- buttonではボタンのCSS指定
** -- colorでは文字色のCSS指定
** -- clearではグローバルナビのCSS指定
** -- fontでは文字の大きさのCSS指定
** -- iconではアイコンのCSS指定
** -- imgではhoverセレクタやスタイルのCSS指定
** -- marginのCSS指定
** -- messageのCSS指定
** -- paddingのCSS指定
** -- tableでは表のCSS指定
** -- text indentではテキストインデントのCSS指定
** -- ul,olではリストのCSS指定
** -- widthではwidthのCSS指定
**
** PCスタイル設定 / SPスタイル設定
** -- boxではレイアウト用のCSS指定
** -- displayでは非表示のCSS指定
** -- galleryでは複数の画像のレイアウト用のCSS指定
** -- imgでは画像スタイルのCSS指定
** -- serifではセリフスタイルのCSS指定
** -- tableではSP用のCSS指定(SPスタイルのみ)
** -- widthでは横幅スタイルのCSS指定
**
** 注意事項
** -- CSSの命名規則はオリジナルの命名規則を採用しています。
** -- 初期フォントサイズはreset.cssにて10pxにリセットしています。
**    指定単位は[ px ][ rem ][ em ]を使用。
**    例 16px = 1.6rem
** -- 行間は1.6にリセットしています。
**    単位は不要です。(スタイル崩れする可能性有)
**
******************************************************************************
******************************************************************************/

/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** 共通スタイル
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/

/*----------------------------------------------------------------------------
******************************************************************************
** align
******************************************************************************
----------------------------------------------------------------------------*/

.ta_c { text-align:center!important; }
.ta_l { text-align:left!important; }
.ta_r { text-align:right!important; }
.va_top { vertical-align:top!important; }
.va_mdl { vertical-align:middle!important; }
.va_btm { vertical-align:bottom!important; }

/*----------------------------------------------------------------------------
******************************************************************************
** button
******************************************************************************
----------------------------------------------------------------------------*/

.btn_bg_black, .btn_bg_blue, .btn_bg_gray, .btn_bg_green, .btn_bg_orange, .btn_bg_red,
.btn_bdr_black, .btn_bdr_blue, .btn_bdr_gray, .btn_bdr_green, .btn_bdr_orange, .btn_bdr_red {
border-radius: 4px;
cursor: pointer;
display: inline-block;
font-weight: bold;
text-decoration: none;
line-height: 1.1;
padding: 0.7em 1em;
position: relative;
text-align: center;
}
.btn_bg_black {
background-color: rgba(17, 17, 17, 0.9);
color: rgba(255, 255, 255, 1)!important;
}
.btn_bg_black:hover,.btn_bg_black.active {
background-color: rgba(17, 17, 17, 1);
color: rgba(255, 255, 255, 1)!important;
}
.btn_bg_blue {
background-color: rgba(20, 50, 160, 0.9);
color: rgba(255, 255, 255, 1)!important;
}
.btn_bg_blue:hover,.btn_bg_blue.active {
background-color: rgba(20, 50, 160, 1);
color: rgba(255, 255, 255, 1)!important;
}
.btn_bg_gray {
background-color: rgba(153, 153, 153, 0.4);
color: rgba(17, 17, 17, 1)!important;
}
.btn_bg_gray:hover,.btn_bg_gray.active {
background-color: rgba(153, 153, 153, 0.5);
color: rgba(17, 17, 17, 1)!important;
}
.btn_bg_green {
background-color: rgba(57, 118, 52, 0.9);
color: rgba(255, 255, 255, 1)!important;
}
.btn_bg_green:hover,.btn_bg_green.active {
background-color: rgba(57, 118, 52, 1);
color: rgba(255, 255, 255, 1)!important;
}
.btn_bg_orange {
background-color: rgba(220, 150, 30, 0.9);
color: rgba(255, 255, 255, 1)!important;
}
.btn_bg_orange:hover,.btn_bg_orange.active {
background-color: rgba(220, 150, 30, 1);
color: rgba(255, 255, 255, 1)!important;
}
.btn_bg_red {
background-color: rgba(165, 39, 39, 0.9);
color: rgba(255, 255, 255, 1)!important;
}
.btn_bg_red:hover,.btn_bg_red.active {
background-color: rgba(165, 39, 39, 1);
color: rgba(255, 255, 255, 1)!important;
}
.btn_bdr_black {
border: 1px solid rgba(17, 17, 17, 1);
color: rgba(17, 17, 17, 1)!important;
}
.btn_bdr_black:hover,.btn_bdr_black.active {
background-color: rgba(17, 17, 17, 1);
color: rgba(255, 255, 255, 1)!important;
}
.btn_bdr_blue {
border: 1px solid rgba(20, 50, 160, 1);
color: rgba(20, 50, 160, 1)!important;
}
.btn_bdr_blue:hover,.btn_bdr_blue.active {
background-color: rgba(20, 50, 160, 1);
color: rgba(255, 255, 255, 1)!important;
}
.btn_bdr_gray {
border: 1px solid rgba(153, 153, 153, 1);
color: rgba(153, 153, 153, 1)!important;
}
.btn_bdr_gray:hover,.btn_bdr_gray.active {
background-color: rgba(153, 153, 153, 1);
color: rgba(255, 255, 255, 1)!important;
}
.btn_bdr_green {
border: 1px solid rgba(57, 118, 52, 1);
color: rgba(57, 118, 52, 1)!important;
}
.btn_bdr_green:hover,.btn_bdr_green.active {
background-color: rgba(57, 118, 52, 1);
color: rgba(255, 255, 255, 1)!important;
}
.btn_bdr_orange {
border: 1px solid rgba(220, 150, 30, 1);
color: rgba(220, 150, 30, 1)!important;
}
.btn_bdr_orange:hover,.btn_bdr_orange.active {
background-color: rgba(220, 150, 30, 1);
color: rgba(255, 255, 255, 1)!important;
}
.btn_bdr_red {
border: 1px solid rgba(165, 39, 39, 1);
color: rgba(165, 39, 39, 1)!important;
}
.btn_bdr_red:hover,.btn_bdr_red.active {
background-color: rgba(165, 39, 39, 1);
color: rgba(255, 255, 255, 1)!important;
}
.btn_block { display: block; }
.btn_l {
font-size: 1.2em;
padding: 0.8em 1.1em;
}
.btn_xl {
font-size: 1.35em;
padding: 0.9em 1.2em;
}
.btn_xxl {
font-size: 1.5em;
padding: 1em 1.3em;
}
.btn_s {
font-size: 0.9em;
padding: 0.5em 0.8em;
}
.btn_xs {
font-size: 0.8em;
padding: 0.4em 0.7em;
}
.btn_xxs {
font-size: 0.7em;
padding: 0.4em 0.7em;
}

/*----------------------------------------------------------------------------
******************************************************************************
** color
******************************************************************************
----------------------------------------------------------------------------*/

.c_black { color: rgba(17, 17, 17, 1)!important; }
.c_blue { color: rgba(20, 50, 160, 1)!important; }
.c_gray { color: rgba(153, 153, 153, 1)!important; }
.c_green { color: rgba(57, 118, 52, 1)!important; }
.c_orange { color: rgba(220, 150, 30, 1)!important; }
.c_red { color: rgba(165, 39, 39, 1)!important; }
.c_yellow { color: rgba(255, 255, 0, 1)!important; }

/*----------------------------------------------------------------------------
******************************************************************************
** clear
******************************************************************************
----------------------------------------------------------------------------*/

.clearfix:after, .crr:after, .cf:after {
content:" ";
display:block;
clear:both;
}

/*----------------------------------------------------------------------------
******************************************************************************
** font
******************************************************************************
----------------------------------------------------------------------------*/

.fs_s {
font-size: 0.9em!important;
line-height: 1.4!important;
}
.fs_xs {
font-size: 0.8em!important;
line-height: 1.4!important;
}
.fs_xxs {
font-size: 0.7em!important;
line-height: 1.4!important;
}
.fs_l {
font-size: 1.2em!important;
line-height: 1.4!important;
}
.fs_xl {
font-size: 1.35em!important;
line-height: 1.4!important;
}
.fs_xxl {
font-size: 1.5em!important;
line-height: 1.4!important;
}

/*----------------------------------------------------------------------------
******************************************************************************
** icon
******************************************************************************
----------------------------------------------------------------------------*/

.icon_bg_black, .icon_bg_blue, .icon_bg_gray, .icon_bg_green, .icon_bg_orange, .icon_bg_red,
.icon_bdr_black, .icon_bdr_blue, .icon_bdr_gray, .icon_bdr_green, .icon_bdr_orange, .icon_bdr_red {
border-radius: 4px;
display: inline-block;
font-weight: bold;
text-decoration: none;
line-height: 1.1;
padding: 0.4em 0.6em;
position: relative;
text-align: center;
}
.icon_bg_black {
background-color: rgba(17, 17, 17, 0.9);
color: rgba(255, 255, 255, 1)!important;
}
.icon_bg_blue {
background-color: rgba(20, 50, 160, 0.9);
color: rgba(255, 255, 255, 1)!important;
}
.icon_bg_gray {
background-color: rgba(153, 153, 153, 0.4);
color: rgba(17, 17, 17, 1)!important;
}
.icon_bg_green {
background-color: rgba(57, 118, 52, 0.9);
color: rgba(255, 255, 255, 1)!important;
}
.icon_bg_orange {
background-color: rgba(220, 150, 30, 0.9);
color: rgba(255, 255, 255, 1)!important;
}
.icon_bg_red {
background-color: rgba(165, 39, 39, 0.9);
color: rgba(255, 255, 255, 1)!important;
}
.icon_bdr_black {
border: 1px solid rgba(17, 17, 17, 1);
color: rgba(17, 17, 17, 1)!important;
}
.icon_bdr_blue {
border: 1px solid rgba(20, 50, 160, 1);
color: rgba(20, 50, 160, 1)!important;
}
.icon_bdr_gray {
border: 1px solid rgba(153, 153, 153, 1);
color: rgba(153, 153, 153, 1)!important;
}
.icon_bdr_green {
border: 1px solid rgba(57, 118, 52, 1);
color: rgba(57, 118, 52, 1)!important;
}
.icon_bdr_orange {
border: 1px solid rgba(220, 150, 30, 1);
color: rgba(220, 150, 30, 1)!important;
}
.icon_bdr_red {
border: 1px solid rgba(165, 39, 39, 1);
color: rgba(165, 39, 39, 1)!important;
}
.icon_block { display: block; }
.icon_l {
font-size: 1.2em;
}
.icon_xl {
font-size: 1.35em;
}
.icon_xxl {
font-size: 1.5em;
}
.icon_s {
font-size: 0.9em;
}
.icon_xs {
font-size: 0.8em;
padding: 0.3em 0.5em;
}
.icon_xxs {
font-size: 0.7em;
padding: 0.3em 0.5em;
}

/*----------------------------------------------------------------------------
******************************************************************************
** img
******************************************************************************
----------------------------------------------------------------------------*/

.img_hover a:hover img,
a.img_hover:hover img,
img.img_hover:hover{
opacity: 0.8;
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
transition: all 0.3s ease;
}

.img_bdr_black{ border: 3px solid rgba(17, 17, 17, 0.4); }
.img_bdr_blue{ border: 3px solid rgba(20, 50, 160, 0.4);}
.img_bdr_gray{ border: 3px solid rgba(153, 153, 153, 0.4);}
.img_bdr_green{ border: 3px solid rgba(57, 118, 52, 0.4);}
.img_bdr_orange{ border: 3px solid rgba(220, 150, 30, 0.4);}
.img_bdr_red{ border: 3px solid rgba(165, 39, 39, 0.4);}

.img_ph_black, .img_ph_blue, .img_ph_gray, 
.img_ph_green, .img_ph_orange, .img_ph_red {
	border: 1px solid;
	padding: 2px;
}
.img_ph_black{ border-color: rgba(17, 17, 17, 0.6); }
.img_ph_blue{ border-color: rgba(20, 50, 160, 0.6);}
.img_ph_gray{ border-color: rgba(153, 153, 153, 0.6);}
.img_ph_green{ border-color: rgba(57, 118, 52, 0.6);}
.img_ph_orange{ border-color: rgba(220, 150, 30, 0.6);}
.img_ph_red{ border-color: rgba(165, 39, 39, 0.6);}

/*----------------------------------------------------------------------------
******************************************************************************
** list
******************************************************************************
----------------------------------------------------------------------------*/

/* ==== ul === */
ul.list {
margin-top: 1.2em;
margin-bottom: 0.7em;
}
ul.list li {
list-style-type: disc;
margin-left: 1.5em;
margin-bottom: 0.5rem;
}
ul.list_ctn {
margin: 1.2em 0 0.8em;
padding: 0;
}
ul.list_ctn li {
list-style: none;
margin: 0 0 0.4em 1.5em;
text-indent: -1.5em;
}
ul.list_ctn li:before { content: "※ "; }
ul.list_il {
line-height: 1.6;
margin: 0 0 1em 0;
padding: 0;
}
ul.list_il li {
display: inline-block;
list-style: none;
margin: 0 0.8em 0 0;
}
ul.list_bdr_dot, ul.list_bdr_sol {
margin: 1.2em 0 0.2em;
padding: 0;
}
ul.list_bdr_dot li, ul.list_bdr_sol li {
border-bottom: 1px dotted #999;
list-style: none;
margin: 0 0 1em 0;
padding: 0 0.5em 0.6em 0.5em;
}
ul.list_bdr_sol li{
border-bottom-style: solid;
}
ul.list_none li{
list-style: none;
padding: 0;
margin: 0 0 0.3em 0;
}
/* ==== ol === */
ol.list li {
margin-left: 1.5em;
margin-bottom: 0.5rem;
}
ol.list_ctn {
counter-reset: int;
margin: 1.2em 0 0.8em;
padding: 0;
}
ol.list_ctn li {
list-style: none;
margin: 0 0 0.4em 2.5em;
text-indent: -2.5em;
}
ol.list_ctn li:before {
counter-increment: int;
content: "※" counter(int) ". ";
}
ol.list_il {
counter-reset: int;
margin: 1.4em 0 0.4em;
padding: 0;
}
ol.list_il li {
display: inline-block;
margin: 0 1em 1em 0;
}
ol.list_il li:before {
counter-increment: int;
content: counter(int) ". ";
}
ol.list_bdr_dot, ol.list_bdr_sol {
counter-reset: int;
margin: 1.4em 0;
padding: 0;
}
ol.list_bdr_dot li, ol.list_bdr_sol li {
margin: 0 0 1em 1.8em;
padding: 0 0 0.5em 0;
position: relative;
}
ol.list_bdr_dot li:before, ol.list_bdr_sol li:before {
border-bottom: 1px dotted #999;
bottom: 0;
content: "";
left: -1.8em;
right: 0;
position: absolute;
}
ol.list_bdr_sol li:before{
border-bottom-style: solid;
}

/*----------------------------------------------------------------------------
******************************************************************************
** message
******************************************************************************
----------------------------------------------------------------------------*/

.msg_bg_black, .msg_bg_blue, .msg_bg_gray, .msg_bg_green, .msg_bg_orange, .msg_bg_red {
border-style: solid;
border-width: 1px;
padding: 1em;
}
.msg_bg_black {
background-color: rgba(17, 17, 17, 0.2);
border-color: rgba(17, 17, 17, 0.1);
}
.msg_bg_blue {
background-color: rgba(20, 50, 160, 0.2);
border-color: rgba(20, 50, 160, 0.1);
}
.msg_bg_gray {
background-color: rgba(153, 153, 153, 0.2);
border-color: rgba(153, 153, 153, 0.1);
}
.msg_bg_green {
background-color: rgba(57, 118, 52, 0.2);
border-color: rgba(57, 118, 52, 0.1);
}
.msg_bg_orange {
background-color: rgba(220, 150, 30, 0.2);
border-color: rgba(220, 150, 30, 0.1);
}
.msg_bg_red {
background-color: rgba(165, 39, 39, 0.2);
border-color: rgba(165, 39, 39, 0.1);
}
.msg_bg_ttl {
border-bottom: 1px solid;
font-size: 1.2em;
font-weight: bold;
padding-bottom: 0.2em;
margin-bottom: 1rem;
}
.msg_bg_black .msg_bg_ttl {
border-color: rgba(17, 17, 17, 1);
color: rgba(17, 17, 17, 1);
}
.msg_bg_blue .msg_bg_ttl { border-color: rgba(20, 50, 160, 1);color: rgba(20, 50, 160, 1); }
.msg_bg_gray .msg_bg_ttl { border-color: rgba(153, 153, 153, 1);color: rgba(153, 153, 153, 1); }
.msg_bg_green .msg_bg_ttl { border-color: rgba(57, 118, 52, 1);color: rgba(57, 118, 52, 1); }
.msg_bg_orange .msg_bg_ttl { border-color: rgba(220, 150, 30, 1);color: rgba(220, 150, 30, 1); }
.msg_bg_red .msg_bg_ttl { border-color: rgba(165, 39, 39, 1);color: rgba(165, 39, 39, 1); }

.msg_bg_black, .msg_pnl_blue, .msg_pnl_gray, .msg_pnl_green, .msg_pnl_orange, .msg_pnl_red {
border-style: solid;
border-width: 1px;
padding: 14px;
}
.msg_ctn_black, .msg_ctn_blue, .msg_ctn_gray, .msg_ctn_green, .msg_ctn_orange, .msg_ctn_red {
border-style: solid;
border-width: 1px;
color: rgba(255, 255, 255, 1);
padding: 0.6em 1em;
}
.msg_ctn_black {
background-color: rgba(17, 17, 17, 0.9);
border-color: rgba(17, 17, 17, 1);
}
.msg_ctn_blue {
background-color: rgba(20, 50, 160, 0.9);
border-color: rgba(20, 50, 160, 1);
}
.msg_ctn_gray {
background-color: rgba(153, 153, 153, 0.4);
border-color: rgba(153, 153, 153, 1);
color: rgba(17, 17, 17, 1);
}
.msg_ctn_green {
background-color: rgba(57, 118, 52, 0.9);
border-color: rgba(57, 118, 52, 1);
}
.msg_ctn_orange {
background-color: rgba(220, 150, 30, 0.9);
border-color: rgba(220, 150, 30, 1);
}
.msg_ctn_red {
background-color: rgba(165, 39, 39, 0.9);
border-color: rgba(165, 39, 39, 1);
}
.msg_bdr_black, .msg_bdr_blue, .msg_bdr_gray, .msg_bdr_green, .msg_bdr_orange, .msg_bdr_red {
border-style: solid;
border-width: 3px;
position: relative;
margin-top: 0.5em;
padding: 1em 1em 0.6em;
}
.msg_bdr_black { border-color: rgba(17, 17, 17, 1); }
.msg_bdr_blue { border-color: rgba(20, 50, 160, 1); }
.msg_bdr_gray { border-color: rgba(153, 153, 153, 1); }
.msg_bdr_green { border-color: rgba(57, 118, 52, 1); }
.msg_bdr_orange { border-color: rgba(220, 150, 30, 1); }
.msg_bdr_red { border-color: rgba(165, 39, 39, 1); }
.msg_bdr_ttl {
background-color: #FFF;
font-size: 1.1em;
font-weight: bold;
left: 0.6em;
max-width: calc( 100% - 1.2em);
padding: 0 0.5em;
position: absolute;
top: -0.8em;
}
.msg_bdr_black .msg_bdr_ttl { color: rgba(17, 17, 17, 1); }
.msg_bdr_blue .msg_bdr_ttl { color: rgba(20, 50, 160, 1); }
.msg_bdr_gray .msg_bdr_ttl { color: rgba(153, 153, 153, 1); }
.msg_bdr_green .msg_bdr_ttl { color: rgba(57, 118, 52, 1); }
.msg_bdr_orange .msg_bdr_ttl { color: rgba(220, 150, 30, 1); }
.msg_bdr_red .msg_bdr_ttl { color: rgba(165, 39, 39, 1); }
.msg_pnl_black, .msg_pnl_blue, .msg_pnl_gray, .msg_pnl_green, .msg_pnl_orange, .msg_pnl_red {
border-style: solid;
border-width: 1px;
padding: 14px;
}
.msg_pnl_black { border-color: rgba(17, 17, 17, 1); }
.msg_pnl_blue { border-color: rgba(20, 50, 160, 1); }
.msg_pnl_gray { border-color: rgba(153, 153, 153, 1); }
.msg_pnl_green { border-color: rgba(57, 118, 52, 1); }
.msg_pnl_orange { border-color: rgba(220, 150, 30, 1); }
.msg_pnl_red { border-color: rgba(165, 39, 39, 1); }
.msg_pnl_ttl {
color: rgba(255, 255, 255, 1);
font-size: 0.9em;
font-weight: bold;
margin: -14px -14px 14px;
padding: 0.4em 1em;
text-align: center;
}
.msg_pnl_black .msg_pnl_ttl { background-color: rgba(17, 17, 17, 1); }
.msg_pnl_blue .msg_pnl_ttl { background-color: rgba(20, 50, 160, 1); }
.msg_pnl_gray .msg_pnl_ttl { background-color: rgba(153, 153, 153, 1); }
.msg_pnl_green .msg_pnl_ttl { background-color: rgba(57, 118, 52, 1); }
.msg_pnl_orange .msg_pnl_ttl { background-color: rgba(220, 150, 30, 1); }
.msg_pnl_red .msg_pnl_ttl { background-color: rgba(165, 39, 39, 1); }
.msg_rad { border-radius: 8px; }
.msg_rad .msg_pnl_ttl { border-radius: 6px 6px 0 0; }

/*----------------------------------------------------------------------------
******************************************************************************
** margin
******************************************************************************
----------------------------------------------------------------------------*/

.mt_m100 { margin-top:-100px!important; }
.mt_m90 { margin-top:-90px!important; }
.mt_m80 { margin-top:-80px!important; }
.mt_m70 { margin-top:-70px!important; }
.mt_m60 { margin-top:-60px!important; }
.mt_m50 { margin-top:-50px!important; }
.mt_m40 { margin-top:-40px!important; }
.mt_m30 { margin-top:-30px!important; }
.mt_m20 { margin-top:-20px!important; }
.mt_m10 { margin-top:-10px!important; }
.mt_m05 { margin-top:-5px!important; }
.mt_0 { margin-top:0px!important; }
.mt_05 { margin-top:5px!important; }
.mt_10 { margin-top:10px!important; }
.mt_15 { margin-top:15px!important; }
.mt_20 { margin-top:20px!important; }
.mt_30 { margin-top:30px!important; }
.mt_40 { margin-top:40px!important; }
.mt_50 { margin-top:50px!important; }
.mt_60 { margin-top:60px!important; }
.mt_70 { margin-top:70px!important; }
.mt_80 { margin-top:80px!important; }
.mt_90 { margin-top:90px!important; }
.mt_100 { margin-top:100px!important; }
.mr_m100 { margin-right:-100px!important; }
.mr_m90 { margin-right:-90px!important; }
.mr_m80 { margin-right:-80px!important; }
.mr_m70 { margin-right:-70px!important; }
.mr_m60 { margin-right:-60px!important; }
.mr_m50 { margin-right:-50px!important; }
.mr_m40 { margin-right:-40px!important; }
.mr_m30 { margin-right:-30px!important; }
.mr_m20 { margin-right:-20px!important; }
.mr_m10 { margin-right:-10px!important; }
.mr_m05 { margin-right:-5px!important; }
.mr_0 { margin-right:0px!important; }
.mr_05 { margin-right:5px!important; }
.mr_10 { margin-right:10px!important; }
.mr_15 { margin-right:15px!important; }
.mr_20 { margin-right:20px!important; }
.mr_30 { margin-right:30px!important; }
.mr_40 { margin-right:40px!important; }
.mr_50 { margin-right:50px!important; }
.mr_60 { margin-right:60px!important; }
.mr_70 { margin-right:70px!important; }
.mr_80 { margin-right:80px!important; }
.mr_90 { margin-right:90px!important; }
.mr_100 { margin-right:100px!important; }
.mb_m100 { margin-bottom:-100px!important; }
.mb_m90 { margin-bottom:-90px!important; }
.mb_m80 { margin-bottom:-80px!important; }
.mb_m70 { margin-bottom:-70px!important; }
.mb_m60 { margin-bottom:-60px!important; }
.mb_m50 { margin-bottom:-50px!important; }
.mb_m40 { margin-bottom:-40px!important; }
.mb_m30 { margin-bottom:-30px!important; }
.mb_m20 { margin-bottom:-20px!important; }
.mb_m10 { margin-bottom:-10px!important; }
.mb_m05 { margin-bottom:-5px!important; }
.mb_0 { margin-bottom:0px!important; }
.mb_05 { margin-bottom:5px!important; }
.mb_10 { margin-bottom:10px!important; }
.mb_15 { margin-bottom:15px!important; }
.mb_20 { margin-bottom:20px!important; }
.mb_30 { margin-bottom:30px!important; }
.mb_40 { margin-bottom:40px!important; }
.mb_50 { margin-bottom:50px!important; }
.mb_60 { margin-bottom:60px!important; }
.mb_70 { margin-bottom:70px!important; }
.mb_80 { margin-bottom:80px!important; }
.mb_90 { margin-bottom:90px!important; }
.mb_100 { margin-bottom:100px!important; }
.ml_m100 { margin-left:-100px!important; }
.ml_m90 { margin-left:-90px!important; }
.ml_m80 { margin-left:-80px!important; }
.ml_m70 { margin-left:-70px!important; }
.ml_m60 { margin-left:-60px!important; }
.ml_m50 { margin-left:-50px!important; }
.ml_m40 { margin-left:-40px!important; }
.ml_m30 { margin-left:-30px!important; }
.ml_m20 { margin-left:-20px!important; }
.ml_m10 { margin-left:-10px!important; }
.ml_m05 { margin-left:-5px!important; }
.ml_0 { margin-left:0px!important; }
.ml_05 { margin-left:5px!important; }
.ml_10 { margin-left:10px!important; }
.ml_15 { margin-left:15px!important; }
.ml_20 { margin-left:20px!important; }
.ml_30 { margin-left:30px!important; }
.ml_40 { margin-left:40px!important; }
.ml_50 { margin-left:50px!important; }
.ml_60 { margin-left:60px!important; }
.ml_70 { margin-left:70px!important; }
.ml_80 { margin-left:80px!important; }
.ml_90 { margin-left:90px!important; }
.ml_100 { margin-left:100px!important; }
.mrl_auto {
margin-right: auto!important;
margin-left:auto!important;
}
.mrl_0 {
margin-left:0px!important;
margin-right:0px!important;
}
.mrl_05 {
margin-left:5px!important;
margin-right:5px!important;
}
.mrl_10 {
margin-left:10px!important;
margin-right:10px!important;
}
.mrl_15 {
margin-left:15px!important;
margin-right:15px!important;
}
.mrl_20 {
margin-left:20px!important;
margin-right:20px!important;
}
.mrl_30 {
margin-left:30px!important;
margin-right:30px!important;
}
.mrl_40 {
margin-left:40px!important;
margin-right:40px!important;
}
.mrl_50 {
margin-left:50px!important;
margin-right:50px!important;
}
.mrl_60 {
margin-left:60px!important;
margin-right:60px!important;
}
.mrl_70 {
margin-left:70px!important;
margin-right:70px!important;
}
.mrl_80 {
margin-left:80px!important;
margin-right:80px!important;
}
.mrl_90 {
margin-left:90px!important;
margin-right:90px!important;
}
.mrl_100 {
margin-left:100px!important;
margin-right:100px!important;
}
.mrl_10per {
margin-left:10%!important;
margin-right:10%!important;
}
.mrl_15per {
margin-left:15%!important;
margin-right:15%!important;
}
.mrl_20per {
margin-left:20%!important;
margin-right:20%!important;
}
.mrl_25per {
margin-left:25%!important;
margin-right:25%!important;
}
.mrl_30per {
margin-left:30%!important;
margin-right:30%!important;
}
.mrl_35per {
margin-left:35%!important;
margin-right:35%!important;
}
.mrl_40per {
margin-left:40%!important;
margin-right:40%!important;
}
.mrl_45per {
margin-left:45%!important;
margin-right:45%!important;
}
.mtb_0 {
margin-top:0px!important;
margin-bottom:0px!important;
}
.mtb_05 {
margin-top:5px!important;
margin-bottom:5px!important;
}
.mtb_10 {
margin-top:10px!important;
margin-bottom:10px!important;
}
.mtb_15 {
margin-top:15px!important;
margin-bottom:15px!important;
}
.mtb_20 {
margin-top:20px!important;
margin-bottom:20px!important;
}
.mtb_30 {
margin-top:30px!important;
margin-bottom:30px!important;
}
.mtb_40 {
margin-top:40px!important;
margin-bottom:40px!important;
}
.mtb_50 {
margin-top:50px!important;
margin-bottom:50px!important;
}
.mtb_60 {
margin-top:60px!important;
margin-bottom:60px!important;
}
.mtb_70 {
margin-top:70px!important;
margin-bottom:70px!important;
}
.mtb_80 {
margin-top:80px!important;
margin-bottom:80px!important;
}
.mtb_90 {
margin-top:90px!important;
margin-bottom:90px!important;
}
.mtb_100 {
margin-top:100px!important;
margin-bottom:100px!important;
}
.mrbl_0 {
margin-bottom:0px!important;
margin-right:0px!important;
margin-left:0px!important;
}
.mrbl_05 {
margin-bottom:5px!important;
margin-right:5px!important;
margin-left:5px!important;
}
.mrbl_10 {
margin-bottom:10px!important;
margin-right:10px!important;
margin-left:10px!important;
}
.mrbl_20 {
margin-bottom:20px!important;
margin-right:20px!important;
margin-left:20px!important;
}
.mrbl_30 {
margin-bottom:30px!important;
margin-right:30px!important;
margin-left:30px!important;
}
.mrbl_40 {
margin-bottom:40px!important;
margin-right:px!important;
margin-left:px!important;
}
.mrbl_50 {
margin-bottom:50px!important;
margin-right:50px!important;
margin-left:50px!important;
}
.mrbl_60 {
margin-bottom:60px!important;
margin-right:60px!important;
margin-left:60px!important;
}
.mrbl_70 {
margin-bottom:70px!important;
margin-right:70px!important;
margin-left:70px!important;
}
.mrbl_80 {
margin-bottom:80px!important;
margin-right:80px!important;
margin-left:80px!important;
}
.mrbl_90 {
margin-bottom:90px!important;
margin-right:90px!important;
margin-left:90px!important;
}
.mrbl_100 {
margin-bottom:100px!important;
margin-right:100px!important;
margin-left:100px!important;
}
.mtrl_0 {
margin-top:0px!important;
margin-right:0px!important;
margin-left:0px!important;
}
.mtrl_05 {
margin-top:5px!important;
margin-right:5px!important;
margin-left:5px!important;
}
.mtrl_10 {
margin-top:10px!important;
margin-right:10px!important;
margin-left:10px!important;
}
.mtrl_20 {
margin-top:20px!important;
margin-right:20px!important;
margin-left:20px!important;
}
.mtrl_30 {
margin-top:30px!important;
margin-right:30px!important;
margin-left:30px!important;
}
.mtrl_40 {
margin-top:40px!important;
margin-right:px!important;
margin-left:px!important;
}
.mtrl_50 {
margin-top:50px!important;
margin-right:50px!important;
margin-left:50px!important;
}
.mtrl_60 {
margin-top:60px!important;
margin-right:60px!important;
margin-left:60px!important;
}
.mtrl_70 {
margin-top:70px!important;
margin-right:70px!important;
margin-left:70px!important;
}
.mtrl_80 {
margin-top:80px!important;
margin-right:80px!important;
margin-left:80px!important;
}
.mtrl_90 {
margin-top:90px!important;
margin-right:90px!important;
margin-left:90px!important;
}
.mtrl_100 {
margin-top:100px!important;
margin-right:100px!important;
margin-left:100px!important;
}
.ma_0 { margin:0px!important; }
.ma_05 { margin:5px!important; }
.ma_10 { margin:10px!important; }
.ma_15 { margin:15px!important; }
.ma_20 { margin:20px!important; }
.ma_30 { margin:30px!important; }
.ma_40 { margin:40px!important; }
.ma_50 { margin:50px!important; }
.ma_60 { margin:60px!important; }
.ma_70 { margin:70px!important; }
.ma_80 { margin:80px!important; }
.ma_90 { margin:90px!important; }
.ma_100 { margin:100px!important; }

/*----------------------------------------------------------------------------
******************************************************************************
** padding
******************************************************************************
----------------------------------------------------------------------------*/

.padt_0 { padding-top:0px!important; }
.padt_05 { padding-top:5px!important; }
.padt_10 { padding-top:10px!important; }
.padt_15 { padding-top:15px!important; }
.padt_20 { padding-top:20px!important; }
.padt_30 { padding-top:30px!important; }
.padt_40 { padding-top:40px!important; }
.padt_50 { padding-top:50px!important; }
.padt_60 { padding-top:60px!important; }
.padt_70 { padding-top:70px!important; }
.padt_80 { padding-top:80px!important; }
.padt_90 { padding-top:90px!important; }
.padt_100 { padding-top:100px!important; }
.padr_0 { padding-right:0px!important; }
.padr_05 { padding-right:5px!important; }
.padr_10 { padding-right:10px!important; }
.padr_15 { padding-right:15px!important; }
.padr_20 { padding-right:20px!important; }
.padr_30 { padding-right:30px!important; }
.padr_40 { padding-right:40px!important; }
.padr_50 { padding-right:50px!important; }
.padr_60 { padding-right:60px!important; }
.padr_70 { padding-right:70px!important; }
.padr_80 { padding-right:80px!important; }
.padr_90 { padding-right:90px!important; }
.padr_100 { padding-right:100px!important; }
.padb_0 { padding-bottom:0px!important; }
.padb_05 { padding-bottom:5px!important; }
.padb_10 { padding-bottom:10px!important; }
.padb_15 { padding-bottom:15px!important; }
.padb_20 { padding-bottom:20px!important; }
.padb_30 { padding-bottom:30px!important; }
.padb_40 { padding-bottom:40px!important; }
.padb_50 { padding-bottom:50px!important; }
.padb_60 { padding-bottom:60px!important; }
.padb_70 { padding-bottom:70px!important; }
.padb_80 { padding-bottom:80px!important; }
.padb_90 { padding-bottom:90px!important; }
.padb_100 { padding-bottom:100px!important; }
.padl_0 { padding-left:0px!important; }
.padl_05 { padding-left:5px!important; }
.padl_10 { padding-left:10px!important; }
.padl_15 { padding-left:15px!important; }
.padl_20 { padding-left:20px!important; }
.padl_30 { padding-left:30px!important; }
.padl_40 { padding-left:40px!important; }
.padl_50 { padding-left:50px!important; }
.padl_60 { padding-left:60px!important; }
.padl_70 { padding-left:70px!important; }
.padl_80 { padding-left:80px!important; }
.padl_90 { padding-left:90px!important; }
.padl_100 { padding-left:100px!important; }
.pada_0 { padding:0px!important; }
.pada_05 { padding:5px!important; }
.pada_10 { padding:10px!important; }
.pada_15 { padding:15px!important; }
.pada_20 { padding:20px!important; }
.pada_30 { padding:30px!important; }
.pada_40 { padding:40px!important; }
.pada_50 { padding:50px!important; }
.pada_60 { padding:60px!important; }
.pada_70 { padding:70px!important; }
.pada_80 { padding:80px!important; }
.pada_90 { padding:90px!important; }
.pada_100 { padding:100px!important; }

/*----------------------------------------------------------------------------
******************************************************************************
** slide panel
******************************************************************************
----------------------------------------------------------------------------*/
.sld_pnl{
display: none;
}

/*----------------------------------------------------------------------------
******************************************************************************
** tab panel
******************************************************************************
----------------------------------------------------------------------------*/
.tab_pnl{
display: none;
}
.tab_pnl.active{
display: block;
}

/*----------------------------------------------------------------------------
******************************************************************************
** table
******************************************************************************
----------------------------------------------------------------------------*/

/* ==== tbl_bdr === */
.tbl_bdr {
border-top: 1px solid rgba(153, 153, 153, 1);
border-left: 1px solid rgba(153, 153, 153, 1);
margin: 1.4em 0;
}
.tbl_bdr td {
border-right: 1px solid rgba(153, 153, 153, 1);
border-bottom: 1px solid rgba(153, 153, 153, 1);
padding: 1.2em 1em;
}
.tbl_bdr th {
border-right: 1px solid rgba(153, 153, 153, 1);
border-bottom: 1px solid rgba(153, 153, 153, 1);
background-color: rgba(153, 153, 153, 0.2);
font-weight: bold;
padding: 1.2em 1em;
text-align: center;
}

/* tbl_bdr_btm align */
.tbl_bdr.ta_c td, .tbl_bdr.ta_c th, .tbl_bdr tr.ta_c td, .tbl_bdr tr.ta_c th  { text-align: center; }
.tbl_bdr.ta_l td, .tbl_bdr.ta_l th, .tbl_bdr tr.ta_l td, .tbl_bdr tr.ta_l th { text-align: left; }
.tbl_bdr.ta_r td, .tbl_bdr.ta_r th, .tbl_bdr tr.ta_r td, .tbl_bdr tr.ta_r th { text-align: right; }
.tbl_bdr.va_top td, .tbl_bdr.va_top th, .tbl_bdr tr.va_top td, .tbl_bdr tr.va_top th { vertical-align: top; }
.tbl_bdr.va_mdl td, .tbl_bdr.va_mdl th,.tbl_bdr tr.va_mdl td, .tbl_bdr tr.va_mdl th { vertical-align: middle; }
.tbl_bdr.va_btm td, .tbl_bdr.va_btm th, .tbl_bdr tr.va_btm td, .tbl_bdr tr.va_btm th { vertical-align: bottom; }

/* tbl_bdr bg color */
.tbl_bdr tr.bg_black, .tbl_bdr td.bg_black, .tbl_bdr th.bg_black { background-color: rgba(17, 17, 17, 0.2); }
.tbl_bdr tr.bg_blue, .tbl_bdr td.bg_blue, .tbl_bdr th.bg_blue { background-color: rgba(20, 50, 160, 0.2); }
.tbl_bdr tr.bg_gray, .tbl_bdr td.bg_gray, .tbl_bdr th.bg_gray { background-color: rgba(153, 153, 153, 0.2); }
.tbl_bdr tr.bg_green, .tbl_bdr td.bg_green, .tbl_bdr th.bg_green { background-color: rgba(57, 118, 52, 0.2); }
.tbl_bdr tr.bg_orange, .tbl_bdr td.bg_orange, .tbl_bdr th.bg_orange { background-color: rgba(220, 150, 30, 0.2); }
.tbl_bdr tr.bg_red, .tbl_bdr td.bg_red, .tbl_bdr th.bg_red { background-color: rgba(165, 39, 39, 0.2); }

/* ==== tbl_bdr_btm === */
.tbl_bdr_btm {
border-top: 1px dotted rgba(153, 153, 153, 1);
margin: 1.4em 0;
}
.tbl_bdr_btm tr { border-bottom: 1px dotted rgba(153, 153, 153, 1); }
.tbl_bdr_btm td {
padding: 1.2em 1em;
vertical-align: top;
}
.tbl_bdr_btm th {
font-weight: bold;
padding: 1.2em 1em;
text-align: left;
vertical-align: top;
}

/* tbl_bdr_btm align */
.tbl_bdr_btm.ta_c td, .tbl_bdr_btm.ta_c th, .tbl_bdr_btm tr.ta_c td, .tbl_bdr_btm tr.ta_c th  { text-align: center; }
.tbl_bdr_btm.ta_l td, .tbl_bdr_btm.ta_l th, .tbl_bdr_btm tr.ta_l td, .tbl_bdr_btm tr.ta_l th { text-align: left; }
.tbl_bdr_btm.ta_r td, .tbl_bdr_btm.ta_r th, .tbl_bdr_btm tr.ta_r td, .tbl_bdr_btm tr.ta_r th { text-align: right; }
.tbl_bdr_btm.va_top td, .tbl_bdr_btm.va_top th, .tbl_bdr_btm tr.va_top td, .tbl_bdr_btm tr.va_top th { vertical-align: top; }
.tbl_bdr_btm.va_mdl td, .tbl_bdr_btm.va_mdl th,.tbl_bdr_btm tr.va_mdl td, .tbl_bdr_btm tr.va_mdl th { vertical-align: middle; }
.tbl_bdr_btm.va_btm td, .tbl_bdr_btm.va_btm th, .tbl_bdr_btm tr.va_btm td, .tbl_bdr_btm tr.va_btm th { vertical-align: bottom; }

/* tbl_bdr_btm bg color */
.tbl_bdr_btm tr.bg_black, .tbl_bdr_btm td.bg_black, .tbl_bdr_btm th.bg_black { background-color: rgba(17, 17, 17, 0.2); }
.tbl_bdr_btm tr.bg_blue, .tbl_bdr_btm td.bg_blue, .tbl_bdr_btm th.bg_blue { background-color: rgba(20, 50, 160, 0.2); }
.tbl_bdr_btm tr.bg_gray, .tbl_bdr_btm td.bg_gray, .tbl_bdr_btm th.bg_gray { background-color: rgba(153, 153, 153, 0.2); }
.tbl_bdr_btm tr.bg_green, .tbl_bdr_btm td.bg_green, .tbl_bdr_btm th.bg_green { background-color: rgba(57, 118, 52, 0.2); }
.tbl_bdr_btm tr.bg_orange, .tbl_bdr_btm td.bg_orange, .tbl_bdr_btm th.bg_orange { background-color: rgba(220, 150, 30, 0.2); }
.tbl_bdr_btm tr.bg_red, .tbl_bdr_btm td.bg_red, .tbl_bdr_btm th.bg_red { background-color: rgba(165, 39, 39, 0.2); }

/* ==== tbl_nml === */
.tbl_nml {
border: none;
margin: 0;
padding: 0;
}
.tbl_nml tr, .tbl_nml tr th, .tbl_nml td {
background: none;
border: none;
margin: 0;
padding: 0 0.1em;
}

/* tbl_nml align */
.tbl_nml.ta_c td, .tbl_nml.ta_c th, .tbl_nml tr.ta_c td, .tbl_nml tr.ta_c th  { text-align: center; }
.tbl_nml.ta_l td, .tbl_nml.ta_l th, .tbl_nml tr.ta_l td, .tbl_nml tr.ta_l th { text-align: left; }
.tbl_nml.ta_r td, .tbl_nml.ta_r th, .tbl_nml tr.ta_r td, .tbl_nml tr.ta_r th { text-align: right; }
.tbl_nml.va_top td, .tbl_nml.va_top th, .tbl_nml tr.va_top td, .tbl_nml tr.va_top th { vertical-align: top; }
.tbl_nml.va_mdl td, .tbl_nml.va_mdl th,.tbl_nml tr.va_mdl td, .tbl_nml tr.va_mdl th { vertical-align: middle; }
.tbl_nml.va_btm td, .tbl_nml.va_btm th, .tbl_nml tr.va_btm td, .tbl_nml tr.va_btm th { vertical-align: bottom; }

/*----------------------------------------------------------------------------
******************************************************************************
** text indent
******************************************************************************
----------------------------------------------------------------------------*/

.ti_0 { text-indent: 0em; }
.ti_01 { text-indent: 0.5em; }
.ti_02 { text-indent: 1em; }
.ti_03 { text-indent: 1.5em; }
.ti_04 { text-indent: 2em; }
.ti_05 { text-indent: 2.5em; }
.ti_06 { text-indent: 3em; }
.ti_07 { text-indent: 3.5em; }
.ti_08 { text-indent: 4em; }
.ti_09 { text-indent: 4.5em; }
.ti_10 { text-indent: 5em; }
.ti_11 { text-indent: 5.5em; }
.ti_12 { text-indent: 6em; }
.ti_13 { text-indent: 6.5em; }
.ti_14 { text-indent: 7em; }
.ti_15 { text-indent: 7.5em; }
.ti_16 { text-indent: 8em; }
.ti_17 { text-indent: 8.5em; }
.ti_18 { text-indent: 9em; }
.ti_19 { text-indent: 9.5em; }
.ti_20 { text-indent: 10em; }
.ti_21 { text-indent: 10.5em; }
.ti_22 { text-indent: 11em; }
.ti_23 { text-indent: 11.5em; }
.ti_24 { text-indent: 12em; }
.ti_25 { text-indent: 12.5em; }
.ti_26 { text-indent: 13em; }
.ti_27 { text-indent: 13.5em; }
.ti_28 { text-indent: 14em; }
.ti_29 { text-indent: 14.5em; }
.ti_30 { text-indent: 15em; }
.ti_31 { text-indent: 15.5em; }
.ti_32 { text-indent: 16em; }
.ti_33 { text-indent: 16.5em; }
.ti_34 { text-indent: 17em; }
.ti_35 { text-indent: 17.5em; }
.ti_36 { text-indent: 18em; }
.ti_37 { text-indent: 18.5em; }
.ti_38 { text-indent: 19em; }
.ti_39 { text-indent: 19.5em; }
.ti_40 { text-indent: 20em; }
.ti_m00 {text-indent: 0!important;margin-left: 0!important;}
.ti_m01 {text-indent:-0.5em!important;margin-left:0.5em!important;}
.ti_m02 {text-indent:-1em!important;margin-left:1em!important;}
.ti_m03 {text-indent:-1.5em!important;margin-left:1.5em!important;}
.ti_m04 {text-indent:-2em!important;margin-left:2em!important;}
.ti_m05 {text-indent:-2.5em!important;margin-left:2.5em!important;}
.ti_m06 {text-indent:-3em!important;margin-left:3em!important;}
.ti_m07 {text-indent:-3.5em!important;margin-left:3.5em!important;}
.ti_m08 {text-indent:-4em!important;margin-left:4em!important;}
.ti_m09 {text-indent:-4.5em!important;margin-left:4.5em!important;}
.ti_m10 {text-indent:-5em!important;margin-left:5em!important;}
.ti_m11 {text-indent:-5.5em!important;margin-left:5.5em!important;}
.ti_m12 {text-indent:-6em!important;margin-left:6em!important;}
.ti_m13 {text-indent:-6.5em!important;margin-left:6.5em!important;}
.ti_m14 {text-indent:-7em!important;margin-left:7em!important;}
.ti_m15 {text-indent:-7.5em!important;margin-left:7.5em!important;}
.ti_m16 {text-indent:-8em!important;margin-left:8em!important;}
.ti_m17 {text-indent:-8.5em!important;margin-left:8.5em!important;}
.ti_m18 {text-indent:-9em!important;margin-left:9em!important;}
.ti_m19 {text-indent:-9.5em!important;margin-left:9.5em!important;}
.ti_m20 {text-indent:-10em!important;margin-left:10em!important;}
.ti_m21 {text-indent:-10.5em!important;margin-left:10.5em!important;}
.ti_m22 {text-indent:-11em!important;margin-left:11em!important;}
.ti_m23 {text-indent:-11.5em!important;margin-left:11.5em!important;}
.ti_m24 {text-indent:-12em!important;margin-left:12em!important;}
.ti_m25 {text-indent:-12.5em!important;margin-left:12.5em!important;}
.ti_m26 {text-indent:-13em!important;margin-left:13em!important;}
.ti_m27 {text-indent:-13.5em!important;margin-left:13.5em!important;}
.ti_m28 {text-indent:-14em!important;margin-left:14em!important;}
.ti_m29 {text-indent:-14.5em!important;margin-left:14.5em!important;}
.ti_m30 {text-indent:-15em!important;margin-left:15em!important;}
.ti_m31 {text-indent:-15.5em!important;margin-left:15.5em!important;}
.ti_m32 {text-indent:-16em!important;margin-left:16em!important;}
.ti_m33 {text-indent:-16.5em!important;margin-left:16.5em!important;}
.ti_m34 {text-indent:-17em!important;margin-left:17em!important;}
.ti_m35 {text-indent:-17.5em!important;margin-left:17.5em!important;}
.ti_m36 {text-indent:-18em!important;margin-left:18em!important;}
.ti_m37 {text-indent:-18.5em!important;margin-left:18.5em!important;}
.ti_m38 {text-indent:-19em!important;margin-left:19em!important;}
.ti_m39 {text-indent:-19.5em!important;margin-left:19.5em!important;}
.ti_m40 {text-indent:-20em!important;margin-left:20em!important;}


/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** PCスタイル
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/

@media screen and (min-width: 781px) {

/*----------------------------------------------------------------------------
******************************************************************************
** box
******************************************************************************
----------------------------------------------------------------------------*/
/* ==== box === */
.box {
display: flex;
justify-content: space-between;
align-items: flex-start;
}
.box.box_c {
justify-content: center;
}
.box.box_wrap {
flex-wrap: wrap;
}
.box.box_mdl {
align-items: center;
}
.box.box_stc {
align-items: stretch;
}

/* ==== box_col === */
.box_col_02 , .box_col_03 , .box_col_04 , .box_col_05 ,
.box_col_06 , .box_col_07 , .box_col_08 , .box_col_09 , .box_col_10 {
display: flex;
flex-wrap: wrap;
justify-content: flex-start;
}
ul[class^="box_col_"] {
margin: 1em 0 0 0;
}
.box_col_02 > *, .box_col_03 > *, .box_col_04 > *, .box_col_05 > *,
.box_col_06 > *, .box_col_07 > *, .box_col_08 > *, .box_col_09 > *, .box_col_10 > * {
margin: 0 1em 1em 0!important;
}
.box_col_02 > *:nth-child(2n), .box_col_03 > *:nth-child(3n), .box_col_04 > *:nth-child(4n), .box_col_05 > *:nth-child(5n),
.box_col_06 > *:nth-child(6n), .box_col_07 > *:nth-child(7n), .box_col_08 > *:nth-child(8n), .box_col_09 > *:nth-child(9n), .box_col_10 > *:nth-child(10n) {
margin-right: 0!important;
}
.box_col_02 > * {
width: calc( (100% - 1em - 1px ) / 2);
}
.box_col_03 > * {
width: calc( (100% - 2em - 1px ) / 3);
}
.box_col_04 > * {
width: calc( (100% - 3em - 1px ) / 4);
}
.box_col_05 > * {
width: calc( (100% - 4em - 1px ) / 5);
}
.box_col_06 > * {
width: calc( (100% - 5em - 1px ) / 6);
}
.box_col_07 > * {
width: calc( (100% - 6em - 1px ) / 7);
}
.box_col_08 > * {
width: calc( (100% - 7em - 1px ) / 8);
}
.box_col_09 > * {
width: calc( (100% - 8em - 1px ) / 9);
}
.box_col_10 > * {
width: calc( (100% - 9em - 1px ) / 10);
}

/*----------------------------------------------------------------------------
******************************************************************************
** display
******************************************************************************
----------------------------------------------------------------------------*/

.pc_dn {
display: none;
}

/*----------------------------------------------------------------------------
******************************************************************************
** gallery
******************************************************************************
----------------------------------------------------------------------------*/

.glry_col_01 {
margin-top: 1.4em;
margin-bottom: 0.4em;
}
.glry_col_01 , .glry_col_02 , .glry_col_03 , .glry_col_04 , .glry_col_05 ,
.glry_col_06 , .glry_col_07 , .glry_col_08 , .glry_col_09 , .glry_col_10 {
display: flex;
flex-wrap: wrap;
justify-content: flex-start;
align-items: stretch;
position: relative;
text-align: center;
}
.glry_col_01 > * {
margin-bottom: 1em;
width: 100%;
}
.glry_col_02 > *, .glry_col_03 > *, .glry_col_04 > *, .glry_col_05 > *,
.glry_col_06 > *, .glry_col_07 > *, .glry_col_08 > *, .glry_col_09 > *, .glry_col_10 > * {
margin: 0 1em 1em 0;
text-align: center;
}
.glry_col_02 > *:nth-child(2n), .glry_col_03 > *:nth-child(3n), .glry_col_04 > *:nth-child(4n), .glry_col_05 > *:nth-child(5n),
.glry_col_06 > *:nth-child(6n), .glry_col_07 > *:nth-child(7n), .glry_col_08 > *:nth-child(8n), .glry_col_09 > *:nth-child(9n), .glry_col_10 > *:nth-child(10n) {
margin-right: 0!important;
}
.glry_col_02 > * {
width: calc( (100% - 1em - 1px ) / 2);
}
.glry_col_03 > * {
width: calc( (100% - 2em - 1px ) / 3);
}
.glry_col_04 > * {
width: calc( (100% - 3em - 1px ) / 4);
}
.glry_col_05 > * {
width: calc( (100% - 4em - 1px ) / 5);
}
.glry_col_06 > * {
width: calc( (100% - 5em - 1px ) / 6);
}
.glry_col_07 > * {
width: calc( (100% - 6em - 1px ) / 7);
}
.glry_col_08 > * {
width: calc( (100% - 7em - 1px ) / 8);
}
.glry_col_09 > * {
width: calc( (100% - 8em - 1px ) / 9);
}
.glry_col_10 > * {
width: calc( (100% - 9em - 1px ) / 10);
}
.glry_col_01 > * > img, .glry_col_02 > * > img, .glry_col_03 > * > img, .glry_col_04 > * > img, .glry_col_05 > * > img,
.glry_col_06 > * > img, .glry_col_07 > * > img, .glry_col_08 > * > img, .glry_col_09 > * > img, .glry_col_10 > * > img {
margin-bottom: 0.5em;
}

/*----------------------------------------------------------------------------
******************************************************************************
** img
******************************************************************************
----------------------------------------------------------------------------*/

.img_c {
display: block;
margin: 1em auto;
}
.img_l {
float: left;
margin-bottom: 0.5em;
margin-right: 1.4em;
}
.img_r {
float: right;
margin-bottom: 0.5em;
margin-left: 1.4em;
}
div.img_c, div.img_l, div.img_r,
p.img_c, p.img_l, p.img_r {
font-size: 0.8em;
text-align: center;
}
div.img_c img, div.img_l img, div.img_r img,
p.img_c img, p.img_l img, p.img_r img {
display: inline-block;
margin-bottom: 0.5em;
}

/*----------------------------------------------------------------------------
******************************************************************************
** serif
******************************************************************************
----------------------------------------------------------------------------*/
.srf_bdr_black_l, .srf_bdr_black_r,
.srf_bdr_blue_l, .srf_bdr_blue_r,
.srf_bdr_gray_l, .srf_bdr_gray_r,
.srf_bdr_green_l, .srf_bdr_green_r,
.srf_bdr_orange_l, .srf_bdr_orange_r,
.srf_bdr_red_l, .srf_bdr_red_r {
display: flex;
align-items: center;
justify-content: space-between;
margin: 2em 0;
}
.srf_bdr_black_r,
.srf_bdr_blue_r,
.srf_bdr_gray_r,
.srf_bdr_green_r,
.srf_bdr_orange_r,
.srf_bdr_red_r {
flex-direction: row-reverse;
}
.srf_bdr_icon {
border-radius: 50%;
height: 80px!important;
overflow: hidden;
width: 80px!important;
}
.srf_bdr_black_l .srf_bdr_icon , .srf_bdr_black_r .srf_bdr_icon {
box-shadow: 0 0 10pxrgba(17, 17, 17, 0.6);
}
.srf_bdr_blue_l .srf_bdr_icon , .srf_bdr_blue_r .srf_bdr_icon {
box-shadow: 0 0 10pxrgba(20, 50, 160, 0.6);
}
.srf_bdr_gray_l .srf_bdr_icon , .srf_bdr_gray_r .srf_bdr_icon {
box-shadow: 0 0 10pxrgba(153, 153, 153, 0.6);
}
.srf_bdr_green_l .srf_bdr_icon , .srf_bdr_green_r .srf_bdr_icon {
box-shadow: 0 0 10pxrgba(57, 118, 52, 0.6);
}
.srf_bdr_orange_l .srf_bdr_icon , .srf_bdr_orange_r .srf_bdr_icon {
box-shadow: 0 0 10pxrgba(220, 150, 30, 0.6);
}
.srf_bdr_red_l .srf_bdr_icon , .srf_bdr_red_r .srf_bdr_icon {
box-shadow: 0 0 10px rgba(165, 39, 39, 0.6);
}
.srf_bdr_inr {
border: 2px solid;
background-color: #FFF;
border-radius: 10px;
font-size: 0.9em;
line-height: 1.6;
position: relative;
padding: 1em 1.4em;
max-width: calc(100% - 100px);
}
.srf_bdr_black_l .srf_bdr_inr , .srf_bdr_black_r .srf_bdr_inr {
border-color: rgba(17, 17, 17, 1);
}
.srf_bdr_blue_l .srf_bdr_inr , .srf_bdr_blue_r .srf_bdr_inr {
border-color: rgba(20, 50, 160, 1);
}
.srf_bdr_gray_l .srf_bdr_inr , .srf_bdr_gray_r .srf_bdr_inr {
border-color: rgba(153, 153, 153, 1);
}
.srf_bdr_green_l .srf_bdr_inr , .srf_bdr_green_r .srf_bdr_inr {
border-color: rgba(57, 118, 52, 1);
}
.srf_bdr_orange_l .srf_bdr_inr , .srf_bdr_orange_r .srf_bdr_inr {
border-color: rgba(220, 150, 30, 1);
}
.srf_bdr_red_l .srf_bdr_inr , .srf_bdr_red_r .srf_bdr_inr {
border-color: rgba(165, 39, 39, 1);
}

.srf_bdr_inr:before {
content: "";
position: absolute;
top: 50%;
margin-top: -12px;
border: 12px solid transparent;
z-index: 2;
}

.srf_bdr_black_l .srf_bdr_inr:before,
.srf_bdr_blue_l .srf_bdr_inr:before,
.srf_bdr_gray_l .srf_bdr_inr:before,
.srf_bdr_green_l .srf_bdr_inr:before,
.srf_bdr_orange_l .srf_bdr_inr:before,
.srf_bdr_red_l .srf_bdr_inr:before {
left: -24px;
border-right: 12px solid #FFF;
}
.srf_bdr_black_r .srf_bdr_inr:before,
.srf_bdr_blue_r .srf_bdr_inr:before,
.srf_bdr_gray_r .srf_bdr_inr:before,
.srf_bdr_green_r .srf_bdr_inr:before,
.srf_bdr_orange_r .srf_bdr_inr:before,
.srf_bdr_red_r .srf_bdr_inr:before  {
right: -24px;
border-left: 12px solid #FFF;
}
.srf_bdr_inr:after {
content: "";
position: absolute;
top: 50%;
margin-top: -14px;
border: 14px solid transparent;
z-index: 1;
}
.srf_bdr_black_l .srf_bdr_inr:after,
.srf_bdr_blue_l .srf_bdr_inr:after,
.srf_bdr_gray_l .srf_bdr_inr:after,
.srf_bdr_green_l .srf_bdr_inr:after,
.srf_bdr_orange_l .srf_bdr_inr:after,
.srf_bdr_red_l .srf_bdr_inr:after  {
left: -29px;
}
.srf_bdr_black_l .srf_bdr_inr:after {
border-right-color: rgba(17, 17, 17, 1);
}
.srf_bdr_blue_l .srf_bdr_inr:after {
border-right-color: rgba(20, 50, 160, 1);
}
.srf_bdr_gray_l .srf_bdr_inr:after {
border-right-color: rgba(153, 153, 153, 1);
}
.srf_bdr_green_l .srf_bdr_inr:after {
border-right-color: rgba(57, 118, 52, 1);
}
.srf_bdr_orange_l .srf_bdr_inr:after {
border-right-color: rgba(220, 150, 30, 1);
}
.srf_bdr_red_l .srf_bdr_inr:after {
border-right-color: rgba(165, 39, 39, 1);
}
.srf_bdr_black_r .srf_bdr_inr:after,
.srf_bdr_blue_r .srf_bdr_inr:after,
.srf_bdr_gray_r .srf_bdr_inr:after,
.srf_bdr_green_r .srf_bdr_inr:after,
.srf_bdr_orange_r .srf_bdr_inr:after,
.srf_bdr_red_r .srf_bdr_inr:after  {
right: -29px;
}
.srf_bdr_black_r .srf_bdr_inr:after {
border-left-color: rgba(17, 17, 17, 1);
}
.srf_bdr_blue_r .srf_bdr_inr:after {
border-left-color: rgba(20, 50, 160, 1);
}
.srf_bdr_gray_r .srf_bdr_inr:after {
border-left-color: rgba(153, 153, 153, 1);
}
.srf_bdr_green_r .srf_bdr_inr:after {
border-left-color: rgba(57, 118, 52, 1);
}
.srf_bdr_orange_r .srf_bdr_inr:after {
border-left-color: rgba(220, 150, 30, 1);
}
.srf_bdr_red_r .srf_bdr_inr:after {
border-left-color: rgba(165, 39, 39, 1);
}
.srf_bdr_ttl{
font-size: 1.2em;
font-weight: bold;
margin: 0 0 0.1em 0!important;
padding: 0;
}
.srf_bdr_black_l .srf_bdr_ttl , .srf_bdr_black_r .srf_bdr_ttl {
color: rgba(17, 17, 17, 1);
}
.srf_bdr_blue_l .srf_bdr_ttl , .srf_bdr_blue_r .srf_bdr_ttl {
color: rgba(20, 50, 160, 1);
}
.srf_bdr_gray_l .srf_bdr_ttl , .srf_bdr_gray_r .srf_bdr_ttl {
color: rgba(17, 17, 17, 1);
}
.srf_bdr_green_l .srf_bdr_ttl , .srf_bdr_green_r .srf_bdr_ttl {
color: rgba(57, 118, 52, 1);
}
.srf_bdr_orange_l .srf_bdr_ttl , .srf_bdr_orange_r .srf_bdr_ttl {
color: rgba(220, 150, 30, 1);
}
.srf_bdr_red_l .srf_bdr_ttl , .srf_bdr_red_r .srf_bdr_ttl {
color: rgba(165, 39, 39, 1);
}

/*----------------------------------------------------------------------------
******************************************************************************
** width
******************************************************************************
----------------------------------------------------------------------------*/
.w_01 {
width: 1%!important;
}
.w_02 {
width: 2%!important;
}
.w_03 {
width: 3%!important;
}
.w_04 {
width: 4%!important;
}
.w_05 {
width: 5%!important;
}
.w_06 {
width: 6%!important;
}
.w_07 {
width: 7%!important;
}
.w_08 {
width: 8%!important;
}
.w_09 {
width: 9%!important;
}
.w_10 {
width: 10%!important;
}
.w_11 {
width: 11%!important;
}
.w_12 {
width: 12%!important;
}
.w_13 {
width: 13%!important;
}
.w_14 {
width: 14%!important;
}
.w_15 {
width: 15%!important;
}
.w_16 {
width: 16%!important;
}
.w_17 {
width: 17%!important;
}
.w_18 {
width: 18%!important;
}
.w_19 {
width: 19%!important;
}
.w_20 {
width: 20%!important;
}
.w_21 {
width: 21%!important;
}
.w_22 {
width: 22%!important;
}
.w_23 {
width: 23%!important;
}
.w_24 {
width: 24%!important;
}
.w_25 {
width: 25%!important;
}
.w_26 {
width: 26%!important;
}
.w_27 {
width: 27%!important;
}
.w_28 {
width: 28%!important;
}
.w_29 {
width: 29%!important;
}
.w_30 {
width: 30%!important;
}
.w_31 {
width: 31%!important;
}
.w_32 {
width: 32%!important;
}
.w_33 {
width: 33%!important;
}
.w_34 {
width: 34%!important;
}
.w_35 {
width: 35%!important;
}
.w_36 {
width: 36%!important;
}
.w_37 {
width: 37%!important;
}
.w_38 {
width: 38%!important;
}
.w_39 {
width: 39%!important;
}
.w_40 {
width: 40%!important;
}
.w_41 {
width: 41%!important;
}
.w_42 {
width: 42%!important;
}
.w_43 {
width: 43%!important;
}
.w_44 {
width: 44%!important;
}
.w_45 {
width: 45%!important;
}
.w_46 {
width: 46%!important;
}
.w_47 {
width: 47%!important;
}
.w_48 {
width: 48%!important;
}
.w_49 {
width: 49%!important;
}
.w_50 {
width: 50%!important;
}
.w_51 {
width: 51%!important;
}
.w_52 {
width: 52%!important;
}
.w_53 {
width: 53%!important;
}
.w_54 {
width: 54%!important;
}
.w_55 {
width: 55%!important;
}
.w_56 {
width: 56%!important;
}
.w_57 {
width: 57%!important;
}
.w_58 {
width: 58%!important;
}
.w_59 {
width: 59%!important;
}
.w_60 {
width: 60%!important;
}
.w_61 {
width: 61%!important;
}
.w_62 {
width: 62%!important;
}
.w_63 {
width: 63%!important;
}
.w_64 {
width: 64%!important;
}
.w_65 {
width: 65%!important;
}
.w_66 {
width: 66%!important;
}
.w_67 {
width: 67%!important;
}
.w_68 {
width: 68%!important;
}
.w_69 {
width: 69%!important;
}
.w_70 {
width: 70%!important;
}
.w_71 {
width: 71%!important;
}
.w_72 {
width: 72%!important;
}
.w_73 {
width: 73%!important;
}
.w_74 {
width: 74%!important;
}
.w_75 {
width: 75%!important;
}
.w_76 {
width: 76%!important;
}
.w_77 {
width: 77%!important;
}
.w_78 {
width: 78%!important;
}
.w_79 {
width: 79%!important;
}
.w_80 {
width: 80%!important;
}
.w_81 {
width: 81%!important;
}
.w_82 {
width: 82%!important;
}
.w_83 {
width: 83%!important;
}
.w_84 {
width: 84%!important;
}
.w_85 {
width: 85%!important;
}
.w_86 {
width: 86%!important;
}
.w_87 {
width: 87%!important;
}
.w_88 {
width: 88%!important;
}
.w_89 {
width: 89%!important;
}
.w_90 {
width: 90%!important;
}
.w_91 {
width: 91%!important;
}
.w_92 {
width: 92%!important;
}
.w_93 {
width: 93%!important;
}
.w_94 {
width: 94%!important;
}
.w_95 {
width: 95%!important;
}
.w_96 {
width: 96%!important;
}
.w_97 {
width: 97%!important;
}
.w_98 {
width: 98%!important;
}
.w_99 {
width: 99%!important;
}
.w_100 {
width: 100%!important;
}
img[class^="w_"] {
height: auto;
}
}


/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** SPスタイル
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/

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

/*----------------------------------------------------------------------------
******************************************************************************
** box
******************************************************************************
----------------------------------------------------------------------------*/

/* ==== box === */
.box > *, .box_col_02 > *, .box_col_03 > *, .box_col_04 > *, .box_col_05 > *,
.box_col_06 > *, .box_col_07 > *, .box_col_08 > *, .box_col_09 > *, .box_col_10 > * {
margin: 1.4em 0;
}
.box_col_02 > *:nth-child(2n), .box_col_03 > *:nth-child(3n), .box_col_04 > *:nth-child(4n), .box_col_05 > *:nth-child(5n),
.box_col_06 > *:nth-child(6n), .box_col_07 > *:nth-child(7n), .box_col_08 > *:nth-child(8n), .box_col_09 > *:nth-child(9n), .box_col_10 > *:nth-child(10n) {
margin-right: 0;
}

/* ==== sp-box === */
.sp_box {
display: flex;
justify-content: space-between;
}
.sp_box_c {
justify-content: center;
}
.sp_box_wrap {
flex-wrap: wrap;
}
.sp_box_mdl {
align-items: center;
}
.sp_box_stc {
align-items: stretch;
}

/* ==== sp-box_col === */
.sp_box_col_02 , .sp_box_col_03 , .sp_box_col_04 , .sp_box_col_05 ,
.sp_box_col_06 , .sp_box_col_07 , .sp_box_col_08 , .sp_box_col_09 , .sp_box_col_10 {
display: flex;
flex-wrap: wrap;
justify-content: flex-start;
margin-bottom: 0.4em;
margin-top: 1.4em;
}

.sp_box_col_02 > *, .sp_box_col_03 > *, .sp_box_col_04 > *, .sp_box_col_05 > *,
.sp_box_col_06 > *, .sp_box_col_07 > *, .sp_box_col_08 > *, .sp_box_col_09 > *, .sp_box_col_10 > * {
margin-right: 1em;
margin-bottom: 1em;
}
.sp_box_col_02 > *:nth-child(2n), .sp_box_col_03 > *:nth-child(3n), .sp_box_col_04 > *:nth-child(4n), .sp_box_col_05 > *:nth-child(5n),
.sp_box_col_06 > *:nth-child(6n), .sp_box_col_07 > *:nth-child(7n), .sp_box_col_08 > *:nth-child(8n), .sp_box_col_09 > *:nth-child(9n), .sp_box_col_10 > *:nth-child(10n) {
margin-right: 0;
}
.sp_box_col_02 > * {
width: calc( (100% - 1em - 1px ) / 2);
}
.sp_box_col_03 > * {
width: calc( (100% - 2em - 1px ) / 3);
}
.sp_box_col_04 > * {
width: calc( (100% - 3em - 1px ) / 4);
}
.sp_box_col_05 > * {
width: calc( (100% - 4em - 1px ) / 5);
}
.sp_box_col_06 > * {
width: calc( (100% - 5em - 1px ) / 6);
}
.sp_box_col_07 > * {
width: calc( (100% - 6em - 1px ) / 7);
}
.sp_box_col_08 > * {
width: calc( (100% - 7em - 1px ) / 8);
}
.sp_box_col_09 > * {
width: calc( (100% - 8em - 1px ) / 9);
}
.sp_box_col_10 > * {
width: calc( (100% - 9em - 1px ) / 10);
}

/*----------------------------------------------------------------------------
******************************************************************************
** display
******************************************************************************
----------------------------------------------------------------------------*/

.sp_dn{
display: none;
}

/*----------------------------------------------------------------------------
******************************************************************************
** gallery
******************************************************************************
----------------------------------------------------------------------------*/

/* ==== glry_col === */
.glry_col_01 > *, .glry_col_02 > *, .glry_col_03 > *, .glry_col_04 > *, .glry_col_05 > *,
.glry_col_06 > *, .glry_col_07 > *, .glry_col_08 > *, .glry_col_09 > *, .glry_col_10 > * {
font-size: 0.9em;
margin: 1.4rem 0;
text-align: center;
}
.glry_col_02 > * > img, .glry_col_03 > * > img, .glry_col_04 > * > img, .glry_col_05 > * > img,
.glry_col_06 > * > img, .glry_col_07 > * > img, .glry_col_08 > * > img, .glry_col_09 > * > img, .glry_col_10 > * > img {
margin: 0 auto 0.5rem;
}

/* ==== sp-glry_col === */
.sp_glry_col_02 , .sp_glry_col_03 , .sp_glry_col_04 , .sp_glry_col_05 ,
.sp_glry_col_06 , .sp_glry_col_07 , .sp_glry_col_08 , .sp_glry_col_09 , .sp_glry_col_10 {
display: flex;
flex-wrap: wrap;
justify-content: flex-start;
margin-bottom: 0.4em;
margin-top: 1.4em;
}
.sp_glry_col_01 > *:not(.glry_ttl_btm), .sp_glry_col_02 > *:not(.glry_ttl_btm), .sp_glry_col_03 > *:not(.glry_ttl_btm), .sp_glry_col_04 > *:not(.glry_ttl_btm), .sp_glry_col_05 > *:not(.glry_ttl_btm),
.sp_glry_col_06 > *:not(.glry_ttl_btm), .sp_glry_col_07 > *:not(.glry_ttl_btm), .sp_glry_col_08 > *:not(.glry_ttl_btm), .sp_glry_col_09 > *:not(.glry_ttl_btm), .sp_glry_col_10 > *:not(.glry_ttl_btm) {
font-size: 0.8em;
}
.sp_glry_col_02 > *, .sp_glry_col_03 > *, .sp_glry_col_04 > *, .sp_glry_col_05 > *,
.sp_glry_col_06 > *, .sp_glry_col_07 > *, .sp_glry_col_08 > *, .sp_glry_col_09 > *, .sp_glry_col_10 > * {
margin: 0 1em 1em 0!important;
text-align: center;
}
.sp_glry_col_02 > *:nth-child(2n), .sp_glry_col_03 > *:nth-child(3n), .sp_glry_col_04 > *:nth-child(4n), .sp_glry_col_05 > *:nth-child(5n),
.sp_glry_col_06 > *:nth-child(6n), .sp_glry_col_07 > *:nth-child(7n), .sp_glry_col_08 > *:nth-child(8n), .sp_glry_col_09 > *:nth-child(9n), .sp_glry_col_10 > *:nth-child(10n) {
margin-right: 0!important;
}
.sp_glry_col_02 > * {
width: calc( (100% - 1em - 1px ) / 2);
}
.sp_glry_col_03 > * {
width: calc( (100% - 2em - 1px ) / 3);
}
.sp_glry_col_04 > * {
width: calc( (100% - 3em - 1px ) / 4);
}
.sp_glry_col_05 > * {
width: calc( (100% - 4em - 1px ) / 5);
}
.sp_glry_col_06 > * {
width: calc( (100% - 5em - 1px ) / 6);
}
.sp_glry_col_07 > * {
width: calc( (100% - 6em - 1px ) / 7);
}
.sp_glry_col_08 > * {
width: calc( (100% - 7em - 1px ) / 8);
}
.sp_glry_col_09 > * {
width: calc( (100% - 8em - 1px ) / 9);
}
.sp_glry_col_10 > * {
width: calc( (100% - 9em - 1px ) / 10);
}
.sp_glry_col_01 > * > img, .sp_glry_col_02 > * > img, .sp_glry_col_03 > * > img, .sp_glry_col_04 > * > img, .sp_glry_col_05 > * > img,
.sp_glry_col_06 > * > img, .sp_glry_col_07 > * > img, .sp_glry_col_08 > * > img, .sp_glry_col_09 > * > img, .sp_glry_col_10 > * > img {
margin-bottom: 5em;
}


/*----------------------------------------------------------------------------
******************************************************************************
** img
******************************************************************************
----------------------------------------------------------------------------*/

.img_c, .img_l, .img_r {
display: block;
margin: 1.4em auto;
}
div.img_c, div.img_l, div.img_r,
p.img_c, p.img_l, p.img_r {
margin: 1.4em 0;
text-align: center;
}
div.img_c img, div.img_l img, div.img_r img,
p.img_c img, p.img_l img, p.img_r img {
margin-bottom: 0.5em;
}

/* ==== sp-img === */
.sp_img_c {
display: block;
margin: 1.4em auto;
}
.sp_img_l {
float: left;
margin-bottom: 0.5em;
margin-right: 1.4em;
}
.sp_img_r {
float: right;
margin-bottom: 0.5em;
margin-left: 1.4em;
}
div.sp_img_c, div.sp_img_l, div.sp_img_r,
p.sp_img_c, p.sp_img_l, p.sp_img_r {
font-size: 0.8em;
text-align: center;
}
div.sp_img_c img, div.sp_img_c img, div.sp_img_r img,
p.sp_img_c img, p.sp_img_l img, p.sp_img_r img {
display: inline-block;
margin-bottom: 0.5em;
}

/*----------------------------------------------------------------------------
******************************************************************************
** margin
******************************************************************************
----------------------------------------------------------------------------*/

.sp_mt_m100 {
margin-top:-100px!important;
}
.sp_mt_m90 {
margin-top:-90px!important;
}
.sp_mt_m80 {
margin-top:-80px!important;
}
.sp_mt_m70 {
margin-top:-70px!important;
}
.sp_mt_m60 {
margin-top:-60px!important;
}
.sp_mt_m50 {
margin-top:-50px!important;
}
.sp_mt_m40 {
margin-top:-40px!important;
}
.sp_mt_m30 {
margin-top:-30px!important;
}
.sp_mt_m20 {
margin-top:-20px!important;
}
.sp_mt_m10 {
margin-top:-10px!important;
}
.sp_mt_0 {
margin-top:0px!important;
}
.sp_mt_05 {
margin-top:5px!important;
}
.sp_mt_10 {
margin-top:10px!important;
}
.sp_mt_15 {
margin-top:15px!important;
}
.sp_mt_20 {
margin-top:20px!important;
}
.sp_mt_30 {
margin-top:30px!important;
}
.sp_mt_40 {
margin-top:40px!important;
}
.sp_mt_50 {
margin-top:50px!important;
}
.sp_mt_60 {
margin-top:60px!important;
}
.sp_mt_70 {
margin-top:70px!important;
}
.sp_mt_80 {
margin-top:80px!important;
}
.sp_mt_90 {
margin-top:90px!important;
}
.sp_mt_100 {
margin-top:100px!important;
}
.sp_mr_m100 {
margin-right:-100px!important;
}
.sp_mr_m90 {
margin-right:-90px!important;
}
.sp_mr_m80 {
margin-right:-80px!important;
}
.sp_mr_m70 {
margin-right:-70px!important;
}
.sp_mr_m60 {
margin-right:-60px!important;
}
.sp_mr_m50 {
margin-right:-50px!important;
}
.sp_mr_m40 {
margin-right:-40px!important;
}
.sp_mr_m30 {
margin-right:-30px!important;
}
.sp_mr_m20 {
margin-right:-20px!important;
}
.sp_mr_m10 {
margin-right:-10px!important;
}
.sp_mr_0 {
margin-right:0px!important;
}
.sp_mr_05 {
margin-right:5px!important;
}
.sp_mr_10 {
margin-right:10px!important;
}
.sp_mr_15 {
margin-right:15px!important;
}
.sp_mr_20 {
margin-right:20px!important;
}
.sp_mr_30 {
margin-right:30px!important;
}
.sp_mr_40 {
margin-right:40px!important;
}
.sp_mr_50 {
margin-right:50px!important;
}
.sp_mr_60 {
margin-right:60px!important;
}
.sp_mr_70 {
margin-right:70px!important;
}
.sp_mr_80 {
margin-right:80px!important;
}
.sp_mr_90 {
margin-right:90px!important;
}
.sp_mr_100 {
margin-right:100px!important;
}
.sp_mb_m100 {
margin-bottom:-100px!important;
}
.sp_mb_m90 {
margin-bottom:-90px!important;
}
.sp_mb_m80 {
margin-bottom:-80px!important;
}
.sp_mb_m70 {
margin-bottom:-70px!important;
}
.sp_mb_m60 {
margin-bottom:-60px!important;
}
.sp_mb_m50 {
margin-bottom:-50px!important;
}
.sp_mb_m40 {
margin-bottom:-40px!important;
}
.sp_mb_m30 {
margin-bottom:-30px!important;
}
.sp_mb_m20 {
margin-bottom:-20px!important;
}
.sp_mb_m10 {
margin-bottom:-10px!important;
}
.sp_mb_0 {
margin-bottom:0px!important;
}
.sp_mb_05 {
margin-bottom:5px!important;
}
.sp_mb_10 {
margin-bottom:10px!important;
}
.sp_mb_15 {
margin-bottom:15px!important;
}
.sp_mb_20 {
margin-bottom:20px!important;
}
.sp_mb_30 {
margin-bottom:30px!important;
}
.sp_mb_40 {
margin-bottom:40px!important;
}
.sp_mb_50 {
margin-bottom:50px!important;
}
.sp_mb_60 {
margin-bottom:60px!important;
}
.sp_mb_70 {
margin-bottom:70px!important;
}
.sp_mb_80 {
margin-bottom:80px!important;
}
.sp_mb_90 {
margin-bottom:90px!important;
}
.sp_mb_100 {
margin-bottom:100px!important;
}
.sp_ml_m100 {
margin-left:-100px!important;
}
.sp_ml_m90 {
margin-left:-90px!important;
}
.sp_ml_m80 {
margin-left:-80px!important;
}
.sp_ml_m70 {
margin-left:-70px!important;
}
.sp_ml_m60 {
margin-left:-60px!important;
}
.sp_ml_m50 {
margin-left:-50px!important;
}
.sp_ml_m40 {
margin-left:-40px!important;
}
.sp_ml_m30 {
margin-left:-30px!important;
}
.sp_ml_m20 {
margin-left:-20px!important;
}
.sp_ml_m10 {
margin-left:-10px!important;
}
.sp_ml_0 {
margin-left:0px!important;
}
.sp_ml_05 {
margin-left:5px!important;
}
.sp_ml_10 {
margin-left:10px!important;
}
.sp_ml_15 {
margin-left:15px!important;
}
.sp_ml_20 {
margin-left:20px!important;
}
.sp_ml_30 {
margin-left:30px!important;
}
.sp_ml_40 {
margin-left:40px!important;
}
.sp_ml_50 {
margin-left:50px!important;
}
.sp_ml_60 {
margin-left:60px!important;
}
.sp_ml_70 {
margin-left:70px!important;
}
.sp_ml_80 {
margin-left:80px!important;
}
.sp_ml_90 {
margin-left:90px!important;
}
.sp_ml_100 {
margin-left:100px!important;
}
.sp_mrl_auto {
margin-right: auto!important;
margin-left:auto!important;
}
.sp_mrl_0 {
margin-left:0px!important;
margin-right:0px!important;
}
.sp_mrl_05 {
margin-left:5px!important;
margin-right:5px!important;
}
.sp_mrl_10 {
margin-left:10px!important;
margin-right:10px!important;
}
.sp_mrl_15 {
margin-left:15px!important;
margin-right:15px!important;
}
.sp_mrl_20 {
margin-left:20px!important;
margin-right:20px!important;
}
.sp_mrl_30 {
margin-left:30px!important;
margin-right:30px!important;
}
.sp_mrl_40 {
margin-left:40px!important;
margin-right:40px!important;
}
.sp_mrl_50 {
margin-left:50px!important;
margin-right:50px!important;
}
.sp_mrl_60 {
margin-left:60px!important;
margin-right:60px!important;
}
.sp_mrl_70 {
margin-left:70px!important;
margin-right:70px!important;
}
.sp_mrl_80 {
margin-left:80px!important;
margin-right:80px!important;
}
.sp_mrl_90 {
margin-left:90px!important;
margin-right:90px!important;
}
.sp_mrl_100 {
margin-left:100px!important;
margin-right:100px!important;
}
.sp_mrl_10per {
margin-left:10%!important;
margin-right:10%!important;
}
.sp_mrl_15per {
margin-left:15%!important;
margin-right:15%!important;
}
.sp_mrl_20per {
margin-left:20%!important;
margin-right:20%!important;
}
.sp_mrl_25per {
margin-left:25%!important;
margin-right:25%!important;
}
.sp_mrl_30per {
margin-left:30%!important;
margin-right:30%!important;
}
.sp_mrl_35per {
margin-left:35%!important;
margin-right:35%!important;
}
.sp_mrl_40per {
margin-left:40%!important;
margin-right:40%!important;
}
.sp_mrl_45per {
margin-left:45%!important;
margin-right:45%!important;
}
.sp_mtb_0 {
margin-top:0px!important;
margin-bottom:0px!important;
}
.sp_mtb_05 {
margin-top:5px!important;
margin-bottom:5px!important;
}
.sp_mtb_10 {
margin-top:10px!important;
margin-bottom:10px!important;
}
.sp_mtb_15 {
margin-top:15px!important;
margin-bottom:15px!important;
}
.sp_mtb_20 {
margin-top:20px!important;
margin-bottom:20px!important;
}
.sp_mtb_30 {
margin-top:30px!important;
margin-bottom:30px!important;
}
.sp_mtb_40 {
margin-top:40px!important;
margin-bottom:40px!important;
}
.sp_mtb_50 {
margin-top:50px!important;
margin-bottom:50px!important;
}
.sp_mtb_60 {
margin-top:60px!important;
margin-bottom:60px!important;
}
.sp_mtb_70 {
margin-top:70px!important;
margin-bottom:70px!important;
}
.sp_mtb_80 {
margin-top:80px!important;
margin-bottom:80px!important;
}
.sp_mtb_90 {
margin-top:90px!important;
margin-bottom:90px!important;
}
.sp_mtb_100 {
margin-top:100px!important;
margin-bottom:100px!important;
}
.sp_mrbl_0 {
margin-bottom:0px!important;
margin-right:0px!important;
margin-left:0px!important;
}
.sp_mrbl_05 {
margin-bottom:5px!important;
margin-right:5px!important;
margin-left:5px!important;
}
.sp_mrbl_10 {
margin-bottom:10px!important;
margin-right:10px!important;
margin-left:10px!important;
}
.sp_mrbl_15 {
margin-bottom:15px!important;
margin-right:15px!important;
margin-left:15px!important;
}
.sp_mrbl_20 {
margin-bottom:20px!important;
margin-right:20px!important;
margin-left:20px!important;
}
.sp_mrbl_30 {
margin-bottom:30px!important;
margin-right:30px!important;
margin-left:30px!important;
}
.sp_mrbl_40 {
margin-bottom:40px!important;
margin-right:px!important;
margin-left:px!important;
}
.sp_mrbl_50 {
margin-bottom:50px!important;
margin-right:50px!important;
margin-left:50px!important;
}
.sp_mrbl_60 {
margin-bottom:60px!important;
margin-right:60px!important;
margin-left:60px!important;
}
.sp_mrbl_70 {
margin-bottom:70px!important;
margin-right:70px!important;
margin-left:70px!important;
}
.sp_mrbl_80 {
margin-bottom:80px!important;
margin-right:80px!important;
margin-left:80px!important;
}
.sp_mrbl_90 {
margin-bottom:90px!important;
margin-right:90px!important;
margin-left:90px!important;
}
.sp_mrbl_100 {
margin-bottom:100px!important;
margin-right:100px!important;
margin-left:0px!important;
}
.sp_mtrl_0 {
margin-top:0px!important;
margin-right:0px!important;
margin-left:0px!important;
}
.sp_mtrl_05 {
margin-top:5px!important;
margin-right:5px!important;
margin-left:5px!important;
}
.sp_mtrl_10 {
margin-top:10px!important;
margin-right:10px!important;
margin-left:10px!important;
}
.sp_mtrl_15 {
margin-top:15px!important;
margin-right:15px!important;
margin-left:15px!important;
}
.sp_mtrl_20 {
margin-top:20px!important;
margin-right:20px!important;
margin-left:20px!important;
}
.sp_mtrl_30 {
margin-top:30px!important;
margin-right:30px!important;
margin-left:30px!important;
}
.sp_mtrl_40 {
margin-top:40px!important;
margin-right:px!important;
margin-left:px!important;
}
.sp_mtrl_50 {
margin-top:50px!important;
margin-right:50px!important;
margin-left:50px!important;
}
.sp_mtrl_60 {
margin-top:60px!important;
margin-right:60px!important;
margin-left:60px!important;
}
.sp_mtrl_70 {
margin-top:70px!important;
margin-right:70px!important;
margin-left:70px!important;
}
.sp_mtrl_80 {
margin-top:80px!important;
margin-right:80px!important;
margin-left:80px!important;
}
.sp_mtrl_90 {
margin-top:90px!important;
margin-right:90px!important;
margin-left:90px!important;
}
.sp_mtrl_100 {
margin-top:100px!important;
margin-right:100px!important;
margin-left:0px!important;
}
.sp_ma_0 {
margin:0px!important;
}
.sp_ma_05 {
margin:5px!important;
}
.sp_ma_10 {
margin:10px!important;
}
.sp_ma_15 {
margin:15px!important;
}
.sp_ma_20 {
margin:20px!important;
}
.sp_ma_30 {
margin:30px!important;
}
.sp_ma_40 {
margin:40px!important;
}
.sp_ma_50 {
margin:50px!important;
}
.sp_ma_60 {
margin:60px!important;
}
.sp_ma_70 {
margin:70px!important;
}
.sp_ma_80 {
margin:80px!important;
}
.sp_ma_90 {
margin:90px!important;
}
.sp_ma_100 {
margin:100px!important;
}

/*----------------------------------------------------------------------------
******************************************************************************
** padding
******************************************************************************
----------------------------------------------------------------------------*/

.sp_padt_0 {
padding-top:0px!important;
}
.sp_padt_05 {
padding-top:5px!important;
}
.sp_padt_10 {
padding-top:10px!important;
}
.sp_padt_15 {
padding-top:15px!important;
}
.sp_padt_20 {
padding-top:20px!important;
}
.sp_padt_30 {
padding-top:30px!important;
}
.sp_padt_40 {
padding-top:40px!important;
}
.sp_padt_50 {
padding-top:50px!important;
}
.sp_padt_60 {
padding-top:60px!important;
}
.sp_padt_70 {
padding-top:70px!important;
}
.sp_padt_80 {
padding-top:80px!important;
}
.sp_padt_90 {
padding-top:90px!important;
}
.sp_padt_100 {
padding-top:100px!important;
}
.sp_padr_0 {
padding-right:0px!important;
}
.sp_padr_05 {
padding-right:5px!important;
}
.sp_padr_10 {
padding-right:10px!important;
}
.sp_padr_15 {
padding-right:15px!important;
}
.sp_padr_20 {
padding-right:20px!important;
}
.sp_padr_30 {
padding-right:30px!important;
}
.sp_padr_40 {
padding-right:40px!important;
}
.sp_padr_50 {
padding-right:50px!important;
}
.sp_padr_60 {
padding-right:60px!important;
}
.sp_padr_70 {
padding-right:70px!important;
}
.sp_padr_80 {
padding-right:80px!important;
}
.sp_padr_90 {
padding-right:90px!important;
}
.sp_padr_100 {
padding-right:100px!important;
}
.sp_padb_0 {
padding-bottom:0px!important;
}
.sp_padb_05 {
padding-bottom:5px!important;
}
.sp_padb_10 {
padding-bottom:10px!important;
}
.sp_padb_15 {
padding-bottom:15px!important;
}
.sp_padb_20 {
padding-bottom:20px!important;
}
.sp_padb_30 {
padding-bottom:30px!important;
}
.sp_padb_40 {
padding-bottom:40px!important;
}
.sp_padb_50 {
padding-bottom:50px!important;
}
.sp_padb_60 {
padding-bottom:60px!important;
}
.sp_padb_70 {
padding-bottom:70px!important;
}
.sp_padb_80 {
padding-bottom:80px!important;
}
.sp_padb_90 {
padding-bottom:90px!important;
}
.sp_padb_100 {
padding-bottom:100px!important;
}
.sp_padl_0 {
padding-left:0px!important;
}
.sp_padl_05 {
padding-left:5px!important;
}
.sp_padl_10 {
padding-left:10px!important;
}
.sp_padl_15 {
padding-left:15px!important;
}
.sp_padl_20 {
padding-left:20px!important;
}
.sp_padl_30 {
padding-left:30px!important;
}
.sp_padl_40 {
padding-left:40px!important;
}
.sp_padl_50 {
padding-left:50px!important;
}
.sp_padl_60 {
padding-left:60px!important;
}
.sp_padl_70 {
padding-left:70px!important;
}
.sp_padl_80 {
padding-left:80px!important;
}
.sp_padl_90 {
padding-left:90px!important;
}
.sp_padl_100 {
padding-left:100px!important;
}
.sp_pada_0 {
padding:0px!important;
}
.sp_pada_05 {
padding:5px!important;
}
.sp_pada_10 {
padding:10px!important;
}
.sp_pada_15 {
padding:15px!important;
}
.sp_pada_20 {
padding:20px!important;
}
.sp_pada_30 {
padding:30px!important;
}
.sp_pada_40 {
padding:40px!important;
}
.sp_pada_50 {
padding:50px!important;
}
.sp_pada_60 {
padding:60px!important;
}
.sp_pada_70 {
padding:70px!important;
}
.sp_pada_80 {
padding:80px!important;
}
.sp_pada_90 {
padding:90px!important;
}
.sp_pada_100 {
padding:100px!important;
}

/*----------------------------------------------------------------------------
******************************************************************************
** serif
******************************************************************************
----------------------------------------------------------------------------*/
.srf_bdr_black_l, .srf_bdr_black_r,
.srf_bdr_blue_l, .srf_bdr_blue_r,
.srf_bdr_gray_l, .srf_bdr_gray_r,
.srf_bdr_green_l, .srf_bdr_green_r,
.srf_bdr_orange_l, .srf_bdr_orange_r,
.srf_bdr_red_l, .srf_bdr_red_r {
margin: 2em 0;
}
.srf_bdr_icon {
border-radius: 50%;
display: block;
height: 80px!important;
margin: 0 auto 1em;
overflow: hidden;
width: 80px!important;
}
.srf_bdr_black_l .srf_bdr_icon , .srf_bdr_black_r .srf_bdr_icon {
box-shadow: 0 0 10pxrgba(17, 17, 17, 0.6);
}
.srf_bdr_blue_l .srf_bdr_icon , .srf_bdr_blue_r .srf_bdr_icon {
box-shadow: 0 0 10pxrgba(20, 50, 160, 0.6);
}
.srf_bdr_gray_l .srf_bdr_icon , .srf_bdr_gray_r .srf_bdr_icon {
box-shadow: 0 0 10pxrgba(153, 153, 153, 0.6);
}
.srf_bdr_green_l .srf_bdr_icon , .srf_bdr_green_r .srf_bdr_icon {
box-shadow: 0 0 10pxrgba(57, 118, 52, 0.6);
}
.srf_bdr_orange_l .srf_bdr_icon , .srf_bdr_orange_r .srf_bdr_icon {
box-shadow: 0 0 10pxrgba(220, 150, 30, 0.6);
}
.srf_bdr_red_l .srf_bdr_icon , .srf_bdr_red_r .srf_bdr_icon {
box-shadow: 0 0 10px rgba(165, 39, 39, 0.6);
}
.srf_bdr_inr {
border: 2px solid;
background-color: #FFF;
border-radius: 10px;
font-size: 0.9em;
line-height: 1.6;
position: relative;
padding: 1em 1.4em;
}
.srf_bdr_black_l .srf_bdr_inr , .srf_bdr_black_r .srf_bdr_inr {
border-color: rgba(17, 17, 17, 1);
}
.srf_bdr_blue_l .srf_bdr_inr , .srf_bdr_blue_r .srf_bdr_inr {
border-color: rgba(20, 50, 160, 1);
}
.srf_bdr_gray_l .srf_bdr_inr , .srf_bdr_gray_r .srf_bdr_inr {
border-color: rgba(153, 153, 153, 1);
}
.srf_bdr_green_l .srf_bdr_inr , .srf_bdr_green_r .srf_bdr_inr {
border-color: rgba(57, 118, 52, 1);
}
.srf_bdr_orange_l .srf_bdr_inr , .srf_bdr_orange_r .srf_bdr_inr {
border-color: rgba(220, 150, 30, 1);
}
.srf_bdr_red_l .srf_bdr_inr , .srf_bdr_red_r .srf_bdr_inr {
border-color: rgba(165, 39, 39, 1);
}

.srf_bdr_inr:before {
content: "";
position: absolute;
top: -24px;
left: 50%;
margin-left: -12px;
border: 12px solid transparent;
z-index: 2;
}
.srf_bdr_black_l .srf_bdr_inr:before,
.srf_bdr_blue_l .srf_bdr_inr:before,
.srf_bdr_gray_l .srf_bdr_inr:before,
.srf_bdr_green_l .srf_bdr_inr:before,
.srf_bdr_orange_l .srf_bdr_inr:before,
.srf_bdr_red_l .srf_bdr_inr:before,
.srf_bdr_black_r .srf_bdr_inr:before,
.srf_bdr_blue_r .srf_bdr_inr:before,
.srf_bdr_gray_r .srf_bdr_inr:before,
.srf_bdr_green_r .srf_bdr_inr:before,
.srf_bdr_orange_r .srf_bdr_inr:before,
.srf_bdr_red_r .srf_bdr_inr:before {
border-bottom-color: #FFF;
}
.srf_bdr_inr:after {
border-right: 14px solid;
content: "";
position: absolute;
top: -29px;
left: 50%;
margin-left: -14px;
border: 14px solid transparent;
z-index: 1;
}
.srf_bdr_black_l .srf_bdr_inr:after,
.srf_bdr_blue_l .srf_bdr_inr:after,
.srf_bdr_gray_l .srf_bdr_inr:after,
.srf_bdr_green_l .srf_bdr_inr:after,
.srf_bdr_orange_l .srf_bdr_inr:after,
.srf_bdr_red_l .srf_bdr_inr:after  {
left: -29px;
}
.srf_bdr_black_l .srf_bdr_inr:after {
border-color:  rgba(17, 17, 17, 1);
}
.srf_bdr_blue_l .srf_bdr_inr:after {
border-color:  rgba(20, 50, 160, 1);
}
.srf_bdr_gray_l .srf_bdr_inr:after {
border-color:  rgba(153, 153, 153, 1);
}
.srf_bdr_green_l .srf_bdr_inr:after {
border-color:  rgba(57, 118, 52, 1);
}
.srf_bdr_orange_l .srf_bdr_inr:after {
border-color:  rgba(220, 150, 30, 1);
}
.srf_bdr_red_l .srf_bdr_inr:after {
border-color:  rgba(165, 39, 39, 1);
}
.srf_bdr_black_r .srf_bdr_inr:after,
.srf_bdr_blue_r .srf_bdr_inr:after,
.srf_bdr_gray_r .srf_bdr_inr:after,
.srf_bdr_green_r .srf_bdr_inr:after,
.srf_bdr_orange_r .srf_bdr_inr:after,
.srf_bdr_red_r .srf_bdr_inr:after  {

}
.srf_bdr_black_r .srf_bdr_inr:after {
border-bottom-color: rgba(17, 17, 17, 1);
}
.srf_bdr_blue_r .srf_bdr_inr:after {
border-bottom-color: rgba(20, 50, 160, 1);
}
.srf_bdr_gray_r .srf_bdr_inr:after {
border-bottom-color: rgba(153, 153, 153, 1);
}
.srf_bdr_green_r .srf_bdr_inr:after {
border-bottom-color: rgba(57, 118, 52, 1);
}
.srf_bdr_orange_r .srf_bdr_inr:after {
border-bottom-color: rgba(220, 150, 30, 1);
}
.srf_bdr_red_r .srf_bdr_inr:after {
border-bottom-color: rgba(165, 39, 39, 1);
}
.srf_bdr_ttl{
font-size: 1.2em;
font-weight: bold;
margin: 0 0 0.1em 0!important;
padding: 0;
}
.srf_bdr_black_l .srf_bdr_ttl , .srf_bdr_black_r .srf_bdr_ttl {
color: rgba(17, 17, 17, 1);
}
.srf_bdr_blue_l .srf_bdr_ttl , .srf_bdr_blue_r .srf_bdr_ttl {
color: rgba(20, 50, 160, 1);
}
.srf_bdr_gray_l .srf_bdr_ttl , .srf_bdr_gray_r .srf_bdr_ttl {
color: rgba(17, 17, 17, 1);
}
.srf_bdr_green_l .srf_bdr_ttl , .srf_bdr_green_r .srf_bdr_ttl {
color: rgba(57, 118, 52, 1);
}
.srf_bdr_orange_l .srf_bdr_ttl , .srf_bdr_orange_r .srf_bdr_ttl {
color: rgba(220, 150, 30, 1);
}
.srf_bdr_red_l .srf_bdr_ttl , .srf_bdr_red_r .srf_bdr_ttl {
color: rgba(165, 39, 39, 1);
}


/*----------------------------------------------------------------------------
******************************************************************************
** table
******************************************************************************
----------------------------------------------------------------------------*/

.sp_tbl_wrap {
box-shadow: -3px 0 5px rgba(0, 0, 0, 0.2) inset;
margin-bottom: 20px;
margin-top: 20px;
overflow: auto;
}
.sp_tbl_wrap table {
margin: 0!important;
min-width: 200%;
}

/*----------------------------------------------------------------------------
******************************************************************************
** width
******************************************************************************
----------------------------------------------------------------------------*/

.sp_w_01 {
width: 1%!important;
}
.sp_w_02 {
width: 2%!important;
}
.sp_w_03 {
width: 3%!important;
}
.sp_w_04 {
width: 4%!important;
}
.sp_w_05 {
width: 5%!important;
}
.sp_w_06 {
width: 6%!important;
}
.sp_w_07 {
width: 7%!important;
}
.sp_w_08 {
width: 8%!important;
}
.sp_w_09 {
width: 9%!important;
}
.sp_w_10 {
width: 10%!important;
}
.sp_w_11 {
width: 11%!important;
}
.sp_w_12 {
width: 12%!important;
}
.sp_w_13 {
width: 13%!important;
}
.sp_w_14 {
width: 14%!important;
}
.sp_w_15 {
width: 15%!important;
}
.sp_w_16 {
width: 16%!important;
}
.sp_w_17 {
width: 17%!important;
}
.sp_w_18 {
width: 18%!important;
}
.sp_w_19 {
width: 19%!important;
}
.sp_w_20 {
width: 20%!important;
}
.sp_w_21 {
width: 21%!important;
}
.sp_w_22 {
width: 22%!important;
}
.sp_w_23 {
width: 23%!important;
}
.sp_w_24 {
width: 24%!important;
}
.sp_w_25 {
width: 25%!important;
}
.sp_w_26 {
width: 26%!important;
}
.sp_w_27 {
width: 27%!important;
}
.sp_w_28 {
width: 28%!important;
}
.sp_w_29 {
width: 29%!important;
}
.sp_w_30 {
width: 30%!important;
}
.sp_w_31 {
width: 31%!important;
}
.sp_w_32 {
width: 32%!important;
}
.sp_w_33 {
width: 33%!important;
}
.sp_w_34 {
width: 34%!important;
}
.sp_w_35 {
width: 35%!important;
}
.sp_w_36 {
width: 36%!important;
}
.sp_w_37 {
width: 37%!important;
}
.sp_w_38 {
width: 38%!important;
}
.sp_w_39 {
width: 39%!important;
}
.sp_w_40 {
width: 40%!important;
}
.sp_w_41 {
width: 41%!important;
}
.sp_w_42 {
width: 42%!important;
}
.sp_w_43 {
width: 43%!important;
}
.sp_w_44 {
width: 44%!important;
}
.sp_w_45 {
width: 45%!important;
}
.sp_w_46 {
width: 46%!important;
}
.sp_w_47 {
width: 47%!important;
}
.sp_w_48 {
width: 48%!important;
}
.sp_w_49 {
width: 49%!important;
}
.sp_w_50 {
width: 50%!important;
}
.sp_w_51 {
width: 51%!important;
}
.sp_w_52 {
width: 52%!important;
}
.sp_w_53 {
width: 53%!important;
}
.sp_w_54 {
width: 54%!important;
}
.sp_w_55 {
width: 55%!important;
}
.sp_w_56 {
width: 56%!important;
}
.sp_w_57 {
width: 57%!important;
}
.sp_w_58 {
width: 58%!important;
}
.sp_w_59 {
width: 59%!important;
}
.sp_w_60 {
width: 60%!important;
}
.sp_w_61 {
width: 61%!important;
}
.sp_w_62 {
width: 62%!important;
}
.sp_w_63 {
width: 63%!important;
}
.sp_w_64 {
width: 64%!important;
}
.sp_w_65 {
width: 65%!important;
}
.sp_w_66 {
width: 66%!important;
}
.sp_w_67 {
width: 67%!important;
}
.sp_w_68 {
width: 68%!important;
}
.sp_w_69 {
width: 69%!important;
}
.sp_w_70 {
width: 70%!important;
}
.sp_w_71 {
width: 71%!important;
}
.sp_w_72 {
width: 72%!important;
}
.sp_w_73 {
width: 73%!important;
}
.sp_w_74 {
width: 74%!important;
}
.sp_w_75 {
width: 75%!important;
}
.sp_w_76 {
width: 76%!important;
}
.sp_w_77 {
width: 77%!important;
}
.sp_w_78 {
width: 78%!important;
}
.sp_w_79 {
width: 79%!important;
}
.sp_w_80 {
width: 80%!important;
}
.sp_w_81 {
width: 81%!important;
}
.sp_w_82 {
width: 82%!important;
}
.sp_w_83 {
width: 83%!important;
}
.sp_w_84 {
width: 84%!important;
}
.sp_w_85 {
width: 85%!important;
}
.sp_w_86 {
width: 86%!important;
}
.sp_w_87 {
width: 87%!important;
}
.sp_w_88 {
width: 88%!important;
}
.sp_w_89 {
width: 89%!important;
}
.sp_w_90 {
width: 90%!important;
}
.sp_w_91 {
width: 91%!important;
}
.sp_w_92 {
width: 92%!important;
}
.sp_w_93 {
width: 93%!important;
}
.sp_w_94 {
width: 94%!important;
}
.sp_w_95 {
width: 95%!important;
}
.sp_w_96 {
width: 96%!important;
}
.sp_w_97 {
width: 97%!important;
}
.sp_w_98 {
width: 98%!important;
}
.sp_w_99 {
width: 99%!important;
}
.sp_w_100 {
width: 100%!important;
}
img[class^="sp_w_"] {
height: auto;
}
}
