@charset "utf-8";

/*##################################################
 *HTMLreset(参考：Eric Mayer's Reset CSS 2.0) */

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-style:normal;
	font-weight: normal;
	font-size: 100%; /* 16px */
	vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	/* 古いブラウザーのためのHTML5表示リセット */
	display: block;
}
/*##################################################
 *common */
html {
	overflow-y: scroll;
	/* 背景グラデーション、フッター最下部固定のための設定 */
	height: 100%;
}
body {
	/* 基本設定 */
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
	font-size:1em; /* 基本16px */
	text-align: center;
	width: 100%;
	text-shadow: none;
	/* 個別設定 */
	color: #2a2e4a;
	line-height: 1.5;
	background-color: #FFF;/*#f5f6f8;*/
	min-width: 1280px;
	/* 背景グラデーション、フッター最下部固定のための設定 */
	height: 100%;
}
img {
	vertical-align: bottom;
}
a {
	text-decoration: none;
	color: #2a2e4a;
}
a:hover {
	color: #fd5b59;
}
a img {
	transition: opacity 0.3s;
}
a:hover img {
	opacity:0.7;
}
ol, ul {
	list-style: none;
	font-size: 0;
}
li {
	font-size: 16px;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
input {
	margin: 0;
	padding: 0;
	font-family: inherit;
	font-size: 1em;
    /*background: transparent;*/
	border: none;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
input[type="text"],
input[type="url"],
input[type="password"]{
	box-sizing: border-box;
}
/*
input[type="checkbox"]{
	cursor: pointer;
    -webkit-appearance: checkbox;
    -moz-appearance: checkbox;
    appearance: checkbox;
}
input[type="radio"] {
    cursor: pointer;
	-webkit-appearance: radio;
    -moz-appearance: radio;
    appearance: radio;
}
*/
input[type="submit"] {
    cursor: pointer;
}
textarea {
	margin: 0;
	padding: 0;
	font-family: inherit;
	font-size: 1em;
    /*background: transparent;*/
	border: none;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
	box-sizing: border-box;
	resize: none;
}
button{
	margin: 0;
	padding: 0;
	font-family: inherit;
	font-size: 1em;
	background: transparent;
	border: none;
	outline: none;
	cursor: pointer;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
button:active,
button:focus,
button:active > span,
button:focus > span {
    position:relative;
}
iframe {
	vertical-align: bottom;
}
hr {
  height: 0;
  margin: 0;
  padding: 0;
  border: 0;
}
.clearfix {
    overflow: hidden;
    zoom: 1;
}
.clearfix:after {
    content: "";
    display: block;
    clear: both;
}
.fl {
	float: left;
}
.fr {
	float: right;
}