
.healer-container {
    max-width: 650px;
    margin: 0 auto 40px;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    overflow: hidden;
}
.healer-header {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    padding: 30px 20px;
    text-align: center;
}
.healer-header h2 {
    font-size: 1.4rem;
    color: #444;
    margin: 0 0 10px 0;
    line-height: 1.5;
    font-weight: bold;
}
.healer-header p {
    margin: 0;
    color: #555;
    font-size: 1rem;
}
.instruction {
    text-align: center;
    color: #666;
    margin: 20px 0;
    font-weight: bold;
}
#step-question {
    padding: 0 30px 30px;
}
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.checkbox-label {
    display: flex;
    align-items: flex-start;
    background: #fbfbfb;
    padding: 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
    border: 1px solid #eaeaea;
}
.checkbox-label:hover {
    background: #fdf5f7;
    border-color: #ffcad4;
}
.checkbox-label input {
    margin-top: 3px;
    margin-right: 15px;
    width: 20px;
    height: 20px;
    accent-color: #f78fb3;
}
.checkbox-text {
    font-size: 1rem;
    color: #333;
    line-height: 1.4;
}
.submit-wrap {
    text-align: center;
    margin-top: 40px;
}
.btn-primary {
    background: #f78fb3;
    color: #fff;
    border: none;
    padding: 16px 50px;
    font-size: 1.2rem;
    border-radius: 40px;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(247, 143, 179, 0.4);
    transition: 0.3s;
}
.btn-primary:hover {
    background: #f5729e;
    transform: translateY(-2px);
}
#step-loading {
    text-align: center;
    padding: 60px 0;
}
.loader {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #f78fb3;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
#step-result {
    padding: 30px;
}
.result-box {
    background: #fff0f5;
    border: 2px solid #ffcad4;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    margin-bottom: 30px;
}
#result-title {
    color: #f5729e;
    font-size: 1.8rem;
    margin: 0 0 10px;
    font-weight: bold;
}
.score-text {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 20px;
    font-weight: bold;
}
.result-message {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.8;
    text-align: left;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
}
.line-cta {
    text-align: center;
    background: #f4fcf7;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
}
.line-cta p {
    color: #333;
    margin-bottom: 20px;
    line-height: 1.6;
}
.btn-line {
    display: inline-block;
    background: #06C755;
    color: #fff !important;
    text-decoration: none;
    padding: 16px 40px;
    border-radius: 40px;
    font-size: 1.2rem;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(6, 199, 85, 0.3);
    transition: 0.3s;
}
.btn-line:hover {
    background: #05b04a;
    transform: translateY(-2px);
}
.btn-secondary {
    background: transparent;
    border: 1px solid #ccc;
    color: #666;
    padding: 10px 25px;
    border-radius: 20px;
    cursor: pointer;
    display: block;
    margin: 0 auto;
    font-size: 0.9rem;
}
.btn-secondary:hover {
    background: #f5f5f5;
}
@media (max-width: 600px) {
    .healer-header h2 { font-size: 1.2rem; }
    .btn-primary, .btn-line { padding: 14px 30px; font-size: 1.1rem; width: 100%; box-sizing: border-box; }
    #result-title { font-size: 1.5rem; }
}
