/* 文字をutf-8に指定 */
@charset "utf-8";

/* ブラウザの差分をなくすため使用 */
@import url("sanitize.css");

/* Noto serif JPのフォントを使用するため使用 */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP&display=swap');

/* ▼ヘッダーデザイン▼ */
header {
    width: 100%;
    height: 64px;
    top: 0;
    left: 0;
    position: fixed;
    background-color: rgba(0, 0, 0, 0.75);
    display: flex;
    font-family: "Noto Serif JP", serif;
    line-height: 64px;
    z-index: 1000;
}

.company_logo {
    height: 64px;
}

.hamburger {
    display: none;
    cursor: pointer;
    float: right;
}

.hamburger_area {
    margin:0 24px 0 auto;
}

.hamburger_menu {
    width: 100%;
    display: flex;
}

.hamburger_menu ul {
    list-style: none;
    margin: 0;
    display: flex;
    margin:0 0 0 auto;
}

.hamburger_menu li {
    margin: 0 24px 0 0;
    font-size: 24px;
}

.hamburger_menu a {
    text-decoration: none;
    color: #fff;
}

.sign_up {
    margin: 0 24px 0 0;
    font-size: 40px;
}
/* ▲ヘッダーデザイン▲ */

/* ▼ボディーデザイン▼ */
body {
    background-color: #f5f5f5;
    font-family: "Noto Serif JP", serif;
    overflow-x: hidden;
}
/* ▲ボディーデザイン▲ */

/* ▼講習メニューデザイン▼ */
.FirstLayer {
    height: 240px;
    display: flex;
}

.haken_color {
    width: 50%;
    height: 240px;
    background-color: #0099cc;
    position: relative;
    color: #fff;
    font-size: 32px;
}

.haken_color p {
    width: 100%;
    margin: 0;
    text-align: center;
}

.haken_image {
    width: 100%;
    height: 240px;
    float: left;
    border: solid 2px #fff;
    object-fit: cover;
    object-position: 75% 75%;
    opacity: 0.5;
}

.shokai_color {
    width: 50%;
    height: 240px;
    background-color: #00cc33;
    position: relative;
    color: #fff;
    font-size: 32px;
}

.shokai_color p {
    width: 100%;
    margin: 0;
    text-align: center;
}

.shokai_image {
    width: 100%;
    height: 240px;
    float: right;
    border: solid 2px #fff;
    object-fit: cover;
    opacity: 0.5;
}

.SecondLayer {
    height: 240px;
    display: flex;
}

.giseki_color {
    width: 33%;
    height: 240px;
    background-color: #3300cc;
    position: relative;
    color: #fff;
    font-size: 24px;
}

.giseki_color p {
    width: 100%;
    margin: 0;
    text-align: center;
}

.giseki_image {
    width: 100%;
    height: 240px;
    float: left;
    border: solid 2px #fff;
    object-fit: cover;
    opacity: 0.5;
}

.gishi_color {
    width: 34%;
    height: 240px;
    background-color: #663300;
    position: relative;
    color: #fff;
    font-size: 24px;
}

.gishi_color p {
    width: 100%;
    margin: 0;
    text-align: center;
}

.gishi_image {
    width: 100%;
    height: 240px;
    border: solid 2px #fff;
    object-fit: cover;
    opacity: 0.5;
}

.seikatu_color {
    width: 33%;
    height: 240px;
    background-color: #99cc00;
    position: relative;
    color: #fff;
    font-size: 24px;
}

.seikatu_color p {
    width: 100%;
    margin: 0;
    text-align: center;
}

.seikatu_image {
    width: 100%;
    height: 240px;
    float: right;
    border: solid 2px #fff;
    object-fit: cover;
    opacity: 0.5;
}

.center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.text_border {
    padding: 25px 10px;
    border: solid 1px #fff;
}
/* ▲講習メニューデザイン▲ */

/* ▼フッターデザイン▼ */
footer {
    width: 100%;
    height: 760px;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    position: relative;
    background-color: #303133;
    color: white;
    font-family: "Noto Serif JP", serif;
    padding: 20px;
}

footer a {
    text-decoration: none;
    color: #fff;
}

