body {
    height: 100dvh;
    margin: 0;
    padding: 0;
    font-family: 'Spoqa Han Sans Neo', 'Spoqa Han Sans JP', sans-serif;
    font-weight: 400;
}

.pointer {
    cursor: pointer;
}

.under:hover {
    text-decoration: underline;
}

#header {
    width: 100%;
    height: 60px;
    border-bottom: solid 1px #efefef;
    position: sticky;
    top: 0px;
    z-index: 1;
    background-color: #fff;

    #logo_left {
        margin: 0px;
    }

    > div {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: calc(100% - 40px);
        max-width: 1240px;
        height: 60px;
        margin: auto;

        .title {
            font-size: 16px;
            font-weight: bold;
            line-height: 1.38;
            letter-spacing: -0.48px;
            text-align: center;
            color: #0a0b0e;
        }
    }

    #loginArea {
        display: flex;
        align-items: center;
        cursor: pointer;
        gap: 10px;

        .profile {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            object-fit: cover;
            object-position: center 0%;
        }

        .loginbtn {
            cursor: pointer;
            font-size: 18px;
            color: #1d577b;
        }
    }
}

#header_mobile {
    display: none;
}

#guide {
    font-size: 20px;
    padding: 20px 0px;
    height: calc(100vh - 300px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

#content {
    width: 100vw;
}

#article_list {
    max-width: 700px;
    width: 100%;
    margin: 80px auto;

    #controls {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        padding-bottom: 10px;
        border-bottom: solid 1px #dcdcdc;

        div:first-child {
            font-size: 20px;
            font-weight: bold;

            span {
                color: #4976f5;
            }
        }

        div:last-child {
            display: flex;
            justify-content: flex-end;
            gap: 8px;

            input {
                line-height: 42px;
                border-radius: 8px;
                border: solid 1px #dadce1;
                width: 176px;
                padding: 0px 10px;
                font-size: 16px;
            }

            button {
                width: 69px;
                height: 44px;
                border-radius: 8px;
                font-size: 16px;
                font-weight: 500;
                border: solid 1px #4976f5;
                background-color: #fff;
                color: #4976f5;
            }
        }
    }

    .list {
        padding-bottom: 16px;
    }

    #orders {
        display: none;
        justify-content: flex-end;
        gap: 4px;
        margin-bottom: 12px;

        div {
            color: #808185;
            cursor: pointer;
        }

        div.select {
            color: #0a0b0e;
            font-weight: bold;
        }
    }

    #types {
        width: 100%;

        > div {
            display: flex;
            gap: 8px;
            padding: 20px 0px;
            overflow-x: auto;

            button {
                width: 140px;
                height: 40px;
                font-size: 16px;
                font-weight: 500;
                border-radius: 20px;
                border: solid 1px #4976f5;
                background-color: #fff;
                color: #4976f5;
                white-space: nowrap;
            }

            button.select {
                background-color: #4976f5;
                color: #fff;
            }
        }
    }

    .index {
        width: 100%;
        font-size: 20px;
        font-weight: bold;
        letter-spacing: -1px;
        margin-top: 40px;
        display: flex;
        align-items: center;
        gap: 6px;

        > div {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
        }
    }

    .article {
        background-color: #f8f9fa;
        padding: 0px 24px;
        cursor: pointer;

        > div {
            border-top: solid 1px #dcdcdc;
            padding: 24px 0px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .title {
            font-size: 18px;
            font-weight: bold;
            letter-spacing: -0.9px;
            margin-bottom: 6px;
        }

        .desc {
            font-size: 16px;
            line-height: 1.38;
            letter-spacing: -0.64px;
            color: #808185;

            span {
                margin: 0px 4px;
            }
        }

        .check {
            background-color: #eff4ff;
            color: #4976f5;
            text-align: center;
            line-height: 30px;
            width: 55px;
            font-size: 14px;
            font-weight: 500;
            border-radius: 4px;
        }

        .nocheck {
            background-color: #f9d9e5;
            color: #ff5e93;
            text-align: center;
            line-height: 30px;
            width: 55px;
            font-size: 14px;
            font-weight: 500;
            border-radius: 4px;
        }

        .match {
            background-color: #ff0;
        }
    }

    .article.head {
        margin-top: 16px;
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;

        > div {
            border: none;
        }
    }

    .article.tail,
    .article:last-child {
        border-bottom-left-radius: 8px;
        border-bottom-right-radius: 8px;
    }
}

