/******************************************************************************
******************************************************************************
**
** utility.sort.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
******************************************************************************
----------------------------------------------------------------------------*/

.align_center { text-align:center!important; }
.align_left { text-align:left!important; }
.align_right { text-align:right!important; }
.valign_top { vertical-align:top!important; }
.valign_middle { vertical-align:middle!important; }
.valign_bottom { vertical-align:bottom!important; }

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

.button_bg_black, .button_bg_blue, .button_bg_gray, .button_bg_green, .button_bg_orange, .button_bg_red,
.button_border_black, .button_border_blue, .button_border_gray, .button_border_green, .button_border_orange, .button_border_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;
}
.button_bg_black {
background-color: rgba(17, 17, 17, 0.9);
color: rgba(255, 255, 255, 1)!important;
}
.button_bg_black:hover,.button_bg_black.active {
background-color: rgba(17, 17, 17, 1);
color: rgba(255, 255, 255, 1)!important;
}
.button_bg_blue {
background-color: rgba(20, 50, 160, 0.9);
color: rgba(255, 255, 255, 1)!important;
}
.button_bg_blue:hover,.button_bg_blue.active {
background-color: rgba(20, 50, 160, 1);
color: rgba(255, 255, 255, 1)!important;
}
.button_bg_gray {
background-color: rgba(153, 153, 153, 0.4);
color: rgba(17, 17, 17, 1)!important;
}
.button_bg_gray:hover,.button_bg_gray.active {
background-color: rgba(153, 153, 153, 0.5);
color: rgba(17, 17, 17, 1)!important;
}
.button_bg_green {
background-color: rgba(57, 118, 52, 0.9);
color: rgba(255, 255, 255, 1)!important;
}
.button_bg_green:hover,.button_bg_green.active {
background-color: rgba(57, 118, 52, 1);
color: rgba(255, 255, 255, 1)!important;
}
.button_bg_orange {
background-color: rgba(220, 150, 30, 0.9);
color: rgba(255, 255, 255, 1)!important;
}
.button_bg_orange:hover,.button_bg_orange.active {
background-color: rgba(220, 150, 30, 1);
color: rgba(255, 255, 255, 1)!important;
}
.button_bg_red {
background-color: rgba(165, 39, 39, 0.9);
color: rgba(255, 255, 255, 1)!important;
}
.button_bg_red:hover,.button_bg_red.active {
background-color: rgba(165, 39, 39, 1);
color: rgba(255, 255, 255, 1)!important;
}
.button_border_black {
border: 1px solid rgba(17, 17, 17, 1);
color: rgba(17, 17, 17, 1)!important;
}
.button_border_black:hover,.button_bg_black.active {
background-color: rgba(17, 17, 17, 1);
color: rgba(255, 255, 255, 1)!important;
}
.button_border_blue {
border: 1px solid rgba(20, 50, 160, 1);
color: rgba(20, 50, 160, 1)!important;
}
.button_border_blue:hover,.button_bg_blue.active {
background-color: rgba(20, 50, 160, 1);
color: rgba(255, 255, 255, 1)!important;
}
.button_border_gray {
border: 1px solid rgba(153, 153, 153, 1);
color: rgba(153, 153, 153, 1)!important;
}
.button_border_gray:hover,.button_bg_gray.active {
background-color: rgba(153, 153, 153, 1);
color: rgba(255, 255, 255, 1)!important;
}
.button_border_green {
border: 1px solid rgba(57, 118, 52, 1);
color: rgba(57, 118, 52, 1)!important;
}
.button_border_green:hover,.button_bg_green.active {
background-color: rgba(57, 118, 52, 1);
color: rgba(255, 255, 255, 1)!important;
}
.button_border_orange {
border: 1px solid rgba(220, 150, 30, 1);
color: rgba(220, 150, 30, 1)!important;
}
.button_border_orange:hover,.button_bg_orange.active {
background-color: rgba(220, 150, 30, 1);
color: rgba(255, 255, 255, 1)!important;
}
.button_border_red {
border: 1px solid rgba(165, 39, 39, 1);
color: rgba(165, 39, 39, 1)!important;
}
.button_border_red:hover,.button_bg_red.active {
background-color: rgba(165, 39, 39, 1);
color: rgba(255, 255, 255, 1)!important;
}
.button_block { display: block; }
.button_l {
font-size: 1.2em;
padding: 0.8em 1.1em;
}
.button_xl {
font-size: 1.35em;
padding: 0.9em 1.2em;
}
.button_xxl {
font-size: 1.5em;
padding: 1em 1.3em;
}
.button_s {
font-size: 0.9em;
padding: 0.5em 0.8em;
}
.button_xs {
font-size: 0.8em;
padding: 0.4em 0.7em;
}
.button_xxs {
font-size: 0.7em;
padding: 0.4em 0.7em;
}

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

.color_black { color: rgba(17, 17, 17, 1)!important; }
.color_blue { color: rgba(20, 50, 160, 1)!important; }
.color_gray { color: rgba(153, 153, 153, 1)!important; }
.color_green { color: rgba(57, 118, 52, 1)!important; }
.color_orange { color: rgba(220, 150, 30, 1)!important; }
.color_red { color: rgba(165, 39, 39, 1)!important; }
.color_yellow { color: rgba(255, 255, 0, 1)!important; }

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

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

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

.fsize_s {
font-size: 0.9em!important;
line-height: 1.4!important;
}
.fsize_xs {
font-size: 0.8em!important;
line-height: 1.4!important;
}
.fsize_xxs {
font-size: 0.7em!important;
line-height: 1.4!important;
}
.fsize_l {
font-size: 1.2em!important;
line-height: 1.4!important;
}
.fsize_xl {
font-size: 1.35em!important;
line-height: 1.4!important;
}
.fsize_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_border_black, .icon_border_blue, .icon_border_gray, .icon_border_green, .icon_border_orange, .icon_border_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_border_black {
border: 1px solid rgba(17, 17, 17, 1);
color: rgba(17, 17, 17, 1)!important;
}
.icon_border_blue {
border: 1px solid rgba(20, 50, 160, 1);
color: rgba(20, 50, 160, 1)!important;
}
.icon_border_gray {
border: 1px solid rgba(153, 153, 153, 1);
color: rgba(153, 153, 153, 1)!important;
}
.icon_border_green {
border: 1px solid rgba(57, 118, 52, 1);
color: rgba(57, 118, 52, 1)!important;
}
.icon_border_orange {
border: 1px solid rgba(220, 150, 30, 1);
color: rgba(220, 150, 30, 1)!important;
}
.icon_border_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_border_black{ border: 3px solid rgba(17, 17, 17, 0.2); }
.img_border_blue{ border: 3px solid rgba(20, 50, 160, 0.2);}
.img_border_gray{ border: 3px solid rgba(153, 153, 153, 0.2);}
.img_border_green{ border: 3px solid rgba(57, 118, 52, 0.2);}
.img_border_orange{ border: 3px solid rgba(220, 150, 30, 0.2);}
.img_border_red{ border: 3px solid rgba(165, 39, 39, 0.2);}

/*----------------------------------------------------------------------------
******************************************************************************
** 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_caution {
margin: 1.2em 0 0.8em;
padding: 0;
}
ul.list_caution li {
list-style: none;
margin: 0 0 0.4em 1.5em;
text-indent: -1.5em;
}
ul.list_caution li:before { content: "※ "; }
ul.list_inline {
line-height: 1.6;
margin: 0 0 1em 0;
padding: 0;
}
ul.list_inline li {
display: inline-block;
list-style: none;
margin: 0 0.8em 0 0;
}
ul.list_border_dot, ul.list_border_sol {
margin: 1.2em 0 0.2em;
padding: 0;
}
ul.list_border_dot li, ul.list_border_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_border_sol li{
border-bottom-style: solid;
}

/* ==== ol === */
ol.list li {
margin-left: 1.5em;
margin-bottom: 0.5rem;
}
ol.list_caution {
counter-reset: int;
margin: 1.2em 0 0.8em;
padding: 0;
}
ol.list_caution li {
list-style: none;
margin: 0 0 0.4em 2.5em;
text-indent: -2.5em;
}
ol.list_caution li:before {
counter-increment: int;
content: "※" counter(int) ". ";
}
ol.list_inline {
counter-reset: int;
margin: 1.4em 0 0.4em;
padding: 0;
}
ol.list_inline li {
display: inline-block;
margin: 0 1em 1em 0;
}
ol.list_inline li:before {
counter-increment: int;
content: counter(int) ". ";
}
ol.list_border_dot, ol.list_border_sol {
counter-reset: int;
margin: 1.4em 0;
padding: 0;
}
ol.list_border_dot li, ol.list_border_sol li {
margin: 0 0 1em 1.8em;
padding: 0 0 0.5em 0;
position: relative;
}
ol.list_border_sol li{
border-bottom-style: solid;
}
ol.list_border_dot li:before, ol.list_border_sol li:before {
border-bottom: 1px dotted #999;
bottom: 0;
content: "";
left: -1.8em;
right: 0;
position: absolute;
}

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

.message_bg_black, .message_bg_blue, .message_bg_gray, .message_bg_green, .message_bg_orange, .message_bg_red {
border-style: solid;
border-width: 1px;
padding: 1em;
}
.message_bg_black {
background-color: rgba(17, 17, 17, 0.2);
border-color: rgba(17, 17, 17, 0.1);
}
.message_bg_blue {
background-color: rgba(20, 50, 160, 0.2);
border-color: rgba(20, 50, 160, 0.1);
}
.message_bg_gray {
background-color: rgba(153, 153, 153, 0.2);
border-color: rgba(153, 153, 153, 0.1);
}
.message_bg_green {
background-color: rgba(57, 118, 52, 0.2);
border-color: rgba(57, 118, 52, 0.1);
}
.message_bg_orange {
background-color: rgba(220, 150, 30, 0.2);
border-color: rgba(220, 150, 30, 0.1);
}
.message_bg_red {
background-color: rgba(165, 39, 39, 0.2);
border-color: rgba(165, 39, 39, 0.1);
}
.message_bg_title {
border-bottom: 1px solid;
font-size: 1.2em;
font-weight: bold;
padding-bottom: 0.2em;
margin-bottom: 1rem;
}
.message_bg_black .message_bg_title {
border-color: rgba(17, 17, 17, 1);
color: rgba(17, 17, 17, 1);
}
.message_bg_blue .message_bg_title { border-color: rgba(20, 50, 160, 1);color: rgba(20, 50, 160, 1); }
.message_bg_gray .message_bg_title { border-color: rgba(153, 153, 153, 1);color: rgba(153, 153, 153, 1); }
.message_bg_green .message_bg_title { border-color: rgba(57, 118, 52, 1);color: rgba(57, 118, 52, 1); }
.message_bg_orange .message_bg_title { border-color: rgba(220, 150, 30, 1);color: rgba(220, 150, 30, 1); }
.message_bg_red .message_bg_title { border-color: rgba(165, 39, 39, 1);color: rgba(165, 39, 39, 1); }

