.sp {
    display: none;
}
body {
    background-image: url(../images/pc_bg.jpg);
    background-image: url(../images/pc_bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100vw;
    height: 100vh;
    font-family: "noto sans jp" !important;
    text-align: center !important;
    letter-spacing: 0.05em;
    overflow: hidden;
}

.simulation-title {
    color: #fff;
    line-height: 0.75;
    font-weight: bold;
    padding: 52px 0 26px;
}

.subtitle {
    position: relative;
    font-size: 38px;
}

.subtitle:after {
    content: "";
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 50%;
    height: 80%;
    background-image: url(../images/Rectangle01.png);
    background-size: contain;
    background-repeat: no-repeat;
    text-align: center;
    z-index: -1;
}

.maintitle {
    font-size: 56px;
}

.overview {
    color: #fff;
}

.overview_title {
    font-size: 32px;
    font-weight: 500;
}

.overview_dti {
    font-size: 24px;
}

form {
    position: relative;
}

.questions {
    margin: 26px 0;
}

.question_wrap {
    padding: 0 14vw;
    color: #2a2a2a;
    font-weight: bold;
}

.question_dti {
    background-color: #ffffff;
    border-radius: 30px;
    padding: 2% 5% calc(3% + 16px);
}

.slick-arrow {
    position: absolute;
    width: 28.8%;
    margin: 26px auto 0;
    border-radius: 30px;
    background-color: #ffffff !important;
    color: #2a2a2a !important;
    font-size: 0;
}

.slick-prev {
    bottom: calc(-26px - 36px);
    margin-top: 0;
    left: 20%;
}

.slick-prev:before {
    content: "前の質問";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: #2a2a2a;
    font-weight: bold;
    font-size: 18px;
    width: 100%;
}

.slick-next {
    bottom: calc(-26px - 36px);
    margin-top: 0;
    right: 20%;
}

.slick-next:before {
    content: "次の質問";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: #2a2a2a;
    font-weight: bold;
    font-size: 18px;
    width: 100%;
}

.Qnumber {
    margin-top: 18px;
    display: inline-block;
    background: linear-gradient(180deg, #0072b4 0%, #7bc0be 72%, #afebea 100%);
    background: -webkit-linear-gradient(-90deg, #0072b4 0%, #7bc0be 72%, #afebea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.Question {
    font-size: 24px;
    margin: 12px 0;
}

.choices {
    display: inline-block;
}

.choices input[type=checkbox] + label,
.choices input[type=radio] + label {
    font-size: 21px;
}

.choices + .choices {
    margin-left: 26px;
}

input[type=radio] {
    vertical-align: middle;
}

input[type=submit] {
    position: absolute;
    width: 28.8%;
    margin: 26px auto 0;
    border-radius: 30px;
    background-color: #ffffff !important;
    color: #2a2a2a !important;
    bottom: calc(-26px - 36px);
    margin-top: 0;
    right: 20%;
    display: none;

    font-size: 18px;
    font-family: "noto sans jp" !important;
    font-weight: bold;
    padding: 2px 0;
}


@media screen and (max-width:768px) {
    .sp {
        display: block;
    }

    .pc {
        display: none;
    }

    body {
        background-image: url(../images/sp_bg.jpg);
    }

    .simulation-title {
        line-height: 0.6;
    }

    .subtitle {
        font-size: 24px;
    }
    
    .maintitle {
        font-size: 30px;
    }

    .overview_title {
        font-size: 18px;
    }

    .overview_dti {
        font-size: 12px;
        line-height: 1.5em;
        display: inline-block;
        margin-top: 4px;
    }

    .Question {
        font-size: 18px;
    }

    .choices {
        text-align: left;
        width: 51%;
        margin: auto;
    }

    .choices input[type=checkbox] + label,
    .choices input[type=radio] + label {
        font-size: 12px;
        margin-bottom: 4px;
        vertical-align: middle;
        padding-left: 4px;
        font-weight: bold;
    }

    input[type=checkbox],
    input[type=radio] {
        width: 15px;
        height: 15px;
        border-width: 2px;
    }

    input[type=radio]:checked {
        border-width: 2px;
    }

    input[type=radio]:after {
        left: 2px;
        top: 2px;
        width: 7px;
        height: 7px;
    }

    .choices + .choices {
        margin-left: 0px;
    }

    .slick-arrow,
    input[type=submit] {
        padding: 12px;
        bottom: calc(-26px - 26px);
    }

    input[type=submit] {
        padding: 3px 0;
        font-size: 12px;
    }

    .slick-next:before,
    .slick-prev:before {
        font-size: 12px;
    }

    input[type=number] {
        max-width: 90%;
        padding-top: 4px;
        padding-bottom: 4px;
    }
}