#bottom {
    width: 100%;
    height: 50px;
    line-height: 50px;
    position: fixed;
    bottom: 0px;
    text-align: center;
    font-size: 16px;
    font-family: Roboto;
    color: #959595;
    background-color: #fff;
    z-index: 1;
}

div.patientCard {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 500;

    img {
        border: solid 2px #e1e1e1;
        width: 46px;
        height: 46px;
        border-radius: 50%;
        padding: 4px;
        object-fit: cover;
        object-position: center 0%;
    }
}

div.patientCard.select {
    color: var(--main);
    img {
        border: solid 2px var(--main);
    }
}

#article {
    width: 100%;
    max-width: 900px;
    text-align: center;
    background-color: #fff;
    margin: auto;

    .header {
        border-top: solid 4px #d7e5ec;
        border-bottom: solid 4px #d7e5ec;
        font-size: 28px;
        width: 100%;
        height: 72px;
        position: relative;
        font-weight: bold;
        text-align: center;
        display: flex;
        justify-content: space-between;
        align-items: center;
        z-index: 2;
        background-color: #fff;

        .side {
            display: flex;
            align-items: center;
            background-color: #d7e5ec;
            width: 200px;
            height: 72px;
        }

        .left {
            justify-content: space-evenly;
        }

        .side div {
            font-size: 16px;
            color: #1d577b;
            font-weight: normal;
            cursor: pointer;
        }

        .icon {
            width: 30px;
            height: 30px;
        }

        .right {
            justify-content: center;
        }

        .center {
            width: calc(100% - 400px);
            word-break: keep-all;
        }
    }

    .body {
        background-color: #fff;
        width: calc(100% - 200px);
        height: calc(100% - 160px);
        padding: 80px 100px;
        overflow: auto;
        font-size: 20px;
        line-height: 1.8;
        letter-spacing: -0.4px;
        text-align: left;

        .title {
            font-size: 32px;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .question {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            height: 100%;

            .guide_str {
                font-size: 20px;
                display: none;
            }

            .qdiv {
                margin-top: 24px;
                margin-bottom: 40px;

                .qstr {
                    font-weight: bold;
                    line-height: 30px;
                }
            }
        }
    }

    .big {
        font-size: 24px;
    }

    .limitbox {
        height: calc(100% - 144px);
    }

    textarea {
        resize: none;
        width: calc(100% - 34px);
        font-size: 18px;
        border-radius: 8px;
        height: 68px;
        border: solid 1px #dadce1;
        padding: 16px;
    }

    .bottom {
        width: 100%;
        height: 96px;
        position: relative;
        background-color: #fff;

        .grade {
            position: absolute;
            left: 75px;
            top: 50%;
            transform: translateY(-50%);
        }

        .button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 20px;
            width: 320px;
            height: 48px;
            border-radius: 8px;
            background-color: var(--main);
            border: none;
            font-weight: 500;
            font-size: 18px;
        }

        .author {
            padding: 10px;
            font-weight: bold;
            border-radius: 10px;
            box-shadow: 3px 3px 6px #0000001f;
            position: absolute;
            right: 75px;
            top: 50%;
            transform: translateY(-50%);
        }
    }

    .thinkbox {
        display: flex;
        flex-direction: column;
        gap: 50px;

        div.think {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 10px;
        }
    }
}

.publish {
    font-size: 16px;
    color: #808185;
    padding-bottom: 13px;
}

.title + .publish {
    border-bottom: solid 2px #3e78ff;
}

.qindex {
    width: 43px;
    height: 43px;
    line-height: 43px;
    background-color: #1d577b;
    border-radius: 4px;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    color: #fff;
    margin-right: 12px;
    display: inline-block;
}

