body {
    font-family: 'Noto Sans JP', sans-serif;
}

th {
    vertical-align: top;
}

/* 768 보다 작으면 scroll-bar 적용 */
@media screen and ( max-width: 768px ) {
    .table-wrapper
    {
        overflow-x: scroll;
    }
}



body {
    display: flex;
    justify-content: center;
    height: 100vh;
    margin: 0;
}

body {
    font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}


.container {
    background-color: #fefefe;
    padding: 0px;
}

h1 {
    color: #333;
}

p {
    color: #666;
}

.contact {
    margin-top: 1em;
}

a:hover {
    text-decoration: underline;
}


.nav {
    flex-wrap: nowrap;

    overflow-x: auto;
    overflow-y: hidden;

    white-space: nowrap !important;
}

.nav-link {
    display: flex; /* Make parent a flex-container */
    justify-content: center; /* Centers child horizontally */
    align-items: center; /* Centers child vertically */

    height: 70px;

    border-radius: 0px !important;

    color: #111;
}

button.active {
    color: #4f88ef !important;
    font-weight: 900;
}




.faq-section {
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    background-color: #f9f9f9;
}
.faq-question {
    cursor: pointer;
    font-weight: bold;
    margin: 0;
    padding: 10px;
    background-color: #f1f1f1;
    border-radius: 5px;
    color: #555;

    display: flex;
    justify-content: space-between;
}
.faq-date {
    font-size: 0.9rem;
    color: #888;
}
.faq-answer {
    display: none;
    margin-top: 10px;
    padding: 10px;
    border-top: 1px solid #ccc;
}

.vertical-spacing {
    height: 10px;
}