@charset "UTF-8";

/* normalize
========================================================================== */

html, body, section, article, div,
h1, h2, h3, h4, h5, h6, p,
ul, ol, li, dl, dt, dd,
table, th, td,
form, fieldset, input, textarea, select, option,
address, blockquote, del, noscript, img, hr {
	margin: 0;
	padding: 0;
	font-size: 100.01%;
	font: inherit;
	vertical-align: baseline;
}

html {
	overflow-y: scroll;
}

ul {
	list-style: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
	border: 0;
}

img {
	border: 0;
	line-height: 0;	
	vertical-align: middle;
}

address {
	font-style: normal;
}

hr {
	clear: both;
	visibility: hidden;
}

sub, sup {
	font-size: 75%;
	line-height: 0;
	vertical-align: baseline;
	position: relative;
}
sup {
	top: -0.5em;
}
sub {
	bottom: -0.25em;
}



/* basic
========================================================================== */

html {
	height: 100%;
}

body {
	width: 100%;
	height: 100%;
	color: #333;
	font-size: 13px;
	*font-size: small;
	*font: x-small;
	font-family: "Roboto" , Avenir , "Helvetica Neue" , Helvetica , Arial , Verdana  , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "Meiryo UI" , "メイリオ" , Meiryo , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif;
	/* font-family: Avenir , "Open Sans" , "Helvetica Neue" , Helvetica , Arial , Verdana , Roboto , "游ゴシック" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "Meiryo UI" , "メイリオ" , Meiryo , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif; */
	font-weight: normal;
	line-height: 1.5;
	text-align: center;
}



/* text
========================================================================== */

.color_red { color: #c00 !important; }

.text_center  { text-align: center !important; }
.text_right   { text-align: right !important; }
.text_left    { text-align: left !important; }
.text_justify { text-align: justify !important; }

.text_indent      { text-indent: 1em !important; }
.text_underline   { text-decoration: underline !important; }
.text_linethrough { text-decoration: line-through !important; }

.text_small { font-size: 86% !important; }
.text_large { font-size: 115% !important; }

.float_right { float: right !important; }
.float_left  { float: left !important; }
.clear       { clear: both !important; }



/* clearfix
========================================================================== */

.clearfix {
	zoom: 1;
}

.clearfix:after {
	content:"";
	display: block;
	clear: both;
}



/* hidden
========================================================================== */

.hide_pc {
	display: none;
}

/* tablets */
@media only screen and (min-width: 768px) and (max-width: 959px) {
	.hide_pc {
		display: inherit;
	}
	.hide_tablet {
		display: none;
	}
}

/* phones */
@media only screen and (max-width: 767px) {
	.hide_pc {
		display: inherit;
	}
	.hide_sp {
		display: none;
	}
}