.qstr {
    font-size: 20px;
    display: contents;
    white-space: break-spaces;
}

.qbox {
    border: solid 4px #d7e5ec;
    border-radius: 12px;
    padding: 24px;
    width: calc(100% - 56px);
    margin-top: 24px;
}

button {
    font-weight: 500;
    outline: none;
    cursor: pointer;
    border-radius: 8px;
    height: 48px;
    font-size: 18px;
    padding: 0px 10px;
    letter-spacing: -0.24px;
}

button.ok {
    border-color: var(--main);
    background-color: var(--main);
    color: #ffffff;
}

button.cancel {
    border-color: #b7b8b9;
    background-color: #ffffff;
    color: #808185;
}

button.neutral {
    border-color: var(--main);
    background-color: #ffffff;
    color: var(--main);
}

button.alert {
    border-color: #ff5e93;
    background-color: #ff5e93;
    color: #fff;
}

button.info {
    border-color: var(--sub);
    background-color: var(--sub);
    color: var(--text);
}

button.default {
    border-color: #f6f6f6;
    background-color: #f6f6f6;
    color: #808185;
}

button.start {
    width: 320px;
    height: 48px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 500;
    margin-top: 60px;
}

#oxarea {
    button {
        width: min(30dvw, 30dvh);
        height: min(30dvw, 30dvh);
        border: solid 2px #dadce1;
        border-radius: 8px;
        background-color: unset;
        box-shadow: none;
        padding: 0px;
    }

    button.o {
        background-image: url('/images/future_o_normal.svg');
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
    }

    button.x {
        background-image: url('/images/future_x_normal.svg');
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
    }

    button.correct {
        border: solid 2px #4976f5;
    }

    button.o.correct {
        background-image: url('/images/future_o_correct.svg');
    }

    button.x.correct {
        background-image: url('/images/future_x_correct.svg');
    }

    button.incorrect {
        border: solid 2px #ffa0a0;
    }

    button.o.incorrect {
        background-image: url('/images/future_o_incorrect.svg');
    }

    button.x.incorrect {
        background-image: url('/images/future_x_incorrect.svg');
    }
}

#resultPopup {
    position: fixed;
    top: 50dvh;
    left: 50vw;
    transform: translate(-50%, -50%);
    background-color: #ffecec;
    font-size: 24px;
    font-weight: bold;
    line-height: 94px;
    border-radius: 8px;
    padding: 0px 80px;
}

#resultPopup.correct_popup {
    background-color: #ecf1fe;
}

#resultPopup.incorrect_popup {
    background-color: #ffecec;
}

.button_2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.button_1x4 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

button.example {
    max-width: 271px;
    max-height: 120px;
    width: 45vmin;
    height: 65px;
    border: solid 2px #dadce1;
    border-radius: 8px;
    background-color: #fff;
    color: #0a0b0e;
    position: relative;

    .number {
        border-top-left-radius: 8px;
        border-bottom-right-radius: 8px;
        width: 35px;
        height: 35px;
        position: absolute;
        top: -2px;
        left: -2px;
        text-align: center;
        background-color: #dadce1;
        line-height: 35px;
        font-size: 18px;
        font-weight: bold;
        color: #0a0b0e;
    }
}

button.sentence {
    margin: unset;
    max-width: unset;
    width: 100%;
    height: 81px;
    text-align: left;
    padding: 0 20px 0 50px;
    font-size: 20px;
    margin: 10px 0px;
}

button.correct {
    border: solid 2px #4976f5;

    div.number {
        background-color: #4976f5;
        color: #fff;
    }
}

button.incorrect {
    border: solid 2px #ffa0a0;

    div.number {
        background-color: #ffa0a0;
        color: #fff;
    }
}

.popup button.incorrect div.number {
    background-color: #c1c1c1;
    color: #a2a2a2;
}

.popup button.incorrect {
    border: 4px solid #c1c1c1;
    background-color: #e4e4e4;
    color: #a2a2a2;
}

