/* -------- All Clear -------- */
* {
	margin: 0px;
	padding: 0px;
}

/* -------- HTML -------- */
html{
	height: 100%;
}

/* -------- BODY -------- */
body{
	height: 100%;
	margin: 0px;
	padding: 0px;
}

/* -------- IMG -------- */
img{
	border: none;
}

/* -------- DIV -------- */
div{
	margin: 0px;
	padding: 0px;
	line-height: 1.2;
}

/* -------- TABLE -------- */
table{
	margin: 0px;
	padding: 0px;
	border-style: none;
	border-collapse: collapse;
}

/* -------- CLASS：IME Control -------- */
.ime_auto{
	ime-mode: auto;
}
.ime_inactive{
	ime-mode: inactive;
}
.ime_active{
	ime-mode: active;
}
.ime_disabled{
	ime-mode: disabled;
}

/* -------- CLASS: Font Control -------- */
.font_normal{
	font-weight: normal;
}
.font_bold{
	font-weight: bold;
}

.t_left{
	text-align: left;
}
.t_right{
	text-align: right;
}
.t_center{
	text-align: center;
}

.v_top{
	vertical-align: top;
}
.v_middle{
	vertical-align: middle;
}
.v_bottom{
	vertical-align: bottom;
}

/* -------- CLASS: Corner Box -------- */
.corner_box{
	margin:10px;
}
.corner b{
	display: block; 
	height: 1px; 
	overflow: hidden; 
	border: solid #FFFFFF 0px;
}
b.r1 { border-left-width:5px; border-right-width:5px; }
b.r2 { border-left-width:3px; border-right-width:3px; }
b.r3 { border-left-width:2px; border-right-width:2px; }
b.r4 { border-left-width:1px; border-right-width:1px; height:2px; }

/* -------- Chrome 対策 -------- */
:focus {
	outline: none;
}

/* -------- 角丸ボタン -------- */
.maru {
	display: inline-block;
	background: #ACE;
	color: #036;
	padding: 2px 14px;
	text-decoration: none; 
	border-radius: 6px;
	font-size: 12px;
	margin-top: 14px;
}
