@charset "UTF-8";

*,
*::before,
*::after {
    letter-spacing: -0.3px;
    word-break: break-all;
    box-sizing: border-box;
}

:root {
    --headerHeight: 100px;
    --bottomHeight: 90px;
}

@media (prefers-reduced-motion: no-preference) {
    :root {
        scroll-behavior: smooth;
    }
}

html {
    height: 100%;
    font-size: 14px;
}

body {
    display: flex;
    flex-direction: column;
    height: 100%;
    line-height: 1.5;
    font-family: 'NanumSquare', sans-serif;
    font-weight: 500;
    color: #333;
    letter-spacing: -0.2px;
    margin: 0;
    background: #fafafa;
    overflow: overlay;
    overscroll-behavior-x: none;
}

*::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

*::-webkit-scrollbar-thumb {
    background-color: hsla(0, 0%, 40%, 0.3);
    border-radius: 100px;
}

abbr[title],
abbr[data-bs-original-title] {
    text-decoration: underline dotted;
    -webkit-text-decoration: underline dotted;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
    cursor: help;
}

b,
strong {
    font-weight: 800;
}

a {
    display: inline-block;
    color: #333;
    text-decoration: none;
    transition: all 0.2s ease;
}

a:hover {
    color: #aaa;
}

a:focus {
    outline: none;
    appearance: none;
    box-shadow: none !important;
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
    color: inherit;
    text-decoration: none;
}

p {
    margin: 0;
    user-select: none;
}

figure {
    margin: 0;
}

table {
    width: 100%;
    caption-side: bottom;
    border-collapse: collapse;
    border-spacing: 0;
}

table tr th,
table tr td {
    padding: 0;
}

th {
    text-align: inherit;
    text-align: -webkit-match-parent;
}

thead,
tbody,
tfoot,
tr,
td,
th {
    border-color: inherit;
    border-style: solid;
    border-width: 0;
    user-select: none;
}

input,
button,
select,
optgroup,
textarea {
    line-height: inherit;
    font-family: 'NanumSquare', sans-serif;
    font-size: 14px;
    margin: 0;
    outline: none;
}

input[type='text'],
input[type='password'],
input[type='search'] {
    height: 50px;
    color: #333;
    padding: 0 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background: transparent;
    transition: all 0.2s ease;
}

input[type='text']:hover,
input[type='text']:focus,
input[type='password']:hover,
input[type='password']:focus {
    border-color: #0c70f5;
}

input::placeholder {
    color: #aaa;
}

textarea::placeholder {
    font-size:14px;
}

input[type='range'] {
    -webkit-appearance: none;
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background: #ccc;
    transition: background 450ms ease-in;
    /* box-shadow: inset 0 1px 0 #ccc; */
    cursor: pointer;
}

input[type='range']:focus {
    outline: none;
}

input[type='range']::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 10px;
    height: 10px;
    border: none;
    border-radius: 50%;
    background: #102e81;
    cursor: pointer;
}

input[type='range']::-moz-range-thumb {
    -webkit-appearance: none;
    width: 10px;
    height: 10px;
    border: none;
    border-radius: 50%;
    background: #102e81;
    cursor: pointer;
}

button,
select {
    text-transform: none;
    transition: all 0.2s ease;
}

[role='button'] {
    cursor: pointer;
}

img {
    width: 100%;
}

select {
    word-wrap: normal;
}

select:disabled {
    opacity: 1;
}

[list]::-webkit-calendar-picker-indicator {
    display: none;
}

em {
    display: inline-block;
    font-style: normal;
}

button,
button:not(.btn-close) [type='button'],
[type='reset'],
[type='submit'] {
    font-family: 'NanumSquare', sans-serif;
    border: none;
    background: transparent;
    -webkit-appearance: button;
    transition: all 0.2s ease;
}

textarea {
    width: 100%;
    min-height: 160px;
    line-height: 24px;
    color: #333;
    padding: 15px;
    border: 1px solid #e6e6e6;
    border-radius: 5px;
    background: transparent;
    resize: vertical;
    transition: all 0.2s ease;
}