.message_bg_black, .message_panel_blue, .message_panel_gray, .message_panel_green, .message_panel_orange, .message_panel_red {
border-style: solid;
border-width: 1px;
padding: 14px;
}
.message_caution_black, .message_caution_blue, .message_caution_gray, .message_caution_green, .message_caution_orange, .message_caution_red {
border-style: solid;
border-width: 1px;
color: rgba(255, 255, 255, 1);
padding: 0.6em 1em;
}
.message_caution_black {
background-color: rgba(17, 17, 17, 0.9);
border-color: rgba(17, 17, 17, 1);
}
.message_caution_blue {
background-color: rgba(20, 50, 160, 0.9);
border-color: rgba(20, 50, 160, 1);
}
.message_caution_gray {
background-color: rgba(153, 153, 153, 0.4);
border-color: rgba(153, 153, 153, 1);
color: rgba(17, 17, 17, 1);
}
.message_caution_green {
background-color: rgba(57, 118, 52, 0.9);
border-color: rgba(57, 118, 52, 1);
}
.message_caution_orange {
background-color: rgba(220, 150, 30, 0.9);
border-color: rgba(220, 150, 30, 1);
}
.message_caution_red {
background-color: rgba(165, 39, 39, 0.9);
border-color: rgba(165, 39, 39, 1);
}
.message_border_black, .message_border_blue, .message_border_gray, .message_border_green, .message_border_orange, .message_border_red {
border-style: solid;
border-width: 3px;
position: relative;
margin-top: 0.5em;
padding: 1em 1em 0.6em;
}
.message_border_black { border-color: rgba(17, 17, 17, 1); }
.message_border_blue { border-color: rgba(20, 50, 160, 1); }
.message_border_gray { border-color: rgba(153, 153, 153, 1); }
.message_border_green { border-color: rgba(57, 118, 52, 1); }
.message_border_orange { border-color: rgba(220, 150, 30, 1); }
.message_border_red { border-color: rgba(165, 39, 39, 1); }
.message_border_title {
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;
}
.message_border_black .message_border_title { color: rgba(17, 17, 17, 1); }
.message_border_blue .message_border_title { color: rgba(20, 50, 160, 1); }
.message_border_gray .message_border_title { color: rgba(153, 153, 153, 1); }
.message_border_green .message_border_title { color: rgba(57, 118, 52, 1); }
.message_border_orange .message_border_title { color: rgba(220, 150, 30, 1); }
.message_border_red .message_border_title { color: rgba(165, 39, 39, 1); }
.message_panel_black, .message_panel_blue, .message_panel_gray, .message_panel_green, .message_panel_orange, .message_panel_red {
border-style: solid;
border-width: 1px;
padding: 14px;
}
.message_panel_black { border-color: rgba(17, 17, 17, 1); }
.message_panel_blue { border-color: rgba(20, 50, 160, 1); }
.message_panel_gray { border-color: rgba(153, 153, 153, 1); }
.message_panel_green { border-color: rgba(57, 118, 52, 1); }
.message_panel_orange { border-color: rgba(220, 150, 30, 1); }
.message_panel_red { border-color: rgba(165, 39, 39, 1); }
.message_panel_title {
color: rgba(255, 255, 255, 1);
font-size: 0.9em;
font-weight: bold;
margin: -14px -14px 14px;
padding: 0.4em 1em;
text-align: center;
}
.message_panel_black .message_panel_title { background-color: rgba(17, 17, 17, 1); }
.message_panel_blue .message_panel_title { background-color: rgba(20, 50, 160, 1); }
.message_panel_gray .message_panel_title { background-color: rgba(153, 153, 153, 1); }
.message_panel_green .message_panel_title { background-color: rgba(57, 118, 52, 1); }
.message_panel_orange .message_panel_title { background-color: rgba(220, 150, 30, 1); }
.message_panel_red .message_panel_title { background-color: rgba(165, 39, 39, 1); }
.message_rad { border-radius: 8px; }
.message_rad .message_panel_title { border-radius: 6px 6px 0 0; }

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

.margin_top_m100 { margin-top:-100px!important; }
.margin_top_m90 { margin-top:-90px!important; }
.margin_top_m80 { margin-top:-80px!important; }
.margin_top_m70 { margin-top:-70px!important; }
.margin_top_m60 { margin-top:-60px!important; }
.margin_top_m50 { margin-top:-50px!important; }
.margin_top_m40 { margin-top:-40px!important; }
.margin_top_m30 { margin-top:-30px!important; }
.margin_top_m20 { margin-top:-20px!important; }
.margin_top_m10 { margin-top:-10px!important; }
.margin_top_m05 { margin-top:-5px!important; }
.margin_top_0 { margin-top:0px!important; }
.margin_top_05 { margin-top:5px!important; }
.margin_top_10 { margin-top:10px!important; }
.margin_top_15 { margin-top:15px!important; }
.margin_top_20 { margin-top:20px!important; }
.margin_top_30 { margin-top:30px!important; }
.margin_top_40 { margin-top:40px!important; }
.margin_top_50 { margin-top:50px!important; }
.margin_top_60 { margin-top:60px!important; }
.margin_top_70 { margin-top:70px!important; }
.margin_top_80 { margin-top:80px!important; }
.margin_top_90 { margin-top:90px!important; }
.margin_top_100 { margin-top:100px!important; }
.margin_right_m100 { margin-right:-100px!important; }
.margin_right_m90 { margin-right:-90px!important; }
.margin_right_m80 { margin-right:-80px!important; }
.margin_right_m70 { margin-right:-70px!important; }
.margin_right_m60 { margin-right:-60px!important; }
.margin_right_m50 { margin-right:-50px!important; }
.margin_right_m40 { margin-right:-40px!important; }
.margin_right_m30 { margin-right:-30px!important; }
.margin_right_m20 { margin-right:-20px!important; }
.margin_right_m10 { margin-right:-10px!important; }
.margin_right_m05 { margin-right:-5px!important; }
.margin_right_0 { margin-right:0px!important; }
.margin_right_05 { margin-right:5px!important; }
.margin_right_10 { margin-right:10px!important; }
.margin_right_15 { margin-right:15px!important; }
.margin_right_20 { margin-right:20px!important; }
.margin_right_30 { margin-right:30px!important; }
.margin_right_40 { margin-right:40px!important; }
.margin_right_50 { margin-right:50px!important; }
.margin_right_60 { margin-right:60px!important; }
.margin_right_70 { margin-right:70px!important; }
.margin_right_80 { margin-right:80px!important; }
.margin_right_90 { margin-right:90px!important; }
.margin_right_100 { margin-right:100px!important; }
.margin_bottom_m100 { margin-bottom:-100px!important; }
.margin_bottom_m90 { margin-bottom:-90px!important; }
.margin_bottom_m80 { margin-bottom:-80px!important; }
.margin_bottom_m70 { margin-bottom:-70px!important; }
.margin_bottom_m60 { margin-bottom:-60px!important; }
.margin_bottom_m50 { margin-bottom:-50px!important; }
.margin_bottom_m40 { margin-bottom:-40px!important; }
.margin_bottom_m30 { margin-bottom:-30px!important; }
.margin_bottom_m20 { margin-bottom:-20px!important; }
.margin_bottom_m10 { margin-bottom:-10px!important; }
.margin_bottom_m05 { margin-bottom:-5px!important; }
.margin_bottom_0 { margin-bottom:0px!important; }
.margin_bottom_05 { margin-bottom:5px!important; }
.margin_bottom_10 { margin-bottom:10px!important; }
.margin_bottom_15 { margin-bottom:15px!important; }
.margin_bottom_20 { margin-bottom:20px!important; }
.margin_bottom_30 { margin-bottom:30px!important; }
.margin_bottom_40 { margin-bottom:40px!important; }
.margin_bottom_50 { margin-bottom:50px!important; }
.margin_bottom_60 { margin-bottom:60px!important; }
.margin_bottom_70 { margin-bottom:70px!important; }
.margin_bottom_80 { margin-bottom:80px!important; }
.margin_bottom_90 { margin-bottom:90px!important; }
.margin_bottom_100 { margin-bottom:100px!important; }
.margin_left_m100 { margin-left:-100px!important; }
.margin_left_m90 { margin-left:-90px!important; }
.margin_left_m80 { margin-left:-80px!important; }
.margin_left_m70 { margin-left:-70px!important; }
.margin_left_m60 { margin-left:-60px!important; }
.margin_left_m50 { margin-left:-50px!important; }
.margin_left_m40 { margin-left:-40px!important; }
.margin_left_m30 { margin-left:-30px!important; }
.margin_left_m20 { margin-left:-20px!important; }
.margin_left_m10 { margin-left:-10px!important; }
.margin_left_m05 { margin-left:-5px!important; }
.margin_left_0 { margin-left:0px!important; }
.margin_left_05 { margin-left:5px!important; }
.margin_left_10 { margin-left:10px!important; }
.margin_left_15 { margin-left:15px!important; }
.margin_left_20 { margin-left:20px!important; }
.margin_left_30 { margin-left:30px!important; }
.margin_left_40 { margin-left:40px!important; }
.margin_left_50 { margin-left:50px!important; }
.margin_left_60 { margin-left:60px!important; }
.margin_left_70 { margin-left:70px!important; }
.margin_left_80 { margin-left:80px!important; }
.margin_left_90 { margin-left:90px!important; }
.margin_left_100 { margin-left:100px!important; }
.margin_right_left_auto {
margin-right: auto!important;
margin-left:auto!important;
}
.margin_right_left_0 {
margin-left:0px!important;
margin-right:0px!important;
}
.margin_right_left_05 {
margin-left:5px!important;
margin-right:5px!important;
}
.margin_right_left_10 {
margin-left:10px!important;
margin-right:10px!important;
}
.margin_right_left_15 {
margin-left:15px!important;
margin-right:15px!important;
}
.margin_right_left_20 {
margin-left:20px!important;
margin-right:20px!important;
}
.margin_right_left_30 {
margin-left:30px!important;
margin-right:30px!important;
}
.margin_right_left_40 {
margin-left:40px!important;
margin-right:40px!important;
}
.margin_right_left_50 {
margin-left:50px!important;
margin-right:50px!important;
}
.margin_right_left_60 {
margin-left:60px!important;
margin-right:60px!important;
}
.margin_right_left_70 {
margin-left:70px!important;
margin-right:70px!important;
}
.margin_right_left_80 {
margin-left:80px!important;
margin-right:80px!important;
}
.margin_right_left_90 {
margin-left:90px!important;
margin-right:90px!important;
}
.margin_right_left_100 {
margin-left:100px!important;
margin-right:100px!important;
}
.margin_right_left_10per {
margin-left:10%!important;
margin-right:10%!important;
}
.margin_right_left_15per {
margin-left:15%!important;
margin-right:15%!important;
}
.margin_right_left_20per {
margin-left:20%!important;
margin-right:20%!important;
}
.margin_right_left_25per {
margin-left:25%!important;
margin-right:25%!important;
}
.margin_right_left_30per {
margin-left:30%!important;
margin-right:30%!important;
}
.margin_right_left_35per {
margin-left:35%!important;
margin-right:35%!important;
}
.margin_right_left_40per {
margin-left:40%!important;
margin-right:40%!important;
}
.margin_right_left_45per {
margin-left:45%!important;
margin-right:45%!important;
}
.margin_top_bottom_0 {
margin-top:0px!important;
margin-bottom:0px!important;
}
.margin_top_bottom_05 {
margin-top:5px!important;
margin-bottom:5px!important;
}
.margin_top_bottom_10 {
margin-top:10px!important;
margin-bottom:10px!important;
}
.margin_top_bottom_15 {
margin-top:15px!important;
margin-bottom:15px!important;
}
.margin_top_bottom_20 {
margin-top:20px!important;
margin-bottom:20px!important;
}
.margin_top_bottom_30 {
margin-top:30px!important;
margin-bottom:30px!important;
}
.margin_top_bottom_40 {
margin-top:40px!important;
margin-bottom:40px!important;
}
.margin_top_bottom_50 {
margin-top:50px!important;
margin-bottom:50px!important;
}
.margin_top_bottom_60 {
margin-top:60px!important;
margin-bottom:60px!important;
}
.margin_top_bottom_70 {
margin-top:70px!important;
margin-bottom:70px!important;
}
.margin_top_bottom_80 {
margin-top:80px!important;
margin-bottom:80px!important;
}
.margin_top_bottom_90 {
margin-top:90px!important;
margin-bottom:90px!important;
}
.margin_top_bottom_100 {
margin-top:100px!important;
margin-bottom:100px!important;
}
.margin_right_bottom_left_0 {
margin-bottom:0px!important;
margin-right:0px!important;
margin-left:0px!important;
}
.margin_right_bottom_left_05 {
margin-bottom:5px!important;
margin-right:5px!important;
margin-left:5px!important;
}
.margin_right_bottom_left_10 {
margin-bottom:10px!important;
margin-right:10px!important;
margin-left:10px!important;
}
.margin_right_bottom_left_20 {
margin-bottom:20px!important;
margin-right:20px!important;
margin-left:20px!important;
}
.margin_right_bottom_left_30 {
margin-bottom:30px!important;
margin-right:30px!important;
margin-left:30px!important;
}
.margin_right_bottom_left_40 {
margin-bottom:40px!important;
margin-right:px!important;
margin-left:px!important;
}
.margin_right_bottom_left_50 {
margin-bottom:50px!important;
margin-right:50px!important;
margin-left:50px!important;
}
.margin_right_bottom_left_60 {
margin-bottom:60px!important;
margin-right:60px!important;
margin-left:60px!important;
}
.margin_right_bottom_left_70 {
margin-bottom:70px!important;
margin-right:70px!important;
margin-left:70px!important;
}
.margin_right_bottom_left_80 {
margin-bottom:80px!important;
margin-right:80px!important;
margin-left:80px!important;
}
.margin_right_bottom_left_90 {
margin-bottom:90px!important;
margin-right:90px!important;
margin-left:90px!important;
}
.margin_right_bottom_left_100 {
margin-bottom:100px!important;
margin-right:100px!important;
margin-left:100px!important;
}
.margin_top_right_left_0 {
margin-top:0px!important;
margin-right:0px!important;
margin-left:0px!important;
}
.margin_top_right_left_05 {
margin-top:5px!important;
margin-right:5px!important;
margin-left:5px!important;
}
.margin_top_right_left_10 {
margin-top:10px!important;
margin-right:10px!important;
margin-left:10px!important;
}
.margin_top_right_left_20 {
margin-top:20px!important;
margin-right:20px!important;
margin-left:20px!important;
}
.margin_top_right_left_30 {
margin-top:30px!important;
margin-right:30px!important;
margin-left:30px!important;
}
.margin_top_right_left_40 {
margin-top:40px!important;
margin-right:px!important;
margin-left:px!important;
}
.margin_top_right_left_50 {
margin-top:50px!important;
margin-right:50px!important;
margin-left:50px!important;
}
.margin_top_right_left_60 {
margin-top:60px!important;
margin-right:60px!important;
margin-left:60px!important;
}
.margin_top_right_left_70 {
margin-top:70px!important;
margin-right:70px!important;
margin-left:70px!important;
}
.margin_top_right_left_80 {
margin-top:80px!important;
margin-right:80px!important;
margin-left:80px!important;
}
.margin_top_right_left_90 {
margin-top:90px!important;
margin-right:90px!important;
margin-left:90px!important;
}
.margin_top_right_left_100 {
margin-top:100px!important;
margin-right:100px!important;
margin-left:100px!important;
}
.margin_all_0 { margin:0px!important; }
.margin_all_05 { margin:5px!important; }
.margin_all_10 { margin:10px!important; }
.margin_all_15 { margin:15px!important; }
.margin_all_20 { margin:20px!important; }
.margin_all_30 { margin:30px!important; }
.margin_all_40 { margin:40px!important; }
.margin_all_50 { margin:50px!important; }
.margin_all_60 { margin:60px!important; }
.margin_all_70 { margin:70px!important; }
.margin_all_80 { margin:80px!important; }
.margin_all_90 { margin:90px!important; }
.margin_all_100 { margin:100px!important; }

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

