body {
	color:#333;
	font-size: 16px;
	line-height: 140%;
	text-align: center;
	background: #FFF;
	font-family: "メイリオ",Meiryo,"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro","ＭＳ Ｐゴシック",Osaka,Arial,sans-serif;
}

/* link */
a {
	color:#06B;
	text-decoration: none;
}
a img {
	border: none;
}
a:link {
	color:#06B;
}
a:visited {
	color:#955496;
}
a:hover {
	color:#06B;
	text-decoration: underline;
}

/* List */
ul {
	list-style: none;
}
ol {
	list-style: none;
}

/* 文字装飾関連 */
.normal {
	font-weight: 400;
}
.bold {
	font-weight: 600;
}
.blue {
	color: #06C;
}
.red {
	color: #F00;
}
.gray {
	color: #666;
}
.orange {
	color: #F60;
}

/* floatの解除 */
.clear {
	clear: both;
	height: 0;
	font-size: 0;
	border: none;
	margin: 0;
	padding: 0;
	background: none;
	line-height: 0;
}
.clearfix:after {
	display:block;
	clear:both;
	height:0px;
	visibility:hidden;
	content:".";
}
.clearfix {
	min-height: 1px; /*IE6、7対策*/
}
* html .clearfix {
	height: 1px;
	/*\*//*/ /*MAC IE5.x対策*/
	height: auto;
	overflow: hidden;
	/**/
}

/* フォント関連 */
.font_mincho {
	font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
}
.font_x-small {
	font-size: 0.7em;
}
.font_small {
	font-size: 0.75em;
}
.font_medium {
	font-size: 0.85em;
}
.font_large {
	font-size: 1em;
}
.font_x-large {
	font-size: 1.2em;
}

.button_over:hover {
	filter:alpha(opacity=70);
	-moz-opacity: 0.7;
	opacity: 0.7;
}

.fixed {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000000;
}

label.myError {
	display: block;
	color: red;
	font-weight: 600;
}

/* テキストの横に線を引く */
.text_side_line {
	position: relative;
}
.text_side_line:before {
	content: "";
	display: block;
	border-top: solid 1px #CCCCCC;
	width: 100%;
	height: 1px;
	position: absolute;
	top: 40%;
	z-index: 1;
}
.text_side_line span {
	background: #F5F5F5;
	padding: 0 1%;
	position: relative;
	z-index: 5;
}

/* ボックスの影 */
.shadow_lower {
	box-shadow: 0 6px 3px -3px rgba(0,0,0,0.3);
}
.shadow_upper {
	box-shadow: 0 -6px 3px -3px rgba(0,0,0,0.3);
}
.shadow_ud {
	box-shadow: 0 6px 3px -3px rgba(0,0,0,0.3), 0 -6px 3px -3px rgba(0,0,0,0.3);
}
.shadow_all {
	box-shadow: 0 0 6px rgba(0,0,0,0.3);
}

/* ブロックの角丸 */
.round_all {
	border-radius: 15px;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
}
.round_top {
	border-top-left-radius: 15px;
	-webkit-top-left-border-radius: 15px;
	-moz-border-top-left-radius: 15px;
	border-top-right-radius: 15px;
	-webkit-top-right-border-radius: 15px;
	-moz-border-top-right-radius: 15px;
}
.round_bottom {
	border-bottom-left-radius: 15px;
	-webkit-bottom-left-border-radius: 15px;
	-moz-border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;
	-webkit-bottom-right-border-radius: 15px;
	-moz-border-bottom-right-radius: 15px;
}
.round_left {
	border-top-left-radius: 15px;
	-webkit-top-left-border-radius: 15px;
	-moz-border-top-left-radius: 15px;
	border-bottom-left-radius: 15px;
	-webkit-bottom-left-border-radius: 15px;
	-moz-border-bottom-left-radius: 15px;
}
.round_right {
	border-top-right-radius: 15px;
	-webkit-top-right-border-radius: 15px;
	-moz-border-top-right-radius: 15px;
	border-bottom-right-radius: 15px;
	-webkit-bottom-right-border-radius: 15px;
	-moz-border-bottom-right-radius: 15px;
}

/* ツールチップ表示 */
span.tooltip{
	line-height:1.5;
	color:white;
	width:170px;
	background:#1585A3;
	border:2px solid white;
	padding:1em;
	font-size:small;
	border-radius: 8px;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
}
