@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: #ffffff;
        background-image: linear-gradient(#dbe2ee 1px, transparent 1px), linear-gradient(to right, #dbe2ee 1px, #ffffff 1px);
        background-size: 20px 20px;
        margin: 0;
    }

    /*
    .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: #fff;
        text-align: center;
        color: #fff;
    }

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

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

    /* fadeUpをするアイコンの動き */
    .fadeUp {
        animation-name: fadeUpAnime;
        animation-duration: 0.8s;
        animation-fill-mode: forwards;
        opacity: 0;
        font-size: 0.8rem;
        line-height: 4;
        font-weight: 300;
        text-align: left;
    }

    @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メイン
------------------------------------------------------------------*/

    .h1_top {
        padding-top: 100px;
        margin-bottom: 30px;
    }

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

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

    .h2_1 {
        font-size: 2rem;
        line-height: 0.6;
        border-bottom: 2px #1F1F1F solid;
        padding-bottom: 10px;
        margin-bottom: 20px;
    }

    .h2_2 {
        font-size: 0.8rem;
    }

    .h3_1 {
        font-size: 1.5rem;
        font-weight: 700;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .about_p {
        line-height: 2.5;
        font-size: 0.8rem;
        font-weight: 400;
    }

    .about_img {
        margin-top: 20px;
    }

    /*  ポイント
------------------------------------------------------------------*/

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

    .point_flex {
        background-color: #fff;
        display: flex;
        align-items: center;
        padding: 10px 20px;
        margin-bottom: 20px;
    }

    .point_number {
        color: #00a0e9;
        font-size: 2rem;
    }

    .point_h3 {
        font-size: 1rem;
        margin-left: 20px;
    }

    .point4 {
        margin-left: 20px;
    }

    .point_h3_2 {
        font-size: 1rem;
    }

    .point4_1 {
        font-size: 0.8rem;
        background-color: #00a0e9;
        padding: 5px 5px;
        color: #fff;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .point_4_2 {
        font-size: 0.6rem;
        line-height: 2;
    }

    .we_a {
        margin-top: 10px;
        display: block;
        color: #00a0e9;
        border-bottom: #00a0e9 solid 1px;
        margin-bottom: 10px;
        font-size: 0.8rem;
    }

    .img {
        margin-top: 30px;
    }

    /*  カリキュラム
------------------------------------------------------------------*/

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

    .curri_01 {
        width: 28%;
        text-align: center;
    }

    .curri_plus {
        width: 3%;
        font-size: 2rem;
        font-weight: bold;
    }

    .curri_01 h4 {
        font-size: 0.7rem;
        margin-top: 10px;
        color: #00a0e9;
    }

    .h4_s {
        font-size: 0.5rem;
    }

    .curri_math {
        margin-top: 30px;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 10px 10px;
        border-top: 3px #1F1F1F dotted;
        border-bottom: 3px #1F1F1F dotted;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .curri_math_p {
        width: 21%;
        background-color: rgba(0, 160, 233, 0.3);
        padding: 15px;
        text-align: left;
    }

    .curri_math_p h4 {
        font-size: 0.8rem;
    }

    .curri_math_p p {
        margin-top: 20px;
        font-size: 0.6rem;
    }

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

    .summary_01 {
        border-bottom: #1F1F1F solid 1px;
        padding-bottom: 10px;
        margin-bottom: 20px;
    }

    .summary_01 h3 {
        font-size: 1rem;
    }

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

    .map {
        margin-top: 20px;
        width: 100%;
        height: 300px;
        border: 0;
    }

    /*  学費
------------------------------------------------------------------*/

    .fees_p {
        font-size: 1rem;
    }

    .fees {
        margin-left: 10px;
        margin-right: 5px;
        font-weight: 400;
        color: #00a0e9;
        font-size: 2rem;
    }

    /*  WEAとは
------------------------------------------------------------------*/

    .wea_p {
        line-height: 2;
        font-size: 0.8rem;
    }

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

    .talent {
        width: 22%;
        text-align: center;
    }

    .talent h4 {
        font-size: 0.6rem;
    }

    .student {
        margin-top: 10px;
        background-color: #00a0e9;
        padding-top: 10px;
        padding-bottom: 10px;
        width: 100%;
        display: block;
        border-radius: 30px;
        text-align: center;
        color: #fff;
    }

    /*  ワタナベ裏方日記
------------------------------------------------------------------*/

    .h2_3 {
        text-align: center;
        color: #00a0e9;
        font-weight: bold;
        font-size: 1rem;
    }

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

    .urakata img {
        width: 40%;
    }

    .urakata_p {
        width: 55%;
    }

    .urakata_p p {
        font-size: 0.8rem;
        line-height: 2;
    }

    .urakata_p a {
        margin-top: 30px;
        display: block;
        background-color: #fff;
        color: #00a0e9;
        padding: 30px;
        border-radius: 20px;
        text-align: center;
        font-size: 1.5rem;
    }



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

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

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


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

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

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

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

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

    .copy {
        margin-top: 20px;
    }

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

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

    .back_blue {
        margin-top: 30px;
        background-color: rgb(255, 255, 0, 0.3);
        border-radius: 20px;
    }


    .checkmark001 {
        padding-left: 30px;
        position: relative;
        font-size: 1rem;
    }

    .check_p {
        margin-bottom: 20px;
    }

    .checkmark001:before,
    .checkmark001:after {
        content: "";
        display: block;
        position: absolute;
    }

    .checkmark001:before {
        width: 16px;
        height: 16px;
        border: 1px solid #000000;
        left: 0;
        top: 5px;
    }

    .checkmark001:after {
        border-left: 2px solid #ff0000;
        border-bottom: 2px solid #ff0000;
        width: 18px;
        height: 5px;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        left: 5px;
        top: 6px;
    }

    .check_p2 {
        text-align: center;
        font-size: 1.2rem;
    }

    .mg_ent {
        margin-top: 10px;
        display: block;
        padding: 10px;
        color: #fff;
        border-radius: 50px;
        font-weight: bold;
        text-align: center;
        background-color: #e46a00;
    }

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

    .pamphlet {
        width: 55%;
    }

    .pamphlet_a {
        width: 42%;
    }


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

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

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

    .ent_bt_flex a {
        padding: 10px 5px;
        color: #fff;
        border-radius: 50px;
        font-weight: bold;
        text-align: center;
        font-size: 0.6rem;
    }

    .pc_line {
        width: 40%;
        background-color: #00a0e9;
    }

    .pc_viewing {
        width: 40%;
        background-color: #e46a00;
    }

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

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

}