.padding_top_0 { padding-top:0px!important; }
.padding_top_05 { padding-top:5px!important; }
.padding_top_10 { padding-top:10px!important; }
.padding_top_15 { padding-top:15px!important; }
.padding_top_20 { padding-top:20px!important; }
.padding_top_30 { padding-top:30px!important; }
.padding_top_40 { padding-top:40px!important; }
.padding_top_50 { padding-top:50px!important; }
.padding_top_60 { padding-top:60px!important; }
.padding_top_70 { padding-top:70px!important; }
.padding_top_80 { padding-top:80px!important; }
.padding_top_90 { padding-top:90px!important; }
.padding_top_100 { padding-top:100px!important; }
.padding_right_0 { padding-right:0px!important; }
.padding_right_05 { padding-right:5px!important; }
.padding_right_10 { padding-right:10px!important; }
.padding_right_15 { padding-right:15px!important; }
.padding_right_20 { padding-right:20px!important; }
.padding_right_30 { padding-right:30px!important; }
.padding_right_40 { padding-right:40px!important; }
.padding_right_50 { padding-right:50px!important; }
.padding_right_60 { padding-right:60px!important; }
.padding_right_70 { padding-right:70px!important; }
.padding_right_80 { padding-right:80px!important; }
.padding_right_90 { padding-right:90px!important; }
.padding_right_100 { padding-right:100px!important; }
.padding_bottom_0 { padding-bottom:0px!important; }
.padding_bottom_05 { padding-bottom:5px!important; }
.padding_bottom_10 { padding-bottom:10px!important; }
.padding_bottom_15 { padding-bottom:15px!important; }
.padding_bottom_20 { padding-bottom:20px!important; }
.padding_bottom_30 { padding-bottom:30px!important; }
.padding_bottom_40 { padding-bottom:40px!important; }
.padding_bottom_50 { padding-bottom:50px!important; }
.padding_bottom_60 { padding-bottom:60px!important; }
.padding_bottom_70 { padding-bottom:70px!important; }
.padding_bottom_80 { padding-bottom:80px!important; }
.padding_bottom_90 { padding-bottom:90px!important; }
.padding_bottom_100 { padding-bottom:100px!important; }
.padding_left00 { padding-left:0px!important; }
.padding_left05 { padding-left:5px!important; }
.padding_left10 { padding-left:10px!important; }
.padding_left15 { padding-left:15px!important; }
.padding_left20 { padding-left:20px!important; }
.padding_left30 { padding-left:30px!important; }
.padding_left40 { padding-left:40px!important; }
.padding_left50 { padding-left:50px!important; }
.padding_left60 { padding-left:60px!important; }
.padding_left70 { padding-left:70px!important; }
.padding_left80 { padding-left:80px!important; }
.padding_left90 { padding-left:90px!important; }
.padding_left100 { padding-left:100px!important; }
.padding_all_0 { padding:0px!important; }
.padding_all_05 { padding:5px!important; }
.padding_all_10 { padding:10px!important; }
.padding_all_15 { padding:15px!important; }
.padding_all_20 { padding:20px!important; }
.padding_all_30 { padding:30px!important; }
.padding_all_40 { padding:40px!important; }
.padding_all_50 { padding:50px!important; }
.padding_all_60 { padding:60px!important; }
.padding_all_70 { padding:70px!important; }
.padding_all_80 { padding:80px!important; }
.padding_all_90 { padding:90px!important; }
.padding_all_100 { padding:100px!important; }

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

/* ==== table_border === */
table.table_border {
border-top: 1px solid rgba(153, 153, 153, 1);
border-left: 1px solid rgba(153, 153, 153, 1);
margin: 1.4em 0;
}
table.table_border td {
border-right: 1px solid rgba(153, 153, 153, 1);
border-bottom: 1px solid rgba(153, 153, 153, 1);
padding: 1.2em 1em;
}
table.table_border 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;
}

/* table_border_bottom align */
table.table_border.align_center td, table.table_border.align_center th, table.table_border tr.align_center td, table.table_border tr.align_center th  { text-align: center; }
table.table_border.align_left td, table.table_border.align_left th, table.table_border tr.align_left td, table.table_border tr.align_left th { text-align: left; }
table.table_border.align_right td, table.table_border.align_right th, table.table_border tr.align_right td, table.table_border tr.align_right th { text-align: right; }
table.table_border.valign_top td, table.table_border.valign_top th, table.table_border tr.valign_top td, table.table_border tr.valign_top th { vertical-align: top; }
table.table_border.valign_middle td, table.table_border.valign_middle th,table.table_border tr.valign_middle td, table.table_border tr.valign_middle th { vertical-align: middle; }
table.table_border.valign_bottom td, table.table_border.valign_bottom th, table.table_border tr.valign_bottom td, table.table_border tr.valign_bottom th { vertical-align: bottom; }

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

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

/* table_border_bottom align */
table.table_border_bottom.align_center td, table.table_border_bottom.align_center th, table.table_border_bottom tr.align_center td, table.table_border_bottom tr.align_center th  { text-align: center; }
table.table_border_bottom.align_left td, table.table_border_bottom.align_left th, table.table_border_bottom tr.align_left td, table.table_border_bottom tr.align_left th { text-align: left; }
table.table_border_bottom.align_right td, table.table_border_bottom.align_right th, table.table_border_bottom tr.align_right td, table.table_border_bottom tr.align_right th { text-align: right; }
table.table_border_bottom.valign_top td, table.table_border_bottom.valign_top th, table.table_border_bottom tr.valign_top td, table.table_border_bottom tr.valign_top th { vertical-align: top; }
table.table_border_bottom.valign_middle td, table.table_border_bottom.valign_middle th,table.table_border_bottom tr.valign_middle td, table.table_border_bottom tr.valign_middle th { vertical-align: middle; }
table.table_border_bottom.valign_bottom td, table.table_border_bottom.valign_bottom th, table.table_border_bottom tr.valign_bottom td, table.table_border_bottom tr.valign_bottom th { vertical-align: bottom; }

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

