.kv-copy{
  font-family: 'Dr Sugiyama', cursive;
  font-size: 96px;
  color: #DDD165;
}
.kv-text-wrapper{
  position: absolute;
  margin-top: -29%;
  margin-left: 34%;
  opacity: 0;
  animation-name: fadein-bottom;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

@keyframes fadein-bottom {
  0% {
     opacity: 0;
     transform: translateY(20px);
  }
  100% {
     opacity: 1;
     transform: translateY(0);
  }
}

.kv-wrapper img{
  width: 100%;
  height: auto;
}
.kv-wrapper{
  margin-bottom: -2px;
}

.sns_icon{
  position: absolute;
  bottom: 100px;
  right: 50px;
  display: flex;
  justify-content: space-between;
  width: 120px;
}

.insta img{
  width: 50px;
}

.twitter img{
  width: 50px;
}

.res_top_img{
  display: none;
}

@media screen and (max-width:768px) {
  .kv-text-wrapper{
    margin-left: 15%;
    margin-top: -100%;
  }
  .kv-copy{
    font-size: 60px;
  }
  .pc_top_img{
    display: none;
  }
  .res_top_img{
    display: block;
  }
  .sns_icon{
    bottom: 20%;
    right: 30%;
    width: 150px;
  }
  .header{
    justify-content: space-evenly;
  }

  .header-nav_right_list li{
    margin-right: 25px;
  }

  .header-nav_right_list a{
    font-size: 20px;
  }


}


@media screen and (max-width:375px) {
  .sns_icon{
    bottom: 5%;
}
.kv-text-wrapper{
  margin-left: 10%;
  margin-top: -100%;
}

.header-nav_right_list a {
  font-size: 18px;
}


}