/* ========== Commission ページ ========== */
.commission-wrapper {
    padding: 0 0 80px;
}

.commission-overseas {
    margin-bottom: 40px;
    border-color: var(--color-border-hover);
}

.commission-overseas p {
    color: var(--color-text);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.commission-section {
    margin-bottom: 56px;
}

.commission-section-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 28px;
    color: #fff;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-accent-muted);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.service-card {
    padding: 24px;
}

.service-card h3 {
    font-size: 1.0625rem;
    margin-bottom: 10px;
    color: var(--color-accent);
    font-weight: 600;
}

.service-card p {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

.pricing-table {
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 32px;
    border: 1px solid var(--color-border);
}

.pricing-subtitle {
    font-size: 1.0625rem;
    margin: 24px 0 12px;
    color: var(--color-accent);
    font-weight: 600;
}

.pricing-row {
    display: grid;
    grid-template-columns: 180px 1fr;
    border-bottom: 1px solid var(--color-border);
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-label {
    background: var(--color-accent-muted);
    padding: 14px 18px;
    font-weight: 600;
    color: var(--color-accent);
    font-size: 0.8125rem;
}

.pricing-value {
    padding: 14px 18px;
    color: #ccc;
    font-size: 0.8125rem;
    display: flex;
    align-items: center;
    background: var(--color-bg-card);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.process-step {
    padding: 24px 20px;
    text-align: center;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--color-accent);
    color: #fff;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.9375rem;
    margin-bottom: 12px;
}

.process-step h3 {
    font-size: 0.9375rem;
    margin-bottom: 8px;
    color: #fff;
}

.process-step p {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.info-box {
    padding: 18px 20px;
    margin-bottom: 16px;
}

.info-box h3 {
    font-size: 0.875rem;
    margin-bottom: 6px;
    color: var(--color-accent);
    font-weight: 600;
}

.info-box p {
    font-size: 0.8125rem;
    color: #ccc;
    line-height: 1.6;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.accordion-header {
    padding: 14px 18px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--color-accent-muted);
    transition: background 0.2s;
    font-weight: 600;
    color: var(--color-accent);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    width: 100%;
    text-align: left;
    font-size: 0.875rem;
    font-family: inherit;
    margin-bottom: 8px;
}

.accordion-header:hover,
.accordion-header.active {
    background: rgba(255, 107, 107, 0.22);
}

.accordion-arrow {
    transition: transform 0.3s;
}

.accordion-header.active .accordion-arrow {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 18px;
}

.accordion-content.active {
    max-height: 600px;
    padding: 12px 18px 16px;
}

.accordion-content p {
    font-size: 0.8125rem;
    color: #ccc;
    margin: 6px 0;
    line-height: 1.6;
}

.table-wrapper {
    border-radius: var(--radius-md);
    overflow-x: auto;
    border: 1px solid var(--color-border);
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 480px;
}

table thead {
    background: var(--color-accent-muted);
}

table th {
    padding: 12px;
    text-align: left;
    font-weight: 600;
    color: var(--color-accent);
    font-size: 0.8125rem;
    border-bottom: 1px solid var(--color-border);
}

table td {
    padding: 12px;
    font-size: 0.8125rem;
    color: #ccc;
    border-bottom: 1px solid var(--color-border);
    background: var(--color-bg-card);
}

table tbody tr:hover td {
    background: rgba(255, 107, 107, 0.05);
}

.text-ok { color: #4ade80; }
.text-ng { color: var(--color-accent); }

.cta-section {
    padding: 40px 32px;
    text-align: center;
}

.cta-section h3 {
    font-family: var(--font-display);
    font-size: 1.375rem;
    margin-bottom: 12px;
    color: #fff;
}

.cta-section p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

@media (max-width: 768px) {
    .pricing-row {
        grid-template-columns: 1fr;
    }

    .pricing-label {
        border-bottom: 1px solid var(--color-border);
    }

    .cta-section {
        padding: 28px 20px;
    }
}