.water {
    background-image: url('/images/watermark.png');
    background-size: contain;
}

div.correct::before {
    content: '';
    position: absolute;
    background-image: url('/images/top-correct.svg');
    background-size: contain;
    width: 36px;
    height: 36px;
    transform: translate(-41px, 0px);
}

div.incorrect {
    background-color: #ffdcdc;
}

div.incorrect::before {
    content: '';
    position: absolute;
    background-image: url('/images/top-incorrect.svg');
    background-size: contain;
    width: 30px;
    height: 30px;
    transform: translate(-41px, 19px);
}

div.correctExample {
    border-radius: 8px;
    border: solid 4px #1d577b;
    background-color: #9fd7ff;
    color: #1d577b;
    font-weight: bold;
    padding: 12px 17px;
}

div.incorrectExample {
    border-radius: 8px;
    border: solid 4px #c1c1c1;
    background-color: #e4e4e4;
    color: #a2a2a2;
    font-weight: bold;
    padding: 12px 17px;
}

#result {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: calc(100vh - 220px);
    padding: 20px 0px;
    border-top: solid 4px #d7e5ec;
    border-bottom: solid 4px #d7e5ec;
    margin-top: 5vh;
    overflow: auto;
}

#result_mobile {
    display: none;
}

#popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 150px);
    text-align: center;
    font-size: 24px;
}

.hand_img {
    position: absolute;
    left: 50px;
    top: 50%;
    transform: translateY(-50%);
}

div.empty {
    display: inline-block;
    color: #eeeef3;
    background-color: #eeeef3;
    border: solid 1px #d7d7d7;
    padding: 3px 10px;
    cursor: pointer;
}

span.empty {
    color: #0000;
    background-color: #eee;
    padding: 3px 10px;
    cursor: pointer;
}

.progress {
    width: calc(100% - 100px);
    height: 12px;
    background-color: #fff;
    border-radius: 8px;
}
.progress .score {
    width: 0px;
    height: 12px;
    background-color: #1d577b;
    border-radius: 8px;
}
.progress_txt {
    width: 40px;
    text-align: right;
    font-size: 16px;
    color: #bebebe;
    font-weight: normal;
}

.number {
    border-top-left-radius: 12px;
    border-bottom-right-radius: 12px;
    width: 40px;
    height: 40px;
    position: absolute;
    top: -4px;
    left: -4px;
    text-align: center;
    background-color: #cde1eb;
    line-height: 40px;
    font-size: 24px;
    font-weight: bold;
    color: #6ba1c2;
}

.circle_background {
    stroke: #eee;
    fill: none;
    stroke-width: 2.8;
}

.circle_percent {
    stroke: #2c9cff;
    fill: none;
    stroke-width: 2.8;
    stroke-linecap: round;
    animation: progress 1s ease-out forwards;
    transform: rotate(180deg);
    transform-origin: center;
}

.countTable {
    width: 100%;
    border-collapse: collapse;
    margin-top: 18px;
}

.countTable th {
    background-color: #fafafa;
    border-top: solid 1px #eee;
    border-bottom: solid 1px #e1e1e1;
    font-size: 20px;
    font-weight: bold;
    height: 53px;
    width: 50%;
}

.countTable th:nth-child(1) {
    border-right: solid 1px #e1e1e1;
}

.countTable td {
    font-size: 6vh;
    font-weight: bold;
    padding: 2vh 0;
    border-bottom: solid 1px #e1e1e1;
}

.countTable td:nth-child(1) {
    border-right: solid 1px #e1e1e1;
}

.bankbtn {
    font-size: 20px;
    width: 100px;
    height: 60px;
    margin: 10px;
}

.otherbtn {
    width: 100px;
    height: 60px;
    border-radius: 8px;
    box-shadow: 3px 3px 6px 0 rgba(0, 0, 0, 0.16);
    border: solid 4px #d7e5ec;
    background-color: #ffffff;
    color: #1d577b;
    font-size: 1.2rem;
    margin: 10px;
}

#menu_mobile {
    display: none;
}

