/* 601~680までも対応する？ */

/* ノートpc用 */
@media screen and (min-width: 601px) {
    .profile-img {
        height: 360px;
    }
}

/* iPad用 */
@media screen and (min-width: 481px) and (max-width: 600px) {
    .news-text {
        padding-bottom: 30px;
        width: 400px;
    }
    .header {
        background-image: url(../img/S__61243403_0.jpg);
        background-position: center 0;
    }
    .profile-img {
        height: 270px;
    }
    .youtube {
        width: 75%;
        max-width: 100%;
        object-fit: cover;
        height: 250px;
    }
    .news-look {
        display: flex;
        flex-wrap: wrap; /* 要素が折り返せるようにする！ */
        width: 50%;
        margin: 0 auto;
        gap: 5px;
        align-items: center;
    }
    .news-look span {
        display: inline-block;
    }
    .news-look span:nth-child(1),
    .news-look span:nth-child(2) {
        /* 上段で横並びにするために幅調整 */
        margin-right: 10px;
    }
    .news-look span:nth-child(3) {
        /* 100%幅にして折り返して下段に落とす */
        flex-basis: 100%;
        margin-top: 5px;
        padding-left: 10px;
    }

    /* お知らせページ */
    .news-header {
        flex-direction: column;
        gap: 0;
    }

    /* ハンバーガーメニュー */
    .menus, .menus-news {
        display: none;
    }

    .hamburger {
        display: block;
        cursor: pointer;
        width: 30px;
        margin: 10px;
        position: absolute;
        top: 20px;
        right: 20px;
        z-index: 999;
    }

    .hamburger span {
        display: block;
        height: 3px;
        background-color: #ffffff;
        margin: 5px 0;
        border-radius: 2px;
    }
    .hamburger-news span {
        background-color:black
    }

    .mobile-menu {
        position: absolute;
        top: 100px;
        width: 94%;
        background-color: #fffffff2;
        flex-direction: column;
        gap: 10px;
        padding: 20px;
        z-index: 998;
        display: none;
    }

    .mobile-menu.show {
        display: flex;
    }

    .mobile-menu a {
        color: #000;
        text-decoration: none;
        font-size: 16px;
        padding: 8px 0;
        line-height: 1.4;
    }
}

/* スマホ用 */
@media screen and (max-width: 480px) {
    .movie-text, .profile-text, .cloud-text, .cloud-ago-link, .area-text, .credit-text{
        font-size: 1.0rem;
    }
    .cloud-cast-list, .cloud-cast-list1{
        font-size: 0.8rem;
    }
    .news-text {
        padding-bottom: 30px;
        width: 300px;
        font-size: 1.0rem;
    }
    .header {
        background-image: url(../img/S__61243403_0.jpg);
        background-position: center 0;
    }
    img{
        width: 70%;
        max-width: 100%;
        object-fit: cover;
        height: 180px;
    }
    .youtube {
        width: 70%;
        max-width: 100%;
        object-fit: cover;
        height: 170px;
    }
    .news-look {
        display: flex;
        flex-wrap: wrap; /* 要素が折り返せるようにする！ */
        width: 50%;
        margin: 0 auto;
        gap: 5px;
        align-items: center;
    }
    .news-look span {
        display: inline-block;
    }
    .news-look span:nth-child(1),
    .news-look span:nth-child(2) {
        /* 上段で横並びにするために幅調整 */
        margin-right: 10px;
    }
    .news-look span:nth-child(3) {
        /* 100%幅にして折り返して下段に落とす */
        flex-basis: 100%;
        margin-top: 5px;
        padding-left: 10px;
    }

    /* お知らせページ */
    .news-header {
        flex-direction: column;
        gap: 0;
    }

    /* ハンバーガーメニュー */
    .menus, .menus-news {
        display: none;
    }

    .hamburger {
        display: block;
        cursor: pointer;
        width: 30px;
        margin: 10px;
        position: absolute;
        top: 20px;
        right: 20px;
        z-index: 999;
    }

    .hamburger span {
        display: block;
        height: 3px;
        background-color: #ffffff;
        margin: 5px 0;
        border-radius: 2px;
    }
    .hamburger-news span {
        background-color:black
    }

    .mobile-menu {
        position: absolute;
        top: 100px;
        width: 89.5%;
        background-color: #fffffff2;
        flex-direction: column;
        gap: 10px;
        padding: 20px;
        z-index: 998;
        display: none;
        /* position: fixed; */
    }

    .mobile-menu.show {
        display: flex;
    }

    .mobile-menu a {
        color: #000;
        text-decoration: none;
        font-size: 16px;
        padding: 8px 0;
        line-height: 1.4;
    }
}