@charset "utf-8";

.profileArea .profileSet .movieFull {
    width: 90%;
    margin: 2rem auto 0;
}
@media screen and (min-width: 641px) {
    /* 画像＋テキストの2カラム行と、動画行を縦に折り返す */
    .profileArea .profileSet {
        flex-wrap: wrap;
    }
    /* 画像＋テキストの2カラムは内側ラッパーで従来どおり横並び */
    .profileArea .profileSet .profileMain {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        width: 100%;
    }
    .profileArea .profileSet .movieFull {
        width: 50%;
    }
}
