@charset "UTF-8";
/*******************************************************************************

	CSS

*******************************************************************************/
.light-blue {
	color: #40A6DD;
}
.blue {
	color: #0000FF;
}
.dark-blue {
	color: #000099;
}
.purple {
	color: #660099;
}
.pink {
	color: #FF6699;
}
.red {
	color: #FF0000;
}
.orange {
	color: #FF6600;
}
.yellow {
	color: #FFCC00;
}
.white {
	color: #FFFFFF;
}
.gray {
	color: #666666;
}
.brown {
	color: #663300;
}
.green {
	color: #339900;
}
/* 忠告文の属性 */
.advice {
	color: #C61A22;
}
/* 必須項目 */
.required {
	color: #C61A22;
}
.italic {
	font-style: italic;
}
.strong {
	font-weight: bold;
}
.weak {
	font-weight: normal;
}
.large {
	font-size: 115%;
	line-height: 140%;
}
.l-small {
	font-size: 11px;
}
.small {
	font-size: 10px;
}
.x-small {
	font-size: 9px;
}
.xx-small {
	font-size: 8px;
}
.l-per-small {
	font-size: 90%;
}
.per-small {
	font-size: 80%;
}
.x-per-small {
	font-size: 70%;
}
.underline {
	text-decoration: underline;
}
.line-through {
	text-decoration: line-through;
}
.left {
	text-align: left;
}
.center {
	text-align: center;
}
.right {
	text-align: right;
}

.f-left {
	float:left;
}

.f-right {
	float:right;
}

.c-both {
	clear:both;
}

.c-left {
	clear:left;
}

.c-right {
	clear:right;
}

.c-none {
	clear:none !important;
}

.hidden {
	display:none;
}

.v-center {
	position: relative;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.v-top {
	vertical-align: top;
}

.fixed {
	table-layout: fixed;
}

/* できるだけ使用しない */
.no_border {
	border:none !important;
}

/* できるだけ使用しない */
.border_left_none {
	border-left:none !important;
}

/* できるだけ使用しない */
.border_right_none {
	border-right:none !important;
}

/* できるだけ使用しない */
.border_bottom_none {
	border-bottom:none !important;
}

/* できるだけ使用しない */
.no_padding {
	padding: 0 !important;
}

/* できるだけ使用しない */
.no_margin {
	margin: 0 !important;
}

/* できるだけ使用しない */
.bottom_border {
	border-bottom: 1px solid #bbb;
}

.rotate-left {
	transform: rotate(-90deg);
}

.rotate-right {
	transform: rotate(90deg);
}

.inline-block {
	display: inline-block;
	/* For IE 6/7 */
	*display: inline;
	*zoom: 1;
}
