.menuPc{
	width: 100%;
	background: #00b1bb;
	position: fixed;
	top: 0;
	transition: .5s;
}
.menuPc img{
	width: 100%;
}
.menuPcScroll{
	background: rgba(0,177,187,0.80);
}
.menuPcBox{
	margin: 0 auto;
	width: 1080px;
	display: flex;
	flex-direction: row;
	justify-content: center;
}
.menuPcTop, .menuPcStory, .menuPcInformation, .menuPcCharacter{
	width: 20%;
	border-left: 1px solid #fff;
	display: flex;
	justify-content: center;
}
.menuPc>.menuPcBox>.menuPcTop, .menuPc>.menuPcBox>.menuPcStory, .menuPc>.menuPcBox>.menuPcInformation, .menuPc>.menuPcBox>.menuPcCharacter{
	padding: 20px;
	transition: .5s;
}
.menuPcScroll>.menuPcBox>.menuPcTop, .menuPcScroll>.menuPcBox>.menuPcStory, .menuPcScroll>.menuPcBox>.menuPcInformation, .menuPcScroll>.menuPcBox>.menuPcCharacter{
	padding: 2px;
}
.menuPcCharacter{
	border-right: 1px solid #fff;
}
.menuPc>.menuPcBox>.menuPcTop:hover, .menuPc>.menuPcBox>.menuPcStory:hover, .menuPc>.menuPcBox>.menuPcInformation:hover, .menuPc>.menuPcBox>.menuPcCharacter:hover{
	background: rgba(255,255,255,1);
	cursor: pointer;
}
.menuPcSns{
	width: 8%;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.menuPcSns>div:last-child{
	margin: 0 10px 0 10%;
}

.pmark{
	width: 45px;
	position: fixed;
	top: 0;
	left: 10px;
	transition: .5s;
}
.pmark img{
	width: 100%;
}
.pmarkScroll{
	top: 40px;
}
.menuSp{
	display: none;
}
@media screen and (max-width: 1080px){
	.menuSp{
		width: 100%;
		display: block;
		position: fixed;
		top: 0;
	}
	.menuSpBar{
		width: 100%;
		height: 60px;
	    background: #00b1bb;
		display: flex;
		flex-direction: row;
	}
	.pmarkSp{
		padding: 3px;
		width: 50%;
	}
	.pmarkSp img{
		height: 100%;
	}
	.burgerMenu{
		padding: 0 20px 0 0;
		width: 50%;
		display: flex;
		flex-direction: column;
		align-items: flex-end;
	}
	.burgerMenu>div{
		width: 50px;
		height: 5px;
		background: #fff;
		border-radius: 2px;
		transition: all .2s;
	}
	.burgerMenu>div:nth-child(1){
		margin: 12px 0 10px;
	}
	.burgerMenu>div:nth-child(2){
		margin: 0 0 10px;
	}
	.burgerMenuOpen>div:nth-child(1){
		-webkit-transform: rotate(-30deg);
		transform: translateY(15px) rotate(225deg);
	}
	.burgerMenuOpen>div:nth-child(2){
		opacity: 0;
	}
	.burgerMenuOpen>div:nth-child(3){
		-webkit-transform: rotate(-30deg);
		transform: translateY(-15px) rotate(-225deg);
	}
	.menuSpBox{
		width: 100%;
		height: calc(100% - 59px);
		background: #00b1bb;
		position: fixed;
		top: 59px;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
	.menuSpBox>div{
		padding: 20px 0;
		width: 100%;
		display: flex;
		justify-content: center;
		border-top: 1px solid #fff;
	}
	.menuSpBox>div:last-child{
		border-bottom: 1px solid #fff;
	}
}