/* DOT-EVENT FORM - Front-end Styles */
.def-wrap {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 16px 80px;
    font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
    color: #333;
}
.def-intro {
    background: #fdf8f2;
    border-left: 4px solid #b89a6a;
    padding: 16px 20px;
    margin-bottom: 32px;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.8;
}
.def-error-box {
    background: #fff0f0;
    border: 1px solid #e55;
    color: #c00;
    padding: 12px 16px;
    border-radius: 4px;
    margin-bottom: 24px;
    font-size: 14px;
}
.def-section {
    margin-bottom: 40px;
}
.def-section-title {
    font-size: 16px;
    font-weight: bold;
    color: #b89a6a;
    border-bottom: 2px solid #b89a6a;
    padding-bottom: 8px;
    margin-bottom: 20px;
}
.def-field {
    margin-bottom: 20px;
}
.def-label {
    display: block;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
}
.def-required {
    display: inline-block;
    background: #b89a6a;
    color: #fff;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 3px;
    margin-left: 6px;
    font-weight: normal;
    vertical-align: middle;
}
.def-input,
.def-textarea {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 12px 14px;
    font-size: 15px;
    background: #fafafa;
    box-sizing: border-box;
    transition: border-color .2s;
    font-family: inherit;
}
.def-input:focus,
.def-textarea:focus {
    outline: none;
    border-color: #b89a6a;
    background: #fff;
}
.def-textarea { resize: vertical; }

.def-radio-group,
.def-check-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.def-radio-label,
.def-check-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.6;
}
.def-radio-label input,
.def-check-label input {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: #b89a6a;
    cursor: pointer;
}
.def-agree-item {
    background: #fdf8f2;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #e8d8c0;
}
.def-other-wrap {
    margin-top: 10px;
    padding-left: 28px;
}
.def-note {
    font-size: 13px;
    color: #888;
    margin-bottom: 16px;
}
.def-error {
    color: #c00;
    font-size: 13px;
    margin-top: 6px;
}
.has-error .def-input,
.has-error .def-textarea {
    border-color: #e55;
}
.def-submit-wrap {
    text-align: center;
    margin-top: 40px;
}
.def-submit-btn {
    display: inline-block;
    background: #b89a6a;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 16px 60px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    letter-spacing: .05em;
    transition: background .2s, transform .1s;
}
.def-submit-btn:hover { background: #a08050; }
.def-submit-btn:active { transform: scale(.97); }
.def-complete {
    max-width: 560px;
    margin: 60px auto;
    text-align: center;
    padding: 48px 24px;
    background: #fdf8f2;
    border-radius: 12px;
    border: 1px solid #e8d8c0;
}
.def-complete-icon {
    width: 64px;
    height: 64px;
    background: #4caf50;
    border-radius: 50%;
    color: #fff;
    font-size: 36px;
    line-height: 64px;
    margin: 0 auto 20px;
}
.def-complete h2 { font-size: 20px; margin-bottom: 16px; color: #333; }
.def-complete p  { font-size: 14px; color: #666; line-height: 1.9; }