textarea:hover,
textarea:focus {
    outline: none;
    border-color: #e6e6e6;
}

textarea.no_resize {
    resize: none !important;
}

h1 {
    line-height: 40px;
    font-size: 30px;
}

h2 {
    line-height: 36px;
    font-size: 24px;
}

h3 {
    line-height: 30px;
    font-size: 20px;
}

h4 {
    line-height: 24px;
    font-size: 16px;
}

h5 {
    line-height: 20px;
    font-size: 14px;
}

h1,
h2,
h3,
h4,
h5,
dl,
dd,
ul {
    margin: 0;
    padding: 0;
    user-select: none;
}

li {
    list-style: none;
}

.row {
    position: relative;
    margin-bottom: 20px;
}

.row:last-child {
    margin-bottom: 0;
}

.row>.col {
    position: relative;
}

.flex {
    display: flex !important;
    align-items: center;
}

.f_column {
    display: flex !important;
    flex-direction: column !important;
}

.f_column_ib {
    display: inline-flex !important;
    flex-direction: column !important;
}


.f_center {
    justify-content: center !important;
}

.f_between {
    justify-content: space-between !important;
}

.f_start {
    justify-content: flex-start !important;
}

.f_end {
    justify-content: flex-end !important;
}

.f_baseline {
    align-items: baseline !important;
}

.f_normal {
    align-items: normal !important;
}

.f_top {
    align-items: flex-start !important;
}

.f_bot {
    align-items: flex-end !important;
}

.f_auto {
    flex: 1;
}

.fluid {
    width: 100%;
}

.cut {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    line-height: 2.4;
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    padding: 0 10px;
    border: 1px solid transparent;
    border-radius: 10px;
    background: #666;
}

.btn.sm {
    /* line-height: 26px; */
    line-height:2;
    font-size: 13px;
    padding: 0 15px;
}

.btn:first-child:active,
.btn:active,
.btn:hover {
    background: #444;
    color:#fff;
}

.btn.icon {
    line-height: unset;
    padding: 0;
    background: transparent;
}

.btn.icon:first-child:active,
.btn.icon:active,
.btn.icon:hover {
    background: transparent;
}
.btn.icon:disabled {
    border:0
}

.btn.l_blue {
    background: #e0f0ff;
}

.btn.l_blue:first-child:active,
.btn.l_blue:active,
.btn.l_blue:hover {
    background: #bdddfd;
}

.btn.blue {
    background: #0c70f5;
}

.btn.blue:first-child:active,
.btn.blue:active,
.btn.blue:hover {
    background: #005bd7;
}

.btn.d_blue {
    background: #102e81;
}

.btn.d_blue:first-child:active,
.btn.d_blue:active,
.btn.d_blue:hover {
    background: #082575;
}

.btn.red {
    color: #fd5435;
    border-color: #fd5435;
}

.btn.red:first-child:active,
.btn.red:active,
.btn.red:hover {
    color: #b20000;
    border-color: #b20000;
}

.btn.line {
    color: #555;
    border: 1px solid #ddd;
    background: transparent;
}

.btn.line.b2 {
    border-width: 2px;
}

.btn.line:first-child:active,
.btn.line:active,
.btn.line:hover {
    border-color: #aaa;
    background: transparent;
}

.btn.line.l_blue {
    color: #e0f0ff;
    border-color: #e0f0ff;
}

.btn.line.l_blue:first-child:active,
.btn.line.l_blue:active,
.btn.line.l_blue:hover {
    color: #bdddfd;
    border-color: #bdddfd;
}

.btn.line.blue {
    color: #0c70f5;
    border-color: #0c70f5;
}

.btn.line.blue:first-child:active,
.btn.line.blue:active,
.btn.line.blue:hover {
    color: #005bd7;
    border-color: #005bd7;
}

.btn.line.d_blue {
    color: #102e81;
    border-color: #102e81;
}

.btn.line.d_blue:first-child:active,
.btn.line.d_blue:active,
.btn.line.d_blue:hover {
    color: #082575;
    border-color: #082575;
}

.btn.line.l_blue {
    color: #102e81;
    border-color: #e0f0ff;
}

