@charset "UTF-8";

/* トップページ動画表示用CSS */

.box-loading {
	position: relative;
}

.loading {
  position: fixed;
  width: 100%;
  max-width: 1280px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  display: none;
  margin: auto;
}

#is-loading {
	display: block;
	position: fixed;
	width: 100vw;
	height: 100vh;
	top: 0px;
	left: 0px;
	background: #FFF;
	z-index: 9998;
}

#loading {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	width: 115px;
	height: 100px;
	margin-top: -50px;
	margin-left: -50px;
	text-align: center;
	z-index: 9999;
}

.rotate-anime {
  animation: rotate-anime 1.5s linear infinite;
  margin-bottom: .5rem;
	width: 100px;
}

@keyframes rotate-anime {
  0% {transform: rotateY(0);}
  100% {transform: rotateY(360deg);}
}

.btn-video {
	cursor: pointer;
	font-size: 2.4rem;
	text-align: center !important;
	position: fixed;
	right: 1rem;
	top: 1rem;
	z-index: 9999;
/*   display: none; */
  background: #ddd;
  padding: 5px 0 7px;
  width: 100px;
}

/* モーダルCSS */
html.modalset {
  overflow: hidden;
}

.modalArea {
  display: none;
  position: fixed;
  z-index: 9998;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modalBg {
  width: 100%;
  height: 100%;
  background-color: rgba(20, 20, 20, 0.9);
}

.modalWrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 100%;
  max-width: 1280px;
  padding: 10px 30px;
}
