@charset "utf-8";

* {
    box-sizing: border-box;
}

body {
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
}

ul {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

a {
    text-decoration: none;
}

.mv,
.diagnosis-title,
.income {
    position: relative;
}

.intro {
    position: relative;
    z-index: -1;
    margin-top: calc((34 / 750)* -100%);
}

.question-wrapper {
    margin: calc((30 / 750)* -100%) 0 0;
    background-color: #4493BD;
    padding-top: clamp(3.413rem, 0.001rem + 17.06vw, 5.331rem);
    padding-bottom: clamp(1.706rem, -0.005rem + 8.56vw, 2.669rem);
}

.question {
    position: relative;
    width: 85.2%;
    margin: 0 auto;
    background-color: #fff;
    padding-top: clamp(1.788rem, -0.001rem + 8.94vw, 2.794rem);
    padding-bottom: clamp(0.8rem, 4vw, 1.25rem);
    margin-bottom: clamp(2.612rem, 0.001rem + 13.06vw, 4.081rem);
}

.question:last-child {
    margin-bottom: 0;
}

.question_icon {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc((96 / 639) * 100%);
}

.question_title {
    text-align: center;
    margin-top: 0;
    margin-bottom: calc((40 / 639) * 100%);
    font-size: clamp(0.963rem, 0.007rem + 4.78vw, 1.5rem);
    font-weight: 500;
}

.question ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: clamp(1.256rem, 0.012rem + 6.22vw, 1.956rem) clamp(2.669rem, 0.002rem + 13.33vw, 4.169rem);
    padding: 0 calc((104 / 639) * 100%);
    margin: 0 auto;
}

.question ul li {
    text-align: center;
    position: relative;
    width: 33%;
}

.question ul li:last-child {
    margin: auto;
}

.question ul li img {
    margin: 0 auto;
    width: 100%;
}

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

label>img.active {
    display: none;
}

input[type="radio"]:checked+label>img {
    display: none;
}

input[type="radio"]:checked+label>img.active {
    display: block;
}

label>span {
    display: flex;
    justify-content: center;
    margin-top: calc((16 / 141) * 100%);
    font-size: clamp(0.8rem, 4vw, 1.25rem);
    white-space: nowrap;
}

.btn-link {
    display: block;
    width: calc((665 / 750) * 100%);
    margin: auto;
}

.mv .btn-link,
.income .btn-link {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.mv .btn-link {
    bottom: calc((16 / 750) * 100%);
}

.income .btn-link {
    bottom: calc((100 / 750)* 100%);
}

.footer {
    padding: 1.14em 0;
    font-size: clamp(0.56rem, 2.8vw, 0.875rem);
    text-align: center;
    color: #fff;
    background-color: #111;
}

.step3 {
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 90.66666%;
    max-width: 816px;
}

.pick {
    animation-name: pickup;
    animation-duration: 1.5s;
    animation-fill-mode: both;
    animation-delay: 0s;
    animation-iteration-count: infinite;
}

@keyframes pickup {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}