main .question_box {
    border: 0.3rem solid rgb(170, 170, 170);
    margin-top: 2rem;
    border-radius: 0.5rem;
}
main .question_box .subtitle {
    font-size: 2rem;
    font-weight: bolder;
}
main .question_box .text {
    padding-top: 0.3rem;
    padding-left: 3rem;
}
main .question_box .question {
    display: flex;
    font-size: 1.8rem;
    text-align: center;
    padding: 1rem;
    background-color: antiquewhite;
}

main .question_box .question .text {
    text-align: start;
}

main .question_box .answer {
    display: flex;
    font-size: 1.8rem;
    text-align: center;
    padding: 1rem;
}
main .question_box .answer .text {
    text-align: left;
}
main .question_box .button {
    display: flex;
    justify-content: center;
    padding-bottom: 1rem;
}
main .question_box .button button {
    width: 2rem;
    height: 2rem;
    border-left: 0.35rem solid rgb(94, 94, 94);
    border-bottom: 0.35rem solid rgb(94, 94, 94);
    
}
main .question_box .button .first {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
main .question_box .button .second {
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
}
main .information_ {
    display: flex;
    justify-content: space-between;
    border-bottom: 0.4rem solid rgba(104, 104, 104, 0.363);
    margin-top: 3rem;
    margin-bottom: 3rem;
}
main .information_ .menu {
    width: 20%;
    text-align: center;
    font-weight: bolder;
    font-size: 2rem;
}
main .information_ .text {
    width: 60%;
    text-align: left;
    font-size: 1.8rem;
}
main .immunity .text {
    font-size: 1.5rem;
}
main .immunity .sub_text {
    margin-top: 1rem;
    font-size: 1.6rem;
}
main .immunity .text .paragraph {
    font-size: 1.8rem;
    font-weight: bolder;
    color: rgba(0, 0, 0, 0.7);
}
main .immunity .text p {
    padding-left: 1rem;
    margin: 1rem 0 2rem;
}
main .privacy .text {
    font-size: 1.5rem;
}
main .privacy .sub_text {
    margin-top: 1rem;
    font-size: 1.6rem;
}
main .privacy .text .paragraph {
    font-size: 1.8rem;
    font-weight: bolder;
    color: rgba(0, 0, 0, 0.7);
}
main .privacy .text p {
    padding-left: 1rem;
    margin: 1rem 0 2rem;
}
main .individual {
    padding-top: 1rem;
}
main .individual p {
    font-size: 1.6rem;
}
main .individual h4 {
    margin-top: 3rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    background-color: rgba(247, 104, 104, 0.678);
}
main .individual h5 {
    margin-top: 1rem;
    font-size: 1.65rem;
    color:rgba(247, 104, 104, 0.678);
}
main .individual table {
    font-size: 1.6rem;
}
main .individual .solve {
    color: rgb(177, 177, 0);
}
main .flow {
    list-style-type: none;
    margin-top: 3rem;
}
main .flow li {
    display: grid;
    grid-template: 
        "number title ..... texts" auto
        ".....  ..... ..... ....." 2rem
        "image  image image image" auto
        ".....  ..... ..... ....." 2rem/
        6rem    20rem 1.5rem  1fr;
}
main .flow li .number {
    grid-area: number;
    text-align: center;
    width: 5rem;
    height: 5rem;
    font-size: 3rem;
    background-color: aqua;
    border-radius: 50%;
}main .flow li h4 {
    padding-top: 1.3rem;
    grid-area: title;
    font-size: 1.8rem;
    width: 20rem;
}
main .flow li p {
    padding-top: 1.3rem;
    padding-bottom: 1.3rem;
    padding-left: 1rem;
    padding-right: 1rem;
    grid-area: texts;
    width: auto;
    font-size: 1.6rem;
    background-color: rgba(131, 131, 131, 0.253);

}
main .flow li .image {
    grid-area: image;
    display: flex;
    justify-content: center;
}
main .flow li .image .img {
    display: block;
    width: 4rem;
    height: 4rem;
    opacity: 0.6;
}
main .orders_text {
    font-size: 1.6rem;
    margin-top: 0.6rem;
}
main .orders_subtitle {
    font-size: 1.8rem;
    margin-top: 1.6rem;
    color:rgba(247, 104, 104, 0.678);
}
main .orders_image {
    margin: 3rem 0 3rem;
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
}
main .orders_image .explanation {
    width: 80%;
}
@media(max-width: 660px){
    main .flow li {
        display: grid;
        grid-template: 
            "number title ....." auto
            "texts  texts texts" auto
            ".....  ..... ....." 2rem
            "image  image image" auto
            ".....  ..... ....." 2rem/
            6rem    20rem 1fr;
    }
}
@media(max-width: 445px){
    main .individual table {
        font-size: 1.4rem;
    }
}
