@charset "UTF-8";


.pc { display: block !important; }
.sp { display: none !important; }

.mainimg {
	margin: 20px 0 20px 0;
}

.txt_top {
	margin: 70px 0 0 0;
}

.txt_last {
	margin: 0 0 70px 0;
}


/*movie*/
.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}
.embed-container iframe, .embed-container object, .embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


/*effect*/
.fadeUpTrigger{
opacity: 0;
}



.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration:2s;
    animation-fill-mode:forwards;
    opacity: 0;
}
@keyframes fadeUpAnime{
from {
    opacity: 0;
    transform: translateY(100px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}

