/**
 * お問い合わせページ - スタイル
 */

/* Contact Checklist */
.contact-checklist {
    list-style: none;
    margin: 16px 0 0;
}

.contact-checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 10px;
}

.contact-checklist-item:last-child {
    margin-bottom: 0;
}

.contact-checklist-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--color-white);
    background: var(--color-primary);
    border-radius: 50%;
}

/* Google Form Embed */
.contact-form-embed {
    width: 100%;
    overflow: hidden;
    border-radius: var(--radius);
}

.contact-form-embed iframe {
    width: 100%;
    min-height: 800px;
    border: none;
    display: block;
}

.form-note {
    font-size: 13px;
    color: var(--color-text-muted);
    text-align: center;
    margin-top: 16px;
}

/* Responsive */
@media (max-width: 600px) {
    .contact-form-embed iframe {
        min-height: 700px;
    }
}
