@charset "utf-8";

* {
	box-sizing: border-box;
	word-break: break-all;
	-webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
html {
	font-size: 18px;
	height: 100%;
}
body {
	font-size: 18px;
	min-width: 1200px;
	height: 100%;
	color: #000;
	background-color: #ffffff;
	line-height: 1.6;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	letter-spacing: 1px;
	font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}


/* loader
------------------------------------------------------------*/
#loader {
  width: 100%;
  height: 100%;
  background: #000;
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
}


/* header
------------------------------------------------------------*/
/*
header {
	width: 100%;
	padding: 30px 2%;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	justify-content: space-between;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	align-items: center;
	position: fixed;
	top: 0;
	transition: .3s;
	z-index: 100;
}
header .logo {
	display: inline-block;
}
header .logo a {
	display: block;
}
header .logo img {
	height: 60px;
}
header.scroll {
	background: rgba(0,0,0,.3);
}

*/
/* nav
------------------------------------------------------------*/
nav ul {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: flex;
}
nav li:not(:last-child) {
	margin-right: 35px;
}
nav li a {
	font-family: 'Oswald', sans-serif;
	text-decoration: none;
	display: inline-block;
	letter-spacing: 1.5px;
	transition: .3s;
}
nav li a:hover {
	opacity: .8;
}
nav li a.ac {
	position: relative;
}
nav li a.ac::after {
	content: "";
	width: 100%;
	height: 2px;
	background: #fff;
	display: block;
	position: absolute;
	left: -1px;
	bottom: -5px;
}


/* pagetop
------------------------------------------------------------*/
.pagetop {
	display: none;
	position: fixed;
	right: 2%;
	bottom: 60px;
	z-index: 10;
}
.pagetop a {
	padding-top: 8px;
	display: block;
	position: relative;
	transition: .3s;
}
.pagetop a:hover {
	opacity: .6;
}
.pagetop a::before {
	content: "";
	width: 16px;
	height: 1px;
	background: rgba(255,255,255,.8);
	display: block;
	position: absolute;
	top: 0;
	left: 50%;
	-webkit-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
}
.pagetop span {
	width: 15px;
	height: 15px;
	border-left: 1px solid rgba(255,255,255,.8);
	border-top: 1px solid rgba(255,255,255,.8);
	display: inline-block;
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}


@media screen and (max-width:600px) {
	
	* {
		-webkit-appearance: none;
	}
	body {
		font-size: 16px;
		min-width: inherit;
		padding-bottom: 20px;
		/*overflow-x: hidden;*/
		letter-spacing: 0;
	}
	
	
	/* header
	------------------------------------------------------------*/
	header {
		background: rgba(255,255,255,1);
		padding: 10px 5%;
		z-index: 100;
	}
	header .logo img {
		height: 42px;
	}
	header.scroll {
		background: rgba(0,0,0,.2);
	}
	
	
	/* nav
	------------------------------------------------------------*/
	nav ul {
		width: 100%;
		display: none;
		position: absolute;
		top: 62px;
		left: 0;
	}
	nav li {
		border-top: 1px dotted rgba(255,255,255,.2);
		text-align: center;
	}
	nav li:not(:last-child) {
		margin-right: 0;
	}
	nav li a {
		background: rgba(0,0,0,.8);
		padding: 8px;
		display: block;
	}
	#menuBtn {
		width: 26px;
		height: 22px;
		background: #eee;
		border-top: 10px solid #111;
		border-bottom: 10px solid #111;
		position: relative;
		transition: all 0.3s;
	}
	#menuBtn::before {
		content: '';
		position: absolute;
		width: 26px;
		height: 2px;
		background: #eee;
		top: -9px;
		right: 0;
		transition: all 0.3s;
	}
	#menuBtn::after {
		content: '';
		position: absolute;
		width: 26px;
		height: 2px;
		background: #eee;
		bottom: -9px;
		right: 0;
		transition: all 0.3s;
	}
	#menuBtn.active {
		background: #111;
	}
	#menuBtn.active::before {
		-moz-transform: rotate(-135deg);
		-webkit-transform: rotate(-135deg);
		transform: rotate(-135deg);
		top: 0;
		right: 0;
	}
	#menuBtn.active::after {
		-moz-transform: rotate(135deg);
		-webkit-transform: rotate(135deg);
		transform: rotate(135deg);
		bottom: 0;
		right: 0;
	}
}