.btn.line.l_blue:first-child:active,
.btn.line.l_blue:active,
.btn.line.l_blue:hover {
    color: #082575;
    border-color: #0c70f5;
}

.btn.line.red {
    color: #fd5435;
    border-color: #fd5435;
}

.btn.line.red:first-child:active,
.btn.line.red:active,
.btn.line.red:hover {
    color: #b20000;
    border-color: #b20000;
}

.normal {
    font-weight: 400 !important;
}

.bold {
    font-weight: 700 !important;
}

.txt_l_blue {
    color: #e0f0ff;
}

.txt_blue {
    color: #0c70f5;
}

.txt_d_blue {
    color: #102e81;
}

.txt_red {
    color: #fd5435;
}

.txt_green {
    color: #44a900;
}

.a_box {
    display: inline-block;
    line-height: 36px;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    padding: 0 20px;
    border-radius: 8px;
    cursor: default;
}

.a_box.sm {
    line-height: 26px;
    font-size: 15px;
    padding: 0 10px;
    border-radius: 5px;
}

.a_box.sub {
    color: #555;
    background: #f5f5f5;
}

.a_box.green {
    color: #fff;
    background: #44a900;
}

.a_box.blue {
    color: #fff;
    background: #0c70f5;
}

.a_box.red {
    color: #fff;
    background: #fd5435;
}

.mt0 {
    margin-top: 0 !important;
}

.mt5 {
    margin-top: 5px !important;
}

.mt10 {
    margin-top: 10px !important;
}

.mt20 {
    margin-top: 20px !important;
}

.mt30 {
    margin-top: 30px !important;
}

.mt40 {
    margin-top: 40px !important;
}

.mt50 {
    margin-top: 50px !important;
}

.mt100 {
    margin-top: 100px !important;
}

.mr0 {
    margin-right: 0 !important;
}

.mr5 {
    margin-right: 5px !important;
}

.mr10 {
    margin-right: 10px !important;
}

.mr20 {
    margin-right: 20px !important;
}

.mr30 {
    margin-right: 30px !important;
}

.mr40 {
    margin-right: 40px !important;
}

.mr50 {
    margin-right: 50px !important;
}

.mla {
    margin-left: auto !important;
}

.ml0 {
    margin-left: 0 !important;
}

.ml5 {
    margin-left: 5px !important;
}

.ml10 {
    margin-left: 10px !important;
}

.ml20 {
    margin-left: 20px !important;
}

.ml30 {
    margin-left: 30px !important;
}

.ml40 {
    margin-left: 40px !important;
}

.ml50 {
    margin-left: 50px !important;
}

.ml100 {
    margin-left: 100px !important;
}

.mb0 {
    margin-bottom: 0 !important;
}

.mb5 {
    margin-bottom: 5px !important;
}

.mb10 {
    margin-bottom: 10px !important;
}

.mb20 {
    margin-bottom: 20px !important;
}

.mb30 {
    margin-bottom: 30px !important;
}

.mb40 {
    margin-bottom: 40px !important;
}

.mb50 {
    margin-bottom: 50px !important;
}

.pt0 {
    padding-top: 0 !important;
}

.pt5 {
    padding-top: 5px !important;
}

.pt10 {
    padding-top: 10px !important;
}

.pt15 {
    padding-top: 15px !important;
}

.pb0 {
    padding-bottom: 0 !important;
}

.pb5 {
    padding-bottom: 5px !important;
}

.pb10 {
    padding-bottom: 10px !important;
}

.pb15 {
    padding-bottom: 15px !important;
}

.pl0 {
    padding-left: 0 !important;
}

.pl5 {
    padding-left: 5px !important;
}

.pl10 {
    padding-left: 10px !important;
}

.pr0 {
    padding-right: 0 !important;
}

.pr5 {
    padding-right: 5px !important;
}

.pr10 {
    padding-right: 10px !important;
}

.pd10 {
    padding: 10px !important
}

.pd5 {
    padding: 5px !important
}

.t_center {
    text-align: center !important;
}

.t_left {
    text-align: left !important;
}

.t_right {
    text-align: right !important;
}

