/* dx-form.css - DXアセスメント フォームページ */
/*フォーム　セクション全体*/
.dx-section {
    background: #f7f7f7;
    border: 1px solid #d9d9d9;
    border-radius: 10px;
    padding: 24px;
    margin-bottom: 32px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

/*項目*/
.dx-section-title {
    font-size: 24px;
    font-weight: 700;
    color: #4a6fa5;
    margin: 0 0 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid #2f8de4;
}

/*Q26セクション*/
.dx-roadmap-item input[type="checkbox"],
.dx-section-q26 {
    background: #f7f7f7;
    border: 1px solid #d9d9d9;
    border-radius: 10px;
    padding: 24px;
    margin-bottom: 32px;
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

/*設問行間隔*/
.dx-question {
    margin-bottom: 24px;
}

/*フォーム入力部分*/
.dx-field input,
.dx-field select,
.dx-question select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #cfd5dc;
    border-radius: 4px;
    background: #fff;
    font-size: 15px;
    box-sizing: border-box;
}

.required {
    color: #d9534f;
    font-weight: bold;
}

/*ページ全体*/
.dx-form-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

/*送信ボタン*/
.dx-submit-wrap {
    text-align: center;
    margin-top: 40px;
}

.dx-submit-wrap button {
    display: inline-block;
    padding: 14px 40px;
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: .2s;
}

.dx-submit-wrap button:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}

/* 設問26 グループ */

.dx-roadmap-group {
    background: #ebebff;
    border: 1px solid #d8dce3;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 24px;
}

/* タイトル */

.dx-roadmap-title {

    margin: 0 0 16px;
    font-size: 24px;
    font-weight: 700;
}

/* 各行 */

.dx-roadmap-item {

    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    line-height: 1.8;
}

/* チェックボックス */
.dx-roadmap-item input[type="checkbox"] {
    margin-top: 12px;
}



/*未選択エラー*/
.dx-field-error {

    color: #dc2626;
    font-size: 13px;
    font-weight: 600;
    margin-top: 6px;
    margin-bottom: 0;
}

/*送信時エラー件数*/
#dx-error-summary {

    display: none;
    color: #dc2626;

    font-weight: bold;
    text-align: center;
    background: #ffe8e8;
    border-radius: 10px;
    width: min(600px, 90%);
    margin: 0 auto 10px;
    padding: 12px 10px;
}

.dx-question-no {

    display: inline-block;
    background: #2f8de4;
    color: #fff;
    padding: 10px 10px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    margin-right: 8px;
}

.dx-required-note {
    color: #dc2626;
    font-size: 18px;
    font-weight: 700;
    margin-top: 8px;
    margin-bottom: 15px;
}