@charset "utf-8";

/* CSS Document */
@media screen and (min-width: 751px) {

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

    body {
        font-family: 'Noto Sans JP', sans-serif;
        color: #1F1F1F;
        margin: 0;
        background-color: #fff;
        background-image: url(../images/back-pc.png);
        background-size: cover;
        background-attachment: fixed;
    }

    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: none;
    }

    .pc {
        display: block;
    }

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

    /* Loading背景画面設定　*/
    #splash {
        /*fixedで全面に固定*/
        position: fixed;
        width: 100%;
        height: 100%;
        z-index: 999;
        background-image: url(../images/back-pc.png);
        background-size: cover;
        text-align: center;
        color: #fff;
    }

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

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

    /* 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);
        }
    }


    /*  配置/PC版両サイド
------------------------------------------------------------------*/

    .pc_flex {
        display: flex;
        justify-content: space-between;
        align-items: first baseline;
        opacity: 1;
        background-size: 24px 24px;
    }

    .center {
        width: 40%;
        margin: auto;
    }

    .left {
        left: 0;
        width: 30%;
        height: 40vh;
        position: fixed;
        text-align: center;
        box-sizing: border-box;
        padding: 2% 2%;
    }

    .left_fixed {
        width: 25%;
        position: fixed;
        top: 5%;
    }

    .pc_left_logo {
        width: 80%;
    }

    .side_sns {
        padding: 0 20px;
        display: flex;
        justify-content: space-around;
        align-items: center;
        margin-top: 30px;
    }

    .side_sns>a {
        width: 10%;
    }


    .right {
        right: 0;
        width: 30%;
        height: 40vh;
        position: fixed;
        text-align: center;
        box-sizing: border-box;
        padding: 2% 2%;
    }

    .right_fixed {
        width: 25%;
        position: fixed;
        top: 5%;
    }

    .r_nav {
        padding-left: 20%;
        text-align: left;
    }

    .r_nav>li {
        margin-bottom: 15%;
    }

    .right_fixed_icon {
        width: 25%;
        position: fixed;
        bottom: 12%;
    }

    .ent01>a {
        display: block;
        color: #1F1F1F;
        font-size: 0.8rem;
    }

    .ent02 {
        margin-top: 20px;
        display: inline-block;
        width: 100%;
    }

    .fuwafuwa {
        animation: fuwafuwa 2s linear infinite;
    }

    /* fuwafuwa */
    @keyframes fuwafuwa {
        0% {
            transform: translateY(0)
        }

        33.33333% {
            transform: translateY(30px)
        }

        66.66667% {
            transform: translateY(0)
        }

        100% {
            transform: translateY(0)
        }
    }

    /*  PC_TOPメイン
------------------------------------------------------------------*/
    .pc_top {
        margin-bottom: -5px;
    }

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

    .about {
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .about_p {
        text-align: center;
        margin-top: 30px;
        margin-bottom: 30px;
        line-height: 4;
        font-size: 1rem;
        font-weight: 600;
    }

    /*  エントリーボタン
------------------------------------------------------------------*/

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

    .ent_flex a {
        width: 48%;
        color: #fff;
        font-weight: 600;
        border-radius: 50px;
        text-align: center;
        padding: 20px 0;
    }

    .ent_web {
        background-color: #ea68a2;
    }

    .ent_line {
        background-color: #32b16c;
    }

    /*  特典
------------------------------------------------------------------*/

    .collabo {
        border-radius: 20px;
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .grand {
        background-image: linear-gradient(90deg, rgba(89, 173, 241, 1), rgba(207, 253, 157, 0.5));
    }

    .h2_01 {
        text-align: center;
        font-size: 2rem;
        font-style: italic;
        font-weight: bold;
        margin-bottom: 50px;
        line-height: 1.8;
    }

    .white {
        color: #fff;
    }

    .tokuten00 {
        width: 45%;
        text-align: center;
        margin: 0 auto;
    }

    .tokuten_flex {
        display: flex;
        justify-content: space-around;
        margin-top: 50px;
    }

    .tokuten01 {
        text-align: center;
        width: 45%;
    }

    .tokuten_h3 {
        font-size: 0.8rem;
        margin-top: 10px;
        font-weight: bold;
    }

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

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

    .we_talent {
        width: 30%;
        text-align: center;
    }

    .we_talent h3 {
        font-size: 0.8rem;
        color: #000;
    }

    .seto_yosen {
        background-color: #eb6877;
        text-align: center;
        color: #fff;
        margin-top: 30px;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .tale_s {
        margin-top: 5px;
        font-size: 0.6rem;
    }

    /*  オーディションスケジュール
------------------------------------------------------------------*/

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

    .schedule h3 {
        width: 30%;
        background-color: #000;
        color: #fff;
        border: #000 2px solid;
        padding-top: 20px;
        padding-bottom: 20px;
        text-align: center;
    }

    .schedule h4 {
        width: 70%;
        border: #000 2px solid;
        padding-top: 20px;
        padding-bottom: 20px;
        text-align: center;
    }

    .shinsa {
        text-align: center;
        margin-top: 50px;
    }

    .shinsa h3 {
        width: 30%;
        display: inline-block;
    }

    .shinsa h4 {
        margin-top: 10px;
        font-size: 1.5rem;
        font-weight: 800;
    }

    .seto_yosen2 {
        margin-top: 20px;
        color: #eb6877;
        border-bottom: 2px solid #eb6877;
        font-size: 1.1rem;
        padding-bottom: 5px;
        font-weight: 800;
    }

    .qa2 {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .qa2>details>summary {
        text-align: center;
        color: #fff;
        font-size: 1rem;
        font-weight: bold;
        padding: 10px;
        background-color: #00b7ee;
    }

    .qa2>details {
        color: #000;
        text-align: center;
        margin-top: 20px;
    }

    .q_aa2 {
        padding: 5px;
        font-size: 1rem;
        font-weight: 700;
        background-color: #fff;
        color: #1f1f1f;
        line-height: 2;
        margin-top: 10px;
    }

    .sankaku {
        text-align: center;
        margin-top: 50px;
        font-size: 2rem;
    }

    .shinsa2 {
        border-radius: 20px;
        text-align: center;
        margin-top: 50px;
        background-image: linear-gradient(90deg, rgba(237, 110, 159, 1), rgba(236, 139, 107, 0.5));
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .shinsa2 h3 {
        width: 30%;
        display: inline-block;
    }

    .shinsa2 h4 {
        margin-top: 20px;
        font-size: 1.5rem;
        font-weight: 800;
        color: #fff;
    }

    .h4_2 {
        margin-top: 10px;
        font-size: 3rem;
        font-weight: 800;
        color: #fff;
    }

    .mc {
        margin-top: 50px;
        font-size: 2rem;
        font-weight: 800;
    }

    .mc_flex {
        margin-top: 30px;
        display: flex;
        justify-content: space-around;
        align-items: start;
    }

    .mc_item {
        width: 40%;
    }

    .mc_item p {
        margin-top: 5px;
    }

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

    .guide {
        font-size: 1.2rem;
        font-weight: 700;
        line-height: 1.8;
    }

    .guide li {
        margin-bottom: 30px;
    }

    .yellow {
        background: linear-gradient(transparent 60%,
                #fbeb64 60%);
        margin-left: 10px;
    }

    /*  質問
------------------------------------------------------------------*/

    .white_back {
        background-color: #fff;
        padding-top: 50px;
        padding-bottom: 50px;
        text-align: center;
    }

    .qa>summary {
        margin-top: 30px;
        text-align: left;
        color: #1F1F1F;
        font-size: 1rem;
        font-weight: 700;
        padding: 10px;
        border-bottom: 2px solid #1F1F1F;
    }


    .q_aa3 {
        text-align: left;
        padding: 5px;
        font-size: 1rem;
        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: 1rem;
    }

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

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

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

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

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

    .copy {
        margin-top: 20px;
    }

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

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

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

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

    .ent_bt_flex a {
        padding: 20px;
        color: #fff;
        border-radius: 50px;
        font-weight: bold;
        text-align: center;
        width: 42%;
    }


}