.txt_bold {
    font-weight: 800 !important;
}

.txt_big_red {
    font-size: 200px;
    font-weight: 1200 !important;
    color: #fd5435;
}

.btm-point-text {
    margin-top:50px;
    font-size: 16px;
    line-height:1.4;
    text-align: center;
}

.card {
    padding: 30px;
    border: none;
    border-radius: 20px;
}

.modal-sm {
    --bs-modal-width: 600px;
}

.modal-md {
    --bs-modal-width: 800px;
}

.modal-lg {
    --bs-modal-width: 1000px;
}

.modal-alert {
    --bs-modal-width: 700px;
}

.mo {
    display: none !important;
}

/* header */

header {
    width: 100%;
    min-height:70px;
    background: #0c70f5;
    /* position: relative; */
    /* z-index: 1001; */
}

header .inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height:100%;
    padding: 15px 0;
}

header .user_code span {
    display: block;
    line-height: 15px;
    font-size: 11px;
    font-weight: 700;
    color: #ddd;
}

header .user_code p {
    line-height: 25px;
    font-size: 14px;
    font-weight: 800;
    color: #fff;
}

header .center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

header .center h3 {
    font-weight: 800;
    color: #fff;
    white-space: nowrap;
}

header .clock {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    padding: 10px;
    border-radius: 10px;
    background: #fff;
}

header .clock>* {
    line-height: 20px;
    color: #0c70f5;
}

header .clock span {
    font-weight: 700;
}

header .clock p {
    font-weight: 800;
    color: #102e81;
}

header .clock.timer {
    background: #102e81;
}

header .clock.timer>* {
    font-size: 12px;
    color: #ddd;
}

header .clock.timer p {
    font-size: 18px;
    color: #fcde42;
}

/* footer */

footer {
    width: 100%;
    border-top: 2px solid #102e81;
    background: #e0f0ff;
}
footer.z-1001 {
    position: relative;
    z-index: 1001;
}

footer .inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 60px;
    padding: 10px 0;
}

footer .inner.only-text {
    justify-content: center
}

footer .inner.only-text .center {
    position: relative;
    left:auto;
    right:auto;
    transform :none;
}

footer button {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 38px;
    font-weight: 800;
    color: #0c70f5;
    padding: 5px 15px;
    border-radius: 10px;
    border: 2px solid #0c70f5;
    background: #fff;
    box-shadow: 5px 5px 10px rgb(0 0 0 / 5%);
}

footer button>img {
    width: 16px;
}

footer button>span {
    line-height: 20px;
    padding: 0 20px;
}

footer button[type=button]:not(:disabled).prev{
    cursor: auto;
}

/* footer .center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 38px;
} */

footer .center h3 {
    line-height: 38px;
}

footer .speaking .left .a_box {
    display: flex;
    align-items: center;
    gap: 5px;
}

footer .record {
    display: flex;
    align-items: center;
    gap: 10px;
}

footer .record span {
    line-height: 20px;
    font-size: 16px;
    font-weight: 800;
    user-select: none;
}

footer .record span.circle {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fd5435;
}

footer .sound_wave {
    width: 400px;
    height: 36px;
    padding: 0;
    margin-left: 20px;
}

.inner {
    width: 800px;
    margin: 0 auto;
}

.main,
article {
    flex-grow: 1;
    flex-basis: 0;
    height: calc(100% - 172px);
}

.main>section,
article>section {
    display: flex;
    flex-direction: column;
    width: 800px;
    height: calc(100% - var(--bottomHeight) + 50px);
    margin: 20px auto;
    padding: 0 30px 20px;
    border: 1px solid #ebebeb;
    border-bottom: none;
    border-radius: 15px;
    background: #fff;
    box-shadow: 5px 5px 10px rgb(0 0 0 / 5%);
    overflow: overlay;
}

.title_box {
    position: relative;
    display: flex;
    width:100%;
    align-items: center;
    font-weight: 800;
    color: #102e81;
    padding:20px 0;
    border-bottom: 1px solid #ebebeb;
    background-color: #fff;
}

.title_box.sticky {
    position: sticky;
    top:0;
    left:0;
    width:100%;
    z-index: 999;
}

