@charset "UTF-8";

html {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	overflow-y: scroll; /* All browsers without overlaying scrollbars */
	font-size: 62.5%;
	font-size: 10px;
	-webkit-text-size-adjust: 100%; /* iOS 8+ */
}
body {
	/*
	font-size: 12px;
	font-size: 1.2rem;
	*/
	line-height: 1.5;
	/* ゴシック体 */
	font-family: -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", "Segoe UI", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック", "Yu Gothic", YuGothic, Verdana, Arial, "メイリオ", Meiryo, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
	/* 明朝体 */
	/*
	font-family: Georgia, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", "Yu Mincho", YuMincho, "HG明朝E", "MS P明朝", "MS PMincho", "MS 明朝", "MS Mincho", serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
	*/
}
ul, ol {
	list-style: none;
}
	/* 
a, a:hover {
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}
 */
a:hover img {
	opacity: 0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha(opacity=70)";
}
a:focus {
	outline: none;
}
img {
	vertical-align: top;
	border: 0;
	-ms-interpolation-mode: bicubic;
	max-width: 100%;
}

/* Form */
form input[type="text"],
form input[type="submit"],
form input[type="reset"],
form input[type="button"],
form select,
form textarea {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
}
::-webkit-input-placeholder { color: #bcbcbc; }
::-moz-placeholder { color: #bcbcbc; }
:-ms-input-placeholder { color: #bcbcbc; }

/* Measures Against Float */
.clearfix:after {
	content: " ";
	display: block;
	clear: both;
}