* {
	box-sizing: border-box;
}
html {
	
}
body {
	padding: 0;
	margin: 0;
}
/*
@media (max-width: 1023px) {
	.hidden-sp {
		display: none !important;
	}
}
*/
#header {
	position: absolute;
	z-index: 1;
	top: -300px;
	opacity: 0;
	
}

#header.show {
	transition: .5s ease-out;
	top: 0;
	opacity: 1;
}

#loading {
	position: fixed;
	top:0;
	left: 0;
	width: 100vw;
	height: 100vh;
	opacity: 1;
	z-index: 10000;
	background: #303BA9;
}

@keyframes rotation {
	0% {
		transform:rotate(0deg);/* アニメーションの進みが0%の時の状態 */
	}
	100% {
		transform:rotate(360deg);/* アニメーションの進みが100%の時の状態 */
	}
}
#loading div {
	position: absolute;
	display: block;
	top: 50%;
	left: 50%;
	width: 80px;
	height: 80px;
	margin-top: -40px;
	margin-left: -40px;
	text-align: center;
}
#loading div img{
	position: absolute;
	display: block;
	transform-origin: 40px 40px;
	animation: rotation 1.5s linear infinite;
}
#loading div:after {
	content: 'LOADING';
	position: absolute;
	bottom: -2rem;
	color: #fff;
	width: 100%;
	left: 0;
	text-align: center;
}

#wrap {
	position: relative;
/*	overflow: scroll; */
	width: 100%;
	/* height: 100vh; */
	height: calc(100vw * (938 / 750));
	opacity: 1;
	transition: opacity 1s ease-out;
}
#wrap.hide,
#loading.hide {
	transition: opacity 1s ease-out;
	opacity: 0;
}
.item {
	position: relative;
	height: 1px;
	width: 1px;
}
.item .shadow{
	position: absolute;
	display: block;
	width: 20px;
	height: 12px;
	top: -12px;
	left: -10px;
	background: rgba(0,0,0,.4);
	mix-blend-mode: multiply;
	border-radius: 100%;
	transition: all .2s ease-in;
}

.item:hover .shadow{
	width: 50px;
	left: -25px;
	transition: all .2s ease-in;
}
.item .normal{
	position: absolute;
	display: block;
	left: -30px;
	top: -240px;
	opacity: 0;
	width: 60px;
	height: 80px;
	background: url('../img/point.png') center top no-repeat;
	background-size: 100%;
}
.item.show .normal {
	transition: all .5s ease-in;
	top: -80px;
	opacity: 1;
	/* display: none; */
}
.item:hover .normal {
	transition: all .2s ease-out;
	transform-origin: 50% 60px;
	transform: scale(0.1);
	opacity: 0;
}
.item .hover{
	transition: all .2s ease-out;
	position: absolute;
	display: block;
	left: calc(-50px * 0.5);
	top: calc(-114px * 0.5);
	opacity: 0;
	width: calc(100px * 0.5);
	height: calc(114px * 0.5);
	background: url('../img/point_hover.png') center top no-repeat;
	background-size: 100%;
}
.item:hover .hover {
	transition: all .2s ease-in;
	transform-origin: 50% 100px;
	transform: scale(1);
	left: -52px;
	top: -135px;
	width: 100px;
	height: 114px;
	opacity: 1;
}
.item .hover .text {
	background: url('../img/arrow.png') left center no-repeat;
	background-size: 10px;
	padding-left: 12px;
	height: 4em;
	width: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	
	left: 50%;
	top: 48px;
	margin-left: -35px;
	margin-top: -24px;
	font-weight: bold;
	line-height: 1.4rem;
	font-size: 14px;
	text-align: center;
}
.item .bg{
	position: absolute;
	display: block;
	left: -50px;
	top: -84px;
	width: 100px;
	height: 114px;
}
canvas {
	position: absolute;
	background: #9ac0ff url('../img/sky.jpg') center -200px no-repeat;
	background-size: cover;
	/* height: 100%; */
	width: 100%;
	left: 0;
	/* min-width: 1440px; */
}
#is_sp {
	position: absolute;
	right: 0;
}
@media (min-width: 1024px) {
	body{
		/* background: url('../img/sea.png') center bottom no-repeat; */
		/* background-size: 100%; */
	}
	#is_sp {
		position: absolute;
		left: 0;
	}
	#wrap {
		width: 100%;
		height: 100vh;
		background: #303BA9;
	}
	canvas {
		background-size: 100%;
		/* top: -100px; */
		/* height: 100%; */
		min-width: 1024px;
	}
}
@media (max-width: 1023px) {
	#wrap {
	top: 0px;
	overflow: hidden;
	}
}