@charset "UTF-8";

* {
	margin: 0;
	padding: 0;
	font-family: 'Noto Sans JP',sans-serif;
	outline: none;

}

#contents {
	position: relative;
}
.index_back {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: url(../images/top_back.png);
	background-position: center;
	background-size: cover;
	z-index: 1;
}

.top_box {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	justify-content: center;
	padding: 100px 0 0;
	z-index: 10;
	overflow-y: auto;
}

.top_left {
	position: relative;
	width: 491px;
	margin-right: 150px;
}
.left_ttile {
	position: absolute;
	right: 45px;
	width: 446px;
	height: 140px;
	background: #000;
}
.left_ttile img {
	position: absolute;
	top: 25px;
	left: 33px;
}
.left_ttile p {
	position: absolute;
	top: 95px;
	left: 157px;
	font-size: 22px;
	font-weight: bold;
	color: #fff;
}
.left_text {
	position: absolute;
	top: 140px;
	right: 0;
	width: 433px;
	height: 590px;
	background: #000;
	font-family: 'Noto Sans JP', ;
}
.left_text p {
	position: absolute;
	top: 37px;
	left: 66px;
	font-size: 15px;
	letter-spacing: 1px;
	line-height: 32px;
	color: #fff;
}
.top_right {
	position: relative;
	top: -20px;
}

.top_slider {
	position: absolute;
	top: 41px;
	left: 34px;
	width: 561px;
	height: 597px;
}

.start_button {
	position: absolute;
	top: 550px;
	left: -60px;
	cursor: pointer;
	z-index: 100;
}

.loading {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: #000;
	z-index: 10000;
}
.loading_box {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 410px;
	height: 200px;
	margin: auto;
}

#container {
	position: absolute;
	top: 160px;
	left: 210px;
	right: 0;
	bottom: 0;
  width: 200px;
  height: 8px;
	margin: auto;
	background: gray;
}
.inner {
	width: 0px;
	height: 8px;
	background: #FB6844;
	transition: 1s;
}

.gra_bar {
	position: absolute;
	top: 730px;
	left: -14px;
	width: 150px;
	height: 11px;
	background: linear-gradient(45deg, rgba(182,194,57,1), rgba(236,87,81,1), rgba(85,103,188,1), rgba(225,184,14,1), rgba(230,91,57,1));
	background-size: 600% 600%;
	animation: AnimationName 10s ease infinite;
	z-index: 500;
}
@keyframes AnimationName {
0%{background-position:0% 50%}
100%{background-position:100% 50%}
}
