@charset "utf-8";

.video-wrapper video {
    display: block;
    margin: 0 auto;
    width: 650px;
    padding-bottom: 40px;
}
.video-wrapper {
    margin-top: 160px;
}


/* 下から */

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





@media screen and (max-width: 768px) {

    .content__ttl img {
        width: 300px!important;
        margin: 0;
        padding: 0;
    }
    .content__ttl  {
        margin: 0;
        padding: 30px 40px 100px 190px!important;
        
    }
    
    .gnavi {
        display: flex;
        column-gap: 10px!important;
        justify-content: center;
        margin-bottom: 60px;
    }
    .gnavi li a{
        display: block;
        padding:10px 20px!important;
        text-decoration: none;
        color: #333;
    }
}



@media screen and (max-width: 390px) {

    .content__ttl img {
        width: 250px!important;
        margin: 0;
        padding: 0;
    }
    .content__ttl  {
        margin: 0;
        padding: 30px 40px 100px 40px!important;
        
    }

    .video-wrapper video {
        width: 320px;
    }
    .gnavi {
        display: flex;
        column-gap: 10px!important;
        justify-content: center;
        margin-bottom: 60px;
    }
    .gnavi li a{
        display: block;
        padding:10px 20px!important;
        text-decoration: none;
        color: #333;
    }
    .video-wrapper {
        margin-top: 90px;
    }
}