* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', sans-serif;
    background: linear-gradient(135deg, #a5cc81 0%, #8bb563 100%);
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    overflow: hidden;
}

.header {
    background: linear-gradient(135deg, #a5cc81 0%, #8bb563 100%);
    color: white;
    padding: 30px;
    text-align: center;
}

.header h1 {
    font-size: 24px;
    margin-bottom: 10px;
    color: white;
    text-align: center;
}

.header p {
    font-size: 14px;
    opacity: 0.9;
}

.content {
    padding: 30px;
}

.section {
    margin-bottom: 40px;
}

.section-title {
    font-size: 18px;
    font-weight: bold;
    color: #8bb563;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #8bb563;
}

.question {
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s;
}

.question:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.question-text {
    font-size: 15px;
    margin-bottom: 12px;
    color: #333;
    font-weight: 500;
}

.options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.option {
    flex: 1;
    min-width: 100px;
}

.option input[type="radio"] {
    display: none;
}

.option label {
    display: block;
    padding: 10px;
    text-align: center;
    background: white;
    border: 2px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 13px;
}

.option input[type="radio"]:checked + label {
    background: #8bb563;
    color: white;
    border-color: #8bb563;
    transform: scale(1.05);
}

.option label:hover {
    border-color: #8bb563;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #8bb563 0%, #8bb563 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 20px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.result {
    margin-top: 30px;
    padding: 20px;
    background: #e7f3ff;
    border-left: 4px solid #8bb563;
    border-radius: 8px;
    display: none;
}

.result h3 {
    color: #8bb563;
    margin-bottom: 10px;
}

.personal-info {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.personal-info-title {
    font-size: 18px;
    font-weight: bold;
    color: #8bb563;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #8bb563;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.form-group input[type="text"],
.form-group input[type="email"] {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus {
    outline: none;
    border-color: #8bb563;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: white;
    border-radius: 8px;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.checkbox-group label {
    margin: 0;
    cursor: pointer;
    user-select: none;
}

@media (max-width: 600px) {
    .options {
        flex-direction: column;
    }
    
    .option {
        min-width: 100%;
    }
}

.consent-section {
    background: #e8f5e0;
    border: 2px solid #a5cc81;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.consent-title {
    font-size: 18px;
    font-weight: bold;
    color: #6b8e4e;
    margin-bottom: 15px;
}

.consent-text {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.8;
    color: #333;
    white-space: pre-wrap;
}

.consent-checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    border: 2px solid #a5cc81;
}

.consent-checkbox-group + .consent-checkbox-group {
    margin-top: 10px;
}

.consent-checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.consent-checkbox-group label {
    margin: 0;
    cursor: pointer;
    user-select: none;
    font-weight: bold;
    color: #6b8e4e;
}