@charset "utf-8";
/* CSS Document */

@media screen and (max-width: 750px) {

    /*  共通部分
----------------------------------------*/
    html {
        font-size: 100%;
        scroll-behavior: smooth;
    }

    body {
        font-family: 'Noto Sans JP', sans-serif;
        color: #1F1F1F;
        background-color: #fff;
        margin: 0px;
    }

    .pc_flex::before {
        content: "";
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        z-index: -1;
        width: 100%;
        height: 100vh;
        background-repeat: no-repeat;
        background-position: 50% 100%;
        background-image: url(../images/back-sp.png);
        background-size: cover;
    }

    a {
        color: #000;
        text-decoration: none;
    }

    a:hover {
        opacity: 0.7;
    }

    img {
        max-width: 100%;
    }

    ul {
        list-style-type: none;
        padding: 0;
    }

    .wrapper {
        max-width: 750px;
        margin: 0 auto;
        padding: 0 4%;
    }

    h1 {
        margin: 0;
    }

    h2,
    h3,
    h4,
    p,
    ul {
        margin: 0;
        color: #1F1F1F;
        font-size: 1rem;
        font-weight: 500;
    }

    .sp {
        display: block;
    }

    .pc {
        display: none;
    }

    /*  サイトオープンロゴ
------------------------------------------------------------------*/

    /* Loading背景画面設定　*/
    #splash {
        /*fixedで全面に固定*/
        position: fixed;
        width: 100%;
        height: 100%;
        z-index: 999;
        background-image: linear-gradient(90deg, rgba(251, 213, 251, 1), rgba(149, 233, 243, 1));
        text-align: center;
        color: #fff;
    }

    /* Loading画像中央配置　*/
    #splash_logo {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    /* Loading アイコンの大きさ設定　*/
    #splash_logo img {
        width: 600px;
    }

    /* fadeUpをするアイコンの動き */
    .fadeUp {
        animation-name: fadeUpAnime;
        animation-duration: 0.5s;
        animation-fill-mode: forwards;
        opacity: 0;
    }

    @keyframes fadeUpAnime {
        from {
            opacity: 0;
            transform: translateY(100px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /*  header
------------------------------------------------------------------*/
    header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        top: 0;
        width: 100%;
        position: fixed;
        z-index: 200;
        background-color: #fff;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .head {
        width: 45%;
        padding-left: 20px;
    }

    .head2 {
        width: 30%;
        /*
        padding-left: 20px;
        */
    }

    .head2>a>img {
        width: 25%;
        margin-left: 18px;
    }

    .ham {
        position: relative;
        width: 60px;
        height: 40px;
        cursor: pointer;
    }

    .ham_line {
        position: absolute;
        right: 10px;
        width: 45px;
        height: 3px;
        background-color: #1F1F1F;
        transition: all 0.3s;
    }

    .ham_line1 {
        top: 10px;
    }

    .ham_line2 {
        top: 18px;
    }

    .ham_line3 {
        top: 26px;
    }

    .clicked .ham_line1 {
        transform: rotate(45deg);
        top: 20px;
    }

    .clicked .ham_line2 {
        width: 0px;
    }

    .clicked .ham_line3 {
        transform: rotate(-45deg);
        top: 20px;
    }

    .menu {
        display: block;
        position: fixed;
        margin-top: 20px;
        width: 100%;
        height: 100%;
        background: rgba(75, 75, 75, 0.9);
        transition: all 0.6s;
    }

    .clicked .menu {
        left: 0px;
    }

    header nav ul {
        font-size: 16px;
        margin-top: 40px;
    }

    header nav ul li {
        margin-bottom: 40px;
        padding-left: 30px;
    }

    header nav ul li a {
        color: #fff;
    }

    /*  SP_TOPメイン
------------------------------------------------------------------*/

    .sp_top {
        margin-top: 60px;
        margin-bottom: -5px;
    }

    /*  about
------------------------------------------------------------------*/

    .about {
        padding-top: 30px;
        padding-bottom: 30px;
        text-align: center;
    }

    .h2_blue {
        text-align: center;
        font-size: 1.2rem;
        font-style: italic;
        line-height: 2;
        color: #4399d5;
    }

    .about_p {
        text-align: center;
        font-weight: 400;
        margin-top: 20px;
        line-height: 3;
        font-size: 0.8rem;
    }

    .gender {
        margin-top: 30px;
        border-radius: 20px;
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .men {
        background-color: rgba(145, 219, 226, 0.3);
        background-image: url(../images/men.png);
        background-size: 50%;
        background-repeat: no-repeat;
        background-position: 90% 50%;
    }

    .women {
        background-color: rgba(255, 187, 249, 0.3);
        background-image: url(../images/women.png);
        background-size: 35%;
        background-repeat: no-repeat;
        background-position: 90% 50%;
    }

    .gender h3 {
        font-size: 1.3rem;
        font-style: italic;
        border-bottom: #1F1F1F 2px solid;
        display: inline-block;
        margin-bottom: 20px;
    }

    .gender p {
        text-align: left;
        font-weight: 400;
        line-height: 2.5;
        font-size: 0.8rem;
    }

    .border {
        border-bottom: #1F1F1F 1px solid;
    }

    .margin {
        margin-top: 30px;
    }

    /*  ダンス&ボーカルプロジェクト
------------------------------------------------------------------*/

    .h2_black {
        text-align: center;
        font-size: 1.2rem;
        font-style: italic;
        line-height: 2;
        color: #1F1F1F;
        border-bottom: #1F1F1F 2px solid;
        display: inline-block;
        margin-bottom: 30px;
    }

    .sondan_p {
        text-align: left;
        line-height: 2;
        font-size: 0.8rem;
    }

    .glo_flex {
        margin-top: 30px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .glo_flex img {
        width: 48%;
    }

    .glowe_p00 {
        width: 48%;
    }

    .glowe_ti {
        font-size: 1rem;
        text-align: left;
        font-weight: bold;
    }

    .glowe_p {
        margin-top: 10px;
        text-align: left;
        font-size: 0.6rem;
        line-height: 2;
    }

    .glowe_sns {
        display: flex;
        justify-content: space-evenly;
        margin-top: 20px;
    }

    .glowe_sns a {
        display: inline-block;
        width: 6%;
    }

    /*  ワタナベエンターテインメント
------------------------------------------------------------------*/

    .back_color {
        background-color: rgba(159, 222, 229, 0.5);
    }

    .we_flex {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 20px 10px;
    }

    .we_talent {
        width: 30%;
    }

    .we_talent h3 {
        font-size: 0.7rem;
    }

    /*  スケジュール
------------------------------------------------------------------*/

    .schedule {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .sche_pp {
        margin-top: 20px;
        font-size: 0.9rem;
        font-weight: bold;
        color: #fc45d5;
    }

    .schedule h3 {
        width: 30%;
        background-color: #000;
        color: #fff;
        border: #000 2px solid;
        padding-top: 20px;
        padding-bottom: 20px;
        font-size: 0.8rem;
    }

    .schedule h4 {
        width: 70%;
        border: #000 2px solid;
        padding-top: 20px;
        padding-bottom: 20px;
        font-size: 0.8rem;
    }

    .senkou_flex {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 20px;
    }

    .senkou_flex h3 {
        width: 30%;
    }

    .senkou_flex h4 {
        width: 65%;
        text-align: left;
        font-size: 0.8rem;
        line-height: 1.8;
    }

    .senkou_line {
        display: block;
        background-color: #4dd74d;
        color: #fff;
        width: 100%;
        text-align: center;
        margin-top: 10px;
        padding-top: 5px;
        padding-bottom: 5px;
        border-radius: 5px;
        box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.5), inset 0px -3px 6px -2px rgba(0, 0, 0, 0.3);
    }

    .sankaku {
        text-align: center;
        margin-top: 20px;
        font-size: 2rem;
        color: #000;
    }

    .passed {
        background-image: linear-gradient(90deg, rgba(251, 213, 251, 1), rgba(149, 233, 243, 1));
        margin-top: 40px;
        border-radius: 20px;
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .passed h3 {
        font-size: 1.3rem;
        font-style: italic;
        border-bottom: #1F1F1F 2px solid;
        display: inline-block;
        margin-bottom: 30px;
    }

    .passed p {
        text-align: left;
        font-weight: 700;
        line-height: 3;
        font-size: 0.8rem;
    }

    .pass_s {
        font-size: 0.7rem;
        margin-top: 0;
        font-weight: 500;
    }

    /*  募集要項
------------------------------------------------------------------*/

    .guide_p {
        text-align: left;
        line-height: 3;
        font-size: 0.9rem;
    }

    /*  よくある質問
------------------------------------------------------------------*/

    details>summary {
        margin-top: 10px;
        text-align: left;
        color: #1F1F1F;
        font-size: 0.8rem;
        font-weight: 700;
        padding: 10px;
        border-bottom: 1.5px solid #1F1F1F;
    }


    .q_aa2 {
        text-align: left;
        padding: 5px;
        font-size: 0.8rem;
        font-weight: 400;
        color: #1F1F1F;
        line-height: 2;
        margin-top: 10px;
    }

    /*  個人情報の取り扱いについて
------------------------------------------------------------------*/

    .kojin {
        text-align: center;
    }

    .on_a {
        display: inline-block;
        background-color: #1F1F1F;
        color: #fff;
        padding: 20px 30px;
        font-size: 0.8rem;
    }


    /*  footer
------------------------------------------------------------------*/

    footer {
        padding-top: 50px;
        padding-bottom: 200px;
        text-align: center;
    }

    .ft {
        color: #000;
        margin-top: 50px;
    }

    .fot01>a {
        display: block;
        margin-bottom: 50px;
    }

    .fot01>a>img {
        width: 80%;
    }

    .copy {
        margin-top: 20px;
    }

    .copy>p {
        color: #1F1F1F;
        font-size: 0.5rem;
    }

    /*  固定エントリー
------------------------------------------------------------------*/

    .ent_btn_pc {
        background-color: rgb(255, 255, 255, 0.6);
        width: 100%;
        bottom: 0;
        position: fixed;
        z-index: 300;
        padding-top: 15px;
        padding-bottom: 15px;
    }

    /*
    .ent_bt_flex {
        display: flex;
        justify-content: space-between;
    }
    */

    .ent_bt_flex a {
        padding: 10px;
        color: #fff;
        border-radius: 50px;
        font-weight: bold;
        text-align: center;
        background-color: #4dd74d;
        display: block;
        box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.5), inset 0px -3px 6px -2px rgba(0, 0, 0, 0.3);
        font-size: 0.8rem;
    }

    /*
    .pc_line {
        background-color: #02d402;
    }

    .pc_viewing {
        width: 100%;

    }
    */

}