@charset "UTF-8";

/* ローディングベース */
  
body{
	position: relative;
}
#loader-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #1D1D1D;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9001;
    user-select: none;
}
#loader {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #4b4b4b;
}


/* ローディングバーアニメ */

.border:before{
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	border-bottom: solid 2px #cbcbcb;
	animation: border_anim 0.5s linear forwards;
}

@keyframes border_anim {
	0%{
		width: 0%;
	}
	100%{
		width: 100%;
	}
}

@media screen and (min-width:641px) {
.border{
	position: relative;
	font-size: 0.2rem;
	display: block;
	height: 2px;
	width: 340px;
}

}

@media screen and (max-width:640px) {
.border{
	position: relative;
	font-size: 0.2rem;
	display: block;
	height: 2px;
	width: 240px;
}

}