@charset "UTF-8";

/* join-shcool.html */

/* max-width: 800px (一部1400px) で設計 */



/* 〇 CSS担当 Yokomichi Kazuha */

/* 〇 修正 Sakamaki Ryu */



/* ★ ヒーロー画像 */

.join-school {
    background-image: url(../image/join_school/schedule_hero.jpg);
}



/* ★ 共通設定 */

.main-content {
    padding-top: 0;
    margin: 0 auto;
    text-align: center;
    display: grid;
    place-items: center;
    max-width: 1400px;
}

.main-content02 {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.max800 {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    display: grid;
    place-items: center;
}

.max800 img {
    min-width: 200px;
}

@media (max-width: 800px) {
    .max800 img {
        min-width: 160px;
    }
}

@media (max-width: 500px) {
    .max800 img {
        min-width: 120px;
    }
}



.bold-join {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 10px;
    line-height: 1.5;
}

@media (max-width: 550px) {
    .bold-join {
        font-size: 16px;
    }

    .flex-p p {
        font-size: 14px;
    }
}

@media (max-width: 440px) {
    .bold-join {
        font-size: 14px;
    }

    .flex-p p {
        font-size: 12px;
    }
}



.h2 {
    text-align: center;
    font-size: clamp(24px, 6vw, 40px);
    font-family: "Zen Old Mincho", serif;
    font-weight: 400;
    font-style: normal;
    padding-top: 50px;
    margin-bottom: 50px;
}

.catch-sub {
    font-size: clamp(12px, 3vw, 20px);
    text-align: center;
    font-family: "Zen Old Mincho", serif;
    font-weight: 400;
    font-style: normal;
    margin-bottom: 40px;
}

.flex-item {
    display: flex;
    align-items: center;
    max-width: 90%;
    margin: 0 auto;
    margin-bottom: 40px;
    gap: 5%;
}

.flex-img {
    flex-basis: 20%;
}

.flex-p {
    flex-basis: 80%;
    line-height: 1.5rem;
}

h4 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
}

.title {
    font-size: 25px;
    background-color: #9bc5aa;
    color: #fff;
    justify-content: center;
    text-align: center;
    max-width: 100%;
    border-radius: 20px;
    padding: 20px;
    margin: 20px auto;
}

.block {
    display: block;
    max-width: 900px;
    margin: 0 auto;
}

.checked {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #198c3b;
    color: #fff;
    font-size: 20px;
    border-radius: 20px;
    line-height: 1.2rem;
    padding: 2% 1%;
    margin-bottom: 20px;
    gap: 10px;
}

.checked p {
    text-align: center;
}

@media (max-width: 600px) {
    .checked {
        font-size: 16px;
    }
}

@media (max-width: 400px) {
    .checked {
        font-size: 14px;
    }
}


.size {
    font-size: 1.5rem;
    padding-right: 10px;
}



/* 835px以下で  消える */

.show-835 {
    display: none;
}

.break-835 {
    display: inline;
}

@media (max-width: 835px) {
    .show-835 {
        display: inline;
    }

    .break-835 {
        display: none;
    }
}



/* 500px以下で  消える */

.show-500 {
    display: none;
}

.break-500 {
    display: inline;
}

@media (max-width: 500px) {
    .show-500 {
        display: inline;
    }

    .break-500 {
        display: none;
    }
}

