@charset "utf-8";
.howtoList{
    display: flex;
    margin: 0 20px 60px;
    justify-content: space-around;
}
.howtoList figure{
    width: 45%;
    aspect-ratio: 432 / 292;
}
.howtoList figure img{
   aspect-ratio: 432 / 292;
}
.youtubeWrap{
    width: 45%;
}
.youtubeWrap h4{
    font-size: 1.8rem;
    font-weight: 600;
    border-bottom: 1px solid #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
}
.howtoList .youtube{
    height: 0;
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
}
.howtoList .youtube iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
}
@media screen and (max-width: 600px) {
    .howtoList{
        margin: 0 2% 60px;
        flex-direction: column;
    }
    .howtoList figure{
        width: auto;
        margin-bottom: 25px;
    }
    .howtoList figure img{
       aspect-ratio: 432 / 292;
    }
    .youtubeWrap{
        width: auto;
    }
    .youtubeWrap h4{
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
}