.title_box .logo-s {
    width:100px;
}

.headline {
    font-weight: 800;
}

h3.title {
    position: relative;
    display: flex;
    align-items: center;
    font-weight: 800;
    color: #102e81;
    margin-bottom: 20px;
    border-bottom: 1px solid #ebebeb;
}

.headline .txt_block,
h3.title .txt_block,
h3.title p {
    line-height: 24px;
    font-size: 16px;
    font-weight: 500;
}

.headline .txt_block:before,
h3.title .txt_block:before,
h3.title p:before {
    line-height: 24px;
    font-size: 12px;
    color: #aaa;
    content: 'ㅣ';
    padding: 0 10px;
    vertical-align: top;
}

.content h3.title {
    border-bottom: none;
}

.input_wrap input,
.input_wrap label {
    cursor: pointer;
}

/* 인포박스 스타일 */

.info_wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border: 1px solid #ddd;
    background: #fbfbfb;
}

.info_wrap_left .btn {
    white-space: nowrap;
}

.info_wrap_left .btn-wrap .btn {
    width: 100%;
}

.info_wrap_left .ico-grid {
    width: 15px;
}

.info_wrap_left .ico-arrow {
    width: 10px;
}

.info_wrap.f_star p, 
.info_wrap li {
    position: relative;
    padding-left:20px;
    line-height: 24px;
    font-size: 15px;
    /* font-weight: 700; */
}

.info_wrap li:before {
    position: absolute;
    top:0;
    left:0;
    display: inline-block;
    color: #555;
    content: '•';
    padding: 0 5px 0 0;
}

.info_wrap p {
    font-size: 16px;
    font-weight: 500;
}

/* 테이블 기본 스타일 */
.table_wrap {
    position: relative;
    margin-top: 15px;
}

.table_wrap .table_top {
    display: flex;
    align-items: center;
    padding-top:5px;
}

.table_wrap table thead {
    border-top: 2px solid #0c70f5;
    border-bottom: 1px solid #ddd;
    background: #fafafa;
}

.table_wrap .border tr>* {
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
}

.table_wrap table tr>* {
    padding: 10px;
    text-align: center;
}

.table_wrap table tr th {
    font-weight: 500;
}

.table_wrap table tr td {
    font-size: 16px;
    font-weight: 700;
    border-bottom: 1px solid #ddd;
}

.table_wrap .submit tbody th {
    border-bottom: 1px solid #ddd;
    background: #fafafa;
}

.table_wrap .submit tr>* {
    font-size: 16px;
    padding: 5px 10px;
}

.table_wrap .submit th {
    font-weight: 700;
}

.table_wrap .submit td {
    color:#aaa;
}

.table_wrap .submit .warn {
    background: rgb(253 84 53 / 30%);
}

.table_wrap .q_count {
    display: flex;
    align-items: center;
}

.table_wrap .q_count li {
    font-weight: 700;
}

.table_wrap .q_count li:after {
    padding: 0 10px;
    color: #ddd;
    content: 'ㅣ';
}

.table_wrap .q_count li:last-child:after {
    display: none;
}

.table_wrap table .row_blue {
    background: #fbfbfb;
}

.table_wrap table .sound_wave {
    display:block;
}

/* 모달 기본 스타일 */
.modal-content {
    padding: 30px;
    border: none;
    border-radius: 20px;
}

.modal-header {
    padding: 0 0 20px;
    border-bottom: 1px solid #ebebeb;
}

.modal-title {
    /* font-size: 20px; */
    font-weight: 800;
    color: #102e81;
}

.modal-body {
    padding: 20px;
}

.modal-footer {
    justify-content: center;
    gap: 10px;
    padding: 20px 0 0;
    border-top: none;
}

.modal-text {
    font-size:20px;
}

.modal-footer button {
    width: 120px;
    line-height: 38px;
    font-size: 16px;
    margin: 0;
}

