@charset "utf-8";

body {display:none;}

/*bottom_navアニメーション*/
#MainVisualBox {
  position: relative;
}
#MainVisualBox .Copy {
    position: absolute;
    left: auto;
    right: auto;
    text-align: center;
    color: #fff;
    font-size: 3.0rem;
    letter-spacing: 1em;
    padding-left: 0.5em;
    width: 100%;
    bottom: 6%;
}
#MainVisualBox .Logo {
  width:388px;
    padding-right: 0.5em;
  margin-left: auto;
  margin-right: auto;
}
#MainVisualBox .Logo img {
  width:100%;
  height: auto;
}
#MainVisualBox a span {
  position: absolute;
  bottom: 36px;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-left: -12px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-animation: sdb05 1.5s infinite;
  animation: sdb05 1.5s infinite;
  box-sizing: border-box;
}
@-webkit-keyframes sdb05 {
  0% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0;
  }
}
@keyframes sdb05 {
  0% {
    transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0;
  }
}
/*------------*/


/*背景点滅*/
.MainVisual {
  background-image: url(../img/main_visual2.jpg);
}
.MainVisual {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 2560px;
  height: 100vh;
  text-align: center;
  animation: bg-color 1s 10;
  -webkit-animation: bg-color 1s 10;
  animation-delay: 0s;
  animation-fill-mode: forwards;
}
@-webkit-keyframes bg-color {
  10% { background-image: url(../img/main_visual.jpg); }
  100% { background-image: url(../img/main_visual2.jpg); }
}
@keyframes bg-color {
  10% { background-image: url(../img/main_visual.jpg); }
  100% { background-image: url(../img/main_visual2.jpg); }
}
@media (max-width: 640px) {
.MainVisual {
  background-image: url(../img/main_visual2_sp.jpg);
}
@-webkit-keyframes bg-color {
  10% { background-image: url(../img/main_visual_sp.jpg); }
  100% { background-image: url(../img/main_visual2_sp.jpg); }
}
@keyframes bg-color {
  10% { background-image: url(../img/main_visual_sp.jpg); }
  100% { background-image: url(../img/main_visual2_sp.jpg); }
}
}
/*------------*/

/*フェードイン*/
.fade_left {
    opacity: 0;
    margin-left: -200px;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -o-transition: all 1s;
    -ms-transition: all 1s;
    transition: all 1s;
    width:100%;
}
.fade_right {
    opacity: 0;
    margin-left: 200px;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -o-transition: all 1s;
    -ms-transition: all 1s;
    transition: all 1s;
    width:100%;
}
.fade_on {
    opacity: 1;
    margin-left: 0;
}
