* {
    font-family: serif;
    /* user-select: none; */
}

.content-title {
    padding: 2% 4%;
    border-left: 10px solid;
    font-size: 1.5em;
}

.w-fit {
    width: fit-content;
    margin: 0 auto;
}

.heading {
    border-bottom: 2px dotted;
}

footer>ul {
    padding: 0;
}


.footer-list:hover {
    color: darkgreen;
}

.pc-row {
    display: flex;
    align-items: center;
    justify-content: center;
}


/* PC */
@media screen and (min-width:601px) {

    .access {
        display: flex;
        justify-content: space-around;
        align-items: center;
    }

    .pc-row-list {
        width: 50% !important;
    }

    .float-y {
        width: 50%;
    }

}

@media screen and (max-width:600px) {
    .pc-row {
        flex-direction: column;
    }

    .float-y {
        width: 70%;
    }

    footer>ul {
        flex-wrap: wrap;
    }

    footer>ul>li {
        margin-top: 10px;
    }


}