#popupContent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 40px 0px 20px 0px;
    max-width: 976px;
    border: 4px solid #d7e5ec;
}

#popupContent .body {
    height: calc(100vh - 300px);
    padding: 0px 20px;
    margin-bottom: 20px;
    font-size: 24px;
    overflow: auto;
}

#popupContent .big {
    font-size: 28px;
    line-height: 44px;
}

#popupContent .title {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 46px;
}

.reply {
    display: flex;
    flex-direction: row;
    margin-bottom: 20px;
}

.reply .profile {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-right: 20px;
    object-fit: cover;
    object-position: center 0%;
}

.reply .textarea {
    max-width: calc(100% - 100px);
    line-height: 28px;
}

.reply .name {
    margin-bottom: 10px;
}

.reply .text {
    border-radius: 0px 12px 12px 12px;
    padding: 10px 16px;
    max-width: 100%;
    color: black;
    background-color: #fff;
    border: solid 2px #e1e1e1;
    letter-spacing: -0.57px;
    word-wrap: break-word;
    line-height: 36px;
}

.reply .mine {
    background-color: #e1e1e1;
}

#exs {
    border-radius: 8px;
    padding: 14px 16px;
    box-shadow: 0 4px 8px 0 rgba(10, 11, 14, 0.2);
    background-color: #fff;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 1;

    .ex {
        cursor: pointer;
        font-size: 20px;
    }
}

.popup .pheader {
    width: calc(100% - 40px);
    margin: auto;
}

.popup .qheader_m {
    display: none;
}

.popup .question_wrap {
    margin: 20px auto;
    border-radius: 8px;
    padding: 20px;
    width: calc(100% - 80px);
    background-color: #fff;
    font-size: 24px;
}

.popup .question {
    background-color: #fff;
    padding: 20px;
}

.popup .qstr {
    margin-bottom: 40px;
}

.popup .title {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 46px;
}

.popup .qdiv {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 40px;

    .qstr {
        margin-bottom: 0px;
    }

    .mobile {
        display: block;
    }
}

.popup .qbox {
    margin-top: 20px;
}

.popup button.incorrect div.number {
    background-color: #c1c1c1;
    color: #a2a2a2;
}

.popup button.incorrect {
    border: 4px solid #c1c1c1;
    background-color: #e4e4e4;
    color: #a2a2a2;
}

.star {
    width: 35px;
    height: 33px;
    background-image: url('/images/star_fill.svg');
    background-size: contain;
    background-repeat: no-repeat;
    cursor: pointer;
}

.emptystar {
    background-image: url('/images/star_empty.svg');
}

.incorrect_popup_text {
    font-size: 20px;
}

#incorrect_popup_left {
    border-radius: 8px;
    display: flex;
    padding: 20px;
    align-items: center;
    justify-content: space-around;
    background-color: #fff;
    font-size: 24px;
    width: calc(55% - 60px);
}

#incorrect_popup_right {
    border-radius: 8px;
    display: flex;
    padding: 20px;
    align-items: center;
    justify-content: space-around;
    background-color: #fff;
    font-size: 24px;
    width: calc(45% - 60px);
}

#infoDiv {
    position: fixed;
    top: 67px;
    width: 90px;
    background: #fff;
    z-index: 10;
    padding: 14px 25px;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    text-align: center;
    border-radius: 8px;
}

#infoDiv a {
    text-decoration: none;
    color: #000;
}

#share {
    width: 171px;
    height: 50px;
    font-size: 20px;
}

#share_m {
    display: none;
}

#closepopup {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 24px;
    color: #1d577b;
}

div.future_review_image {
    width: 88px;
    height: 88px;
    border: solid 1px #f5f5f5;
    background-repeat: no-repeat;
    background-position: center 10px;
    background-color: #f5f5f5;
    font-size: 12px;
    color: #b9b9b9;
    margin: 2px auto;
    position: relative;
    cursor: pointer;
}

div.future_review_image.press {
    background-color: #fff;
    border: solid 1px #000;
    color: #000;
}

