@charset "UTF-8";
html,body {
	height: 100%;
}
body {
	margin: 0;
	padding: 0;
}
p,h1,h2,h3,h4,h5,h6,ul,ol,dl,dt,dd,div,section,li,table,th,td,tr,form,iframe {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
li {
	list-style-type: none;
}
img {
	vertical-align: bottom;
	width: 100%;
	height: auto;
}

.ld-overlay {
  position: fixed;
	color: #333;;
	font-size: 12px;
	letter-spacing: 0.4pt;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
	text-indent: -9999px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #FFF;
  z-index: 100;
  overflow: hidden;
}

#wrap {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
}
#site-title {
	width: 860px;
	margin: auto auto 86px;
}
.snsbtns {
	display: flex;
	flex-wrap: wrap;
	width: 180px;
	margin: 0 auto auto;
	justify-content: center;
}
.snsbtns-txt {
	width: 180px;
	padding-top: 10px;
	color: #221815;
	font-size: 14px;
	font-family: Tahoma, Geneva, "sans-serif";
	letter-spacing: 0.6pt;
	text-align: center;
}
.snsbtns-txt span {
	color: #df0050;
	margin-right: 2px;
}

.btn-twitter,
.btn-instagram {
	width: 65px;
	height: 65px;
}
.btn-twitter a {
	display: block;
	width: 100%;
	background: url("http://joshikoro.com/images/teaser/btn_twitter_icon.png") no-repeat left top;
	background-size: 65px;
	transition: all 0.4s;
}
.btn-instagram a {
	display: block;
	width: 100%;
	background: url("http://joshikoro.com/images/teaser/btn_instagram_icon.png") no-repeat left top;
	background-size: 65px;
	transition: all 0.4s;
}
.snsbtns li a img {
	opacity: 0;
	transition: all 0.4s;
}
.snsbtns li a:hover {
	background: #000;
	border-radius: 2px;
}
.snsbtns li a:hover img {
	opacity: 1;
}
.copyright {
	font-size: 14px;
	text-align: center;
	margin: 0 auto 60px;
}

#site-title,
.snsbtns,
.copyright {
	opacity: 0;
}

@media screen and (max-width: 920px) {
	#site-title {
		width: 90%;
		padding-top: 30px;
		margin: auto auto 30px;
	}
	.snsbtns {
		margin: 0 auto auto;
	}
	.btn-twitter a:hover {
		background: url("http://joshikoro.com/images/teaser/btn_twitter_icon.png") no-repeat left top;
		background-size: 65px;
	}
	.btn-instagram a:hover {
		background: url("http://joshikoro.com/images/teaser/btn_instagram_icon.png") no-repeat left top;
		background-size: 65px;
	}
	.snsbtns li a:hover img {
		opacity: 0;
	}
	.snsbtns-txt {
		padding-top: 5px;
	}
	.copyright {
		font-size: 13px;
		margin: 0 auto 30px;
	}
}

.is_loaded #site-title {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
	-webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.is_loaded .snsbtns {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
	-webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.is_loaded .copyright {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
	-webkit-animation-delay: 1.4s;
  animation-delay: 1.4s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}


@-webkit-keyframes scaleLeft {
  from {
    width: 100%;
  }
  to {
    width: 0;
  }
}
@keyframes scaleLeft {
  from {
    width: 100%;
  }
  to {
    width: 0;
  }
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes moveLeft {
  from {
		transform: translateX(40px);
    opacity: 0;
  }
  to {
		transform: translateX(0px);
    opacity: 1;
  }
}

@keyframes moveLeft {
  from {
		transform: translateX(40px);
    opacity: 0;
  }
  to {
		transform: translateX(0px);
    opacity: 1;
  }
}
@-webkit-keyframes moveBottom {
  from {
		transform: translateY(-40px);
    opacity: 0;
  }
  to {
		transform: translateY(0px);
    opacity: 1;
  }
}

@keyframes moveBottom {
  from {
		transform: translateY(-40px);
    opacity: 0;
  }
  to {
		transform: translateY(0px);
    opacity: 1;
  }
}

.fadein {
  opacity : 0;
  transform: translateY(40px);
  transition: all 1.6s;
}
.fadeinLeft {
  opacity : 0;
  transform: translateY(40px) translateX(-40px);
  transition: all 1.6s;
}
.fadeinRight {
  opacity : 0;
  transform: translateY(40px) translateX(40px);
  transition: all 1.6s;
}