section {
    margin-top: 7rem;
}
section .inner {
    padding: 0;
}
section:first-child {
    margin-top: 0;
}
section:first-child .inner {
    padding: 12rem 0 8rem;
    border-bottom: solid 1px #ecf0fa;
}
section:last-child {
    margin-bottom: 12rem;
}

h1 {
    font-weight: 800;
    font-size: 4.4rem;
    letter-spacing: -0.03em;
    color: #121212;
    text-align: center;
}

h2 {
    font-weight: 700;
    font-size: 2.2rem;
    letter-spacing: -0.03em;
    color: #121212;
}

.content {
    margin-top: 2rem;
    font-size: 1.6rem;
    line-height: 1.7;
    letter-spacing: -0.04em;
    color: #333;
}
.content.wrap {
    border: solid 1px #dfdfdf;
    padding: 1.5rem 2rem;
    color: #666;
}
.content li ~ li {
    margin-top: 0.2rem;
}
.content li ul, .content li ol {
    margin-left: 1.8rem;
    font-size: 1.5rem;
}
.content li .table-wrapper {
    margin-bottom: 2rem;
}
.content a {
    color: #0076ff;
    text-decoration: underline;
}
.content dt {
    font-weight: 600;
}
.content dt ~ dt {
    margin-top: 1rem;
}

table {
    width: 100%;
    border-top: solid 2px #121212;
}
table thead {
    background-color: #F7F7F7;
}
table th, table td {
    text-align: center;
    border: solid 1px #C8CDD4;
    padding: 0.6rem 1rem;
    color: #121212;
}
table th:first-child, table td:first-child {
    border-left: 0;
}
table th:last-child, table td:last-child {
    border-right: 0;
}
table th {
    font-weight: 500;
    padding: 1rem 0;
}

.box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 3rem;
    gap: 3rem;
    background-color: #F7F7F7;
}

@media (max-width: 660px) {
    section {
        margin-top: 4rem;
    }
    section:first-child .inner {
        padding: 6rem 0 4rem;
    }
    section:last-child {
        margin-bottom: 6rem;
    }
    h1 {
        font-size: 2.7rem;
    }
    h2 {
        font-size: 2rem;
    }
    .content {
        margin-top: 1.8rem;
        font-size: 1.4rem;
    }
    .content li ul, .content li ol {
        margin-left: 1.4rem;
        font-size: 1.4rem;
    }
    .table-wrapper {
        width: 100%;
        overflow-x: auto;
    }
    .table-wrapper table {
        min-width: 600px;
    }
}