@charset "utf-8";

.title-wrap {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 150px;
        margin: 0 0 5rem auto;
        color: #ffffff;
        font-size: 3rem;
        background-color: #54BC00;
        background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23e8ffc2' fill-opacity='0.14' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
}

.main-contents {
        padding-top: 5rem;
}

.contents-inner {
        margin-bottom: 15rem;
}

.site-map-nav {
        margin: 0 auto;
        display: flex;
}

.site-map-company-item {
        margin-right: 5%;
}

.site-map-list {
        margin-bottom: 4rem;
}

.site-map-category {
        display: block;
        padding: 5px 1.5rem;
        margin-bottom: 0.5rem;
        position: relative;
        font-size: 1.8rem;
        background-image: linear-gradient(to right, #104AB5, #104AB5 50%, #333333 50%);
        background-size: 200% 100%;
        background-position: -100%;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        transition: all 0.2s ease-in-out;
        border: 1px solid #dddddd;
}

.site-map-category::after {
        content: "";
        position: absolute;
        width: 3px;
        height: 100%;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        background-color: #104AB5;
}

.site-map-category::before {
        content: "";
        background: #104AB5;
        display: block;
        position: absolute;
        bottom: -1px;
        left: 0;
        width: 0;
        height: 1px;
        transition: all 0.3s ease-in-out;
}

.site-map-category:hover,
.site-map-sub-category:hover {
        background-position: 0;
}

.site-map-category:hover::before,
.site-map-sub-category:hover::before {
        width: 100%;
}

.sub-category-list {
        margin-left: 2rem;
}

.site-map-sub-category {
        display: block;
        padding: 5px 1.5rem;
        margin-bottom: 0.5rem;
        position: relative;
        font-size: 1.5rem;
        background-image: linear-gradient(to right, #FF3E80, #FF3E80 50%, #333333 50%);
        background-size: 200% 100%;
        background-position: -100%;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        transition: all 0.2s ease-in-out;
        border: 1px solid #dddddd;
}

.site-map-sub-category::after {
        content: "";
        position: absolute;
        width: 3px;
        height: 100%;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        background-color: #FF3E80;
}

.site-map-sub-category::before {
        content: "";
        background: #FF3E80;
        display: block;
        position: absolute;
        bottom: -1px;
        left: 0;
        width: 0;
        height: 1px;
        transition: all 0.3s ease-in-out;
}


.list-title {
        display: inline-block;
        margin-bottom: 1rem;
        padding: 0.3rem 2rem;
        font-size: 2rem;
        color: #ffffff;
        background-color: #54BC00;
}

.site-map-link {
        display: block;
        padding: 5px 1.5rem;
        margin-left: 4rem;
        margin-bottom: 0.5rem;
        position: relative;
        background-image: linear-gradient(to right, #54BC00, #54BC00 50%, #333333 50%);
        background-size: 200% 100%;
        background-position: -100%;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        transition: all 0.2s ease-in-out;
        border: 1px solid #dddddd;
}

.site-map-link::after {
        content: "";
        position: absolute;
        width: 3px;
        height: 100%;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        background-color: #54BC00;
}

.site-map-link::before {
        content: "";
        background: #54BC00;
        display: block;
        position: absolute;
        bottom: -1px;
        left: 0;
        width: 0;
        height: 1px;
        transition: all 0.3s ease-in-out;
}

.site-map-link:hover {
        background-position: 0;
}

.site-map-link:hover::before {
        width: 100%;
}

.site-map-link-style {
        font-size: 1.4rem;
}

@media screen and (max-width:768px) {
        .title-wrap {
                margin-bottom: 0;
        }

        .main-contents {
                padding-top: 0;
        }
}



@media screen and (max-width:599px) {

        .site-map-nav {
                display: block;
        }

        .site-map-list {
                margin-bottom: 2rem;
        }

        .site-map-link {
                margin-left: 1rem;
        }

        .list-title {
                display: inline-block;
                margin-bottom: 1rem;
                font-size: 1.7rem;
        }

}