@charset "UTF-8";
/* base */
body{
    font-family:'Times New Roman', Times, serif;
	line-height: 1.2;
	font-size: 16px;
	color: #0f0f0f;
}

a{
	text-decoration: none;
	color: #0f0f0f;
}

ul{
	margin: 0;
	padding: 0;
	list-style: none;
}

/*loadfade*/
.load-fade {
  opacity: 0;
  visibility: hidden;
  transition: all 1s;
}

.load-fade.is-show {
  opacity: 1;
  visibility: visible;
}

/*fadeup*/
.scroll-up {
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
  transition: all 1s;
}

.scroll-up.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

/*loading*/
.loading {
  position: fixed;
  z-index: 99999;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}

.loading.hide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 500ms;
}

.loading-wrap {
  left: 0;
  right: 0;
  margin: auto;
  height: 20px;
}

@keyframes spin {
  0% {
    top: 0;
  }
  50% {
    top: 100%;
    opacity: 0;
  }
  51% {
    top: -100%;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}
@-webkit-keyframes spin {
  0% {
    top: 0;
  }
  50% {
    top: 100%;
    opacity: 0;
  }
  51% {
    top: -100%;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}
.load {
  position: relative;
}

.load span {
  color: #222222;
  font-size: 30px;
}

.load .animate {
  position: absolute;
  top: 0;
}

.load span:nth-child(2) {
  color: #f8611a;
  animation: spin 1.5s linear infinite;
  -webkit-animation: spin 1.5s linear infinite;
}

.load span:nth-child(3) {
  margin-left: 25px;
  color: #f8611a;
  animation: spin 1s linear infinite;
  -webkit-animation: spin 1s linear infinite;
}

.load span:nth-child(4) {
  margin-left: 50px;
  color: #f8611a;
  animation: spin 1.25s linear infinite;
  -webkit-animation: spin 1.25s linear infinite;
}

.load span:nth-child(5) {
  padding-left: 77px;
}

/* header */
#header{
	position: fixed;
	background-color: rgba(255, 255, 255, 0.6);
	width: 100%;
	padding: 0.5em 0;
	z-index: 9999;
}

.headerInner{
	margin: 0 auto;
	padding-left: 2em;
	padding-right: 2em;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

h1 img{
  width: 6vw;
}

.navi ul{
	display: flex;
	list-style: none;
}

.navi ul li{
	margin-right: 1.5em;
	font-weight: bold;
}

/* footer */
#footer{
	text-align: center;
	padding: 1em 0;
}

main{
	background-color: #e0e0e0;
}

/* home */
.first{
	position: relative;
	height: 100vh;
}

.first video{
	width: 99.2vw;
	height: 100vh;
	object-fit: cover;
}

.first .main_title{
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	background-color: rgba(255, 255, 255, 0.7);
	font-size: 3em;
	padding: 1em 2em;
	border: 0.2em solid #f8611a;
}

.wrap{
	border-top: 1.5em solid #f8611a;
}

.loop-container {
	width: 100%;
	overflow: hidden;
}

.loop-track {
	display: flex;
	width: max-content;
	animation: loop-left 30s linear infinite;
}

.loop-track.reverse {
	animation: loop-right 30s linear infinite;
}

.loop-text {
	white-space: nowrap;
	font-size: 3em;
	padding-right: 50px;
	color: transparent;
	text-stroke: 1px #222222;
    -webkit-text-stroke: 1px #222222;
}

@keyframes loop-left {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

@keyframes loop-right {
	0% {
		transform: translateX(-50%);
	}
	100% {
		transform: translateX(0);
	}
}

.inner{
	max-width: 950px;
	margin: 2em auto 0;
	padding-bottom: 2em;
}

.arena{
	list-style: disc;
}

.arena li{
	margin-left: 1em;
}

.arena p{
	margin-left: 1em;
}