/* ===== Thanks Content ===== */
.thanks-section {
    background: #fff;
}

.thanks-inner {
    text-align: center;
    max-width: 700px;
    padding: 120px 40px;
}

.thanks-icon {
    margin-bottom: 32px;
}

.thanks-title {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.thanks-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 2;
    margin-bottom: 24px;
}

.thanks-note {
    font-size: 0.8rem;
    color: #999;
    line-height: 2;
    margin-bottom: 48px;
}

.thanks-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.thanks-btn {
    display: inline-block;
    background: #ff6600;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 16px 48px;
    border-radius: 50px;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: opacity 0.3s ease;
}

.thanks-btn:hover {
    opacity: 0.7;
}

.thanks-tel {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.thanks-tel:hover {
    color: #ff6600;
}

/* ===== レスポンシブ ===== */
@media (max-width: 768px) {
    .thanks-inner {
        padding: 80px 24px;
    }

    .thanks-icon svg {
        width: 48px;
        height: 48px;
    }

    .thanks-actions {
        flex-direction: column;
        gap: 16px;
    }

    .thanks-btn {
        width: 100%;
        text-align: center;
    }
}
