@charset "utf-8";

@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,700&display=swap&subset=japanese');
@import url('https://fonts.googleapis.com/css?family=Barlow:400,700&display=swap');

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, var, b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	font-weight: 400;
	vertical-align: baseline;
	background: transparent;
}
span {
	font-size: inherit;
	font-family: inherit;
	font-weight: inherit;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}	
ol,ul {
	list-style: none;
}


/*　　基本設定
-------------------------------------------------------*/
html {
	font-size: 62.5%;
	height: 100%;
}
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
body {
	position: relative;
	height: 100%;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 14px; font-size: 1.4rem;
	line-height: 1.7;
	color: #333;
	-webkit-text-size-adjust: 100%;
}
.ff-en {
	font-family: 'Barlow', sans-serif;
}
img {
	max-width: 100%;
	height: auto;
	vertical-align: top;
}
a {
	color: #9e010e;
	text-decoration: none;
}
a:hover {
	color: #e00113;
	text-decoration: none;
}
a.txtLink-red {
	color: #cf0000;
}
a.txtLink-red:hover {
	color: #ff0000;
	text-decoration: underline;
}
.blockLink:hover div,
.imgLink:hover img {
	filter: alpha(opacity=80);
	-ms-filter: "alpha( opacity=80 )";
	opacity:0.8;
}
.clearfix:after {
	content: ".";
	clear: both;
	display: block;
	visibility: hidden;
	height: 0;
	font-size: 0;
	line-height: 0;	
}
/* IS IE */
.clearfix {
 *display: inline-block;
 *zoom: 1;
}
.img-switch {}
.img-scale {
	overflow: hidden;
}
.img-scale img {
	-moz-transition: -moz-transform 0.2s linear;
	-webkit-transition: -webkit-transform 0.2s linear;
	-o-transition: -o-transform 0.2s linear;
	-ms-transition: -ms-transform 0.2s linear;
	transition: transform 0.2s linear;
}
.img-scale img:hover {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-o-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}
.display-b { display: block !important;}
.display-ib { display: inline-block !important;}
.pc { display: block !important;}
.pc2 { display: inline-block !important;}
.tb,
.tb2 { display: none !important;}
.sp,
.sp2 { display: none !important;}
.pc-tb { display: block !important;}
.tb-sp { display: none !important;}
.icon-blank {
	display: inline-block;
	width: 12px;
	height: 10px;
	background-image: url("../images/common/icon_blank.png");
	background-repeat: no-repeat;
	background-size: 12px 10px;
}
.icon-blank-wht {
	display: inline-block;
	width: 12px;
	height: 10px;
	background-image: url("../images/common/icon_blank_wht.png");
	background-repeat: no-repeat;
	background-size: 12px 10px;
}



