@charset "UTF-8";

*,
*::before,
*::after {
	letter-spacing: -0.3px;
	word-break: break-all;
	box-sizing: border-box;
}
@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;
}

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_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: 34px;
	font-size: 14px;
	font-weight: 800;
	color: #fff !important;
	padding: 0 10px;
	border: 1px solid transparent;
	border-radius: 10px;
	background: #666;
}
.btn.sm {
	line-height: 26px;
	font-size: 13px;
	padding: 0 15px;
}
.btn:hover {
	background: #444;
}
.btn.icon {
	line-height: unset;
	padding: 0;
	background: transparent;
}
.btn.icon:hover {
	background: transparent;
}

.btn.l_blue {
	background: #e0f0ff !important;
}
.btn.l_blue:hover {
	background: #bdddfd !important;
}
.btn.blue {
	background: #0c70f5 !important;
}
.btn.blue:hover {
	background: #005bd7 !important;
}
.btn.d_blue {
	background: #102e81 !important;
}
.btn.d_blue:hover {
	background: #082575 !important;
}
.btn.red {
	color: #fd5435 !important;
	border-color: #fd5435 !important;
}
.btn.red:hover {
	color: #b20000 !important;
	border-color: #b20000 !important;
}

.btn.line {
	color: #555 !important;
	border: 1px solid #ddd;
	background: transparent !important;
}
.btn.line.b2 {
	border-width: 2px;
}
.btn.line:hover {
	border-color: #aaa;
	background: transparent !important;
}
.btn.line.l_blue {
	color: #e0f0ff !important;
	border-color: #e0f0ff !important;
}
.btn.line.l_blue:hover {
	color: #bdddfd !important;
	border-color: #bdddfd !important;
}
.btn.line.blue {
	color: #0c70f5 !important;
	border-color: #0c70f5 !important;
}
.btn.line.blue:hover {
	color: #005bd7 !important;
	border-color: #005bd7 !important;
}
.btn.line.d_blue {
	color: #102e81 !important;
	border-color: #102e81 !important;
}
.btn.line.d_blue:hover {
	color: #082575 !important;
	border-color: #082575 !important;
}
.btn.line.l_blue {
	color: #102e81 !important;
	border-color: #e0f0ff !important;
}
.btn.line.l_blue:hover {
	color: #082575 !important;
	border-color: #0c70f5 !important;
}
.btn.line.red {
	color: #fd5435 !important;
	border-color: #fd5435 !important;
}
.btn.line.red:hover {
	color: #b20000 !important;
	border-color: #b20000 !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.blue {
	color: #fff;
	background: #0c70f5;
}
.a_box.red {
	color: #fff;
	background: #fd5435;
}

.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;
}
.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;
}
.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;
}
.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;
}

.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;
}

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

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

.mo {
	display: none !important;
}

/* header */

header {
	width: 100%;
	background: #0c70f5;
}
header .inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	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;
}
header .clock {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 14px;
	padding: 10px 20px;
	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 .inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 60px;
	padding: 10px 0;
}
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 .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;
}

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

h3.title {
	position: relative;
	display: flex;
	align-items: center;
	font-weight: 800;
	color: #102e81;
	padding-bottom: 20px;
	border-bottom: 1px solid #ebebeb;
}
h3.survey_title{
	position: fixed;
	padding-top: 20px;
	top: 10.4%;
	left: 50%;
	transform: translateX(-50%);
	width: 68.3%;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	color: #102e81;
	background-color: white;
	padding-bottom: 20px;
	border-bottom: 1px solid #ebebeb;
}
h3.title p {
	line-height: 24px;
	font-size: 16px;
	font-weight: 500;
}
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 li {
	line-height: 24px;
	font-size: 15px;
	font-weight: 700;
}
.info_wrap li:before {
	display: inline-block;
	color: #555;
	content: 'ㆍ';
	padding: 0 5px;
}
.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;
}
.table_wrap table thead {
	border-top: 2px solid #0c70f5;
	border-bottom: 1px solid #ddd;
	background: #fafafa;
}
.table_wrap_end table thead th {
	border-right: 1px solid #ddd;
	border-left: 1px solid #ddd;
}
.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: 1px solid #ddd;
}

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

.table_wrap .submit tr > * {
	font-size: 16px;
	padding: 5px 10px;
}
.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;
}

/* 모달 기본 스타일 */
.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-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;
	}

	h3.title {
		font-size: 30px;
		padding-bottom: 30px;
	}
	h3.title p {
		line-height: 30px;
		font-size: 20px;
	}
	h3.title p:before {
		line-height: 30px;
		font-size: 15px;
	}

	article > section {
		width: 1400px;
		padding: 30px 50px;
	}

	.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;
	}

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

	.inner {
		width: 2000px;
	}
	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;
	}

	article > section {
		width: 2000px;
		padding: 50px 70px;
	}

	h3.title {
		font-size: 45px;
	}
	h3.title p {
		font-size: 30px;
		line-height: 50px;
	}
	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-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;
	}
	article > section {
		width: 2700px;
		padding: 70px 100px;
	}

	.btn {
		font-size: 20px;
		gap: 20px;
		border-radius: 20px;
	}

	h3.title {
		line-height: 70px;
		font-size: 50px;
		padding-bottom: 70px;
	}
	h3.title p {
		font-size: 40px;
		line-height: 70px;
	}
	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 .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;
	}
}
