@charset "utf-8";

/* -----------------------------------------------
 * style.css
 * LastUpdate : 21/12/16
----------------------------------------------- */

html {
	height:100%;
}
body {
	height:100%;
	overflow:hidden;
	margin: 0;
	padding: 0;
	font-family: "游ゴシック Medium", "Yu Gothic Medium","游ゴシック",YuGothic,"ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN","メイリオ",Meiryo,sans-serif;
	font-size:16px;
	color:#ffffff;
	background-color:#000000;
}

.web_btn {
	position: absolute;
	z-index: 9999;
	display: block;
	line-height: 1em;
	border-radius: 4px;
	color: #ffffff;
	font-weight: 700;
	text-decoration: none;
	background: blue;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
}
.web_btn:hover {
	background: red;
}

@media only screen and ( max-width : 414px ) {
}

@media only screen and ( max-width : 768px ) {
	.web_btn {
		top: 10px;
		right: 4px;
		padding: 4px;
		font-size: 10px;
	}

}

@media print, screen and ( min-width : 769px ) {
.web_btn {
		top: 10px;
		right: 20px;
		padding: 12px 6px;
		font-size: 14px;
	}
}


