/* Y'S GEAR : common.css */


html, 
body {
	width: 100%;
	height: 100%;
}

html {
	font-size: 62.5%;
}

body {
	font-family:
		Verdana, 
		"游ゴシック体", "Yu Gothic", YuGothic, 
		"メイリオ", Meiryo, 
		"ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", 
		"ＭＳ Ｐゴシック", "MS PGothic", 
		sans-serif;
	font-size: 12px;
	font-size: 1.2em; /* Chrome対策でremにしない */
	line-height: 1;
	-webkit-text-size-adjust: 100%;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: top; /* 後から追加、問題ないか検証 */
}
table img { /* 後から追加、問題ないか検証 */
	font-size: 0;
	line-height: 0;
	vertical-align: top;
}
table img { vertical-align: text-top\0; } /* IE用ハック */

input,
textarea,
select,
option,
button {
	box-sizing: border-box;
	font-family:
		Verdana, 
		"游ゴシック体", "Yu Gothic", YuGothic, 
		"メイリオ", Meiryo, 
		"ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", 
		"ＭＳ Ｐゴシック", "MS PGothic", 
		sans-serif;
	font-size: 12px;
	font-size: 1.2rem;
	line-height: 1;
}

a {
	color: #505050;
	text-decoration: none;
}
a:link, 
a:visited {
	color: #505050;
}
a:hover, 
a:active {
	color: #282828;
}


/*======================================================================*
 *  [ noScript | JSが無効だった場合 ] 
 *======================================================================*/

.noScript {
	margin: 0 0 15px 0;
	padding: 10px;
	background: #ff0000;
	color: #fff;
	font-size: 16px;
	font-size: 1.6em;
	font-weight: bold;
	line-height: 1.2;
	text-align: center;
}


/*======================================================================*
 *  [ cf / clearfix ] 
 *======================================================================*/

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

.clearfix:after {
	display: block;
	clear: both;
	content: "";
	height: 0;
}
.clearfix {
	display: inline-block;
}
.clearfix {
	display: block;
}

