/* ===============================================
   お問い合わせページ
   =============================================== */
.contact-lead {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 1rem;
    line-height: 2;
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 30px;
}

.form-label {
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
}

.form-required {
    display: inline-block;
    margin-left: 8px;
    padding: 2px 8px;
    font-size: 0.75rem;
    font-weight: normal;
    background-color: #dc3545;
    color: white;
    border-radius: 4px;
    vertical-align: middle;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(0, 163, 224, 0.2);
}

.form-textarea {
    resize: vertical; /* 縦方向のみリサイズ可能に */
}

.file-attachment-note {
    background-color: var(--bg-light-blue);
    border: 1px dashed var(--secondary-color);
    border-radius: 5px;
    padding: 20px;
}
.file-attachment-note p {
    margin: 0;
    line-height: 1.8;
}
.file-attachment-note p:first-child {
    margin-bottom: 10px;
}

.form-submit {
    text-align: center;
    margin-top: 50px;
}