.htmlFixed{
	touch-action: none;
}
body{
	overflow-x: hidden;
	margin: 0;
	padding: 0;
	height: 100vh;
	color: #fff;
	font-size: 16px;
	font-family:"Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
	letter-spacing: 1px;
}
main{
	margin: -100px 0 0;
}
section{
	position: relative;
	width: 100%;
}

h2{
	margin: 0 0 10px;
	padding: 15vw 0 0;
	text-align: center;
}
.h2txt{
	text-align: center;
}
.h2txt span{
	display: inline-block;
	margin: 0 auto;
	padding: 4px 12px;
	background: #fff;
	color: #333;
	font-weight: bold;
}
.bg{
	position: absolute;
	top: 0;
	z-index: -1;
	width: 100vw;
	min-width: 1200px;
	filter: brightness(50%);
}
.bg *{
	width: 100%;
}
.flex{
	display: flex;
}
.mt50{
	margin-top: 50px !important;
}
.mb50{
	margin-bottom: 50px !important;
}
.logo{
	display: block;
	margin: 50px auto 10px;
	text-align: center;
}
@media screen and (max-width: 800px) {
	h2{
		margin: 0 0 10px;
		padding: 30vw 0 0;
		text-align: center;
	}
	.sp_none,.pcbr{
		display: none;
	}
	.bg{
		min-width: auto;
		filter: none;
	}
}
@media screen and (min-width: 800px) {
	.pc_none,.spbr{
		display: none;
	}
}



/* ------------------------------ HEADER */
header{
	position: relative;
	z-index: 9999;
	display: flex;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	padding: 10px 0;
	height: 100px;
}
header > div{
	display: flex;
	justify-content: center;
	align-items: center;
}
header a{
	margin: 0 30px;
	color: #fff;
	text-decoration: none;
}
@media screen and (max-width: 800px) {
	header{
		flex-direction: column;
	}
	header > div{
		justify-content: space-around;
	}
	header a{
		margin: 0 10px;
	}
	.sp_fxnav{
		display: flex;
		justify-content: space-between;
		align-items: center;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 9999;
		width: 100%;
		background: rgba(0,0,0,0.92);
	}
	.sp_fxnav_inner{
		display: flex;
		justify-content: space-between;
		align-items: center;
		position: relative;
		top: 0;
		left: 0;
		z-index: 9999;
		width: 100%;
		background: rgba(0,0,0,0.92);
	}
	.sp_fxnav img,.sp_fxnav_inner img{
		display: block;
		margin: 4px 0 0 10px;
		width: 20vw;
	}
	.sp_nav_btn{
		position: relative;
		width: 64px;
		height: 64px;
		background: url(/images/home/hbg.png);
	}
	.sp_nav_btn i{
		display: block;
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		width: 40px;
		height: 1px;
		background: #fff;
		transition: 0.2s;
	}
	.sp_nav_btn i:nth-child(1){
		top: 20px;
	}
	.sp_nav_btn i:nth-child(2){
		top: 50%;
		transform: translate(-50%,-50%);
	}
	.sp_nav_btn i:nth-child(3){
		bottom: 20px;
	}
	.show i:nth-child(1){
		transform: translate(-20px,12px) rotate(45deg);
	}
	.show i:nth-child(2){
		opacity: 0;
	}
	.show i:nth-child(3){
		transform: translate(-20px,-12px) rotate(-45deg);
	}
	.sp_nav .sp_nav_inner{
		position: fixed;
		top: 0;
		z-index: 9999;
		left: 0;
		opacity: 0;
		visibility: hidden;
		width: 100%;
		height: 100vh;
		background: rgba(0,0,0,0.92);
		transition: 0.2s;
	}
	.show .sp_nav_inner{
		opacity: 1;
		visibility: visible;
	}
	#sp_gnav{
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	#sp_gnav a{
		padding: 20px;
		border-bottom: 1px solid #222;
		width: 100%;
		font-size: 16px;
		text-align: center;
	}
	#sp_gnav ul li a{
		display: block;
		padding: 20px 0;
		width: 100%;
		font-size: 20px;
		color: #fff;
	}
	#sp_gnav ul li a span{
		display: block;
		font-size: 14px;
	}
}
@media screen and (min-width: 800px) {
	#sp_fxnav{
		display: none !important;
	}
}
@media screen and (max-width: 400px) {
	header a{
		margin: 0 10px;
		font-size: 12px;
	}
}



/* ------------------------------ FOOTER */
footer{
	padding: 50px 0;
	background: #000;
}
.footer_inner{
	margin: 0 auto;
	width: 100%;
	max-width: 1200px;
}
.footer_inner img{
	margin: 0 0 30px 0;
}
.footer_inner a{
	margin: 0 30px 0 0;
	color: #fff;
	text-decoration: none;
}
.copyright{
	text-align: right;
}
@media screen and (max-width: 800px) {
	footer{
		text-align: center;
	}
	.footer_inner a{
		margin: 0 10px;
		color: #fff;
		text-decoration: none;
	}
	.copyright{
		text-align: center;
	}
}



