@charset "utf-8";


html,
body {
	overflow-x: hidden;
}


#kv {
	position: relative;
	height: 100vh;
}

#site a {
	background-image: url(../img/logo_w.png);
}

#wrap > header {
	position: absolute;
	width: 100%;
	left: 0;
	top: 0;
	z-index: 1000;
}

#wrap > footer {
	position: relative;
	z-index: 10000;
}

#wrap > main {
	position: relative;
	min-height: calc(2800px - 100vh);
	z-index: 100;
	padding: 60px 0 0;
	background: rgba(255,255,255,0.5);	
}
@media screen and (max-width:767px) {
	#wrap > main {
		padding-top: 30px;
	}
}



#slide {
	position: absolute;
	width: 100vw;
	height: 100vh;
	left: 0;
	top: 0;
	z-index: 1;
	
	opacity: 0.50;
}

#world {
	position: absolute;
	width: 5000px;
	height: 2800px;
	z-index: 10;
	
	will-change: transform;
	transition: transform 2000ms ease-out;
}

#world-bg {
	position: absolute;
	width: 5000px;
	height: 2800px;
	left: 0;
	top: 0;
	z-index: 1;
	background: url(../img/map.png) 0 0 no-repeat;
	
	mix-blend-mode: difference;
	will-change: transform;
	transition: transform 2000ms ease-out;
}


@media screen and (max-width:767px) {
	#world-bg {
		background-image: url(../img/map.svg);
	}
}



#caption {
	position: absolute;
	box-sizing: border-box;
	width: 100%;
	height: 108px;
	left: 0;
	bottom: 0;
	z-index: 5000;
	padding: 0 20px;
	color: #fff;
	line-height: 1;
}
#caption h2 {
	font-size: 18px;
	font-family: "HelveticaNeue-Bold", Helvetica, Arial, sans-serif;
}
#caption h3 {
	padding: 6px 0 6px;
	font-size: 40px;
	font-family: "HelveticaNeue-Thin", Helvetica, Arial, sans-serif;
}
#caption .date {
	margin-left: 10px;
	font-size: 18px;
	font-family: "HelveticaNeue-Light", Helvetica, Arial, sans-serif;
}
#caption h4 {
	font-size: 15px;
	font-family: "HelveticaNeue-Medium", Helvetica, Arial, sans-serif;
}




#dots {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 10;
	
	display: none;
}

#dots .dot {
	position: absolute;
}
#dots .dot i {
	position: absolute;
	width: 10px;
	height: 10px;
	left: -5px;
	top: -5px;
	background: #fff;
	border-radius: 10px;
}





#circles {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 1000;
}

#circles .circle {
	position: absolute;
}
#circles .circle div {
	position: absolute;
	box-sizing: border-box;
	width: 84px;
	height: 84px;
	left: -40px;
	top: -40px;
	border: 2px solid #fff;
	border-radius: 80px;
}
#circles .circle div em {
	position: absolute;
	width: 28px;
	height: 28px;
	right: -6px;
	top: -6px;
	line-height: 28px;
	text-align: center;
	color: #fff;
	font-size: 12px;
	font-weight: bold;
	font-family: Helvetica, Arial, sans-serif;
	background: #000;
	border-radius: 14px;
}

#circles figure {
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-position: 50% 50%;
	background-size: cover;
	
	border-radius: 40px;
	overflow: hidden;
}


#circles span {
	position: absolute;
	box-sizing: border-box;
	display: block;
	width: 84px;
	height: 84px;
	left: -40px;
	top: -40px;
	background: #fff;
	border: 2px solid #fff;
	border-radius: 80px;
}



#drawing {
	position: absolute;
	z-index: 20;
}



#arrows {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 20;
}
#arrows .arrow {
	position: absolute;
	height: 2px;
}
#arrows b {
	position: absolute;
	display: block;
	width: 100%;
	height: 2px;
	left: 0;
	top: 0;
	background: #fff;
	transform-origin: left center;
}
#arrows i {
	position: absolute;
	width: 8px;
	height: 10px;
	right: -2px;
	top: -4px;
	background: url(../img/arrow.png) 0 0 no-repeat;
	background-size: 8px auto;
}





#slide figure {
	position: absolute;
	width: 100%;
	height: 100%;
	background-position: 50% 50%;
	background-size: cover;
	
	transition: all 2000ms ease-out;
}
#slide figure.ready {
	visibility: hidden;
}
#slide figure {
	opacity: 0;
}
#slide figure.show {
	opacity: 1;
}


#wrap {
	visibility: hidden;
}


body.ready #kv {
	background: #000;
}
body.ready #wrap {
	visibility: visible;
}




#circles div {
	visibility: hidden;
	transform: scale(0.125);
	transition: all 500ms ease-out;
}
#circles div em {
	transform: scale(0);
	transition: all 300ms ease-out 600ms;
}
#circles span {
	transform: scale(0.125);
	transition: all 500ms ease-out;
}




#circles .active div {
	visibility: visible;
	transform: scale(1);
}
#circles .active div em {
	transform: scale(1);
}
#circles .active span {
	opacity: 0;
	transform: scale(1);
}
#circles .bye span {
	opacity: 0;
	transform: scale(0);
}




#arrows {
	transition: all 1000ms ease-out;
}
#arrows .arrow b {
	width: 0px;
	transition: all 1000ms ease-out;
}
#arrows .arrow i {
	visibility: hidden;
}


#arrows .arrow.active b {
	width: 100%;
}
#arrows .arrow.active i {
	visibility: visible;
}


#arrows.resume {
	opacity: 0;
	transition-duration: 0ms;
}



body.first-move #world {
	transition-duration: 0ms;
}


