@charset "UTF-8";
/* CSS Document */


/* kv */
.kv{
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-copy{
  text-align: center;
  width: 80%;
  height: auto;
  padding-bottom: 30px;
  margin-left: auto;
	margin-right: auto;
}

.main-copy2{
  text-align: left;
  font-size: 16px;
  color: #FFFFFF;
  height: auto;
  padding-bottom: 30px;
  position: absolute;
  right: 4%;
  bottom: 2%;
  transition: all 0.3s ease;
}

.main-copy2:hover{
	letter-spacing: 0.1em;
}

.arrowskip {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 1px;
  margin-top: 6.4px;
  border-radius: 9999px;
  background-color: #ffffff;
  margin-left: 10px;
  margin-bottom: 2px;
}

.arrowskip::before {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 0;
  width: 10px;
  height: 1px;
  border-radius: 9999px;
  background-color: #ffffff;
  transform: rotate(45deg);
  transform-origin: calc(100% - 0.5px) 50%;
}

/* video */
.video{
  width: 100%;
  height: 100vh;
  background: url("op.jpg") no-repeat center/cover;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
  z-index: -1;
}

 /*.video::after{
  content: '';
  width: 100%;
  height: 100vh;
  height: auto;
  background-color: #10394b;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  opacity: .3;
}*/

.video video{
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}


@media screen and (min-width: 768px) {
  /* kv */
  .kv{
    min-width: 960px;
  }



  /* video */
  .video{
    min-width: 960px;
  }
	
	
.main-copy{

  text-align: center;
  padding-bottom: 40px;
  width: 500px;
  height: auto;
}
	
}


/*ここから時間経過で消える*/


#hideMe {
  opacity: 1;
  transition: opacity 1.5s ease;
}

#hideMe.fadeout {
  opacity: 0;
}


#fadeinMe {
  opacity: 0;
  transition-property: opacity;
  transition: all 1s ease;
  transition-duration: 1s;
  display: none;
  transform: scale(1.05);
　filter: blur(1.5rem);
}

#fadeinMe.fadein {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);

}