/* ------------------------------ MV */
#mv{
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	height: 600px;
}
#mv div{
	margin: 10vw 0 0;
	font-size: 32px;
	text-align: center;
	font-weight: bold;
}
@media screen and (max-width: 800px) {
	#mv{
		height: 150vw;
	}
	#mv div{
		margin: 30vw 0 0;
		font-size: 24px;
	}
}



/* ------------------------------ ABOUT */
#about{
}
#about .flex{
	justify-content: center;
	align-items: center;
	margin: 80px 0 0;
}
#about .flex div{
	margin: 0 0 0 -100px;
	font-weight: bold;
}
@media screen and (max-width: 800px) {
	#about{
		position: relative;
		height: auto;
	}
	#about .bg{
		position: relative;
		z-index: 0;
		width: 100vw;
	}
	#about > div{
		position: absolute;
		top: 0;
		left: 50%;
		z-index: 1;
		transform: translateX(-50%);
		width: 94vw;
		height: 180vw;
	}
	#about .flex{
		position: absolute;
		bottom: 20px;
		left: 0;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		margin: 0;
	}
	#about .flex img{
		display: none;
	}
	#about .flex div{
		margin: 0;
	}
}



/* ------------------------------ GALLERY */
#gallery{
}
#gallery .flex{
	justify-content: center;
	flex-wrap: wrap;
	margin: 0 auto;
	width: 100%;
	max-width: 1200px;
}
#gallery .flex img{
	width: 100%;
	max-width: 300px;
	margin: 10px 20px 0;
}
#gallery .flex p{
	width: 100%;
	height: 1.4em;
	max-width: 300px;
	margin: 2px 20px;
	text-align: center;
}
@media screen and (max-width: 800px) {
	#gallery{
		margin: -20vw 0 0;
		background: #000;
	}
	#gallery .flex p{
		width: 100%;
		height: 1.4em;
		max-width: 300px;
		margin: 10px auto 20px;
	}
	#gallery .flex img{
		max-width: none;
		margin: 0;
	}
}


/* ------------------------------ MENU */
#menu{
}
#menu .menuWrap{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin: 20px auto 0;
	padding: 10px 0;
	border-bottom: 2px solid #fff;
	width: 100%;
	max-width: 1200px;
	font-size: 14px;
}
#menu .menuWrap h3{
	margin: 0 50px 0 0;
	padding: 0;
	border-right: 1px solid #fff;
	width: 200px;
	font-size: 18px;
	text-align: center;
}
#menu .menuWrap h3 span{
	display: block;
	font-size: 12px;
	font-weight: normal;
}
#menu .menuWrap div{
	display: flex;
	flex-wrap: wrap;
	flex: 1;
	margin: 8px 0;
	padding: 4px 20px 8px;
}
#menu .menuWrap p{
	margin: 4px 30px 4px 0;
}
@media screen and (max-width: 800px) {
	#menu{
		margin: -20vw 0 0;
	}
	#menu .bg *{
		height: auto;
		max-height: 2800px;
	}
	#menu .menuWrap{
		flex-direction: column;
		width: 94vw;
	}
	#menu .menuWrap h3{
		margin: 30px 0 0;
		padding: 0 0 10px;
		/*border-bottom: 1px solid #fff;*/
		border-right: none;
		width: 80vw;
	}
	#menu .menuWrap h3:after{
		content: "";
		display: block;
		margin: 10px auto 0;
		width: 40px;
		height: 1px;
		background: #fff;
	}
	#menu .menuWrap div{
		justify-content: center;
		flex: 1;
		margin: 4px 0;
		padding: 4px 20px 8px;
	}
	#menu .menuWrap p{
		margin: 4px 15px;
	}
}



/* ------------------------------ ACCESS */
#access{
	display: flex;
	align-items: center;
	background: linear-gradient(rgba(0,0,0,0) 40%,#000 60%);
}
#access .bg{
	position: relative;
	top: 0;
	left: 50%;
	z-index: 0;
	transform: translateX(-50%);
	width: 100%;
	min-width: auto;
	max-width: 1600px;
	filter: none;
}
#access > div{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
	max-width: 1200px;
	text-align: left;
}
#access > div h2{
	padding: 0;
	text-align: left;
}
#access > div .h2txt{
	text-align: left;
	margin-bottom: 10px;
}
#access > div a{
	color: #fff;
}
@media screen and (max-width: 800px) {
	#access{
		display: flex;
		justify-content: flex-start;
		align-items: flex-start;
	}
	#access .bg{
		position: relative;
	}
	#access > div{
		position: absolute;
		top: 0;
		left: 0;
		transform: none;
		margin: 38vw 0 0;
		text-align: left;
	}
	#access > div{
		text-align: center;
	}
	#access > div .h2txt{
		text-align: center;
	}
	#access > div h2{
		display: block;
		text-align: center;
	}
}