/* ==== table_nomal === */
table.table_nomal {
border: none;
margin: 0;
padding: 0;
}
table.table_nomal tr, table.table_nomal tr th, table.table_nomal td {
background: none;
border: none;
margin: 0;
padding: 0;
}

/* table_nomal align */
table.table_nomal.align_center td, table.table_nomal.align_center th, table.table_nomal tr.align_center td, table.table_nomal tr.align_center th  { text-align: center; }
table.table_nomal.align_left td, table.table_nomal.align_left th, table.table_nomal tr.align_left td, table.table_nomal tr.align_left th { text-align: left; }
table.table_nomal.align_right td, table.table_nomal.align_right th, table.table_nomal tr.align_right td, table.table_nomal tr.align_right th { text-align: right; }
table.table_nomal.valign_top td, table.table_nomal.valign_top th, table.table_nomal tr.valign_top td, table.table_nomal tr.valign_top th { vertical-align: top; }
table.table_nomal.valign_middle td, table.table_nomal.valign_middle th,table.table_nomal tr.valign_middle td, table.table_nomal tr.valign_middle th { vertical-align: middle; }
table.table_nomal.valign_bottom td, table.table_nomal.valign_bottom th, table.table_nomal tr.valign_bottom td, table.table_nomal tr.valign_bottom th { vertical-align: bottom; }

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

.tindent_0 { text-indent: 0em; }
.tindent_01 { text-indent: 0.5em; }
.tindent_02 { text-indent: 1em; }
.tindent_03 { text-indent: 1.5em; }
.tindent_04 { text-indent: 2em; }
.tindent_05 { text-indent: 2.5em; }
.tindent_06 { text-indent: 3em; }
.tindent_07 { text-indent: 3.5em; }
.tindent_08 { text-indent: 4em; }
.tindent_09 { text-indent: 4.5em; }
.tindent_10 { text-indent: 5em; }
.tindent_11 { text-indent: 5.5em; }
.tindent_12 { text-indent: 6em; }
.tindent_13 { text-indent: 6.5em; }
.tindent_14 { text-indent: 7em; }
.tindent_15 { text-indent: 7.5em; }
.tindent_16 { text-indent: 8em; }
.tindent_17 { text-indent: 8.5em; }
.tindent_18 { text-indent: 9em; }
.tindent_19 { text-indent: 9.5em; }
.tindent_20 { text-indent: 10em; }
.tindent_21 { text-indent: 10.5em; }
.tindent_22 { text-indent: 11em; }
.tindent_23 { text-indent: 11.5em; }
.tindent_24 { text-indent: 12em; }
.tindent_25 { text-indent: 12.5em; }
.tindent_26 { text-indent: 13em; }
.tindent_27 { text-indent: 13.5em; }
.tindent_28 { text-indent: 14em; }
.tindent_29 { text-indent: 14.5em; }
.tindent_30 { text-indent: 15em; }
.tindent_31 { text-indent: 15.5em; }
.tindent_32 { text-indent: 16em; }
.tindent_33 { text-indent: 16.5em; }
.tindent_34 { text-indent: 17em; }
.tindent_35 { text-indent: 17.5em; }
.tindent_36 { text-indent: 18em; }
.tindent_37 { text-indent: 18.5em; }
.tindent_38 { text-indent: 19em; }
.tindent_39 { text-indent: 19.5em; }
.tindent_40 { text-indent: 20em; }
.tindent_m00 {text-indent: 0!important;margin-left: 0!important;}
.tindent_m01 {text-indent:-0.5em!important;margin-left:0.5em!important;}
.tindent_m02 {text-indent:-1em!important;margin-left:1em!important;}
.tindent_m03 {text-indent:-1.5em!important;margin-left:1.5em!important;}
.tindent_m04 {text-indent:-2em!important;margin-left:2em!important;}
.tindent_m05 {text-indent:-2.5em!important;margin-left:2.5em!important;}
.tindent_m06 {text-indent:-3em!important;margin-left:3em!important;}
.tindent_m07 {text-indent:-3.5em!important;margin-left:3.5em!important;}
.tindent_m08 {text-indent:-4em!important;margin-left:4em!important;}
.tindent_m09 {text-indent:-4.5em!important;margin-left:4.5em!important;}
.tindent_m10 {text-indent:-5em!important;margin-left:5em!important;}
.tindent_m11 {text-indent:-5.5em!important;margin-left:5.5em!important;}
.tindent_m12 {text-indent:-6em!important;margin-left:6em!important;}
.tindent_m13 {text-indent:-6.5em!important;margin-left:6.5em!important;}
.tindent_m14 {text-indent:-7em!important;margin-left:7em!important;}
.tindent_m15 {text-indent:-7.5em!important;margin-left:7.5em!important;}
.tindent_m16 {text-indent:-8em!important;margin-left:8em!important;}
.tindent_m17 {text-indent:-8.5em!important;margin-left:8.5em!important;}
.tindent_m18 {text-indent:-9em!important;margin-left:9em!important;}
.tindent_m19 {text-indent:-9.5em!important;margin-left:9.5em!important;}
.tindent_m20 {text-indent:-10em!important;margin-left:10em!important;}
.tindent_m21 {text-indent:-10.5em!important;margin-left:10.5em!important;}
.tindent_m22 {text-indent:-11em!important;margin-left:11em!important;}
.tindent_m23 {text-indent:-11.5em!important;margin-left:11.5em!important;}
.tindent_m24 {text-indent:-12em!important;margin-left:12em!important;}
.tindent_m25 {text-indent:-12.5em!important;margin-left:12.5em!important;}
.tindent_m26 {text-indent:-13em!important;margin-left:13em!important;}
.tindent_m27 {text-indent:-13.5em!important;margin-left:13.5em!important;}
.tindent_m28 {text-indent:-14em!important;margin-left:14em!important;}
.tindent_m29 {text-indent:-14.5em!important;margin-left:14.5em!important;}
.tindent_m30 {text-indent:-15em!important;margin-left:15em!important;}
.tindent_m31 {text-indent:-15.5em!important;margin-left:15.5em!important;}
.tindent_m32 {text-indent:-16em!important;margin-left:16em!important;}
.tindent_m33 {text-indent:-16.5em!important;margin-left:16.5em!important;}
.tindent_m34 {text-indent:-17em!important;margin-left:17em!important;}
.tindent_m35 {text-indent:-17.5em!important;margin-left:17.5em!important;}
.tindent_m36 {text-indent:-18em!important;margin-left:18em!important;}
.tindent_m37 {text-indent:-18.5em!important;margin-left:18.5em!important;}
.tindent_m38 {text-indent:-19em!important;margin-left:19em!important;}
.tindent_m39 {text-indent:-19.5em!important;margin-left:19.5em!important;}
.tindent_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;
margin-bottom: 1.4em;
}
.box.box_center {
justify-content: center;
}
.box.box_wrap {
flex-wrap: wrap;
}
.box.box_middle {
align-items: center;
}
.box.box_stretch {
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;
margin-top: 1.4em;
margin-bottom: 0.4em;
}
.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_display_none {
display: none;
}

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

.gallery_col_01 {
margin-top: 1.4em;
margin-bottom: 0.4em;
}
.gallery_col_01 , .gallery_col_02 , .gallery_col_03 , .gallery_col_04 , .gallery_col_05 ,
.gallery_col_06 , .gallery_col_07 , .gallery_col_08 , .gallery_col_09 , .gallery_col_10 {
display: flex;
flex-wrap: wrap;
justify-content: flex-start;
align-items: stretch;
position: relative;
text-align: center;
}
.gallery_col_01 > * {
margin-bottom: 1em;
width: 100%;
}
.gallery_col_02 > *, .gallery_col_03 > *, .gallery_col_04 > *, .gallery_col_05 > *,
.gallery_col_06 > *, .gallery_col_07 > *, .gallery_col_08 > *, .gallery_col_09 > *, .gallery_col_10 > * {
margin: 0 1em 1em 0;
text-align: center;
}
.gallery_col_02 > *:nth-child(2n), .gallery_col_03 > *:nth-child(3n), .gallery_col_04 > *:nth-child(4n), .gallery_col_05 > *:nth-child(5n),
.gallery_col_06 > *:nth-child(6n), .gallery_col_07 > *:nth-child(7n), .gallery_col_08 > *:nth-child(8n), .gallery_col_09 > *:nth-child(9n), .gallery_col_10 > *:nth-child(10n) {
margin-right: 0!important;
}
.gallery_col_02 > * {
width: calc( (100% - 1em - 1px ) / 2);
}
.gallery_col_03 > * {
width: calc( (100% - 2em - 1px ) / 3);
}
.gallery_col_04 > * {
width: calc( (100% - 3em - 1px ) / 4);
}
.gallery_col_05 > * {
width: calc( (100% - 4em - 1px ) / 5);
}
.gallery_col_06 > * {
width: calc( (100% - 5em - 1px ) / 6);
}
.gallery_col_07 > * {
width: calc( (100% - 6em - 1px ) / 7);
}
.gallery_col_08 > * {
width: calc( (100% - 7em - 1px ) / 8);
}
.gallery_col_09 > * {
width: calc( (100% - 8em - 1px ) / 9);
}
.gallery_col_10 > * {
width: calc( (100% - 9em - 1px ) / 10);
}
.gallery_col_01 > * > img, .gallery_col_02 > * > img, .gallery_col_03 > * > img, .gallery_col_04 > * > img, .gallery_col_05 > * > img,
.gallery_col_06 > * > img, .gallery_col_07 > * > img, .gallery_col_08 > * > img, .gallery_col_09 > * > img, .gallery_col_10 > * > img {
display: block;
margin: 0 auto 0.5em;
}
.gallery_title_bottom {
margin: -0.5em 0 0 0!important;
text-align: center;
width: 100%;
}
.gallery_col_01 > *:not(.gallery_title_bottom), .gallery_col_02 > *:not(.gallery_title_bottom), .gallery_col_03 > *:not(.gallery_title_bottom), .gallery_col_04 > *:not(.gallery_title_bottom), .gallery_col_05 > *:not(.gallery_title_bottom),
.gallery_col_06 > *:not(.gallery_title_bottom), .gallery_col_07 > *:not(.gallery_title_bottom), .gallery_col_08 > *:not(.gallery_title_bottom), .gallery_col_09 > *:not(.gallery_title_bottom), .gallery_col_10 > *:not(.gallery_title_bottom) {
font-size: 0.8em;
}

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

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

