@charset "UTF-8";
/*=======================================================
 エレメントの共通スタイル
 base.cssからimportされる
 必要に応じてelement_custom.cssで上書き可能
=======================================================*/
/* 全エレメント共通のリセット */
* {
	box-sizing      : border-box;
	margin          : 0;
	padding         : 0;
}
html {
	font-size       : 15px;
}
body {
	font-family     : "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, ArialMT, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Verdana;
	background      : white;
	color           : black;
	font-size       : 1rem;
	line-height     : 1.6em;
}
sup,sub {
	height          : 0;
	line-height     : 1;
	vertical-align  : baseline;
	position        : relative;
}
sup {
	bottom          : 1.3ex;
}
sub {
	top             : 0.6ex;
}
img {
	border          : 0px;
}
table {
	table-layout    :fixed;
}

a {
	color           : #1D54A6;
	text-decoration : none;
}
a:hover {
	color           : #AA0000;
	text-decoration : underline;
}
input, textarea, button, select {
	font-family     : "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, ArialMT, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Verdana;
	font-size       : 1rem;
}

input[type=text],
input[type=password] {
	padding        : 0.2em 0.2em;
	height         : 2em;
	vertical-align : middle;
}
@media screen and (-webkit-min-device-pixel-ratio:0) {
	input[type=text],
	input[type=password] {
		padding        : 0.1em 0.2em;
		line-height    : 1.5em;
	}
}
input[type=checkbox],
input[type=radio] {
	margin-right   : 0.2em;
	padding        : 0.1em 0.2em;
	vertical-align : middle;
}
input[type=button],
input[type=submit],
input[type=file],
button {
	padding        : 0 0.5em;
	height         : 2em;
	line-height    : 1.2em;
	letter-spacing : 0;
}
textarea {
	padding        : 0.1em 0.2em;
	line-height    : 1.2em;
	vertical-align : middle;
	resize         : none;
}
select {
	padding        : 0.1em 0.2em;
	height         : 2em;
	vertical-align : middle;
}