@media screen and (min-width: 1401px) {
    *::-webkit-scrollbar {
        width: 7px;
        height: 7px;
    }

    h1 {
        line-height: 48px;
        font-size: 36px;
    }

    h2 {
        line-height: 44px;
        font-size: 32px;
    }

    h3 {
        line-height: 40px;
        font-size: 26px;
    }

    h4 {
        line-height: 30px;
        font-size: 20px;
    }

    h5 {
        line-height: 24px;
        font-size: 16px;
    }

    .mt10 {
        margin-top: 20px !important;
    }

    .mt20 {
        margin-top: 30px !important;
    }

    .mt30 {
        margin-top: 40px !important;
    }

    .mt40 {
        margin-top: 50px !important;
    }

    .mt50 {
        margin-top: 60px !important;
    }

    .mb10 {
        margin-bottom: 20px !important;
    }

    .mb20 {
        margin-bottom: 30px !important;
    }

    .mb30 {
        margin-bottom: 40px !important;
    }

    .mb40 {
        margin-bottom: 50px !important;
    }

    .mb50 {
        margin-bottom: 60px !important;
    }

    article {
        padding: 0;
    }

    .inner {
        width: 1400px;
    }

    header .user_code span {
        line-height: 20px;
        font-size: 14px;
    }

    header .user_code p {
        line-height: 30px;
        font-size: 24px;
    }

    header .clock {
        gap: 10px;
    }

    header .clock>* {
        font-size: 16px;
    }

    header .clock p {
        font-size: 24px;
        font-weight: 800;
    }

    .title_box {
        padding:30px 0;
    }

    .headline {
        font-size: 30px;
    }

    h3.title {
        font-size: 30px;
        margin-bottom: 30px;
    }

    .headline .txt_block,
    h3.title .txt_block,
    h3.title p {
        line-height: 30px;
        font-size: 20px;
    }

    .headline .txt_block:before,
    h3.title .txt_block:before,
    h3.title p:before {
        line-height: 30px;
        font-size: 15px;
    }

    .main>section,
    article>section {
        width: 1400px;
        padding: 0 50px 30px;
    }

    .btm-point-text {
        font-size: 24px;
    }

    .btn {
        font-size: 16px;
    }

    .table_wrap {
        margin-top: 30px;
    }

    form.modal-body .table_wrap.bar.flex {
        margin-top: 0;
    }

    .table_wrap table tr th {
        font-size: 16px;
    }

    .table_wrap table tr td {
        font-size: 18px;
    }

    .table_wrap .agree_table input {
        width: 24px;
        height: 24px;
    }

    .table_wrap .q_count li {
        font-size: 16px;
    }

    .table_wrap .q_count li:after {
        padding: 0 20px;
    }

    .info_wrap {
        padding: 30px;
    }

    .answerCheck .info_wrap p {
        font-size: 24px;
    }

    .modal-title {
        /* font-size: 24px; */
    }

    .modal-content {
        padding: 30px 40px;
    }

    .modal-body {
        padding: 20px 0;
    }

    .modal-footer button {
        width: 160px;
        line-height: 50px;
        font-size: 20px;
    }

    footer .inner {
        min-height: 90px;
        padding: 20px 0;
    }

    footer .center {
        height: 50px;
    }

    footer button {
        gap: 20px;
        min-width: 200px;
        min-height: 50px;
        padding: 8px 25px;
    }

    footer .right button {
        justify-content: flex-end;
    }

    footer .right button.btn {
        justify-content: center;
    }

    footer button>img {
        width: 20px;
    }

    footer button>span {
        font-size: 20px;
    }

    footer .sound_wave {
        width: 1000px;
    }

    footer .speaking .left .a_box {
        gap: 10px;
        line-height: 50px;
        font-size: 20px;
    }
}

