@charset "UTF-8";

.main_title {
    text-align: center;
    margin: 0;
}

.main_title img {
    width: 50%;
}

form {
    text-align: center;
}

.name input {
    padding: 5px;
    margin-bottom: 30px;
}

form button {
    border: none;
    background-color: #f98;
    width: 200px;
    padding: 20px;
}

.result_title {
    text-align: center;
    margin-bottom: 0;
}

.result_img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.qa_title {
    text-align: center;
    margin-bottom: 50px;
}

.qa ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    padding: 0;
}

.qa ul li {
    margin-left: 10px;
    margin-right: 10px;
}

@media screen and (max-width:600px) {
    .qa ul {
        flex-wrap: wrap;
    }

    .qa ul li {
        width: 80%;
        border-bottom: 1px solid #eee;
    }

}

/*===max-width:600px===*/

.qa input {
    display: none;
}

.qa label {
    background-color: #f27455;
    padding: 20px 40px;
    color: #fff;
    cursor: pointer;
    display: block;
}

.qa label:hover,
.qa input:checked+label {
    opacity: 0.7;
}