@charset "utf-8";
@import url("root.css");
/***************************************
-------------- CONTACT --------------
***************************************/
.page_wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto 60px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    border: 2px solid var(--base-color01);
    background: #fff;
    padding: 5%;
    margin-top: 45px;
}
#sitemap h3 {
    width: 100%;
    font-size: 2rem;
    font-weight: bold;
    color: var(--base-color01);
    border-bottom: 2px solid var(--base-color01);
    padding-bottom: 5px;
    margin-bottom: 15px;
}
#sitemap h3 a {
    font-size: 2rem;
}
#sitemap ul {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin: 30px auto;
}
#sitemap ul li {
    width: 24%;
    margin-right: 1%;
    margin-bottom: 30px;
}
#sitemap ul li:hover {
    color: var(--base-color01);
    text-decoration: underline;
}
#sitemap ul li:before {
    content: "";
    display: inline-block;
    background-image: url(../img/arrow_bl.svg);
    background-repeat: no-repeat;
    background-position: center left;
    background-size: contain;
    width: 10px;
    height: 10px;
    margin-right: 5px;
    margin-bottom: 2px;
}

/* =======================
  PC
======================== */
@media screen and (min-width: 1200px) {}
/* =======================
  TABLET
======================== */
@media screen and (max-width:1199px) {
}
@media screen and (max-width: 768px) {
    #sitemap ul li {
        width: 32%;
        margin-right: 1%;
    }
    #sitemap h2 a {
        font-size: min(4.3vw, 2.4rem);
    }
}
/* =======================
  SP
======================== */
@media screen and (max-width: 599px) {
    #sitemap ul li {
        width: 49%;
        margin-right: 1%;
    }

}






