@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: #000000;
        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: #fff;
        font-size: 1rem;
        font-weight: 500;
    }

    .sp {
        display: block;
    }

    .pc {
        display: none;
    }

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

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

    .head2 {
        width: 40%;
        padding-left: 20px;
    }

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

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

    .ham_line {
        position: absolute;
        right: 10px;
        width: 45px;
        height: 3px;
        background-color: #fff;
        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;
    }

    .sp_top img {
        box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.2);
    }

    /*  メインテキスト
------------------------------------------------------------------*/

    .about h1 {
        color: #fff;
        font-size: 1.3rem;
        font-weight: bold;
        line-height: 1.5;
        margin-bottom: 10px;
    }

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

    .about_p {
        font-size: 0.8rem;
        line-height: 2.5;
        font-weight: bold;
        text-align: left;
    }

    .section {
        margin-top: 60px;
        text-align: center;
        margin-bottom: 60px;
    }

    .sec_h2 {
        background-color: #000;
        color: #fff;
        text-align: center;
        font-size: 1.5rem;
        font-weight: bold;
        margin-bottom: 30px;
    }


    /*  エントリーはこちら
------------------------------------------------------------------*/

    .mini_ent {
        text-align: center;
    }

    .mini_ent_00 {
        background-color: #fff;
        box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.2);
        width: 100%;
        border-radius: 60px;
        display: inline-block;
        padding-top: 20px;
        padding-bottom: 20px;
        font-size: 1.3rem;
        font-weight: bold;
        color: #0f465a;
        border: #000 3px solid;
    }

    .mini_ent_00:hover {
        opacity: 10;
        background-color: #01418b;
        background-position: right center;
        background-size: 200% auto;
        -webkit-animation: pulse 2s infinite;
        animation: ripple 1.5s infinite;
        color: #fff;
    }

    @keyframes ripple {
        0% {
            box-shadow: 0 0 0 0 #70d4f8;
        }

        70% {
            box-shadow: 0 0 0 10px rgb(27 133 251 / 0%);
        }

        100% {
            box-shadow: 0 0 0 0 rgb(27 133 251 / 0%);
        }
    }

    /*  WEGとは
------------------------------------------------------------------*/

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

    .sec_h2_2 {
        color: #000;
        text-align: center;
        font-size: 1.5rem;
        font-weight: bold;
        margin-bottom: 30px;
    }

    .about_p2 {
        color: #000;
        font-size: 0.8rem;
        line-height: 2.5;
        font-weight: bold;
        margin-bottom: 30px;
    }

    .graduate_h3 {
        width: 80%;
        margin: 0 auto;
    }

    .tale_flex {
        margin-top: 30px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 20px 10px;
    }

    .tale_flex div {
        width: 48%;
    }


    .name {
        color: #000;
        margin-top: 5px;
        text-align: center;
        font-size: 0.8rem;
    }

    .name_s {
        color: #000;
        margin-top: 5px;
        text-align: center;
        font-size: 0.5rem;
    }

    /*  合格者特典
------------------------------------------------------------------*/

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

    .grand_flex p {
        width: 40%;
        border: #fff 1px solid;
        padding: 20px 10px;
        line-height: 2;
        font-size: 0.8rem;
    }

    .grand_p2 {
        margin-top: 20px;
        font-size: 1.5rem;
    }

    .grand_p3 {
        border: #fff 1px solid;
        padding: 20px 10px;
        line-height: 2;
        margin-top: 20px;
    }

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

    /*  応募からの流れ
------------------------------------------------------------------*/

    .flow_01 {
        margin-top: 20px;
        text-align: center;
    }

    .flow_ti {
        display: inline-block;
        color: #000;
        border-bottom: 2px solid #000;
        font-size: 1.3rem;
        font-weight: bold;
        margin-bottom: 10px;
    }

    .flow_p {
        color: #000;
        margin-bottom: 10px;
        font-size: 0.8rem;
    }

    .flow_p2 {
        color: #000;
        font-size: 1.3rem;
    }

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

    /*  スライダー
------------------------------------------------------------------*/

    .slider02 {
        margin-top: 30px;
    }

    .slider02 img {
        width: 40;
        /*スライダー内の画像を横幅100%に*/
        height: auto;
    }


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

    .ded_txt {
        margin-top: 10px;
        text-align: left;
        padding: 0;
    }

    .ded_txt01 {
        border-bottom: 1px solid #fff;
        padding: 20px 0px;
        align-items: start;
    }

    .ded_tit {
        font-weight: bold;
        font-size: 1em;
        margin-bottom: 10px;
        color: #fff;
    }

    .ded_tit02 {
        font-size: 0.8rem;
        line-height: 2;
        color: #fff;
    }

    .area {
        background-color: #fff;
        padding-left: 10px;
        padding-top: 10px;
        padding-bottom: 10px;
        font-size: 1rem;
        margin-top: 20px;
        color: #000;
    }

    .area_flex {
        margin-top: 20px;
        display: flex;
        flex-wrap: wrap;
        justify-content: start;
        gap: 5px 5px;
    }

    .area_flex a {
        width: 23%;
        background-color: #fff;
        color: #000;
        text-align: center;
        border-radius: 10px;
        padding-top: 10px;
        padding-bottom: 10px;
        font-weight: bold;
        font-size: 0.8rem;
    }

    .area_flex a:hover {
        opacity: 10;
        background-position: right center;
        background-size: 200% auto;
        -webkit-animation: pulse 2s infinite;
        animation: ripple 1.5s infinite;
        color: #fff;
        background-color: #70d4f8;
    }

    .ent2 {
        margin-top: 20px;
    }

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

    .qa2 {
        margin-top: 30px;
    }

    .qa2>details>summary {
        margin-top: 20px;
        text-align: left;
        color: #000;
        font-size: 0.8rem;
        font-weight: bold;
        padding: 10px;
        background-color: #fff;
    }

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




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

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

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


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

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

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

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



    .copy {
        margin-top: 20px;
    }

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

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

    .ent_btn_sp {
        width: 35%;
        text-align: center;
        position: fixed;
        z-index: 500;
        bottom: 30px;
        right: 10px;
        display: flex;
        justify-content: space-between;

    }

    .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)
        }
    }

    /*  モーダルウィンドウ
------------------------------------------------------------------*/

    /*infoエリアをはじめは非表示*/
    #info {
        display: none;
    }

    .modal-open {
        display: none;
    }

    /*モーダルの横幅を変更したい場合*/
    .modaal-container {
        max-width: 600px;
    }

    /*モーダルのボタンの色を変更したい場合*/
    .modaal-close:after,
    .modaal-close:before {
        background: #ccc;
    }

    .modaal-close:focus:after,
    .modaal-close:focus:before,
    .modaal-close:hover:after,
    .modaal-close:hover:before {
        background: #666;
    }

    .modal_ent {
        margin-top: 10px;
        width: 100%;
        background-color: #70d4f8;
        padding: 10px 30px;
        border-radius: 30px;
        font-size: 0.8rem;
        font-weight: 700;
        display: inline-block;
        text-align: center;
    }

}