@media screen and (min-width: 2001px) {
    h1 {
        line-height: 55px;
        font-size: 46px;
    }

    h2 {
        line-height: 50px;
        font-size: 40px;
    }

    h3 {
        line-height: 46px;
        font-size: 34px;
    }

    h4 {
        line-height: 40px;
        font-size: 28px;
    }

    h5 {
        line-height: 36px;
        font-size: 24px;
    }

    .mt10 {
        margin-top: 30px !important;
    }

    .mt20 {
        margin-top: 40px !important;
    }

    .mt30 {
        margin-top: 50px !important;
    }

    .mt40 {
        margin-top: 60px !important;
    }

    .mt50 {
        margin-top: 70px !important;
    }

    .mb10 {
        margin-bottom: 30px !important;
    }

    .mb20 {
        margin-bottom: 40px !important;
    }

    .mb30 {
        margin-bottom: 50px !important;
    }

    .mb40 {
        margin-bottom: 60px !important;
    }

    .mb50 {
        margin-bottom: 70px !important;
    }

    .main,
    article {
        height: calc(100% - 202px);
    }

    .inner {
        width: 2000px;
    }

    /* .btm-point-text {
        font-size: 40px;
    } */

    header .inner {
        padding: 20px 0;
    }

    header .user_code span {
        line-height: 26px;
        font-size: 16px;
    }

    header .user_code p {
        line-height: 34px;
        font-size: 30px;
    }

    header .clock {
        font-size: 16px;
        padding: 15px 25px;
    }

    header .clock>* {
        font-size: 20px;
    }

    .main>section,
    article>section {
        width: 2000px;
        padding: 0 70px 50px;
    }

    .title_box {padding-top:50px;}

    .headline,
    h3.title {
        font-size: 45px;
    }

    .headline .txt_block,
    h3.title .txt_block,
    h3.title p {
        font-size: 30px;
        line-height: 50px;
    }

    .headline .txt_block:before,
    h3.title .txt_block:before,
    h3.title p:before {
        line-height: 50px;
        font-size: 20px;
        padding: 0 20px;
    }

    .table_wrap table tr>* {
        line-height: 30px;
        font-size: 20px;
        padding: 15px;
    }

    .table_wrap table tr th {
        font-size: 20px;
    }

    .table_wrap table tr td {
        font-size: 20px;
    }

    .table_wrap .agree_table tr>* {
        padding: 15px 20px;
    }

    .table_wrap .q_count li {
        font-size: 20px;
    }

    .table_wrap .q_count+.flex {
        font-size: 16px;
    }

    .table_wrap .submit tr>* {
        font-size: 20px;
        padding: 10px;
    }

    input[type='range'] {
        height: 6px;
        border-radius: 3px;
    }

    input[type='range']::-webkit-slider-thumb {
        width: 15px;
        height: 15px;
        border-width: 15px;
    }

    input[type='range']::-moz-range-thumb {
        width: 15px;
        height: 15px;
        border-width: 15px;
    }

    .info_wrap {
        padding: 50px;
    }

    .modal-md {
        --bs-modal-width: 1000px;
    }

    .modal-lg {
        --bs-modal-width: 1200px;
    }

    .modal-title {
        /* font-size: 30px; */
    }

    .modal-content {
        padding: 50px;
    }

    .modal-text {
        font-size: 30px;
    }

    .modal-footer button {
        width: 200px;
        line-height: 58px;
    }

    footer .inner {
        min-height: 100px;
    }

    footer button {
        min-height: 60px;
        padding: 13px 25px;
        border-radius: 15px;
    }

    footer .center {
        height: 60px;
    }

    footer .center h3 {
        line-height: 60px;
    }

    footer .speaking .left .a_box {
        gap: 20px;
        line-height: 60px;
        font-size: 24px;
        padding: 0 30px;
        border-radius: 15px;
    }

    footer .record span.circle {
        width: 24px;
        height: 24px;
    }

    footer .record span {
        line-height: 30px;
        font-size: 20px;
    }

    footer .sound_wave {
        width: 1400px;
        margin-left: 30px;
    }
}