/*　　枠組み
-------------------------------------------------------*/
.wrapper1 {
	max-width: 980px;
	margin-right: auto;
	margin-left: auto;
}
.wrapper2 {
	max-width: 1200px;
	margin-right: auto;
	margin-left: auto;
}
.wrapper-flex-row {
	display: -webkit-box;
  	display: -ms-flexbox;
  	display: flex;
	-webkit-box-orient: horizontal;
  	-webkit-box-direction: normal;
  	-ms-flex-direction: row;
  	flex-direction: row;
}
.fd-row {
  	-webkit-box-orient: horizontal;
  	-webkit-box-direction: normal;
  	-ms-flex-direction: row;
  	flex-direction: row;
}
.fd-reverse {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}
.fd-column {
  	-webkit-box-orient: vertical;
  	-webkit-box-direction: normal;
  	-ms-flex-direction: column;
  	flex-direction: column;
}
.fd-column-reverse {
  	-webkit-box-orient: vertical;
  	-webkit-box-direction: reverse;
  	-ms-flex-direction: column-reverse;
  	flex-direction: column-reverse;
}
.fw-wrap {
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.fw-nowrap {
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
}
.fw-wrap-reverse {
	-ms-flex-wrap: wrap-reverse;
	flex-wrap: wrap-reverse;
}
.jc-start {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}
.jc-between {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.jc-center {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.jc-end {
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}
.jc-space-around {
	-ms-flex-pack: distribute;
	justify-content: space-around;
}
.ai-baseline {
	-webkit-box-align: baseline;
	-ms-flex-align: baseline;
	align-items: baseline;
}
.ai-center {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.ai-stretch {
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
}
.ai-start {
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}
.wrapper-flex-row .cnt-row2 {
	width: 470px;
	margin-right: 40px;
}
.wrapper-flex-row .cnt-row2:nth-child(even) {
	margin-right: 0;
}
.wrapper-flex-row .cnt-row2-full {
	width: 50%;
}
.wrapper-flex-row .cnt-row3 {
	width: 310px;
	margin-right: 25px;
}
.wrapper-flex-row .cnt-row3:nth-child(3n) {
	margin-right: 0;
}
.wrapper-flex-row .cnt-row4 {
	width: 230px;
	margin-right: 20px;
}
.wrapper-flex-row .cnt-row4:nth-child(4n) {
	margin-right: 0;
}
.wrapper-table {
	overflow: auto;
}



/*　　ヘッダー
-------------------------------------------------------*/
#header {
	padding: 22px 0 0;
	border-top: 5px solid #e00113;
}
#header .logo {
	width: 200px;
}
#header .tagline {
	font-size: 12px; font-size: 1.2rem;
	margin: 0 40px 0 auto;
}
#header .contact-tel {
	font-size: 22px; font-size: 2.2rem;
	line-height: 22px;
}
.icon-tel {
	display: inline-block;
	width: 20px;
	height: 20px;
	margin-top: 3px;
	margin-right: 5px;
	background-image: url("../images/common/icon-tel.png");
	background-repeat: no-repeat;
	background-size: 20px;
	vertical-align: top;
}
#header .globalNav {
	margin-top: 22px;
	background-color: #333;
}
.globalNav ul {
	display: table;
	width: 100%;
}
.globalNav ul li {
	display: table-cell;
}
.globalNav ul li a {
	display: block;
	padding: 24px 0;
	font-size: 14px; font-size: 1.4rem;
	line-height: 1;
	color: #fff;
	text-align: center;
}
.globalNav ul li a span {
	display: block;
	padding: 0 16px;
	border-right: 1px solid #494949;
}
.globalNav ul li:first-child span {
	border-left: 1px solid #494949;
}
.globalNav ul li a:hover {
	color: #fff;
	background-color: #e00113;
}
.globalNav ul li a:hover span {
	border-right: 1px solid #e00113;
}
.globalNav ul li:first-child a:hover span {
	border-left: 1px solid #e00113;
}
.globalNav ul li.sub-menu {
	position: relative;
}
.globalNav ul li.sub-menu:hover {
	color: #fff;
	background-color: #e00113;
}
.globalNav ul li.sub-menu ul {
	display: none;
	position: absolute;
	top: 62px;
	left: 0;
	width: 230px;
	z-index: 9999;
}
.globalNav ul li.sub-menu:hover ul {
	display: block;
}
.globalNav ul li.sub-menu ul li {
	display: block;
}
.globalNav ul li.sub-menu ul li a {
	display: block;
	padding: 18px 20px;
	font-size: 14px; font-size: 1.4rem;
	line-height: 1;
	color: #fff;
	text-align: left;
	background: #4b4b4b;
	border-top: 1px solid #333;
}
.globalNav ul li.sub-menu ul li a:hover {
	background-color: #333;
}




