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

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

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

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

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

    @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: 50%;
    }

    .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: 35%;
    }

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

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

    .ent01>a {
        display: block;
        color: #1F1F1F;
    }

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

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

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

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

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

    .h2_2 {
        font-size: 1rem;
    }

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

    .about_p {
        line-height: 3;
        font-size: 1rem;
        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: 3rem;
    }

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

    .point4 {
        margin-left: 20px;
    }

    .point_h3_2 {
        font-size: 1.5rem;
    }

    .point4_1 {
        background-color: #00a0e9;
        padding: 10px 20px;
        color: #fff;
        margin-top: 10px;
        margin-bottom: 10px;
    }

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

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

    .img {
        margin-top: 50px;
    }

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

    .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.8rem;
        margin-top: 10px;
        color: #00a0e9;
    }

    .h4_s {
        font-size: 0.6rem;
    }

    .curri_math {
        margin-top: 30px;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 20px 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: 20px;
        text-align: left;
    }

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

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

    .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: 30px;
        margin-bottom: 30px;
        width: 100%;
        height: 450px;
        border: 0;
    }

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

    .fees_p {
        font-size: 1.3rem;
    }

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


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

    .wea_p {
        line-height: 2;
    }

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

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

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

    .student {
        margin-top: 20px;
        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: 1.8rem;
    }

    .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: 1.2rem;
        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;
    }

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

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


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

    .check_p {
        margin-bottom: 30px;
    }

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

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

    .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.5rem;
    }

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

    .shiryo_flex {
        display: flex;
        justify-content: space-between;
        margin-top: 50px;
        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: 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;
    }

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

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

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

    .kojin {
        text-align: center;
    }

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

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

    footer {
        padding-top: 30px;
        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;
    }

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

    /*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: 1.5rem;
        font-weight: 700;
        display: inline-block;
        text-align: center;
    }

}