.result_subText {
    font-size: 14px;
}

.result_textWrap {
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.result_textWrap .result_text {
    font-size: 20px;
}

.result_text:not(:first-child)::before {
    content: "/";
    padding: 0 3px;
    color: #ccc;
}

.choose_box {
    position: relative;
    max-width: 250px;
    width: 80%;
    margin: 0 auto 20px;
}

.button_area select {
    width: 100%;
    cursor: pointer;
    background-color: white;
    box-shadow: 0 2px 0 white;
    border-radius: 2px;
    border: 1px solid #6981ff;
    padding: 8px 0;
}

.choose_arrow {
    display: block;
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 4px 0 4px;
    border-color: #6981ff transparent transparent transparent;
    right: 8px;
    top: 13px;
}

@media screen and (max-width: 440px) {
    .result_textWrap {
        display: block;
    }
    .result_text:not(:first-child) {
        color: #ccc;
    }
    .result_subText {
        color: #ccc;
    }
    .result_text:not(:first-child)::before {
        content: none;
    }
}