div.future_review_text {
    position: absolute;
    text-align: center;
    width: 100%;
    bottom: 5px;
}

div.closebtn {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 17px;
    height: 17px;
    background-image: url('/images/close.svg');
    background-size: contain;
}

#loginAreaM {
    display: none;
}

.mobile {
    display: none;
}

#result_area {
    max-width: 700px;
    margin: auto;
    display: flex;
    flex-direction: column;
    padding: 60px 0px;

    .top_date {
        border-bottom: solid 2px var(--main);
        padding-bottom: 11px;
        display: flex;
        justify-content: space-between;
        align-items: flex-end;

        > div:first-child {
            display: flex;
            align-items: flex-end;
            gap: 8px;

            div:first-child {
                font-size: 24px;
                font-weight: 700;
            }

            div:last-child {
                font-size: 16px;
                color: #777;
            }
        }

        button {
            height: 30px;
            font-size: 14px;
        }
    }

    .article_info {
        display: flex;
        flex-direction: column;
        gap: 6px;
        padding-top: 19px;
        padding-bottom: 16px;
        border-bottom: solid 1px #dadce1;

        > div:first-child {
            font-size: 18px;
            font-weight: 700;
        }

        > div:last-child {
            font-size: 16px;
            color: #808185;
        }
    }

    .grid_number {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        border-bottom: solid 1px #dadce1;

        > div {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 15px;
            padding: 40px 0px;

            > span:first-child {
                font-size: 16px;
                color: #808185;
            }

            > span:last-child {
                font-size: 20px;
                font-weight: 700;
            }
        }
    }

    .compare_message {
        margin-top: 20px;
        border-radius: 8px;
        border: solid 1px var(--main);
        padding: 16px;
        background-color: #e8f0fe;

        i {
            color: var(--main);
        }
    }

    .wait {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        color: #bebbbb;
        padding: 60px 0px;
    }

    .bold {
        font-size: 18px;
        font-weight: 700;
    }

    .ox_view {
        display: flex;
        flex-wrap: wrap;
        gap: 2px;
        margin-top: 12px;

        > div.ox {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 68px;

            span {
                text-align: center;
                line-height: 46px;
                font-size: 16px;
                font-weight: 500;
            }

            > div {
                width: 100%;
                background-color: #f6f6f6;
                display: flex;
                align-items: center;
                justify-content: center;
                height: 46px;
            }

            i.fa-circle {
                color: var(--main);
                font-size: 22px;
            }

            i.fa-xmark {
                color: #f62b2b;
                font-size: 26px;
            }
        }

        > div.think {
            width: calc(100% - 20px);
            display: flex;
            flex-direction: column;
            font-size: 16px;
            font-weight: 500;
            gap: 6px;
            margin-bottom: 20px;

            > div {
                width: calc(100% - 20px);
                background-color: #f6f6f6;
                min-height: 26px;
                padding: 10px;
                line-height: 26px;
            }
        }

        .pointer {
            cursor: pointer;
        }
    }
}

#mobile_search {
    display: none;
}

/* Custom RadioBox */
.radiolabel {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    margin-right: 24px;
    cursor: pointer;
    font-size: 16px;
    line-height: 28px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.radiolabel input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radiomark {
    position: absolute;
    top: 0;
    left: 0;
    height: 28px;
    width: 28px;
    background-color: #eee;
    border-radius: 50%;
}

.radiolabel:hover input ~ .radiomark {
    background-color: #ccc;
}

.radiolabel input:checked ~ .radiomark {
    background-color: var(--main);
}

.radiomark:after {
    content: '';
    position: absolute;
    display: none;
}

.radiolabel input:checked ~ .radiomark:after {
    display: block;
}

.radiolabel .radiomark:after {
    top: 7px;
    left: 7px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: white;
}

#plist {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 500;

    select {
        -webkit-appearance: none;
        -moz-appearance: none;
        background: #fff;
        background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path d='M9 0 4.5 4.5 0 0' fill='none' stroke='grey' stroke-width='1.5px'/></svg>");
        background-repeat: no-repeat;
        background-position: right 15px top calc(50% + 1px);

        width: calc(100% - 60px);
        border: 1px solid #dadce1;
        border-radius: 4px;
        margin: 6px 0px;
        padding: 10px 40px 10px 10px;
        font-size: 16px;
        line-height: 22px;
        letter-spacing: -0.5px;
    }
}