/*　　フッター 
-------------------------------------------------------*/
#footer {
	margin-top: 100px;
}
#footer .wrapper-footer {
	padding: 22px 0;
	background-color: #ebeaea;
}
#footer .logo {
	width: 200px;
}
#footer .tagline {
	font-size: 12px; font-size: 1.2rem;
	margin: 0 40px 0 auto;
}
#footer .contact-tel {
	font-size: 22px; font-size: 2.2rem;
	line-height: 22px;
}
#footer .wrapper-footer2 {
	padding: 46px 0;
	background-color: #f5f5f5;
}
#footer .wrapper-list-contents {
	padding: 0 30px;
	border-left: 1px solid #dbdada;
}
#footer .tit-contents {
	color: #666;
	font-size: 14px; font-size: 1.4rem;
	font-weight: 700;
}
#footer .list-contents {
	list-style-position: outside;
	margin-left: 1em;
	text-indent: -1em;
	font-size: 14px; font-size: 1.4rem;
}
#footer .list-contents li {
	margin-top: 10px;
}
#footer .list-contents a {
	color: #666;
}
#footer .list-contents a:hover {
	color: #e00113;
}
#footer .btn-contact-web a {
	display: block;
	width: 245px;
	height: 64px;
	line-height: 64px;
	color: #fff;
	font-weight: 700;
	text-align: center;
	background: url(../images/common/arrow_01.png), -webkit-linear-gradient(left, #e00113, #ff0015);
	background: url(../images/common/arrow_01.png), -o-linear-gradient(left, #e00113, #ff0015);
	background: url(../images/common/arrow_01.png), linear-gradient(to right, #e00113, #ff0015);
	background-position: right 10px center, 100%;
	background-size: 8px auto, auto;
	background-repeat: no-repeat;
}
#footer .btn-contact-web a:hover {
	background: url(../images/common/arrow_01.png), -webkit-linear-gradient(left, #ff0015, #ff9000);
	background: url(../images/common/arrow_01.png), -o-linear-gradient(left, #ff0015, #ff9000);
	background: url(../images/common/arrow_01.png), linear-gradient(to right, #ff0015, #ff9000);
	background-position: right 10px center, 100%;
	background-size: 8px auto, auto;
	background-repeat: no-repeat;
}
#footer .contact-txt {
	margin-top: 10px;
	color: #666;
	font-size: 12px; font-size: 1.2rem;
	text-align: center;
}
#footer .wrapper-footer3 {
	padding: 35px 0;
	border-top: 4px solid #e00113;
	background-color: #fff;
}
#footer .copyright {
	font-size: 12px; font-size: 1.2rem;
}



/*　　共通パーツ
-------------------------------------------------------*/
.cnt-tit1 {
	font-size: 42px; font-size: 4.2rem;
	font-weight: 700;
	line-height: 1.3;
}
.cnt-tit2 {
	font-size: 20px; font-size: 2.0rem;
	font-weight: 700;
	line-height: 1.5;
}
.cnt-tit3-bg {
	padding-bottom: 2px;
	background: -webkit-linear-gradient(left, #e00113 29.18%, #e5e5e5 29.18%);
	background: -o-linear-gradient(left, #e00113 29.18%, #e5e5e5 29.18%);
	background: linear-gradient(to right, #e00113 29.18%, #e5e5e5 29.18%);
}
.cnt-tit3-bg  .cnt-tit3 {
	padding: 5px 5px 5px 0;
	font-size: 20px; font-size: 2.0rem;
	font-weight: 700;
	line-height: 1.5;
	background-color: #fff;
}
.cnt-tit-en {
	font-size: 56px; font-size: 5.6rem;
	font-family: 'Barlow', sans-serif;
	font-weight: 700;
	line-height: 1.06;
}
.cnt-tit2-en {
	font-size: 36px; font-size: 3.6rem;
	font-family: 'Barlow', sans-serif;
	font-weight: 700;
	line-height: 1.06;
}
.cnt-tit4 {
	padding: 3px 0 3px 10px;
	font-size: 20px; font-size: 2.0rem;
	font-weight: 700;
	line-height: 1.5;
	border-left: 6px solid #e00113;
}
.cnt-mix { overflow: hidden; zoom:1;}
.cnt-mix .cntL { float: left; margin-right: 20px; margin-bottom: 10px;}
.cnt-mix .cntR { float: right; margin-left: 20px; margin-bottom: 10px;}
.cnt-mix .cntL.pc50,
.cnt-mix .cntR.pc50 { width: 50%;}
.cnt-mix .cntL.pc40,
.cnt-mix .cntR.pc40 { width: 40%;}
.cnt-mix .cntL.pc30,
.cnt-mix .cntR.pc30 { width: 30%;}
.cnt-mix .no-around { overflow: hidden; zoom:1;}
.list-disc { list-style-type: disc; list-style-position: outside; margin-left: 25px;}
.list-decimal { list-style-type: decimal; list-style-position: outside; margin-left: 25px;}
.list-kome { list-style-position: outside; margin-left: 1em; text-indent: -1em;}
.list-table {
	display: table;
}
.list-table li {
	display: table-cell;
}
.btn-txt a {
	display: inline-block;
	padding: 8px 30px;
	color: #e00113;
	font-weight: 700;
	text-align: center;
	border: 1px solid #e00113;
}
.btn-txt a:hover {
	color: #fff;
	background-color: #e00113;
}
.btn-B-red-L a {
	display: block;
	max-width: 680px;
	height: 74px;
	margin: 0 auto;
	line-height: 74px;
	font-size: 20px; font-size: 2.0rem;
	font-weight: 700;
	color: #e00113;
	text-align: center;
	border: 1px solid #e00113;
	border-radius: 8px;
	background-image: url("../images/common/arrow_red.png");
	background-repeat: no-repeat;
	background-position: right 10px center;
	background-size: 12px 20px;
}
.btn-B-red-L a:hover {
	color: #fff;
	background-color: #e00113;
	background-image: url("../images/common/arrow_wht.png");
	background-repeat: no-repeat;
	background-position: right 10px center;
	background-size: 12px 20px;
}
.btn-red-L a {
	display: block;
	max-width: 680px;
	height: 77px;
	margin: 0 auto;
	line-height: 74px;
	font-size: 20px; font-size: 2.0rem;
	font-weight: 700;
	color: #fff;
	text-align: center;
	background-color: #e00113;
	border-radius: 8px;
	border-bottom: 3px solid #ae000e;
	background-image: url("../images/common/arrow_wht.png");
	background-repeat: no-repeat;
	background-position: right 10px center;
	background-size: 12px 20px;
}
.btn-red-L a:hover {
	background: url(../images/common/arrow_wht.png), -webkit-linear-gradient(left, #ff0015, #ff9000);
	background: url(../images/common/arrow_wht.png), -o-linear-gradient(left, #ff0015, #ff9000);
	background: url(../images/common/arrow_wht.png), linear-gradient(to right, #ff0015, #ff9000);
	background-position: right 10px center, 100%;
	background-size: 12px 20px, auto;
	background-repeat: no-repeat;
}
.btn-W-tr-L a {
	display: block;
	max-width: 680px;
	height: 74px;
	margin: 0 auto;
	line-height: 74px;
	font-size: 20px; font-size: 2.0rem;
	font-weight: 700;
	color: #fff;
	text-align: center;
	border: 1px solid #fff;
	border-radius: 8px;
	background-image: url("../images/common/arrow_wht.png");
	background-repeat: no-repeat;
	background-position: right 10px center;
	background-size: 12px 20px;
}
.btn-W-tr-L a:hover {
	color: #e00113;
	background-color: #fff;
	background-image: url("../images/common/arrow_red.png");
	background-repeat: no-repeat;
	background-position: right 10px center;
	background-size: 12px 20px;
}
.btn-back a {
	display: block;
	max-width: 680px;
	height: 77px;
	margin: 0 auto;
	line-height: 74px;
	font-size: 20px; font-size: 2.0rem;
	font-weight: 700;
	color: #333;
	text-align: center;
	background-color: #ccc;
	border-radius: 8px;
	border-bottom: 3px solid #999;
	background-image: url("../images/common/arrow_wht2.png");
	background-repeat: no-repeat;
	background-position: left 10px center;
	background-size: 12px 20px;
}
.btn-back a:hover {
	color: #fff;
	background-color: #b5b5b5;
}
#page-top a {
	display: block;
	position: fixed;
	bottom: 35px;
	right: 35px;
	width: 50px;
	height: 50px;
	background-image: url(../images/common/btn_pagetop.png);
	background-size: 100%;
	border-radius: 6px;
	border: 1px solid #ad1919;
	text-indent: -9999px;
	z-index: 999;
}
#page-top a:hover {
	opacity:0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha( opacity=70 )";
}




/*　　共通パーツ　/　テーブル1
-------------------------------------------------------*/
.table-design1 {
	width: 100%;
}
.table-design1 th {
	padding: 15px;
	font-weight: 700;
	border: 1px solid #ccc;
	background-color: #f5f5f5;
	vertical-align: middle;
	text-align: center;
}
.table-design1 td {
	padding: 15px;
	border: 1px solid #ccc;
	background-color: #fff;
	vertical-align: middle;
}



/*　　共通パーツ　/　テーブル2
-------------------------------------------------------*/
.table-design2 {
	width: 100%;
}
.table-design2 th {
	padding: 15px 10px 35px 0;
	font-weight: 700;
	border-top: 2px solid #ccc;
	vertical-align: top;
	text-align: right;
	background-color: #fff;
}
.table-design2 th .line-RED {
	display: inline-block;
	padding: 2px 10px 2px 0;
	border-right: 2px solid #e00113;
}
.table-design2 td {
	padding: 15px 10px 35px 40px;
	border-top: 1px solid #ccc;
	vertical-align: middle;
	background-color: #fff;
}



/*　　bg・カラー・フォントサイズ・ボーダー
-------------------------------------------------------*/
.bgcolor-WHT { background-color: #fff !important;}
.bgcolor-GRY { background-color: #f5f5f5 !important;}
.color-BLK { color: #000 !important;}
.color-WHT { color: #fff !important;}
.color-RED { color: #e00113 !important;}
.color-BLU { color: #3366ff !important;}
.color-GRY { color: #666 !important;}
.color-GRY2 { color: #f5f5f5 !important;}
.color-GRY3 { color: #ccc !important;}
.fsXS { font-size: 10px; font-size: 1.0rem;}
.fsS { font-size: 12px; font-size: 1.2rem;}
.fsM { font-size: 14px; font-size: 1.4rem;}
.fsL { font-size: 18px; font-size: 1.8rem;}
.fsXL { font-size: 24px; font-size: 2.4rem;}
.fsXXL { font-size: 30px; font-size: 3.0rem;}
.fwB { font-weight: 700 !important;}
.fwN { font-weight: 400 !important;}
.tx-indent { text-indent: 1em;}
.kadomaru { border-radius: 6px; }
.borderBox { border: 1px solid #ccc !important;}
.borderR { border-radius: 6px !important;}
.borderT { border-top: 1px solid #ccc !important;}
.borderB { border-bottom: 1px solid #ccc !important;}
.borderL { border-left: 1px solid #ccc !important;}
.borderR { border-right: 1px solid #ccc !important;}
.borderBox-dot { border: 1px dotted #ccc !important;}
.borderT-dot { border-top: 1px dotted #ccc !important;}
.borderB-dot { border-bottom: 1px dotted #ccc !important;}
.borderL-dot { border-left: 1px dotted #ccc !important;}
.borderR-dot { border-right: 1px dotted #ccc !important;}
.lh10 { line-height: 1.0;}
.lh11 { line-height: 1.1;}
.lh12 { line-height: 1.2;}
.lh13 { line-height: 1.3;}
.lh14 { line-height: 1.4;}
.lh15 { line-height: 1.5;}
.lh16 { line-height: 1.6;}
.lh17 { line-height: 1.7;}
.lh18 { line-height: 1.8;}
.lh19 { line-height: 1.9;}
.lh20 { line-height: 2.0;}
.lh21 { line-height: 2.1;}
.lh22 { line-height: 2.2;}
.lh23 { line-height: 2.3;}
.lh24 { line-height: 2.4;}
.lh25 { line-height: 2.5;}
.lh26 { line-height: 2.6;}
.lh27 { line-height: 2.7;}
.lh28 { line-height: 2.8;}
.lh29 { line-height: 2.9;}
.lh30 { line-height: 3.0;}
.ls1 { letter-spacing: 1px;}
.ls2 { letter-spacing: 2px;}
.ls3 { letter-spacing: 3px;}
.ls4 { letter-spacing: 4px;}
.ls5 { letter-spacing: 5px;}



/*　　その他・マージン・パディング
-------------------------------------------------------*/
.word-wrap-bw { word-wrap: break-word;}
.flL { float: left !important;}
.flR { float: right !important;}
.flN { float: none !important;}
.vaT { vertical-align: top !important;}
.vaM { vertical-align: middle !important;}
.vaB { vertical-align: bottom !important;}
.tableFix { table-layout: fixed !important;}
.position-r { position: relative;}
.pd0 { padding: 0 !important;}
.pd10 { padding: 10px !important;}
.pd15 { padding: 15px !important;}
.pd20 { padding: 20px !important;}
.pdT0 { padding-top: 0 !important;}
.pdT5 { padding-top: 5px !important;}
.pdT10 { padding-top: 10px !important;}
.pdT15 { padding-top: 15px !important;}
.pdT20 { padding-top: 20px !important;}
.pdT25 { padding-top: 25px !important;}
.pdT30 { padding-top: 30px !important;}
.pdT35 { padding-top: 35px !important;}
.pdT40 { padding-top: 40px !important;}
.pdT45 { padding-top: 45px !important;}
.pdT50 { padding-top: 50px !important;}
.pdT55 { padding-top: 55px !important;}
.pdT60 { padding-top: 60px !important;}
.pdT65 { padding-top: 65px !important;}
.pdT70 { padding-top: 70px !important;}
.pdT75 { padding-top: 75px !important;}
.pdT80 { padding-top: 80px !important;}
.pdT85 { padding-top: 85px !important;}
.pdT90 { padding-top: 90px !important;}
.pdT95 { padding-top: 95px !important;}
.pdT100 { padding-top: 100px !important;}
.pdB0 { padding-bottom: 0 !important;}
.pdB5 { padding-bottom: 5px !important;}
.pdB10 { padding-bottom: 10px !important;}
.pdB15 { padding-bottom: 15px !important;}
.pdB20 { padding-bottom: 20px !important;}
.pdB25 { padding-bottom: 25px !important;}
.pdB30 { padding-bottom: 30px !important;}
.pdB35 { padding-bottom: 35px !important;}
.pdB40 { padding-bottom: 40px !important;}
.pdB45 { padding-bottom: 45px !important;}
.pdB50 { padding-bottom: 50px !important;}
.pdB55 { padding-bottom: 55px !important;}
.pdB60 { padding-bottom: 60px !important;}
.pdB65 { padding-bottom: 65px !important;}
.pdB70 { padding-bottom: 70px !important;}
.pdB75 { padding-bottom: 75px !important;}
.pdB80 { padding-bottom: 80px !important;}
.pdB85 { padding-bottom: 85px !important;}
.pdB90 { padding-bottom: 90px !important;}
.pdB95 { padding-bottom: 95px !important;}
.pdB100 { padding-bottom: 100px !important;}
.pdL0 { padding-left: 0 !important;}
.pdL5 { padding-left: 5px !important;}
.pdL10 { padding-left: 10px !important;}
.pdL15 { padding-left: 15px !important;}
.pdL20 { padding-left: 20px !important;}
.pdL25 { padding-left: 25px !important;}
.pdL30 { padding-left: 30px !important;}
.pdL35 { padding-left: 35px !important;}
.pdL40 { padding-left: 40px !important;}
.pdL45 { padding-left: 45px !important;}
.pdL50 { padding-left: 50px !important;}
.pdL55 { padding-left: 55px !important;}
.pdL60 { padding-left: 60px !important;}
.pdL65 { padding-left: 65px !important;}
.pdL70 { padding-left: 70px !important;}
.pdL75 { padding-left: 75px !important;}
.pdL80 { padding-left: 80px !important;}
.pdL85 { padding-left: 85px !important;}
.pdL90 { padding-left: 90px !important;}
.pdL95 { padding-left: 95px !important;}
.pdL100 { padding-left: 100px !important;}
.pdR0 { padding-right: 0 !important;}
.pdR5 { padding-right: 5px !important;}
.pdR10 { padding-right: 10px !important;}
.pdR15 { padding-right: 15px !important;}
.pdR20 { padding-right: 20px !important;}
.pdR25 { padding-right: 25px !important;}
.pdR30 { padding-right: 30px !important;}
.pdR35 { padding-right: 35px !important;}
.pdR40 { padding-right: 40px !important;}
.pdR45 { padding-right: 45px !important;}
.pdR50 { padding-right: 50px !important;}
.pdR55 { padding-right: 55px !important;}
.pdR60 { padding-right: 60px !important;}
.pdR65 { padding-right: 65px !important;}
.pdR70 { padding-right: 70px !important;}
.pdR75 { padding-right: 75px !important;}
.pdR80 { padding-right: 80px !important;}
.pdR85 { padding-right: 85px !important;}
.pdR90 { padding-right: 90px !important;}
.pdR95 { padding-right: 95px !important;}
.pdR100 { padding-right: 100px !important;}
.w5 { width: 5% !important;}
.w10 { width: 10% !important;}
.w15 { width: 15% !important;}
.w20 { width: 20% !important;}
.w25 { width: 25% !important;}
.w30 { width: 30% !important;}
.w35 { width: 35% !important;}
.w40 { width: 40% !important;}
.w45 { width: 45% !important;}
.w50 { width: 50% !important;}
.w55 { width: 55% !important;}
.w60 { width: 60% !important;}
.w65 { width: 65% !important;}
.w70 { width: 70% !important;}
.w75 { width: 75% !important;}
.w80 { width: 80% !important;}
.w85 { width: 85% !important;}
.w90 { width: 90% !important;}
.w95 { width: 95% !important;}
.w100 { width: 100% !important;}
.mgCenter {
	margin-left: auto !important;
	margin-right: auto !important;
}
.mg0 { margin: 0 !important;}
.mgT0 { margin-top: 0 !important;}
.mgT5 { margin-top: 5px !important;}
.mgT10 { margin-top: 10px !important;}
.mgT15 { margin-top: 15px !important;}
.mgT20 { margin-top: 20px !important;}
.mgT25 { margin-top: 25px !important;}
.mgT30 { margin-top: 30px !important;}
.mgT35 { margin-top: 35px !important;}
.mgT40 { margin-top: 40px !important;}
.mgT45 { margin-top: 45px !important;}
.mgT50 { margin-top: 50px !important;}
.mgT55 { margin-top: 55px !important;}
.mgT60 { margin-top: 60px !important;}
.mgT65 { margin-top: 65px !important;}
.mgT70 { margin-top: 70px !important;}
.mgT75 { margin-top: 75px !important;}
.mgT80 { margin-top: 80px !important;}
.mgT85 { margin-top: 85px !important;}
.mgT90 { margin-top: 90px !important;}
.mgT95 { margin-top: 95px !important;}
.mgT100 { margin-top: 100px !important;}
.mgB0 { margin-bottom: 0 !important;}
.mgB5 { margin-bottom: 5px !important;}
.mgB10 { margin-bottom: 10px !important;}
.mgB15 { margin-bottom: 15px !important;}
.mgB20 { margin-bottom: 20px !important;}
.mgB25 { margin-bottom: 25px !important;}
.mgB30 { margin-bottom: 30px !important;}
.mgB35 { margin-bottom: 35px !important;}
.mgB40 { margin-bottom: 40px !important;}
.mgB45 { margin-bottom: 45px !important;}
.mgB50 { margin-bottom: 50px !important;}
.mgB55 { margin-bottom: 55px !important;}
.mgB60 { margin-bottom: 60px !important;}
.mgB65 { margin-bottom: 65px !important;}
.mgB70 { margin-bottom: 70px !important;}
.mgB75 { margin-bottom: 75px !important;}
.mgB80 { margin-bottom: 80px !important;}
.mgB85 { margin-bottom: 85px !important;}
.mgB90 { margin-bottom: 90px !important;}
.mgB95 { margin-bottom: 95px !important;}
.mgB100 { margin-bottom: 100px !important;}
.mgL0 { margin-left: 0 !important;}
.mgL5 { margin-left: 5px !important;}
.mgL10 { margin-left: 10px !important;}
.mgL15 { margin-left: 15px !important;}
.mgL20 { margin-left: 20px !important;}
.mgL25 { margin-left: 25px !important;}
.mgL30 { margin-left: 30px !important;}
.mgL35 { margin-left: 35px !important;}
.mgL40 { margin-left: 40px !important;}
.mgL45 { margin-left: 45px !important;}
.mgL50 { margin-left: 50px !important;}
.mgL55 { margin-left: 55px !important;}
.mgL60 { margin-left: 60px !important;}
.mgL65 { margin-left: 65px !important;}
.mgL70 { margin-left: 70px !important;}
.mgL75 { margin-left: 75px !important;}
.mgL80 { margin-left: 80px !important;}
.mgL85 { margin-left: 85px !important;}
.mgL90 { margin-left: 90px !important;}
.mgL95 { margin-left: 95px !important;}
.mgL100 { margin-left: 100px !important;}
.mgR0 { margin-right: 0 !important;}
.mgR5 { margin-right: 5px !important;}
.mgR10 { margin-right: 10px !important;}
.mgR15 { margin-right: 15px !important;}
.mgR20 { margin-right: 20px !important;}
.mgR25 { margin-right: 25px !important;}
.mgR30 { margin-right: 30px !important;}
.mgR35 { margin-right: 35px !important;}
.mgR40 { margin-right: 40px !important;}
.mgR45 { margin-right: 45px !important;}
.mgR50 { margin-right: 50px !important;}
.mgR55 { margin-right: 55px !important;}
.mgR60 { margin-right: 60px !important;}
.mgR65 { margin-right: 65px !important;}
.mgR70 { margin-right: 70px !important;}
.mgR75 { margin-right: 75px !important;}
.mgR80 { margin-right: 80px !important;}
.mgR85 { margin-right: 85px !important;}
.mgR90 { margin-right: 90px !important;}
.mgR95 { margin-right: 95px !important;}
.mgR100 { margin-right: 100px !important;}
.mgT-set1 { margin-top: 100px !important;}
.mgT-set2 {	margin-top: 50px !important;}
.mgT-set3 { margin-top: 35px !important;}
.pdT-set1 { padding-top: 100px !important;}
.pdT-set2 {	padding-top: 50px !important;}
.pdT-set3 { padding-top: 35px !important;}
.mgB-set1 { margin-bottom: 100px !important;}
.mgB-set2 {	margin-bottom: 50px !important;}
.mgB-set3 { margin-bottom: 35px !important;}
.pdB-set1 { padding-bottom: 100px !important;}
.pdB-set2 {	padding-bottom: 50px !important;}
.pdB-set3 { padding-bottom: 35px !important;}
.alL { text-align: left !important;}
.alR { text-align: right !important;}
.alC { text-align: center !important;}
.alL-sp-alC { text-align: center !important;}
.alC-sp-alL { text-align: center !important;}


