.ichijo-survey-flow {
    max-width: 760px;
    margin: 2rem auto;
    padding: clamp(1.25rem, 3vw, 2rem);
    border: 1px solid #dce5e1;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(31, 58, 48, 0.08);
}
.ichijo-survey-flow__header {
    margin-bottom: 1.5rem;
}

.ichijo-survey-flow__eyebrow {
    margin: 0 0 0.35rem;
    color: #39725d;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.ichijo-survey-flow__title,
.ichijo-survey-flow__question {
    color: #203b31;
}

.ichijo-survey-flow__title {
    margin: 0;
    font-size: clamp(1.35rem, 4vw, 1.8rem);
}

.ichijo-survey-flow__fieldset {
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

.ichijo-survey-flow__intro {
    margin: 0;
    color: #445c53;
}

.ichijo-survey-flow__question {
    width: 100%;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.ichijo-survey-flow__choices {
    display: grid;
    gap: 0.75rem;
}

.ichijo-survey-flow__choice {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.9rem 1rem;
    border: 1px solid #cbd9d3;
    border-radius: 10px;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.ichijo-survey-flow__choice:hover,
.ichijo-survey-flow__choice:focus-within {
    border-color: #39725d;
    background: #f4faf7;
}

.ichijo-survey-flow__choice input {
    flex: 0 0 auto;
    margin-top: 0.2em;
}

.ichijo-survey-flow__submit,
.ichijo-survey-flow__login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    margin-top: 1.25rem;
    padding: 0.75rem 1.25rem;
    border: 0;
    border-radius: 999px;
    background: #39725d;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}

.ichijo-survey-flow__submit:disabled {
    cursor: wait;
    opacity: 0.65;
}

.ichijo-survey-flow__status {
    min-height: 1.5em;
    margin: 0.75rem 0 0;
    color: #39725d;
}

.ichijo-survey-flow__status.is-error,
.ichijo-survey-flow__notice--error {
    color: #a12626;
}

.ichijo-survey-flow__honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.ichijo-survey-flow__notice {
    margin: 0;
}

.ichijo-survey-flow__complete h3 {
    margin-top: 0;
    color: #203b31;
}

@media (max-width: 600px) {
    .ichijo-survey-flow {
        margin: 1.25rem 0;
        border-radius: 12px;
    }

    .ichijo-survey-flow__submit,
    .ichijo-survey-flow__login {
        width: 100%;
    }
}
