@charset "utf-8";

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

@font-face {
	font-family: 'Roboto_Condensed';
	font-weight: 400;
	font-style: normal;
	src: url('../font/Roboto_Condensed/RobotoCondensed-Regular.ttf') format('truetype');
}
@font-face {
	font-family: 'Roboto_Condensed';
	font-weight: 700;
	font-style: normal;
	src: url('../font/Roboto_Condensed/RobotoCondensed-Bold.ttf') format('truetype');
}

/* -------------------------------------------------
	reset
------------------------------------------------- */

* {
	margin: 0;
	padding: 0;
	vertical-align: top;
}

html {
}

body {
	line-height: 1;
	-webkit-text-size-adjust: 100%;
	position: relative;
	font-family: "Yu Gothic Medium", "游ゴシック Medium", "Yu Gothic Medium", "YuGothic Medium", "游ゴシック", "メイリオ", Meiryo, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", sans-serif;
	background: #000;
}

p, h1, h2, h3, h4, th, td, li, dt, dd, figcaption, input, select, textarea {
	letter-spacing: 0.07em;
}

img {
	border: none;
	max-width: 100%;
	height: auto;
}

iframe {
	border: none;
}

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


ul, ol {
	list-style-type: none;
}

main {
	width: 100%;
	overflow: hidden;
	display: block;
}

@media print, screen and (min-width:768px) {
	a:hover {
		opacity: 0.5;
	}
	a,
	a img {
		transition: opacity 0.3s ease-out;
	}
	a:hover img {
		opacity: 0.7;
	}
}

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

/* -------------------------------------------------
	box
------------------------------------------------- */

.box800 {
	width: 96%;
	max-width: 800px;
	margin: 0 auto;
	position: relative;
}

@media screen and (max-width:767px) {
	.box800 {
		width: auto;
	}
	.box-sp {
		width: calc(980 / 1140 * 100%);
		position: relative;
	}
}

/* -------------------------------------------------
	h
------------------------------------------------- */

.h-normal {
	margin-bottom: 55px;
	color: #fff;
	font-family: 'Baloo_Bhaina';
	font-size: 38px;
	letter-spacing: 1px;
	text-align: center;
	font-weight: normal;
}

@media screen and (max-width:767px) {
	.h-normal {
		margin-bottom: 30px;
		font-size: 30px;
	}
}

/* -------------------------------------------------
	header
------------------------------------------------- */

header .logo {
	width: 90px;
	overflow: hidden;
	display: block;
	position: fixed;
	left: 60px;
	top: 60px;
	z-index: 90;
}
header .logo img {
	width: 100%;
}

#menu-btn {
	width: 40px;
	height: 35px;
	position: fixed;
	right: 60px;
	top: 60px;
	z-index: 110;
	display: block;
}
#menu-btn span {
	height: 4px;
	background: #00d6b3;
	position: absolute;
	transform: translate(-50%,-50%) rotate(-35deg);
	transition: all 0.3s ease-out;
}
#menu-btn span:nth-child(1) { width: 36%; left: 20%; top: 10%; }
#menu-btn span:nth-child(2) { width: 100%; left: 50%; top: 50%; }
#menu-btn span:nth-child(3) { width: 36%; left: 80%; top: 90%; }
#menu-btn span:nth-child(4) { width: 100%; left: 50%; top: 50%; transform: translate(-50%,-50%) rotate(45deg); opacity: 0; }

.on #menu-btn span {
	background: #000;
	width: 100% !important;
	left: 50% !important;
	top: 50% !important;
}
.on #menu-btn span:nth-child(1) { opacity: 0; }
.on #menu-btn span:nth-child(2) { transform: translate(-50%,-50%) rotate(-45deg); }
.on #menu-btn span:nth-child(3) { opacity: 0; }
.on #menu-btn span:nth-child(4) { opacity: 1; }

#menu-panel {
	width: 440px;
	height: 100vh;
	background: #00d6b3;
	position: fixed;
	right: -440px;
	top: 0;
	z-index: 100;
	transition: right 0.3s ease-out;
}
.on #menu-panel {
	right: 0;
}
#menu-panel .inner {
	height: 100%;
	padding: 230px 0 0 60px;
	box-sizing: border-box;
}
#menu-panel ul li {
	font-family: 'Roboto_Condensed';
	font-weight: 700;
	font-size: 48px;
}
#menu-panel ul li + li {
	margin-top: 0.5em;
}

@media print, screen and (min-width:768px) {
	
}

@media screen and (max-width:767px) {
	header .logo {
		left: 6vw;
		top: 6vw;
	}
	header .logo img {
		width: calc(140 / 1140 * 100vw);
	}

	#menu-btn {
		width: 8vw;
		height: 6vw;
		right: 6vw;
		top: 9vw;
	}

	#menu-panel {
		width: 76vw;
		right: -76vw;
	}
	#menu-panel .inner {
		padding: 40vw 0 0 8vw;
	}
	#menu-panel ul li {
		font-size: 8vw;
	}
}

/* -------------------------------------------------
	footer
------------------------------------------------- */

footer {
	padding: 115px 0 155px;
	text-align: center;
}
footer .logo {
	display: inline-block;
}
footer .logo img {
	width: 280px;
}
footer .copyright {
	margin-top: 60px;
	font-size: 14px;
	color: #fff;
}

@media screen and (max-width:767px) {
	footer {
		padding: 15vw 0;
	}
	footer .logo img {
		width: 50vw;
	}
	footer .copyright {
		margin-top: 6vw;
		font-size: 3.4vw;
	}
}

/* -------------------------------------------------
	responsive
------------------------------------------------- */

@media print, screen and (min-width:768px) {
	.pc-none {
		display: none !important;
	}
}

@media screen and (max-width:767px) {
	.sp-none {
		display: none !important;
	}
}

/* -------------------------------------------------
	print
------------------------------------------------- */

@media print {
	body {
		width: 980px !important;
	}
}
