/* 料金表セクション */
.top-pricing-table {
    scroll-snap-align: start;
    scroll-snap-stop: always;
    padding: 64px 0;
    background-color: transparent;
    position: relative;
    scroll-margin-top: 72px;
}

.top-pricing-table::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
    z-index: 0;
}

.top-pricing-table-wrapper {
    overflow-x: auto;
    margin-bottom: 32px;
}

.top-price-table {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-collapse: separate;
    border-spacing: 0;
    background-color: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.top-price-table thead {
    background-color: var(--primary-color);
    color: var(--white);
}

.top-price-table th {
    padding: 20px 16px;
    text-align: left;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.5;
}

.top-price-table th:first-child {
    padding-left: 24px;
}

.top-price-table th:last-child {
    text-align: right;
    padding-right: 24px;
}

.top-price-table td {
    padding: 20px 16px;
    border-bottom: 1px solid var(--gray-200);
    color: var(--gray-700);
    font-size: 16px;
    line-height: 1.6;
}

.top-price-table td:first-child {
    padding-left: 24px;
}

.top-price-table tbody tr:nth-child(even) {
    background-color: var(--gray-50);
}

.top-price-table tbody tr:hover {
    background-color: var(--gray-100);
    transition: background-color 0.2s ease;
}

.top-price-table tbody tr:last-child td {
    border-bottom: none;
}

.top-price-table td:last-child {
    text-align: right;
    font-weight: 700;
    font-size: 18px;
    color: var(--primary-color);
    padding-right: 24px;
}

.top-pricing-table-link {
    text-align: center;
    margin-top: 32px;
}