.footer-column {
    flex: 1;
    margin-bottom: 20px;
}

.footer-column li {
    list-style: none;
    padding: 5px 0;
    width: 230px;
}

.footer-bottom {
    position: absolute;
    bottom: 0;
    text-align: center;
    margin-bottom: 10px;
}

.footer-bottom a {
    margin: 0 20px 0 0;
}
/* ▲フッターデザイン▲ */

/* ▼laptopザイン▼ */
@media (max-width: 1270px) {
    /* ▼ヘッダーデザイン▼ */
    .overlay {
        display: none;
        position: fixed;
        display: flex;
        width: 100%;
        height: 100%;
        top: 64px;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.75);
        z-index: 1;
    }

    .hamburger_area {
        display: block;
        float: right;
        z-index: 2;
    }

    .hamburger {
        font-size: 40px;
        color: #fff;
        z-index: 10;
        display: block;
    }

    .hamburger_menu {
        display: none;
        display: block;
        margin-top: 64px;
    }

    .hamburger_menu ul {
        display: block;
        margin: 0;
        padding: 0;
    }

    .hamburger_menu li {
        margin: 0;
    }

    .sign_up {
        margin: 0;
    }
    /* ▲ヘッダーデザイン▲ */

    /* ▼講習メニューデザイン▼ */
    .FirstLayer {
        height: 120px;
    }

    .haken_color {
        height: 120px;
        font-size: 24px;
    }

    .haken_image {
        height: 120px;
    }

    .shokai_color {
        height: 120px;
        font-size: 24px;
    }

    .shokai_image {
        height: 120px;
    }

    .SecondLayer {
        height: 120px;
        display: flex;
    }

    .giseki_color {
        height: 120px;
        font-size: 16px;
    }

    .giseki_image {
        height: 120px;
    }

    .gishi_color {
        height: 120px;
        font-size: 16px;
    }

    .gishi_image {
        height: 120px;
    }

    .seikatu_color {
        height: 120px;
        font-size: 16px;
    }

    .seikatu_image {
        height: 120px;
    }

    .text_border {
        padding: 16px 10px;
    }
    /* ▲講習メニューデザイン▲ */

    /* ▼フッターデザイン▼ */
    footer {
        height: auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    footer a {
        text-decoration: none;
        color: #fff;
    }

    .footer-column {
        flex: 1;
    }

    .footer-column li {
        list-style: none;
        padding: 5px 0;
    }
    /* ▲フッターデザイン▲ */
}
/* ▲laptopデザイン▲ */

/* ▼tabletザイン▼ */
@media (535px<= width <= 725px) {
    /* ▼ヘッダーデザイン▼ */
    /* ▲ヘッダーデザイン▲ */

    /* ▼講習メニューデザイン▼ */
    .haken_color {
        font-size: 20px;
    }

    .shokai_color {
        font-size: 20px;
    }

    .giseki_color {
        font-size: 14px;
    }

    .gishi_color {
        font-size: 14px;
    }

    .seikatu_color {
        font-size: 14px;
    }

    .text_border {
        padding: 12px 10px;
    }
    /* ▲講習メニューデザイン▲ */
}
/* ▲tabletデザイン▲ */

/* ▼phoneザイン▼ */
    @media (max-width: 535px) {
    /* ▼ヘッダーデザイン▼ */
    .hamburger_menu {
        display: none;
        display: block;
        margin-top: 64px;
    }

    .hamburger_menu ul {
        display: block;
        margin: 0;
        padding: 0;
    }

    .hamburger_menu li {
        height: 45px;
        margin: 0;
        font-size: 20px;
    }
    /* ▲ヘッダーデザイン▲ */

    /* ▼講習メニューデザイン▼ */
    .haken_color {
        font-size: 16px;
    }

    .shokai_color {
        font-size: 16px;
    }

    .giseki_color {
        font-size: 10px;
    }

    .gishi_color {
        font-size: 10px;
    }

    .seikatu_color {
        font-size: 10px;
    }

    .text_border {
        padding: 12px 6px;
    }
    /* ▲講習メニューデザイン▲ */
}
/* ▲phoneデザイン▲ */