@charset "UTF-8";

#contents {
    padding-bottom: 0.5rem;
    background-color: #F2F4EF;
}


#site-map {

    @media screen and (max-width: 767px) {
        padding-bottom: 4rem;
    }

    .list {
        margin-bottom: 8rem;

        @media screen and (max-width: 767px) {
            margin-bottom: 4rem;
        }

        .title {
            margin-bottom: 2.5rem;
        }

        .main-list {
            >li {
                & a {
                    display: flex;
                    align-items: center;
                    justify-content: space-between;
                    padding-top: 0.8rem;
                    padding-bottom: 0.8rem;
                    width: 100%;
                    font-style: normal;
                    font-weight: 600;
                    font-size: 1.8rem;
                    line-height: 220%;
                    text-align: left;
                    letter-spacing: 0.1em;
                    color: #000000;
                    transition: opacity 0.3s ease;

                    @media (hover: hover) and (pointer: fine) {
                        &[href]&:hover {
                            /* text-decoration: underline; */
                            opacity: 0.5;
                        }
                    }

                    @media screen and (max-width: 767px) {
                        padding-top: 0.4rem;
                        padding-bottom: 0.4rem;
                        font-size: 1.6rem;
                    }

                    &[href]::after {
                        flex-shrink: 0;
                        content: "";
                        display: inline-block;
                        width: 3.2rem;
                        height: 3.2rem;
                        background-image: url("../../common/img/parts/circle-arrow.svg");
                        background-size: 100% 100%;
                        background-repeat: no-repeat;
                    }

                    @media screen and (max-width: 767px) {
                        &[href]::after {
                            width: 2.6rem;
                            height: 2.6rem;
                        }
                    }
                }
            }

            .sub-list-wrapper {
                padding-left: 4rem;

                @media screen and (max-width: 767px) {
                    padding-left: 2rem;
                }

                .sub-list-title {
                    color: #8F8F8F;
                }

                .sub-list {
                    padding-left: 4rem;

                    @media screen and (max-width: 767px) {
                        padding-left: 2rem;
                    }

                    & a {
                        font-size: 1.6rem;

                        @media screen and (max-width: 767px) {
                            font-size: 1.4rem;
                        }
                    }
                }
            }
        }
    }
}