@charset "utf-8";

/*

  共通スタイルシート

*/

/* ----------------------------------------------------------
	リセット / 新要素設定
------------------------------------------------------------- */
html, body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, p, blockquote, pre, code, form, fieldset, legend, table, th, td, caption, a, article, aside, nav, section, figure, figcaption, footer, header, main, audio, canvas, video, menu, details {
	margin: 0;
	padding: 0;
	background: transparent;
	font-size: 100%;
	vertical-align: baseline;
}
fieldset, legend, img { border: 0; }
article, aside, nav, section, figure, figcaption, footer, header, main, menu, details { display: block; }
video, audio, canvas {
	display: inline-block;
	*display: inline;
	*zoom: 1;
}
audio:not([controls]) { display: none; }
[hidden] { display: none; }


/* ----------------------------------------------------------
	ベース
------------------------------------------------------------- */
html {
	overflow-y: scroll;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}
body {
	background: #fff;
	color: #222;
	font: 87.5%/1.6 "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "游ゴシック", YuGothic, sans-serif;
	word-wrap: break-word;
}


/* ----------------------------------------------------------
	要素
------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 { font-weight: bold; }
ul { list-style: none; }
ol { list-style: decimal inside; }
hr {
	display: block;
	height: 1px;
	margin: 1em 0;
	padding: 0;
	border: 0;
	border-top: 1px solid #ccc;
}
blockquote, q { quotes: none; }
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}
pre {
	font-family: monospace, serif;
	white-space: pre-wrap;
	word-wrap: break-word;
}


a {	color: #287FB8; }
a:link, a.visited { text-decoration: underline; }
a:hover, a.active { text-decoration: none; }
a:focus { outline: thin dotted; }
a:hover, a:active { outline: 0; }
img { vertical-align: middle; }


address, cite, em, dfn, i, var { font-style: normal; }
strong, b { font-weight: bold; }
code, samp, kbd { font-family: monospace, sans-serif; }
abbr {
	border: 0;
	font-variant: normal;
}
abbr[title], dfn[title] {
	border-bottom: 1px dotted;
	cursor: help;
}
sup { vertical-align: text-top; }
sub { vertical-align: text-bottom; }
del { text-decoration: line-through; }
mark {
	background-color: #ff0;
	color: #333;
	font-style: italic;
	font-weight: bold;
}
br { *letter-spacing: 0; }


table {
	border-collapse: collapse;
	border-spacing: 0;
}
caption, th, td {
	font-weight: normal;
	text-align: left;
}


input, textarea, select {
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	*font-size: 100%;
}
input, button {
	line-height: normal;
	vertical-align: middle;
}
textarea {
	overflow: auto;
	vertical-align: top;
}
select {
	background-color: inherit;
	line-height: normal;
}
label { cursor: pointer; }
legend {
	color: #333;
	*margin-left: -7px;
}


/* ----------------------------------------------------------
	汎用
------------------------------------------------------------- */

/* 余白 */
.pt10 { padding-top: 10px !important; }

/* 文字スタイル */
.bold { font-weight: bold; }
.darkblue { color: #1966B2; }
.lightblue { color: #3091B8; }
.red { color: #B20000; }

/* float */
.fl { float: left !important; }
.fr { float: right !important; }

/* Clearfix */
.clear { clear: both; }
.clearfix:before, .clearfix:after {
	content: " ";
	display: table;
}
.clearfix:after { clear: both; }
.clearfix { *zoom: 1; }

/* ホバーエフェクト */
.hover {
	-webkit-transition: opacity .2s ease-out;
	-o-transition: opacity .2s ease-out;
	transition: opacity .2s ease-out;
}
.hover:hover {
	opacity: .8;
	filter: alpha(opacity=80);
	-ms-filter: "alpha(opacity=80)";
	-khtml-opacity: .8;
	-moz-opacity: .8;
}

