@charset "utf-8";

/* =========================================================
	サイト全体共通スタイル（基本的に変更しない）
========================================================= */

/* リセットスタイル
--------------------------------------------------------- */

* {
	margin: 0;
	padding: 0;
}
html {
	overflow-y: scroll;
}

ul, dl {
	list-style-type: none;
}
ul li,
ol li {
	margin: 0;
}
img {
	border: 0 none;
	backface-visibility: hidden;	/* GC縮小画像のぼやけ対策 */
	-webkit-backface-visibility: hidden;
}
a,
a img {
	border: none;
	overflow: hidden;
}

/* ----- clearfix ----- */
.clearfix:before,
.clearfix:after {
	display: table;
	content: " ";
}
.clearfix:after {
	clear: both;
}

/* ----- text_hide ----- */
.text_hide,
.text_hide * {
	text-indent: -9999px;
	text-decoration: none;
	font-size: 0;
	height: 0;
	margin: 0 !important;
	padding: 0 !important;
	line-height: 0;
	outline: none;
}

/* ----- clear, none_clear ----- */
.clear {
	clear: both;
}
.none_clear {
	clear: none;
}


