header{
	background-image: url(/cmmn/img/logo/yamagiwa.png);
	background-size: 123px;
	background-repeat: no-repeat;
	background-position: 99% center;
	display: flex;
	justify-content: flex-start;
	gap: 20px;
	align-items: center;
	padding-left: 10px;
}

.bg{
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/*
	background-image: url(/cmmn/img/index/top.jpg);
	*/
	background-size: cover;
	background-color: #b6cad1;
	z-index: 1;
}

h1 {
	font-size: 19px;
	font-weight: 100;
	letter-spacing: 1px;
}
h2 {
	font-size: 12px;
	font-weight: 100;
}

.appTitleArea {
	position: absolute;
	top: 35%;
	width: 100%;
	text-align: center;
	color: #fff;
	z-index: 10;
}
.appTitle {
	font-size: 40px;
	font-weight: bold;
}
.appIntro {
	font-size: 13px;
	letter-spacing: 1px;
}

.loginSlider {
	position: absolute;
	top: 57%;
	left: 0;
	right: 0;
	margin: auto;
	width: 160px;
	height: 60px;
	border-radius: 100px;
	background-color: #718a99;
	box-shadow: 0 0 12px rgb(0 0 0 / 10%);
	z-index: 10;
}
.pointer {
	position: absolute;
	width: 80px;
	height: 50px;
	background-color: #fff;
	border-radius: 50px;
	top: 5px;
	left: 5px;
}

.fade{
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10000;
	background: #fff;
	animation: fadeIn 0.5s ease-out 1 forwards;
}

@keyframes fadeIn {
	0% {opacity: 0;}
	100% {opacity: 1;}
}
@keyframes fadeOut {
	0% {opacity: 1;}
	100% {opacity: 0;}
}

@keyframes slide {
	0% { left: 5px;}
	100% {left: 73px;}
}
