@charset "UTF-8";



/* --------------------------------------------------
  top
-------------------------------------------------- */
.hide-content {
  opacity: 0;
  transform: translate3d(5px,10px,0) rotateY(-1deg);
  transition: opacity 400ms ease-out, transform 600ms ease-out;
}
.hide-content.show-content {
  opacity: 1;
  transform: translate3d(0,0,0) rotateY(0deg);
}
/*pc + tablet style*/
@media screen and (min-width: 1024px) {
}
/*short pc style*/
@media screen and (min-width: 768px) and (max-width: 1023px) {
}



/* --------------------------------------------------
  hero
-------------------------------------------------- */
#hero.section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  padding: 0;
  box-shadow: 10px 10px 35px 0px rgba(0, 0, 0, 0.05);
}
.load #hero.section {
}
#ytplayer {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate3d(-50%, -50%, 0);
  opacity: 0;
  transition: opacity 1000ms ease 1500ms;
}
#ytplayer.show {
  opacity: 1;
}
.hero_link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
/*short pc + tablet style*/
@media screen and (min-width: 1024px) and (max-width: 1280px) {
}
/*tablet style*/
@media screen and (min-width: 768px) and (max-width: 1023px) {
}
/*sp style*/
@media screen and (max-width: 767px) {
}



/* --------------------------------------------------
  bnr
-------------------------------------------------- */
.bnr {
  margin-bottom: calc(80 / 970 * 100%);
  box-shadow: 10px 10px 35px 0px rgba(0, 0, 0, 0.05);
}
/*short pc + tablet style*/
@media screen and (min-width: 1024px) and (max-width: 1280px) {
}
/*tablet style*/
@media screen and (min-width: 768px) and (max-width: 1023px) {
}
/*sp style*/
@media screen and (max-width: 767px) {
  .bnr {
    margin-bottom: calc(20 / 375 * 100vw);
  }
}



/* --------------------------------------------------
  768px〜 hover pc + tablet style
  touchデバイスでhoverを使うと2回クリックしないと
  いけないくなるので、.notouchを先頭につけてください
-------------------------------------------------- */
@media screen and (min-width: 768px) {

  .notouch a {
    transition: opacity 400ms ease;
  }
  .notouch a:not(.cu):hover {
    opacity: 0.7;
  }

}


