@charset "utf-8";

.l-headerInner {
	position: relative;
	width: 100%;
	height: 48px;
	background: #fff;
}
.is-open{
	height: 100%;
	z-index: 99999;
}

.is-open .l-headerInner{
	background: #fff;
}
.c-txtLink--blank:after{
	font-size: 13px;
	font-size: 1.3rem;
}
.p-fullSlide__link{
	display: block;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.p-fullSlide__link:hover{
	opacity: 1;
}

.screen-loader{
	position: fixed;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 99998;
	background: #fff;
}

.screen-loaderInner{
	position: fixed;
	width: 201px;
	z-index: 99999;
	top:50%;
	left:50%;
	-webkit-transform:translate(-50%,-50%);
	    -ms-transform:translate(-50%,-50%);
	        transform:translate(-50%,-50%);
}
.screen-loader__logo{
	height: 36px;
}
.screen-loader__bar{
	display: block;
	text-align: center;
	margin-top: 30px;
}

@-webkit-keyframes ball-beat {
	50% {
		opacity: 0.2;
		-webkit-transform: scale(0.6);
		transform: scale(0.6);
	}

	100% {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1);
	}

}

@keyframes ball-beat {
	50% {
		opacity: 0.2;
		-webkit-transform: scale(0.6);
		transform: scale(0.6);
	}

	100% {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1);
	}

}

.screen-loader__bar > span{
	background-color: #ffa8a8;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	margin: 4px;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	display: inline-block;
	-webkit-animation: ball-beat 1s 0s infinite linear;
	animation: ball-beat 1s 0s infinite linear;
}

.screen-loader__bar > span:nth-child(2n-1) {
	-webkit-animation-delay: -0.5s !important;
	animation-delay: -0.5s !important;
}

@media print, screen and (min-width:640px) {
	.l-header {
		height: 70px;
	}

	.l-headerInner {
		position: absolute;
		top: 0;
		left: 0;
		height: 70px;
		border: none;
	}
	.screen-loaderInner{
		width: 345px;
	}
	.screen-loader__logo{
		height: 63px;
	}
	.screen-loader__bar > span{
		width: 15px;
		height: 15px;
		margin: 8px;
	}

}