/*----------------------------------------------------------------------------
******************************************************************************
** serif
******************************************************************************
----------------------------------------------------------------------------*/
.serif_border_black_left, .serif_border_black_right,
.serif_border_blue_left, .serif_border_blue_right,
.serif_border_gray_left, .serif_border_gray_right,
.serif_border_green_left, .serif_border_green_right,
.serif_border_orange_left, .serif_border_orange_right,
.serif_border_red_left, .serif_border_red_right {
display: flex;
align-items: center;
justify-content: space-between;
margin: 2em 0;
}
.serif_border_black_right,
.serif_border_blue_right,
.serif_border_gray_right,
.serif_border_green_right,
.serif_border_orange_right,
.serif_border_red_right {
flex-direction: row-reverse;
}
.serif_border_icon {
border-radius: 50%;
height: 80px!important;
overflow: hidden;
width: 80px!important;
}
.serif_border_black_left .serif_border_icon , .serif_border_black_right .serif_border_icon {
box-shadow: 0 0 10pxrgba(17, 17, 17, 0.6);
}
.serif_border_blue_left .serif_border_icon , .serif_border_blue_right .serif_border_icon {
box-shadow: 0 0 10pxrgba(20, 50, 160, 0.6);
}
.serif_border_gray_left .serif_border_icon , .serif_border_gray_right .serif_border_icon {
box-shadow: 0 0 10pxrgba(153, 153, 153, 0.6);
}
.serif_border_green_left .serif_border_icon , .serif_border_green_right .serif_border_icon {
box-shadow: 0 0 10pxrgba(57, 118, 52, 0.6);
}
.serif_border_orange_left .serif_border_icon , .serif_border_orange_right .serif_border_icon {
box-shadow: 0 0 10pxrgba(220, 150, 30, 0.6);
}
.serif_border_red_left .serif_border_icon , .serif_border_red_right .serif_border_icon {
box-shadow: 0 0 10px rgba(165, 39, 39, 0.6);
}
.serif_border_inner {
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);
}
.serif_border_black_left .serif_border_inner , .serif_border_black_right .serif_border_inner {
border-color: rgba(17, 17, 17, 1);
}
.serif_border_blue_left .serif_border_inner , .serif_border_blue_right .serif_border_inner {
border-color: rgba(20, 50, 160, 1);
}
.serif_border_gray_left .serif_border_inner , .serif_border_gray_right .serif_border_inner {
border-color: rgba(153, 153, 153, 1);
}
.serif_border_green_left .serif_border_inner , .serif_border_green_right .serif_border_inner {
border-color: rgba(57, 118, 52, 1);
}
.serif_border_orange_left .serif_border_inner , .serif_border_orange_right .serif_border_inner {
border-color: rgba(220, 150, 30, 1);
}
.serif_border_red_left .serif_border_inner , .serif_border_red_right .serif_border_inner {
border-color: rgba(165, 39, 39, 1);
}

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

.serif_border_black_left .serif_border_inner:before,
.serif_border_blue_left .serif_border_inner:before,
.serif_border_gray_left .serif_border_inner:before,
.serif_border_green_left .serif_border_inner:before,
.serif_border_orange_left .serif_border_inner:before,
.serif_border_red_left .serif_border_inner:before {
left: -24px;
border-right: 12px solid #FFF;
}
.serif_border_black_right .serif_border_inner:before,
.serif_border_blue_right .serif_border_inner:before,
.serif_border_gray_right .serif_border_inner:before,
.serif_border_green_right .serif_border_inner:before,
.serif_border_orange_right .serif_border_inner:before,
.serif_border_red_right .serif_border_inner:before  {
right: -24px;
border-left: 12px solid #FFF;
}
.serif_border_inner:after {
content: "";
position: absolute;
top: 50%;
margin-top: -14px;
border: 14px solid transparent;
z-index: 1;
}
.serif_border_black_left .serif_border_inner:after,
.serif_border_blue_left .serif_border_inner:after,
.serif_border_gray_left .serif_border_inner:after,
.serif_border_green_left .serif_border_inner:after,
.serif_border_orange_left .serif_border_inner:after,
.serif_border_red_left .serif_border_inner:after  {
left: -29px;
}
.serif_border_black_left .serif_border_inner:after {
border-right-color: rgba(17, 17, 17, 1);
}
.serif_border_blue_left .serif_border_inner:after {
border-right-color: rgba(20, 50, 160, 1);
}
.serif_border_gray_left .serif_border_inner:after {
border-right-color: rgba(153, 153, 153, 1);
}
.serif_border_green_left .serif_border_inner:after {
border-right-color: rgba(57, 118, 52, 1);
}
.serif_border_orange_left .serif_border_inner:after {
border-right-color: rgba(220, 150, 30, 1);
}
.serif_border_red_left .serif_border_inner:after {
border-right-color: rgba(165, 39, 39, 1);
}
.serif_border_black_right .serif_border_inner:after,
.serif_border_blue_right .serif_border_inner:after,
.serif_border_gray_right .serif_border_inner:after,
.serif_border_green_right .serif_border_inner:after,
.serif_border_orange_right .serif_border_inner:after,
.serif_border_red_right .serif_border_inner:after  {
right: -29px;
}
.serif_border_black_right .serif_border_inner:after {
border-left-color: rgba(17, 17, 17, 1);
}
.serif_border_blue_right .serif_border_inner:after {
border-left-color: rgba(20, 50, 160, 1);
}
.serif_border_gray_right .serif_border_inner:after {
border-left-color: rgba(153, 153, 153, 1);
}
.serif_border_green_right .serif_border_inner:after {
border-left-color: rgba(57, 118, 52, 1);
}
.serif_border_orange_right .serif_border_inner:after {
border-left-color: rgba(220, 150, 30, 1);
}
.serif_border_red_right .serif_border_inner:after {
border-left-color: rgba(165, 39, 39, 1);
}
.serif_border_title{
font-size: 1.2em;
font-weight: bold;
margin: 0 0 0.1em 0!important;
padding: 0;
}
.serif_border_black_left .serif_border_title , .serif_border_black_right .serif_border_title {
color: rgba(17, 17, 17, 1);
}
.serif_border_blue_left .serif_border_title , .serif_border_blue_right .serif_border_title {
color: rgba(20, 50, 160, 1);
}
.serif_border_gray_left .serif_border_title , .serif_border_gray_right .serif_border_title {
color: rgba(17, 17, 17, 1);
}
.serif_border_green_left .serif_border_title , .serif_border_green_right .serif_border_title {
color: rgba(57, 118, 52, 1);
}
.serif_border_orange_left .serif_border_title , .serif_border_orange_right .serif_border_title {
color: rgba(220, 150, 30, 1);
}
.serif_border_red_left .serif_border_title , .serif_border_red_right .serif_border_title {
color: rgba(165, 39, 39, 1);
}

