
html, body, p, div {
    font-family: "Noto Sans JP";
}

body {
    margin: 0;
}

#app-root {
    padding-top: 1em;
}

@media screen and (min-width:640px) {
    #app-root {
        max-width: 640px;
        margin: auto;
    }
}

#start {
    /*display: none;*/
}
#start h1 {
    text-align: center;
    font-weight: normal;
    font-size: 20px;
    margin-bottom: 1em;
}
#start p {
    font-weight: normal;
    font-size: 14px;
    padding: 0 1em;
}
#start img {
    width: 100%;
    margin-top: 1em;
}

.button {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    border-radius: 5px;
    width: 200px;
    height: 50px;
    font-weight: normal;
    transition: 0.3s;
    background-color: #4d4d4d;
    margin: auto;
    margin-top: 2em;
    /*border-color: #333;*/
    /*border-width: 1px;*/
    /*border-style: solid;*/
}

.start-button {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: normal;
    transition: 0.3s;
    margin: auto;
    /*border-color: #333;*/
    /*border-width: 1px;*/
    /*border-style: solid;*/
}

/*.button:hover {*/
/*    background-color: #cbcbcb;*/
/*    opacity: .7;*/
/*}*/

.question {
    /*display: none;*/
}
.question.hide {
    display: none;
}
.question.show {
    display: block;
}
.question h2 {
    text-align: center;
    font-weight: normal;
    font-size: 20px;
    margin: 1em 0;
    padding: 0 0.5em;
}
.question img {
    width: 100%;
    margin-bottom: 1em;
}

.progress-area {
    display: none;
    justify-content: space-between;
    padding: 1em;
    padding-bottom: 0;
}
#progress-bar {
    width: 65%;
}
.question-text {
    width: 30%;
    font-size:14px;
}


.answer-area {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 2em;
}
.answer-button {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    text-decoration: none;
    color: #222;
    font-size: 1.2rem;
    border-radius: 5px;
    border-width: 1px;
    border-style: solid;
    border-color: #333;
    width: 45%;
    height: 40px;
    transition: 0.3s;
    background-color: #ffffff;
    margin-top: 1em;
}

.answer-button.check {
    background-color: #efffbe;
}

.decision-area {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 1em;
}

.decision-area .back-button {
    width: 30%;
}
.decision-area .next-button {
    width: 50%;
}
.decision-area .next-button.disable {
    opacity: 0.2;
}
.decision-area .result-button {
    width: 50%;
    height: auto;
    display: block;
    background-color: unset;
}
.decision-area .result-button.disable {
    opacity: 0.2;
}
.decision-area .result-button > img {
    margin: 0;
}

@media screen and (min-width:640px) {
    .decision-area .result-button {
        height: auto;
        margin-top: 1em;
    }
    .decision-area .result-button > img {
        margin: 0;
    }
}

#result img {
    width: 100%;
}

#result .thank-text {
    text-align: center;
    font-size: 20px;
    margin-top: 1em;
}

#result .coupon-guide {
    text-align: center;
    font-size: 20px;
}

.count-down {
    text-align: center;
    font-size: 30px;
    margin-bottom: 1em;
    color: #ff0e40;
}

.count-down.expired {
    font-size: 24px;
}