#top_btn {
    background-image: url('/images/arrow_top.svg');
    background-repeat: no-repeat;
    background-size: contain;
    width: 48px;
    height: 48px;
    position: fixed;
    left: 50%;
    bottom: 40px;
    transform: translateX(-50%);
    display: none;
}

#article_popup {
    margin: 30px auto 0px auto;
    max-width: calc(100% - 40px);
    width: 700px;
    max-height: 60dvh;
    overflow: auto;
    padding: 20px;

    .title {
        font-size: 32px;
        font-weight: bold;
        text-align: left;
        margin-bottom: 24px;
    }

    p {
        font-size: 20px;
        line-height: 1.8;
        letter-spacing: -0.4px;
        color: #0a0b0e;
    }
}

#result_bottom_btn_area {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 6px;
    max-width: 430px;
    width: 100%;
    margin: 82px auto;

    > button {
        font-size: 16px;
        font-weight: 500;
    }
}

@media (max-width: 760px) {
    #header {
        height: 52px;

        > div {
            height: 52px;
        }

        .title {
            display: none;
        }

        #loginArea {
            .profile {
                width: 30px;
                height: 30px;
            }
        }
    }

    #article_list {
        margin: 10px auto;

        #controls {
            padding: 0px 20px 10px 20px;
            align-items: center;
            input[name='keyword'] {
                display: none;
            }
        }

        #types {
            > div {
                padding: 20px 20px 0px 20px;
                margin-bottom: 20px;
            }
        }

        #orders {
            padding: 0px 20px;
        }

        > .list {
            padding: 0px 20px 20px 20px;

            > .article {
                > div {
                    justify-content: unset;
                    flex-direction: column;
                    align-items: flex-start;
                    gap: 6px;
                }

                .title {
                    font-size: 16px;
                }

                .desc {
                    font-size: 13px;
                }

                .check,
                .nocheck {
                    width: 51px;
                    line-height: 22px;
                    font-size: 13px;
                }
            }
        }
    }

    #result_area {
        padding: 40px 20px;

        .ox_view {
            div.ox {
                width: calc((100% - 8px) / 5);
            }
        }

        .article_info {
            > div:last-child {
                font-size: 14px;
            }
        }
    }

    .profile {
        width: 30px;
        height: 30px;
        margin-right: 0px;
    }

    .closeSearch {
        position: absolute;
        top: 16px;
        right: 20px;
        width: 17px;
        height: 17px;
        background-image: url('/images/close.svg');
        background-size: 17px;
        background-position: center;
        background-repeat: no-repeat;
        cursor: pointer;
    }

    input[name='m_keyword'] {
        line-height: 42px;
        border-radius: 8px;
        border: solid 1px #dadce1;
        width: 176px;
        padding: 0px 10px;
        font-size: 16px;
        width: calc(100% - 90px);
    }

    #menu_mobile {
        display: block;
        background-color: #1d577b;
        color: white;
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 60px;
        position: relative;
    }

    #menu_mobile .icon {
        width: 32px;
        height: 32px;
        margin: 0px 16px;
    }

    #menu_mobile .center {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 18px;
        font-weight: bold;
    }

    .loginbtn {
        font-size: 16px;
    }

    #bottom {
        position: relative;
        font-size: 12px;
        height: unset;
    }

    #bottom .logo {
        display: block;
        width: 169px;
        height: 19px;
        background-size: contain;
    }

    #content {
        position: unset;
        top: unset;
        left: unset;
        transform: unset;
        height: unset;
    }

    .body::-webkit-scrollbar {
        width: 5px;
    }

    #article {
        margin: unset;

        .body {
            padding: 20px;
            width: calc(100vw - 40px);
            height: unset;
            font-size: 18px;

            .title {
                font-size: 24px;
            }

            .publish {
                font-size: 14px;
            }

            .question {
                justify-content: flex-start;
            }
        }

        .big {
            font-size: 22px;
        }

        .thinkbox {
            gap: 20px;
        }
    }

    .button_2x2 {
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: calc(100vw - 40px);
    }

    #popup {
        width: unset;
    }

    #resultPopup {
        padding: 0px;
        width: calc(100vw - 40px);
        text-align: center;
    }

    .hand_img {
        width: 48px;
        left: unset;
        top: unset;
        transform: unset;
        position: relative;
    }

    .qindex {
        display: none;
    }

    #article .hide {
        display: none;
    }

    .qstr {
        font-size: 20px;
        font-weight: bold;
        line-height: 33px;
    }

    .qbox {
        background-color: #fff;
        margin-bottom: 20px;
    }

    #oxarea {
        gap: 20px;
        button {
            width: calc(50vw - 40px);
            height: calc(50vw - 40px);
        }
    }

    button.example {
        height: 70px;
        max-width: unset;
        font-size: 20px;
        width: 100%;
    }

    .number {
        top: -2px;
        left: -2px;
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 20px;
    }

    button.sentence {
        height: unset;
        font-size: 18px;
        padding: 20px 10px 20px 40px;
        word-break: keep-all;
    }

    div.think {
        font-size: 16px;
    }

    #result {
        display: none;
    }

    #result_mobile {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 90%;
        margin: auto;
        padding: 20px 0px;
    }

    .circle_background {
        stroke-width: 2.1;
    }

    .circle_percent {
        stroke-width: 2.1;
    }

    #popupContent {
        max-width: unset;
        border: solid 1px #1d577b;
        border-radius: 8px;
    }

    #popupContent .body {
        height: calc(var(--vh, 1vh) * 100 - 240px);
        margin-bottom: unset;
        padding: 0px 20px;
        font-size: 16px;
        line-height: 32px;
    }

    #popupContent .title {
        font-size: 18px;
        margin-bottom: 32px;
        text-align: left;
    }

    #popupContent .author {
        display: none;
    }

    .popup .qheader_m {
        display: block;
        background-color: #1d577b;
        color: #fff;
        width: calc(100% + 20px);
        margin-left: -10px;
        margin-top: -10px;
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        height: 40px;
        line-height: 40px;
        text-align: center;
    }

    .popup .question_wrap {
        font-size: 20px;
        padding: 10px;
        margin: 10px auto;
        width: calc(100% - 60px);
    }

    #share {
        display: none;
    }

    #share_m {
        display: block;
        border: solid 2px #1d577b;
        background-color: #fff;
        color: #1d577b;
        border-radius: 25px;
        width: 100%;
        height: 50px;
        font-size: 20px;
        margin-bottom: 20px;
    }

    .reply .profile {
        width: 50px;
        height: 50px;
        margin-right: 10px;
        background-size: contain;
        background-repeat: no-repeat;
    }

    .reply .textarea {
        max-width: calc(100% - 60px);
        line-height: 18px;
    }

    #exs .ex {
        font-size: 18px;
    }

    .incorrect_popup_text {
        font-size: 18px;
        line-height: 36px;
    }

    #incorrect_popup_left {
        width: 100%;
        font-size: 16px;
        margin-bottom: 20px;
    }

    #incorrect_popup_right {
        width: 100%;
        font-size: 16px;
        margin-bottom: 10px;
    }

    #infoDiv {
        top: 60px;
    }

    #loginAreaM {
        display: block;
        position: absolute;
        top: 19px;
        right: 0px;
    }

    .mobile {
        display: contents;
    }

    #article_popup {
        max-width: 100%;
        padding: 0px;

        .title {
            font-size: 24px;
        }

        .publish {
            font-size: 14px;
            letter-spacing: -0.7;
        }

        p {
            font-size: 18px;
            line-height: 1.78;
            letter-spacing: -0.36px;
        }
    }

    button.start {
        margin-top: 20px;
    }
}