/*----------------------------------------------------------------------------
******************************************************************************
** width
******************************************************************************
----------------------------------------------------------------------------*/
.width_01 {
width: 1%!important;
}
.width_02 {
width: 2%!important;
}
.width_03 {
width: 3%!important;
}
.width_04 {
width: 4%!important;
}
.width_05 {
width: 5%!important;
}
.width_06 {
width: 6%!important;
}
.width_07 {
width: 7%!important;
}
.width_08 {
width: 8%!important;
}
.width_09 {
width: 9%!important;
}
.width_10 {
width: 10%!important;
}
.width_11 {
width: 11%!important;
}
.width_12 {
width: 12%!important;
}
.width_13 {
width: 13%!important;
}
.width_14 {
width: 14%!important;
}
.width_15 {
width: 15%!important;
}
.width_16 {
width: 16%!important;
}
.width_17 {
width: 17%!important;
}
.width_18 {
width: 18%!important;
}
.width_19 {
width: 19%!important;
}
.width_20 {
width: 20%!important;
}
.width_21 {
width: 21%!important;
}
.width_22 {
width: 22%!important;
}
.width_23 {
width: 23%!important;
}
.width_24 {
width: 24%!important;
}
.width_25 {
width: 25%!important;
}
.width_26 {
width: 26%!important;
}
.width_27 {
width: 27%!important;
}
.width_28 {
width: 28%!important;
}
.width_29 {
width: 29%!important;
}
.width_30 {
width: 30%!important;
}
.width_31 {
width: 31%!important;
}
.width_32 {
width: 32%!important;
}
.width_33 {
width: 33%!important;
}
.width_34 {
width: 34%!important;
}
.width_35 {
width: 35%!important;
}
.width_36 {
width: 36%!important;
}
.width_37 {
width: 37%!important;
}
.width_38 {
width: 38%!important;
}
.width_39 {
width: 39%!important;
}
.width_40 {
width: 40%!important;
}
.width_41 {
width: 41%!important;
}
.width_42 {
width: 42%!important;
}
.width_43 {
width: 43%!important;
}
.width_44 {
width: 44%!important;
}
.width_45 {
width: 45%!important;
}
.width_46 {
width: 46%!important;
}
.width_47 {
width: 47%!important;
}
.width_48 {
width: 48%!important;
}
.width_49 {
width: 49%!important;
}
.width_50 {
width: 50%!important;
}
.width_51 {
width: 51%!important;
}
.width_52 {
width: 52%!important;
}
.width_53 {
width: 53%!important;
}
.width_54 {
width: 54%!important;
}
.width_55 {
width: 55%!important;
}
.width_56 {
width: 56%!important;
}
.width_57 {
width: 57%!important;
}
.width_58 {
width: 58%!important;
}
.width_59 {
width: 59%!important;
}
.width_60 {
width: 60%!important;
}
.width_61 {
width: 61%!important;
}
.width_62 {
width: 62%!important;
}
.width_63 {
width: 63%!important;
}
.width_64 {
width: 64%!important;
}
.width_65 {
width: 65%!important;
}
.width_66 {
width: 66%!important;
}
.width_67 {
width: 67%!important;
}
.width_68 {
width: 68%!important;
}
.width_69 {
width: 69%!important;
}
.width_70 {
width: 70%!important;
}
.width_71 {
width: 71%!important;
}
.width_72 {
width: 72%!important;
}
.width_73 {
width: 73%!important;
}
.width_74 {
width: 74%!important;
}
.width_75 {
width: 75%!important;
}
.width_76 {
width: 76%!important;
}
.width_77 {
width: 77%!important;
}
.width_78 {
width: 78%!important;
}
.width_79 {
width: 79%!important;
}
.width_80 {
width: 80%!important;
}
.width_81 {
width: 81%!important;
}
.width_82 {
width: 82%!important;
}
.width_83 {
width: 83%!important;
}
.width_84 {
width: 84%!important;
}
.width_85 {
width: 85%!important;
}
.width_86 {
width: 86%!important;
}
.width_87 {
width: 87%!important;
}
.width_88 {
width: 88%!important;
}
.width_89 {
width: 89%!important;
}
.width_90 {
width: 90%!important;
}
.width_91 {
width: 91%!important;
}
.width_92 {
width: 92%!important;
}
.width_93 {
width: 93%!important;
}
.width_94 {
width: 94%!important;
}
.width_95 {
width: 95%!important;
}
.width_96 {
width: 96%!important;
}
.width_97 {
width: 97%!important;
}
.width_98 {
width: 98%!important;
}
.width_99 {
width: 99%!important;
}
.width_100 {
width: 100%!important;
}
img[class^="width_"] {
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_center {
justify-content: center;
}
.sp_box_wrap {
flex-wrap: wrap;
}
.sp_box_middle {
align-items: center;
}
.sp_box_stretch {
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_display_none{
display: none;
}

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

/* ==== glry_col === */
.gallery_col_01 > *, .gallery_col_02 > *, .gallery_col_03 > *, .gallery_col_04 > *, .gallery_col_05 > *,
.gallery_col_06 > *, .gallery_col_07 > *, .gallery_col_08 > *, .gallery_col_09 > *, .gallery_col_10 > * {
font-size: 0.9em;
margin: 1.4rem 0;
text-align: center;
}
.gallery_col_02 > * > img, .gallery_col_03 > * > img, .gallery_col_04 > * > img, .gallery_col_05 > * > img,
.gallery_col_06 > * > img, .gallery_col_07 > * > img, .gallery_col_08 > * > img, .gallery_col_09 > * > img, .gallery_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(.gallery_title_bottom), .sp_glry_col_02 > *:not(.gallery_title_bottom), .sp_glry_col_03 > *:not(.gallery_title_bottom), .sp_glry_col_04 > *:not(.gallery_title_bottom), .sp_glry_col_05 > *:not(.gallery_title_bottom),
.sp_glry_col_06 > *:not(.gallery_title_bottom), .sp_glry_col_07 > *:not(.gallery_title_bottom), .sp_glry_col_08 > *:not(.gallery_title_bottom), .sp_glry_col_09 > *:not(.gallery_title_bottom), .sp_glry_col_10 > *:not(.gallery_title_bottom) {
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 {
display: block;
margin: 0 auto 0.5rem;
}
.sp_glry_title_bottom {
margin: -0.5rem 0 1em!important;
text-align: center;
width: 100%;
}


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

.img_center, .img_left, .img_right {
display: block;
margin: 1.4em auto;
}
div.img_center, div.img_left, div.img_right,
p.img_center, p.img_left, p.img_right {
margin: 1.4em 0;
text-align: center;
}
div.img_center img, div.img_left img, div.img_right img,
p.img_center img, p.img_left img, p.img_right img {
margin-bottom: 0.5em;
}

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

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

.sp_margin_top_m100 {
margin-top:-100px!important;
}
.sp_margin_top_m90 {
margin-top:-90px!important;
}
.sp_margin_top_m80 {
margin-top:-80px!important;
}
.sp_margin_top_m70 {
margin-top:-70px!important;
}
.sp_margin_top_m60 {
margin-top:-60px!important;
}
.sp_margin_top_m50 {
margin-top:-50px!important;
}
.sp_margin_top_m40 {
margin-top:-40px!important;
}
.sp_margin_top_m30 {
margin-top:-30px!important;
}
.sp_margin_top_m20 {
margin-top:-20px!important;
}
.sp_margin_top_m10 {
margin-top:-10px!important;
}
.sp_margin_top_0 {
margin-top:0px!important;
}
.sp_margin_top_05 {
margin-top:5px!important;
}
.sp_margin_top_10 {
margin-top:10px!important;
}
.sp_margin_top_15 {
margin-top:15px!important;
}
.sp_margin_top_20 {
margin-top:20px!important;
}
.sp_margin_top_30 {
margin-top:30px!important;
}
.sp_margin_top_40 {
margin-top:40px!important;
}
.sp_margin_top_50 {
margin-top:50px!important;
}
.sp_margin_top_60 {
margin-top:60px!important;
}
.sp_margin_top_70 {
margin-top:70px!important;
}
.sp_margin_top_80 {
margin-top:80px!important;
}
.sp_margin_top_90 {
margin-top:90px!important;
}
.sp_margin_top_100 {
margin-top:100px!important;
}
.sp_margin_right_m100 {
margin-right:-100px!important;
}
.sp_margin_right_m90 {
margin-right:-90px!important;
}
.sp_margin_right_m80 {
margin-right:-80px!important;
}
.sp_margin_right_m70 {
margin-right:-70px!important;
}
.sp_margin_right_m60 {
margin-right:-60px!important;
}
.sp_margin_right_m50 {
margin-right:-50px!important;
}
.sp_margin_right_m40 {
margin-right:-40px!important;
}
.sp_margin_right_m30 {
margin-right:-30px!important;
}
.sp_margin_right_m20 {
margin-right:-20px!important;
}
.sp_margin_right_m10 {
margin-right:-10px!important;
}
.sp_margin_right_0 {
margin-right:0px!important;
}
.sp_margin_right_05 {
margin-right:5px!important;
}
.sp_margin_right_10 {
margin-right:10px!important;
}
.sp_margin_right_15 {
margin-right:15px!important;
}
.sp_margin_right_20 {
margin-right:20px!important;
}
.sp_margin_right_30 {
margin-right:30px!important;
}
.sp_margin_right_40 {
margin-right:40px!important;
}
.sp_margin_right_50 {
margin-right:50px!important;
}
.sp_margin_right_60 {
margin-right:60px!important;
}
.sp_margin_right_70 {
margin-right:70px!important;
}
.sp_margin_right_80 {
margin-right:80px!important;
}
.sp_margin_right_90 {
margin-right:90px!important;
}
.sp_margin_right_100 {
margin-right:100px!important;
}
.sp_margin_bottom_m100 {
margin-bottom:-100px!important;
}
.sp_margin_bottom_m90 {
margin-bottom:-90px!important;
}
.sp_margin_bottom_m80 {
margin-bottom:-80px!important;
}
.sp_margin_bottom_m70 {
margin-bottom:-70px!important;
}
.sp_margin_bottom_m60 {
margin-bottom:-60px!important;
}
.sp_margin_bottom_m50 {
margin-bottom:-50px!important;
}
.sp_margin_bottom_m40 {
margin-bottom:-40px!important;
}
.sp_margin_bottom_m30 {
margin-bottom:-30px!important;
}
.sp_margin_bottom_m20 {
margin-bottom:-20px!important;
}
.sp_margin_bottom_m10 {
margin-bottom:-10px!important;
}
.sp_margin_bottom_0 {
margin-bottom:0px!important;
}
.sp_margin_bottom_05 {
margin-bottom:5px!important;
}
.sp_margin_bottom_10 {
margin-bottom:10px!important;
}
.sp_margin_bottom_15 {
margin-bottom:15px!important;
}
.sp_margin_bottom_20 {
margin-bottom:20px!important;
}
.sp_margin_bottom_30 {
margin-bottom:30px!important;
}
.sp_margin_bottom_40 {
margin-bottom:40px!important;
}
.sp_margin_bottom_50 {
margin-bottom:50px!important;
}
.sp_margin_bottom_60 {
margin-bottom:60px!important;
}
.sp_margin_bottom_70 {
margin-bottom:70px!important;
}
.sp_margin_bottom_80 {
margin-bottom:80px!important;
}
.sp_margin_bottom_90 {
margin-bottom:90px!important;
}
.sp_margin_bottom_100 {
margin-bottom:100px!important;
}
.sp_margin_left_m100 {
margin-left:-100px!important;
}
.sp_margin_left_m90 {
margin-left:-90px!important;
}
.sp_margin_left_m80 {
margin-left:-80px!important;
}
.sp_margin_left_m70 {
margin-left:-70px!important;
}
.sp_margin_left_m60 {
margin-left:-60px!important;
}
.sp_margin_left_m50 {
margin-left:-50px!important;
}
.sp_margin_left_m40 {
margin-left:-40px!important;
}
.sp_margin_left_m30 {
margin-left:-30px!important;
}
.sp_margin_left_m20 {
margin-left:-20px!important;
}
.sp_margin_left_m10 {
margin-left:-10px!important;
}
.sp_margin_left_0 {
margin-left:0px!important;
}
.sp_margin_left_05 {
margin-left:5px!important;
}
.sp_margin_left_10 {
margin-left:10px!important;
}
.sp_margin_left_15 {
margin-left:15px!important;
}
.sp_margin_left_20 {
margin-left:20px!important;
}
.sp_margin_left_30 {
margin-left:30px!important;
}
.sp_margin_left_40 {
margin-left:40px!important;
}
.sp_margin_left_50 {
margin-left:50px!important;
}
.sp_margin_left_60 {
margin-left:60px!important;
}
.sp_margin_left_70 {
margin-left:70px!important;
}
.sp_margin_left_80 {
margin-left:80px!important;
}
.sp_margin_left_90 {
margin-left:90px!important;
}
.sp_margin_left_100 {
margin-left:100px!important;
}
.sp_margin_right_left_auto {
margin-right: auto!important;
margin-left:auto!important;
}
.sp_margin_right_left_0 {
margin-left:0px!important;
margin-right:0px!important;
}
.sp_margin_right_left_05 {
margin-left:5px!important;
margin-right:5px!important;
}
.sp_margin_right_left_10 {
margin-left:10px!important;
margin-right:10px!important;
}
.sp_margin_right_left_15 {
margin-left:15px!important;
margin-right:15px!important;
}
.sp_margin_right_left_20 {
margin-left:20px!important;
margin-right:20px!important;
}
.sp_margin_right_left_30 {
margin-left:30px!important;
margin-right:30px!important;
}
.sp_margin_right_left_40 {
margin-left:40px!important;
margin-right:40px!important;
}
.sp_margin_right_left_50 {
margin-left:50px!important;
margin-right:50px!important;
}
.sp_margin_right_left_60 {
margin-left:60px!important;
margin-right:60px!important;
}
.sp_margin_right_left_70 {
margin-left:70px!important;
margin-right:70px!important;
}
.sp_margin_right_left_80 {
margin-left:80px!important;
margin-right:80px!important;
}
.sp_margin_right_left_90 {
margin-left:90px!important;
margin-right:90px!important;
}
.sp_margin_right_left_100 {
margin-left:100px!important;
margin-right:100px!important;
}
.sp_margin_right_left_10per {
margin-left:10%!important;
margin-right:10%!important;
}
.sp_margin_right_left_15per {
margin-left:15%!important;
margin-right:15%!important;
}
.sp_margin_right_left_20per {
margin-left:20%!important;
margin-right:20%!important;
}
.sp_margin_right_left_25per {
margin-left:25%!important;
margin-right:25%!important;
}
.sp_margin_right_left_30per {
margin-left:30%!important;
margin-right:30%!important;
}
.sp_margin_right_left_35per {
margin-left:35%!important;
margin-right:35%!important;
}
.sp_margin_right_left_40per {
margin-left:40%!important;
margin-right:40%!important;
}
.sp_margin_right_left_45per {
margin-left:45%!important;
margin-right:45%!important;
}
.sp_margin_top_bottom_0 {
margin-top:0px!important;
margin-bottom:0px!important;
}
.sp_margin_top_bottom_05 {
margin-top:5px!important;
margin-bottom:5px!important;
}
.sp_margin_top_bottom_10 {
margin-top:10px!important;
margin-bottom:10px!important;
}
.sp_margin_top_bottom_15 {
margin-top:15px!important;
margin-bottom:15px!important;
}
.sp_margin_top_bottom_20 {
margin-top:20px!important;
margin-bottom:20px!important;
}
.sp_margin_top_bottom_30 {
margin-top:30px!important;
margin-bottom:30px!important;
}
.sp_margin_top_bottom_40 {
margin-top:40px!important;
margin-bottom:40px!important;
}
.sp_margin_top_bottom_50 {
margin-top:50px!important;
margin-bottom:50px!important;
}
.sp_margin_top_bottom_60 {
margin-top:60px!important;
margin-bottom:60px!important;
}
.sp_margin_top_bottom_70 {
margin-top:70px!important;
margin-bottom:70px!important;
}
.sp_margin_top_bottom_80 {
margin-top:80px!important;
margin-bottom:80px!important;
}
.sp_margin_top_bottom_90 {
margin-top:90px!important;
margin-bottom:90px!important;
}
.sp_margin_top_bottom_100 {
margin-top:100px!important;
margin-bottom:100px!important;
}
.sp_margin_right_bottom_left_0 {
margin-bottom:0px!important;
margin-right:0px!important;
margin-left:0px!important;
}
.sp_margin_right_bottom_left_05 {
margin-bottom:5px!important;
margin-right:5px!important;
margin-left:5px!important;
}
.sp_margin_right_bottom_left_10 {
margin-bottom:10px!important;
margin-right:10px!important;
margin-left:10px!important;
}
.sp_margin_right_bottom_left_15 {
margin-bottom:15px!important;
margin-right:15px!important;
margin-left:15px!important;
}
.sp_margin_right_bottom_left_20 {
margin-bottom:20px!important;
margin-right:20px!important;
margin-left:20px!important;
}
.sp_margin_right_bottom_left_30 {
margin-bottom:30px!important;
margin-right:30px!important;
margin-left:30px!important;
}
.sp_margin_right_bottom_left_40 {
margin-bottom:40px!important;
margin-right:px!important;
margin-left:px!important;
}
.sp_margin_right_bottom_left_50 {
margin-bottom:50px!important;
margin-right:50px!important;
margin-left:50px!important;
}
.sp_margin_right_bottom_left_60 {
margin-bottom:60px!important;
margin-right:60px!important;
margin-left:60px!important;
}
.sp_margin_right_bottom_left_70 {
margin-bottom:70px!important;
margin-right:70px!important;
margin-left:70px!important;
}
.sp_margin_right_bottom_left_80 {
margin-bottom:80px!important;
margin-right:80px!important;
margin-left:80px!important;
}
.sp_margin_right_bottom_left_90 {
margin-bottom:90px!important;
margin-right:90px!important;
margin-left:90px!important;
}
.sp_margin_right_bottom_left_100 {
margin-bottom:100px!important;
margin-right:100px!important;
margin-left:0px!important;
}
.sp_margin_top_right_left_0 {
margin-top:0px!important;
margin-right:0px!important;
margin-left:0px!important;
}
.sp_margin_top_right_left_05 {
margin-top:5px!important;
margin-right:5px!important;
margin-left:5px!important;
}
.sp_margin_top_right_left_10 {
margin-top:10px!important;
margin-right:10px!important;
margin-left:10px!important;
}
.sp_margin_top_right_left_15 {
margin-top:15px!important;
margin-right:15px!important;
margin-left:15px!important;
}
.sp_margin_top_right_left_20 {
margin-top:20px!important;
margin-right:20px!important;
margin-left:20px!important;
}
.sp_margin_top_right_left_30 {
margin-top:30px!important;
margin-right:30px!important;
margin-left:30px!important;
}
.sp_margin_top_right_left_40 {
margin-top:40px!important;
margin-right:px!important;
margin-left:px!important;
}
.sp_margin_top_right_left_50 {
margin-top:50px!important;
margin-right:50px!important;
margin-left:50px!important;
}
.sp_margin_top_right_left_60 {
margin-top:60px!important;
margin-right:60px!important;
margin-left:60px!important;
}
.sp_margin_top_right_left_70 {
margin-top:70px!important;
margin-right:70px!important;
margin-left:70px!important;
}
.sp_margin_top_right_left_80 {
margin-top:80px!important;
margin-right:80px!important;
margin-left:80px!important;
}
.sp_margin_top_right_left_90 {
margin-top:90px!important;
margin-right:90px!important;
margin-left:90px!important;
}
.sp_margin_top_right_left_100 {
margin-top:100px!important;
margin-right:100px!important;
margin-left:0px!important;
}
.sp_margin_all_0 {
margin:0px!important;
}
.sp_margin_all_05 {
margin:5px!important;
}
.sp_margin_all_10 {
margin:10px!important;
}
.sp_margin_all_15 {
margin:15px!important;
}
.sp_margin_all_20 {
margin:20px!important;
}
.sp_margin_all_30 {
margin:30px!important;
}
.sp_margin_all_40 {
margin:40px!important;
}
.sp_margin_all_50 {
margin:50px!important;
}
.sp_margin_all_60 {
margin:60px!important;
}
.sp_margin_all_70 {
margin:70px!important;
}
.sp_margin_all_80 {
margin:80px!important;
}
.sp_margin_all_90 {
margin:90px!important;
}
.sp_margin_all_100 {
margin:100px!important;
}

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

.sp_padding_top_0 {
padding-top:0px!important;
}
.sp_padding_top_05 {
padding-top:5px!important;
}
.sp_padding_top_10 {
padding-top:10px!important;
}
.sp_padding_top_15 {
padding-top:15px!important;
}
.sp_padding_top_20 {
padding-top:20px!important;
}
.sp_padding_top_30 {
padding-top:30px!important;
}
.sp_padding_top_40 {
padding-top:40px!important;
}
.sp_padding_top_50 {
padding-top:50px!important;
}
.sp_padding_top_60 {
padding-top:60px!important;
}
.sp_padding_top_70 {
padding-top:70px!important;
}
.sp_padding_top_80 {
padding-top:80px!important;
}
.sp_padding_top_90 {
padding-top:90px!important;
}
.sp_padding_top_100 {
padding-top:100px!important;
}
.sp_padding_right_0 {
padding-right:0px!important;
}
.sp_padding_right_05 {
padding-right:5px!important;
}
.sp_padding_right_10 {
padding-right:10px!important;
}
.sp_padding_right_15 {
padding-right:15px!important;
}
.sp_padding_right_20 {
padding-right:20px!important;
}
.sp_padding_right_30 {
padding-right:30px!important;
}
.sp_padding_right_40 {
padding-right:40px!important;
}
.sp_padding_right_50 {
padding-right:50px!important;
}
.sp_padding_right_60 {
padding-right:60px!important;
}
.sp_padding_right_70 {
padding-right:70px!important;
}
.sp_padding_right_80 {
padding-right:80px!important;
}
.sp_padding_right_90 {
padding-right:90px!important;
}
.sp_padding_right_100 {
padding-right:100px!important;
}
.sp_padding_bottom_0 {
padding-bottom:0px!important;
}
.sp_padding_bottom_05 {
padding-bottom:5px!important;
}
.sp_padding_bottom_10 {
padding-bottom:10px!important;
}
.sp_padding_bottom_15 {
padding-bottom:15px!important;
}
.sp_padding_bottom_20 {
padding-bottom:20px!important;
}
.sp_padding_bottom_30 {
padding-bottom:30px!important;
}
.sp_padding_bottom_40 {
padding-bottom:40px!important;
}
.sp_padding_bottom_50 {
padding-bottom:50px!important;
}
.sp_padding_bottom_60 {
padding-bottom:60px!important;
}
.sp_padding_bottom_70 {
padding-bottom:70px!important;
}
.sp_padding_bottom_80 {
padding-bottom:80px!important;
}
.sp_padding_bottom_90 {
padding-bottom:90px!important;
}
.sp_padding_bottom_100 {
padding-bottom:100px!important;
}
.sp_padding_left00 {
padding-left:0px!important;
}
.sp_padding_left05 {
padding-left:5px!important;
}
.sp_padding_left10 {
padding-left:10px!important;
}
.sp_padding_left15 {
padding-left:15px!important;
}
.sp_padding_left20 {
padding-left:20px!important;
}
.sp_padding_left30 {
padding-left:30px!important;
}
.sp_padding_left40 {
padding-left:40px!important;
}
.sp_padding_left50 {
padding-left:50px!important;
}
.sp_padding_left60 {
padding-left:60px!important;
}
.sp_padding_left70 {
padding-left:70px!important;
}
.sp_padding_left80 {
padding-left:80px!important;
}
.sp_padding_left90 {
padding-left:90px!important;
}
.sp_padding_left100 {
padding-left:100px!important;
}
.sp_padding_all_0 {
padding:0px!important;
}
.sp_padding_all_05 {
padding:5px!important;
}
.sp_padding_all_10 {
padding:10px!important;
}
.sp_padding_all_15 {
padding:15px!important;
}
.sp_padding_all_20 {
padding:20px!important;
}
.sp_padding_all_30 {
padding:30px!important;
}
.sp_padding_all_40 {
padding:40px!important;
}
.sp_padding_all_50 {
padding:50px!important;
}
.sp_padding_all_60 {
padding:60px!important;
}
.sp_padding_all_70 {
padding:70px!important;
}
.sp_padding_all_80 {
padding:80px!important;
}
.sp_padding_all_90 {
padding:90px!important;
}
.sp_padding_all_100 {
padding:100px!important;
}

/*----------------------------------------------------------------------------
******************************************************************************
** serif
******************************************************************************
----------------------------------------------------------------------------*/
.serif_border_black_left, .serif_border_black_right,
.serif_border_blue_left, .serif_border_blue_right,
.serif_border_gray_left, .serif_border_gray_right,
.serif_border_green_left, .serif_border_green_right,
.serif_border_orange_left, .serif_border_orange_right,
.serif_border_red_left, .serif_border_red_right {
margin: 2em 0;
}
.serif_border_icon {
border-radius: 50%;
display: block;
height: 80px!important;
margin: 0 auto 1em;
overflow: hidden;
width: 80px!important;
}
.serif_border_black_left .serif_border_icon , .serif_border_black_right .serif_border_icon {
box-shadow: 0 0 10pxrgba(17, 17, 17, 0.6);
}
.serif_border_blue_left .serif_border_icon , .serif_border_blue_right .serif_border_icon {
box-shadow: 0 0 10pxrgba(20, 50, 160, 0.6);
}
.serif_border_gray_left .serif_border_icon , .serif_border_gray_right .serif_border_icon {
box-shadow: 0 0 10pxrgba(153, 153, 153, 0.6);
}
.serif_border_green_left .serif_border_icon , .serif_border_green_right .serif_border_icon {
box-shadow: 0 0 10pxrgba(57, 118, 52, 0.6);
}
.serif_border_orange_left .serif_border_icon , .serif_border_orange_right .serif_border_icon {
box-shadow: 0 0 10pxrgba(220, 150, 30, 0.6);
}
.serif_border_red_left .serif_border_icon , .serif_border_red_right .serif_border_icon {
box-shadow: 0 0 10px rgba(165, 39, 39, 0.6);
}
.serif_border_inner {
border: 2px solid;
background-color: #FFF;
border-radius: 10px;
font-size: 0.9em;
line-height: 1.6;
position: relative;
padding: 1em 1.4em;
}
.serif_border_black_left .serif_border_inner , .serif_border_black_right .serif_border_inner {
border-color: rgba(17, 17, 17, 1);
}
.serif_border_blue_left .serif_border_inner , .serif_border_blue_right .serif_border_inner {
border-color: rgba(20, 50, 160, 1);
}
.serif_border_gray_left .serif_border_inner , .serif_border_gray_right .serif_border_inner {
border-color: rgba(153, 153, 153, 1);
}
.serif_border_green_left .serif_border_inner , .serif_border_green_right .serif_border_inner {
border-color: rgba(57, 118, 52, 1);
}
.serif_border_orange_left .serif_border_inner , .serif_border_orange_right .serif_border_inner {
border-color: rgba(220, 150, 30, 1);
}
.serif_border_red_left .serif_border_inner , .serif_border_red_right .serif_border_inner {
border-color: rgba(165, 39, 39, 1);
}

.serif_border_inner:before {
content: "";
position: absolute;
top: -24px;
left: 50%;
margin-left: -12px;
border: 12px solid transparent;
z-index: 2;
}
.serif_border_black_left .serif_border_inner:before,
.serif_border_blue_left .serif_border_inner:before,
.serif_border_gray_left .serif_border_inner:before,
.serif_border_green_left .serif_border_inner:before,
.serif_border_orange_left .serif_border_inner:before,
.serif_border_red_left .serif_border_inner:before,
.serif_border_black_right .serif_border_inner:before,
.serif_border_blue_right .serif_border_inner:before,
.serif_border_gray_right .serif_border_inner:before,
.serif_border_green_right .serif_border_inner:before,
.serif_border_orange_right .serif_border_inner:before,
.serif_border_red_right .serif_border_inner:before {
border-bottom-color: #FFF;
}
.serif_border_inner:after {
border-right: 14px solid;
content: "";
position: absolute;
top: -29px;
left: 50%;
margin-left: -14px;
border: 14px solid transparent;
z-index: 1;
}
.serif_border_black_left .serif_border_inner:after,
.serif_border_blue_left .serif_border_inner:after,
.serif_border_gray_left .serif_border_inner:after,
.serif_border_green_left .serif_border_inner:after,
.serif_border_orange_left .serif_border_inner:after,
.serif_border_red_left .serif_border_inner:after  {
left: -29px;
}
.serif_border_black_left .serif_border_inner:after {
border-color:  rgba(17, 17, 17, 1);
}
.serif_border_blue_left .serif_border_inner:after {
border-color:  rgba(20, 50, 160, 1);
}
.serif_border_gray_left .serif_border_inner:after {
border-color:  rgba(153, 153, 153, 1);
}
.serif_border_green_left .serif_border_inner:after {
border-color:  rgba(57, 118, 52, 1);
}
.serif_border_orange_left .serif_border_inner:after {
border-color:  rgba(220, 150, 30, 1);
}
.serif_border_red_left .serif_border_inner:after {
border-color:  rgba(165, 39, 39, 1);
}
.serif_border_black_right .serif_border_inner:after,
.serif_border_blue_right .serif_border_inner:after,
.serif_border_gray_right .serif_border_inner:after,
.serif_border_green_right .serif_border_inner:after,
.serif_border_orange_right .serif_border_inner:after,
.serif_border_red_right .serif_border_inner:after  {

}
.serif_border_black_right .serif_border_inner:after {
border-bottom-color: rgba(17, 17, 17, 1);
}
.serif_border_blue_right .serif_border_inner:after {
border-bottom-color: rgba(20, 50, 160, 1);
}
.serif_border_gray_right .serif_border_inner:after {
border-bottom-color: rgba(153, 153, 153, 1);
}
.serif_border_green_right .serif_border_inner:after {
border-bottom-color: rgba(57, 118, 52, 1);
}
.serif_border_orange_right .serif_border_inner:after {
border-bottom-color: rgba(220, 150, 30, 1);
}
.serif_border_red_right .serif_border_inner:after {
border-bottom-color: rgba(165, 39, 39, 1);
}
.serif_border_title{
font-size: 1.2em;
font-weight: bold;
margin: 0 0 0.1em 0!important;
padding: 0;
}
.serif_border_black_left .serif_border_title , .serif_border_black_right .serif_border_title {
color: rgba(17, 17, 17, 1);
}
.serif_border_blue_left .serif_border_title , .serif_border_blue_right .serif_border_title {
color: rgba(20, 50, 160, 1);
}
.serif_border_gray_left .serif_border_title , .serif_border_gray_right .serif_border_title {
color: rgba(17, 17, 17, 1);
}
.serif_border_green_left .serif_border_title , .serif_border_green_right .serif_border_title {
color: rgba(57, 118, 52, 1);
}
.serif_border_orange_left .serif_border_title , .serif_border_orange_right .serif_border_title {
color: rgba(220, 150, 30, 1);
}
.serif_border_red_left .serif_border_title , .serif_border_red_right .serif_border_title {
color: rgba(165, 39, 39, 1);
}


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

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

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

.sp_width_01 {
width: 1%!important;
}
.sp_width_02 {
width: 2%!important;
}
.sp_width_03 {
width: 3%!important;
}
.sp_width_04 {
width: 4%!important;
}
.sp_width_05 {
width: 5%!important;
}
.sp_width_06 {
width: 6%!important;
}
.sp_width_07 {
width: 7%!important;
}
.sp_width_08 {
width: 8%!important;
}
.sp_width_09 {
width: 9%!important;
}
.sp_width_10 {
width: 10%!important;
}
.sp_width_11 {
width: 11%!important;
}
.sp_width_12 {
width: 12%!important;
}
.sp_width_13 {
width: 13%!important;
}
.sp_width_14 {
width: 14%!important;
}
.sp_width_15 {
width: 15%!important;
}
.sp_width_16 {
width: 16%!important;
}
.sp_width_17 {
width: 17%!important;
}
.sp_width_18 {
width: 18%!important;
}
.sp_width_19 {
width: 19%!important;
}
.sp_width_20 {
width: 20%!important;
}
.sp_width_21 {
width: 21%!important;
}
.sp_width_22 {
width: 22%!important;
}
.sp_width_23 {
width: 23%!important;
}
.sp_width_24 {
width: 24%!important;
}
.sp_width_25 {
width: 25%!important;
}
.sp_width_26 {
width: 26%!important;
}
.sp_width_27 {
width: 27%!important;
}
.sp_width_28 {
width: 28%!important;
}
.sp_width_29 {
width: 29%!important;
}
.sp_width_30 {
width: 30%!important;
}
.sp_width_31 {
width: 31%!important;
}
.sp_width_32 {
width: 32%!important;
}
.sp_width_33 {
width: 33%!important;
}
.sp_width_34 {
width: 34%!important;
}
.sp_width_35 {
width: 35%!important;
}
.sp_width_36 {
width: 36%!important;
}
.sp_width_37 {
width: 37%!important;
}
.sp_width_38 {
width: 38%!important;
}
.sp_width_39 {
width: 39%!important;
}
.sp_width_40 {
width: 40%!important;
}
.sp_width_41 {
width: 41%!important;
}
.sp_width_42 {
width: 42%!important;
}
.sp_width_43 {
width: 43%!important;
}
.sp_width_44 {
width: 44%!important;
}
.sp_width_45 {
width: 45%!important;
}
.sp_width_46 {
width: 46%!important;
}
.sp_width_47 {
width: 47%!important;
}
.sp_width_48 {
width: 48%!important;
}
.sp_width_49 {
width: 49%!important;
}
.sp_width_50 {
width: 50%!important;
}
.sp_width_51 {
width: 51%!important;
}
.sp_width_52 {
width: 52%!important;
}
.sp_width_53 {
width: 53%!important;
}
.sp_width_54 {
width: 54%!important;
}
.sp_width_55 {
width: 55%!important;
}
.sp_width_56 {
width: 56%!important;
}
.sp_width_57 {
width: 57%!important;
}
.sp_width_58 {
width: 58%!important;
}
.sp_width_59 {
width: 59%!important;
}
.sp_width_60 {
width: 60%!important;
}
.sp_width_61 {
width: 61%!important;
}
.sp_width_62 {
width: 62%!important;
}
.sp_width_63 {
width: 63%!important;
}
.sp_width_64 {
width: 64%!important;
}
.sp_width_65 {
width: 65%!important;
}
.sp_width_66 {
width: 66%!important;
}
.sp_width_67 {
width: 67%!important;
}
.sp_width_68 {
width: 68%!important;
}
.sp_width_69 {
width: 69%!important;
}
.sp_width_70 {
width: 70%!important;
}
.sp_width_71 {
width: 71%!important;
}
.sp_width_72 {
width: 72%!important;
}
.sp_width_73 {
width: 73%!important;
}
.sp_width_74 {
width: 74%!important;
}
.sp_width_75 {
width: 75%!important;
}
.sp_width_76 {
width: 76%!important;
}
.sp_width_77 {
width: 77%!important;
}
.sp_width_78 {
width: 78%!important;
}
.sp_width_79 {
width: 79%!important;
}
.sp_width_80 {
width: 80%!important;
}
.sp_width_81 {
width: 81%!important;
}
.sp_width_82 {
width: 82%!important;
}
.sp_width_83 {
width: 83%!important;
}
.sp_width_84 {
width: 84%!important;
}
.sp_width_85 {
width: 85%!important;
}
.sp_width_86 {
width: 86%!important;
}
.sp_width_87 {
width: 87%!important;
}
.sp_width_88 {
width: 88%!important;
}
.sp_width_89 {
width: 89%!important;
}
.sp_width_90 {
width: 90%!important;
}
.sp_width_91 {
width: 91%!important;
}
.sp_width_92 {
width: 92%!important;
}
.sp_width_93 {
width: 93%!important;
}
.sp_width_94 {
width: 94%!important;
}
.sp_width_95 {
width: 95%!important;
}
.sp_width_96 {
width: 96%!important;
}
.sp_width_97 {
width: 97%!important;
}
.sp_width_98 {
width: 98%!important;
}
.sp_width_99 {
width: 99%!important;
}
.sp_width_100 {
width: 100%!important;
}
img[class^="sp_width_"] {
height: auto;
}
}
