@charset "utf-8";
/* 汎用CSS */

.clear {
	clear: both;
}

/* 文字サイズ */
.font-bold {
	font-weight: bold !important;
}
.font-nomal {
	font-weight: normal;
}

.font-80 {
	font-size: 80%;
}

.font-120 {
	font-size: 120%;
}


/* 文字色 */
.col-white {
	color: #fff;
}

.col-red {
	color: #E60012;
}

/* 2行目インデント */
.second-indent {
	padding-left: 1em;
	text-indent: -1em;
}

.second-indent25 {
	padding-left:2.5em;
	text-indent:-2.5em;
}

/* 文字位置 */
.txt-center {
	text-align: center !important;
}
.txt-right {
	text-align: right;
}
.txt-left {
	text-align: left !important;
}

/* 文字装飾 */
.underline {
	text-decoration: underline;
}

.txt-deco-none {
	text-decoration: none;
}

/* 幅 */
.width-1000{
	width: 1000px !important;
}

/* 位置 */
.valign-middle {
	vertical-align: middle;
}
.valign-bottom {
	vertical-align: bottom;
}

/* 罫線 */
.bdr-right-white {
	border-right: #fff 1px solid;
}

.bdr-right-none {
	border-right: none !important;
}

.bdr-img {
	border: #ccc 1px solid;
}

/* マージン */
.mgn0-auto {
	margin: 0 auto;
}

.mgn-top-10 {
	margin-top: 10px;
}

.mgn-top-30 {
	margin-top: 30px;
}

.mgn-top-1per {
	margin-top: 1%;
}

.mgn-top-2per {
	margin-top: 2%;
}

.mgn-btm-2per {
	margin-bottom: 2%;
}

.mgn-btm-5per {
	margin-bottom: 5%;
}

/* float */
.flt-rt {
	float: right;
}
.flt-lt {
	float: left;
}

/* 背景色 */
.bg-white {
	background: #fff;
}


