@charset "utf-8";

body {
	font-family: 'Noto-Sans-JP-Regular',"Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
	position: relative;
	background: #000 url(../images/common/bg.jpg) no-repeat center center;
	background-size: cover;
}

a {
	text-decoration: none;
	color: #000;
}

input[type="submit"], input[type="text"], input[type="password"], select, textarea {
  border-radius: inherit;
  outline: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-sizing: border-box;
}


#wrapper {
	max-width: 640px;
	margin: 0 auto;
	height: 100vh;
	max-height: -webkit-fill-available;
	background: #000;
	position: relative;
	min-height: 720px;
	overflow: hidden;
}

#content {
	height: 100vh; /* Fallback */
	height: calc(var(--vh, 1vh) * 100);
}

.inner {
	width: 90%;
	margin: 0 auto;
}

/* ------------------------------------------------------------ font */

@font-face {
	font-family: 'alternate-gothic';
	src: url('../fonts/alternate-gothic-no3-d.ttf');
}

/* ------------------------------------------------------------ mobile */
@media only screen and (max-width:640px){
	html,
	body {
		position: fixed;
		height: 100%;
		width: 100%;
		overflow: auto;	
	}
	
	#wrapper {
		min-height: 640px;
	}
}