@charset "UTF-8";

/*MVテキスト*/
#mv .mv_text h2 {
    display: flex;
    flex-direction: row;
    gap: 10px;
}
#mv .mv_text h2 span {
    width: fit-content;
}
#mv .mv_text h2 .pink {
    background: #ff87de;
    color: #fff;
}
#mv .mv_text h2 .blue {
    background: #5e93ff;
    color: #fff;
}
#mv .mv_text h2 .yellow {
    background: #f8d350;
    color: #fff;
}
@media screen and (max-width: 768px) {
     #mv .mv_text h2 {
        flex-direction: column;
    }
}