div.composition_advice_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 68vw;
    min-height: 120vh;
    margin: 0 auto;
}

div.composition_advice_container div.title {
    font-size: 1.2vw;
    font-weight: bold;
    width: 100%;
}

div.composition_advice_container div.example {
    margin-top: 1vh;
    font-size: 1.1vw;
    line-height: 1.42857143;
    width: 100%;
}

div.composition_advice_container div.example_text {
    font-style: italic;
    color: grey;
}

div.composition_advice_container textarea.request_text_input {
    margin-top: 2vh;
    width: 100%;
    height: 20vh;
    min-height: 80px;
    padding: 10px;
    font-size: 1.1vw;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    box-sizing: border-box;
    outline: none;
}

div.composition_advice_container div.submit_request_text_button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-family: ShangYa;
    font-size: 1.1vw;
    color: #ffffff;
    background-color: #6e6e6e;
    height: 5vh;
    min-height: 40px;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    cursor: pointer;
    user-select: none;
}

div.composition_advice_container div.submit_request_text_button.disable {
    pointer-events: none;
    background-color: #888;
}

div.composition_advice_container div.composition_advice_tip {
    margin-top: 1.5vh;
    width: 100%;
    font-size: 0.8vw;
    color: grey;
}

div.composition_advice_container div.answer {
    margin-top: 3vh;
    width: 100%;
    white-space: pre-wrap;
    font-size: 1.1vw;
    line-height: 1.42857143;
}

div.composition_advice_container p.remain {
    margin-top: 0.5vh;
    width: 100%;
    color: grey;
}

div.composition_advice_container div.error {
    margin-top: 3vh;
    width: 100%;
    font-size: 1.1vw;
    color: darkred;
    line-height: 1.42857143;
}

div.composition_advice_container div.bottom_space {
    height: 7.25vh;
    min-height: 140px;
}