@media screen and (min-width: 2701px) {
    h1 {
        line-height: 70px;
        font-size: 54px;
    }

    h2 {
        line-height: 65px;
        font-size: 48px;
    }

    h3 {
        line-height: 60px;
        font-size: 42px;
    }

    h4 {
        line-height: 48px;
        font-size: 36px;
    }

    h5 {
        line-height: 40px;
        font-size: 30px;
    }

    .mt10 {
        margin-top: 40px !important;
    }

    .mt20 {
        margin-top: 50px !important;
    }

    .mt30 {
        margin-top: 60px !important;
    }

    .mt40 {
        margin-top: 70px !important;
    }

    .mt50 {
        margin-top: 80px !important;
    }

    .mb10 {
        margin-bottom: 40px !important;
    }

    .mb20 {
        margin-bottom: 50px !important;
    }

    .mb30 {
        margin-bottom: 60px !important;
    }

    .mb40 {
        margin-bottom: 70px !important;
    }

    .mb50 {
        margin-bottom: 80px !important;
    }

    .inner {
        width: 2700px;
    }

    .main>section,
    article>section {
        width: 2700px;
        padding: 0 100px 70px;
    }

    .btn {
        font-size: 20px;
        gap: 20px;
        /* border-radius: 20px; */
        line-height:1.7;
    }

    .title_box {
        padding: 70px 0;
    }

    .headline {
        line-height: 70px;
        font-size: 50px;
    }

    h3.title {
        line-height: 70px;
        font-size: 50px;
        margin-bottom: 70px;
    }

    .headline .txt_block,
    h3.title .txt_block,
    h3.title p {
        font-size: 40px;
        line-height: 70px;
    }

    .headline .txt_block:before,
    h3.title .txt_block:before,
    h3.title p:before {
        line-height: 70px;
        font-size: 24px;
        padding: 0 20px;
    }

    input[type='range'] {
        height: 8px;
        border-radius: 4px;
    }

    input[type='range']::-webkit-slider-thumb {
        width: 18px;
        height: 18px;
    }

    input[type='range']::-moz-range-thumb {
        width: 18px;
        height: 18px;
    }

    .modal-md {
        --bs-modal-width: 1200px;
    }

    .modal-lg {
        --bs-modal-width: 1500px;
    }

    .modal-title {
        /* font-size: 40px; */
    }

    .modal-header {
        padding: 0 0 40px;
    }

    .modal-header .btn-close {
        width: 50px;
        height: 50px;
        background-size: 30px;
    }

    .modal-body {
        padding: 40px 0;
    }

    .modal-footer {
        gap: 20px;
        padding: 40px 0 0;
    }

    .modal-footer button {
        width: 300px;
        line-height: 68px;
        font-size: 30px;
    }

    .table_wrap {
        margin-top: 50px;
    }

    .table_wrap table tr>* {
        line-height: 40px;
        padding: 30px;
    }

    .table_wrap table tr th {
        font-size: 30px;
    }

    .table_wrap table tr td {
        font-size: 30px;
    }

    .table_wrap .submit tr>* {
        font-size: 30px;
        padding: 15px;
    }

    .table_wrap .q_count li {
        font-size: 30px;
    }

    .table_wrap .q_count+.flex {
        font-size: 20px;
    }

    .table_wrap .q_count+.flex.sub-text {
        font-size: 27px;
    }

    .table_wrap .agree_table tr>* {
        padding: 20px 30px;
    }

    .table_wrap .agree_table input {
        width: 30px;
        height: 30px;
        margin-top: 4px;
    }

    footer .record {
        gap: 15px;
    }

    footer .record span.circle {
        width: 30px;
        height: 30px;
    }

    footer .record span {
        line-height: 40px;
        font-size: 30px;
    }

    footer .sound_wave {
        margin-left: 70px;
    }
}


/* 모달 */
.modal {
    z-index: 2000;
}

.modal-content {
    padding: 40px 50px;
    border: none;
    border-radius: 20px;
}

.modal-header.no-border {
    padding: 0;
    border: none;
}

.modal-title {
    /* font-weight: 700; */
    font-weight: 800;
    /* font-size: 24px; */
    color: #102e81;
}

.modal-body {
    padding: 30px 0;
    font-size: 24px;
}

.modal-footer {
    justify-content: center;
    padding: 0;
    border: none;
}

.modal-footer>.btn {
    /* line-height: 40px; */
    /* padding: 0 30px; */
}

.modal-point-icons {
    width: 100px;
    margin: 0 auto;
}

.modal-header.al-center,
.modal-body.al-center {
    text-align: center;
    justify-content: center;
}

.modal-footer {
    margin-top: 20px;
}