@charset "UTF-8";

main {
    background-image: linear-gradient(to bottom, #cdc8b5, #fff);
}

.lower_ttl {
    position: relative;
    width: 100%;
    background-color: #081933;
    background-position: center bottom;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 30%;
}

.lower_ttl h2 {
    position: absolute;
    text-align: center;
    font-size: 30px;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    letter-spacing: 5px;
}

.map_Area {
    width: 90%;
    max-width: 1000px;
    margin: 100px auto 0;
}

.map_Area h3 {
    position: relative;
    font-size: 24px;
    text-align: center;
    margin: 0 0 50px;
    color: #000;
}

.map_Area h3::after {
    position: absolute;
    content: "";
    width: 30px;
    height: 3px;
    background: #000;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.map_Area .btn_List {
    margin: 50px auto 30px;
    width: 90%;
    max-width: 620px;
    justify-content: space-between;
}

.map_Area .btn_List li {
    width: 100%;
    max-width: 300px;
}

.map_Area .btn_List li a {
    display: block;
    text-align: center;
    font-size: 16px;
    color: #081933;
    padding: 15px 0;
    transition: 0.3s;
}

.map_Area .btn_List li .btn_map {
    background: #b9d5ea;
    border: #b9d5ea 1px solid;
}

.map_Area .btn_List li .btn_print {
    background: #c4c4c4;
    border: #c4c4c4 1px solid;
}

.map_Area .btn_List li .btn_map:hover {
    background: #d8e1e3;
    color: #000;
}

.map_Area .btn_List li .btn_print:hover {
    background: #e3e3e3;
    color: #000;
}

#mapP .induction-flex {
    margin: 60px auto 0;
}

.mg_map_Area {
    width: 90%;
    max-width: 800px;
    margin: 100px auto;
}

/*===================
sp
===================*/
@media only screen and (max-width: 767px) {
    .lower_ttl {
        padding-top: 60%;
    }

    .lower_ttl h2 {
        font-size: 20px;
        transform: translate(-50%, 0);
    }

    .map_Area h3 {
        font-size: 18px;
        margin: 0 0 30px;
    }

    .map_Area h3::after {
        width: 30px;
        height: 1px;
    }

    .map_Area .btn_List {
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: center;
        width: 90%;
        max-width: 620px;
        margin: 50px auto;
    }

    .map_Area .btn_List li {
        margin: 0 auto;
    }

    .map_Area .btn_List li a {
        font-size: 14px;
    }

    .map_Area .btn_List li .btn_print {
        display: none;
    }
}

/*===================
print
===================*/
@media print {

    header,
    footer,
    .btn_List,
    .lower_ttl,
    .induction-flex {
        display: none;
    }
}