/* youtubeビデオ*/
/* 縮小後も画面比率を同じにする */
.youtube_video {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; 
}

.youtube_video iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    max-height: 500px;
    border:0;
    left: 0;
    top: 0;
}