@charset "UTF-8";

/* ------------------------------
	Sitemap
------------------------------ */

/* .sec_sitemap */

.sec_sitemap .nav .nav_list li:first-child {
    display: none;
}
.sec_sitemap .nav {
    margin-bottom: 2em;
}
.sec_sitemap .nav .nav_list li {
    display: block;
    text-align: left;
}
.sec_sitemap .nav .nav_list li a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    margin: 0 auto 1em auto;
    padding: 1em 4em 1em 2em;
    border: 1px solid #ccc;
    color: var(--color-black)!important;
    background-image: url("/common/images/icon_arrow-r2.svg");
    background-repeat: no-repeat;
    background-position: right 1.5em center;
    background-size: 18px auto;
    cursor: pointer;
}
.sec_sitemap .nav .nav_list li a:hover {
	color: #00ADA2!important;
    border: 1px solid #00ADA2;
}

.sec_sitemap .nav .nav_list li:last-child {
    display: none;
}

.sec_sitemap .sub ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.sec_sitemap .sub ul li {
    width: 100%;
    box-sizing:border-box;
}
.sec_sitemap .sub ul li a {
    display: block;
    margin: 0 auto;
    padding: 1em 4em 1em 2em;
    border-bottom: 1px solid #ccc;
    color: var(--color-black)!important;
    background-image: url("/common/images/icon_arrow-r2.svg");
    background-repeat: no-repeat;
    background-position: right 1.5em center;
    background-size: 18px auto;
    cursor: pointer;
}
.sec_sitemap .sub ul li a:hover {
	color: #00ADA2!important;
    border-bottom: 1px solid #00ADA2;
}

@media screen and (min-width:768px) {
    .sec_sitemap .sub.full ul li {
        width: 100%;
    }
    .sec_sitemap .sub ul li {
        width: 48%;
    }
}