section {
    margin-top: 7rem;
    scroll-margin-top: calc(var(--bannerHeight, 0px) + var(--headerHeight) + 2rem);
}
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;
}
h1 i {
    letter-spacing: -0.05em;
}

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;
    word-wrap: anywhere;
}
.content li .table-wrapper {
    margin-bottom: 1rem;
}
.table-wrapper + .content {
    margin-top: 1rem;
}
.content li .content {
    margin-top: 1rem;
}
.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: 0.6rem 0;
}

.tfoot {
    font-size: 1.4rem;
}

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

.reason {
    border-radius: 5px;
    background-color: #F7F7F7;
    padding: 1rem 2rem;
    margin-bottom: 0.8rem;
}
.reason.content ul {
    margin-left: 0;
}
.reason ul li {
    line-height: 1.5;
}
.check {
    border: solid 1px #333;
    padding: 1.5rem 2rem;
}
.check .content {
    font-weight: 500;
    margin-top: 0;
    text-indent: -1.1em;
    margin-left: 1.1em;
}
.index {
    margin-top: 2rem;
    display: grid;
    grid-template-rows: repeat(6, 1fr);
    grid-template-columns: repeat(2, 1fr);
    grid-auto-flow: column;
    border-radius: 5px;
    border: solid 1px #C8CDD4;
    padding: 2.5rem 3.5rem;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 1.7;
    letter-spacing: -0.04em;
    color: #333;
    row-gap: 0.3rem;
}
.index li {
    text-align: left;
}
.index li a {
    color: inherit;
    text-decoration: unset;
}
.index li a:hover {
    color: #0076FF;
    text-decoration: underline;
}

.select {
    position: relative;
    display: inline-block;
    margin-top: 2rem;
}
.select-btn {
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1.2rem;
    border: solid 1px #C8CDD4;
    border-radius: 5px;
    background-color: #fff;
    font-size: 1.6rem;
    font-weight: 500;
    color: #666;
    text-align: left;
}
.select-btn::after {
    content: "";
    width: 1.6rem;
    height: 1.6rem;
    background: url("/images/policy/ic_down.svg") center no-repeat;
    transition: transform 0.2s;
}
.select.open .select-btn::after {
    transform: rotate(180deg);
}
.select-list {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    z-index: 10;
    min-width: 100%;
    padding: 0.5rem 0;
    background-color: #fff;
    border: solid 1px #C8CDD4;
    border-radius: 5px;
    box-shadow: 0 0.5rem 1.5rem rgba(18, 18, 18, 0.1);
}
.select.open .select-list {
    display: block;
}
.select-list a {
    display: block;
    padding: 0.8rem 2rem;
    color: #333;
    white-space: nowrap;
}
.select-list a:hover {
    background-color: #F7F7F7;
    color: #0076FF;
}

@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;
    }
    .select {
        display: block;
    }
    .select-btn {
        width: 100%;
        padding: 0.8rem 1.6rem;
        font-size: 1.4rem;
    }
    .select-list {
        width: 100%;
    }
    .select-list a {
        padding: 0.8rem 1.6rem;
        font-size: 1.4rem;
    }
}