/* admin */
.login {
	position: relative;
	width: 100%;
	height: 100vh;
	background: #f5f5f5;
}
.login_box {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 640px;
	height: 718px;
	padding: 80px;
	background: #fff;
}
.login_box .cont_img {
	width: 201px;
	height: 206px;
	margin-bottom: 64px;
}
.login_form {
	width: 100%;
}
.login_input {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 32px;
}
.login_input input {
	padding: 18px 16px !important;
	font-size: 18px !important;
	border: 1px solid #ddd;
}
.login_input input::placeholder {
	font-size: 18px;
	color: #999;
}
.login_form button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 480px;
	height: 80px;
	margin-bottom: 16px;
	font-size: 20px;
	font-weight: 700;
	color: #fff;
	background: #752387;
}
.custom_chk label {
	padding-left: 24px;
	font-size: 16px;
	color: #666;
	cursor: pointer;
	background: url("/img/chk_off_icon.png") center left / contain no-repeat;
}
.container .custom_chk input:checked + label {
	background: url("/img/chk_on_icon.png") top left / contain no-repeat;
}
/* buyer page */
.adm_wp {
	display: flex;
	min-height: 100vh;
}
.adm_side {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 250px;
	padding: 40px 16px;
	background: #f5f5f5;
}
.adm_side .cont_img {
	width: 148px;
	height: 152px;
	margin-bottom: 48px;
}
.adm_menu_wp {
	width: 100%;
}
.adm_menu_wp li {
	padding: 16px 24px;
	font-size: 18px;
	border-top: 1px solid #ddd;
	color: #666;
	background: url("/img/forward_icon.png") center right 24px / 24px no-repeat,
		#fff;
}
.adm_menu_wp li:last-of-type {
	border-bottom: 1px solid #ddd;
}
.adm_menu_wp li.active {
	background: url("/img/forward_icon02.png") center right 24px / 24px no-repeat,
		#752e87;
	color: #fff;
}
.adm_cont {
	width: calc(100% - 250px);
	padding: 80px 50px 60px;
}
.adm_cont .section {
	margin-bottom: 48px;
}
.adm_cont .tit {
	padding-bottom: 15px;
	margin-bottom: 24px;
	border-bottom: 1px solid #e5e5e5;
}
.adm_cont h2 {
	font-size: 32px;
	font-weight: 700;
}
.adm_cont span {
	display: inline-block;
	margin-left: 12px;
	font-size: 20px;
	font-weight: 500;
	color: #666;
}
.state_input {
	display: flex;
	justify-content: space-between;
	margin-bottom: 40px;
}
.custom_select {
	position: relative;
	display: inline-block;
	width: 160px;
}
.custom_select.w100 {
	width: 100%;
}
.custom_select select {
	width: 100%;
	height: 100%;
	padding: 12px 16px;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	font-size: 16px;
	color: #666;
	border: 1px solid #ddd;
}
.custom_select::after {
	content: "▼";
	position: absolute;
	top: 50%;
	right: 12px; /* ← 여기서 화살표 위치 조정 */
	transform: translateY(-50%);
	pointer-events: none;
	color: #333;
	font-size: 12px;
}
.custom_select.input-active::after,
.pre_regist_chk2 .custom_select::after {
	display: none;
}
.search_input {
	display: flex;
	gap: 8px;
}
.search_box {
	position: relative;
	width: 280px;
	height: 48px;
	border: 1px solid #ddd;
}
.search_box input {
	width: 100%;
	height: 100%;
	padding: 0 16px;
}
.search_box button {
	position: absolute;
	top: 12px;
	right: 16px;
	width: 24px;
	height: 24px;
}
table {
	width: 100%;
	border-collapse: collapse;
	border-top: 2px solid #222;
	table-layout: fixed;
}
.data-table {
	margin-bottom: 24px;
	font-family: "Noto Sans KR", sans-serif;
	font-size: 14px;
	text-align: center;
}
.data-table th {
	font-weight: 500;
}
.data-table th,
.data-table td {
	padding: 10px;
	border-top: 1px solid #ddd;
	border-left: 1px solid #ddd;
	border-right: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	text-align: center;
	font-size: 16px;
}
.adm_wp .data-table td {
	font-size: 14px;
}
table th:first-of-type,
table td:first-of-type {
	border-left: none;
}
table th:last-of-type,
table td:last-of-type {
	border-right: none;
}
.border-right {
	border-right: 1px solid #ddd !important;
}
.data-table thead {
	background-color: #f5f5f5;
	font-weight: bold;
}
.border_left_none {
	border-left: none !important;
}

.data-table tbody tr:nth-child(even) {
	background-color: #fcfcfc;
}
.notice_wrap .data-table tbody tr:nth-child(even) {
	background-color: transparent;
}
.data-table td.wait {
	color: #666;
}

.data-table td.approved {
	color: #0074ff;
	font-weight: bold;
}

.data-table td.rejected {
	color: red;
	font-weight: bold;
}

.data-table input[type="checkbox"] {
	width: 32px;
	height: 16px;
	background: url("/img/chk_off_icon.png") center / 16px no-repeat;
}
.data-table input[type="checkbox"]:checked {
	background: url("/img/chk_on_icon.png") center / 16px no-repeat;
}
.table_btn_wp {
	display: flex;
	justify-content: space-between;
}
.sel_btn_wp {
	display: flex;
	gap: 8px;
}
.sel_btn_wp button {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 120px;
	height: 40px;
	font-size: 16px;
	background: #eee;
}
.down_btn {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 160px;
	height: 40px;
	font-size: 16px;
	background: #eee;
}
/* buyer detail page */
.wrap,
.sub_wrap {
	padding-top: 180px;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}
.layout {
	width: 1600px;
	margin: 0 auto;
}
html.not_scroll {
	height: 100%;
	overflow: hidden;
}
.mBr {
	display: none;
}
.center {
	text-align: center !important;
}
.right {
	text-align: right !important;
}
header {
	position: fixed;
	padding: 24px 0;
	top: 0;
	margin-bottom: 50px;
	border-bottom: 1px solid #e5e5e5;
	left: 50%;
	background: #fff;
	transform: translateX(-50%);
	z-index: 90;
	width: 100%;
}
header > div {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
header .hd_wp1 {
	width: 1208px;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
.en header .hd_wp1 {
	width: 1300px;
}
header h1 {
	width: 78px;
	height: 80px;
}
header nav .depth1 {
	display: flex;
	justify-content: space-between;
	width: 1010px;
}
.en header nav .depth1 {
	width: 1150px;
}
.depth1 > li {
	position: relative;
	width: 90px;
}
.en .depth1 > li {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 120px;
}
.depth1 > li > a {
	font-size: 21px;
	line-height: 38px;
	font-weight: 700;
	text-align: center;
}
.depth1 > li > a {
	font-size: 18px;
	line-height: 24px;
}
.depth2 {
	position: absolute;
	top: 50px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	gap: 24px;
	width: 130px;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.6s ease, padding 0.4s ease, border 0.4s ease;
	border-radius: 16px;
	background: #fff;
	z-index: 10;
}
.depth2.active {
	max-height: 500px;
	padding: 24px 15px;
	border: 1px solid #ddd;
}
.depth2 li a {
	position: relative;
	font-size: 16px;
	color: #666;
	text-align: center;
	letter-spacing: -0.03em;
}
.depth2 li a:hover {
	font-weight: 500;
	color: #581467;
}
.depth2 li a:hover::after {
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: -4px;
	background: #581467;
	width: 90px;
	height: 1px;
}
.mobile_menu_btn,
.nav_close_btn {
	display: none;
}
.mb_gnb_logo {
	display: none;
}
header .hd_wp2 {
	position: relative;
	width: 277px;
}
header .lang_wp {
	position: absolute;
	left: 0;
	border: 1px solid #ddd;
	border-radius: 16px;
	background: #fff;
}
header .lang_btn {
	position: relative;
	width: 61px;
	height: 31px;
	padding: 8px 32px 8px 12px;
	font-size: 13px;
	font-weight: 500;
	cursor: pointer;
	background: url("/img/arrow_icon.png") center right 12px / 8px no-repeat;
}
header .lang_btn.active {
	background: url("/img/arrow_icon02.png") center right 12px / 8px no-repeat;
}
header .lang_btn.active::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	background: #ddd;
	width: 37px;
	height: 1px;
}
header .lang_list {
	display: none;
	z-index: 10;
}
header .lang_list.active {
	display: block;
}
header .lang_list li {
	list-style: none;
}
header .lang_list li a {
	display: block;
	padding: 8px 12px;
	font-size: 13px;
	color: #999;
	text-align: center;
}
header .lang_list li a:hover {
	font-weight: 500;
	color: #222;
}
header .sns_wp {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
}
header .sns_wp li {
	width: 32px;
	height: 32px;
}
.mb_btn_wp {
	display: none;
}
/* footer */
footer {
	padding: 80px 0;
	background: #322932;
}
.ft_place_wp {
	display: flex;
	flex-wrap: wrap;
	gap: 16px 32px;
}
.ft_place_wp li {
	display: flex;
	gap: 12px;
}
.ft_place_wp li strong {
	font-size: 18px;
	font-weight: 500;
	color: #fff;
}
.ft_place_wp li div {
	display: flex;
	gap: 17px;
}
.ft_place_wp li div span {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.7);
	white-space: nowrap;
}
.ft_place_wp li div span:first-of-type {
	position: relative;
}
.ft_place_wp li div span:first-of-type::after {
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: -8px;
	width: 1px;
	height: 8px;
	background: rgba(255, 255, 255, 0.2);
}
footer .copy {
	margin: 16px 0 0 0;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.3);
}
/* modal css */
/* modal */
.overlay {
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
}
.modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: 120;
}
.modal.active {
	display: block;
}
.modal_inner {
	position: absolute;
	display: flex;
	justify-content: center;
}
.modal_inner .cont_txt {
	width: 100%;
}
.modal.login_chk .modal_inner {
	padding: 35px 80px;
	gap: 18px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 900px;
	height: 450px;
	background: #fff;
}
.modal.company_info .modal_inner {
	display: block;
	padding: 40px 45px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 900px;
	height: 800px;
	overflow-y: scroll;
	background: #fff;
}
.modal.company_info .modal_inner table {
	height: 1342px;
}
.modal.company_info .modal_inner .tit {
	margin-bottom: 54px;
	text-align: center;
	font-size: 24px;
	font-weight: 700;
}
.modal.company_info th {
	padding: 35px 0;
	text-align: center;
	font-size: 16px;
	font-weight: 700;
	color: #222;
}
.modal.company_info td {
	padding: 30px 15px;
}
.modal.company_info .vertical-top {
	vertical-align: top;
}
.modal.company_info .description {
	font-size: 16px;
	font-weight: 500;
	color: #222;
	line-height: 1.5;
}

.modal .close_btn {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 40px;
	height: 40px;
	cursor: pointer;
}
.modal .img_inner,
.modal .img_inner img {
	width: 100%;
	height: 100%;
	border-radius: 30px;
}
.modal .regist-btn {
	width: 100%;
}

.mark {
	color: #91268f;
}
.buyer_amd_detail .tit {
	display: flex;
	justify-content: space-between;
}
.buyer_amd_detail .tit a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 120px;
	height: 40px;
	font-size: 16px;
	color: #fff;
	background: #666;
}
.buyer_amd_detail h2 {
	margin-bottom: 16px;
	font-size: 28px;
}
.buyer_amd_detail .tit h2 {
	margin-bottom: 0;
}
.regist_num {
	margin-bottom: 40px;
	font-size: 20px;
	font-weight: 500;
	color: #666;
}
.regist_num span {
	display: inline-block;
	margin-left: 8px;
	font-size: 20px;
	font-weight: 700;
	color: #752e87;
}
.buyer_amd_detail th,
.buyer_amd_detail td {
	border: 1px solid #ddd;
	padding: 16px;
	vertical-align: top;
}

.buyer_amd_detail th {
	background: #f5f5f5;
	text-align: left;
	width: 160px;
	font-weight: 500;
}
.buyer_amd_detail td {
	color: #666;
}

.image-box {
	width: 100%;
	height: 180px;
	background: #ddd;
	margin-bottom: 8px;
}

.download-link {
	display: inline-block;
	text-align: right;
	padding-right: 32px;
	font-size: 18px;
	font-weight: 500;
	background: url("/img/down_icon.png") center right / 24px no-repeat;
}

.btn-group {
	text-align: right;
	margin-top: 24px;
}

.btn-group button {
	width: 80px;
	height: 40px;
	background: #eee;
	padding: 6px 16px;
	margin-left: 8px;
	font-size: 16px;
}
/* sub tab menu */
.sub_tab_wp {
	display: flex;
	justify-content: center;
	margin-bottom: 120px;
	border-bottom: 1px solid #ddd;
}
.sub_tab_wp a {
	padding: 8px 24px;
	font-size: 20px;
	font-weight: 500;
	color: #666;
}
.sub_tab_wp .active a {
	font-weight: 700;
	color: #581467;
	border-bottom: 3px solid #581467;
}
input[type="text"],
input[type="tel"],
input[type="number"],
select,
textarea,
input[type="password"],
input[type="email"] {
	width: 100%;
	padding: 15px;
	border: 1px solid #ccc;
	font-size: 14px;
	box-sizing: border-box;
}

textarea {
	resize: vertical;
	height: 100px;
}
.sub_wrap h2 {
	margin-bottom: 64px;
	font-size: 48px;
	font-weight: 700;
	text-align: center;
}
.sub_bnr {
	padding: 72px 100px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	width: 100%;
	height: 250px;
	margin-bottom: 40px;
	background: url("/img/sub_bnr_pc.png") center / cover no-repeat;
	border-radius: 16px;
}
.sub_bnr .tit {
	/* position: absolute;
	top: 54px;
	left: 50%;
	transform: translateX(-50%);
	margin-left: -600px; */
}
.sub_bnr .tit h2 {
	margin-bottom: 16px;
	font-size: 40px;
	font-weight: 700;
	color: #fff;
	text-align: start;
}
.sub_bnr .history {
	display: flex;
	align-items: center;
	gap: 8px;
}
.sub_bnr .history .cont_img {
	width: 24px;
	height: 24px;
}
.sub_bnr .history .cont_txt {
	font-size: 15px;
	color: #fff;
}
.sub_bnr .cont_img {
	width: 140px;
	height: 140px;
}
.sub_bnr .cont_img.pulse {
	animation-name: pulse;
	animation-timing-function: ease-in-out;
	animation-fill-mode: both;
	animation-duration: 1s;
}

@keyframes pulse {
	0% {
		-webkit-transform: scaleX(1);
		transform: scaleX(1);
	}
	50% {
		-webkit-transform: scale3d(1.2, 1.2, 1.2);
		transform: scale3d(1.2, 1.2, 1.2);
	}
	100% {
		-webkit-transform: scaleX(1);
		transform: scaleX(1);
	}
}
.sub_wrap .container {
	margin-bottom: 120px;
	flex: 1;
}
.sub_wrap .inner {
	width: 1400px;
	margin: 0 auto;
}
.sub_wrap th,
.sub_wrap td {
	border: 1px solid #ddd;
	vertical-align: middle;
}
.sub_wrap th {
	padding: 10px 16px;
	width: 200px;
	font-size: 16px;
	background: #f5f5f5;
	text-align: left;
}
.en.sub_wrap th {
	width: 230px;
}
.sub_wrap td {
	padding: 8px 24px;
}
.sub_wrap td textarea {
	height: 208px;
	resize: none;
	font-size: 16px;
	font-family: auto;
}
.mobile_tab_selects {
	display: none;
	gap: 8px;
	margin-bottom: 50px;
}
.ft_sns_wp {
	display: none;
}
@media screen and (max-width: 1650px) {
	.wrap,
	.sub_wrap {
		padding-top: calc(100vw * (210 / 1650));
	}
	.custom_select select {
		padding: calc(100vw * (12 / 1650)) calc(100vw * (16 / 1650));
		font-size: calc(100vw * (16 / 1650));
	}
	.custom_select::after {
		right: calc(100vw * (12 / 1650));
		font-size: calc(100vw * (12 / 1650));
	}
	.layout {
		width: calc(100vw * (1600 / 1650));
	}
	header {
		padding: calc(100vw * (24 / 1650)) 0;
		margin-bottom: calc(100vw * (80 / 1650));
	}
	header .hd_wp1 {
		width: calc(100vw * (1208 / 1650));
	}
	.en header .hd_wp1 {
		width: calc(100vw * (1260 / 1650));
	}
	header h1 {
		width: calc(100vw * (78 / 1650));
		height: calc(100vw * (80 / 1650));
	}
	header nav .depth1 {
		width: calc(100vw * (1010 / 1650));
	}
	.en header nav .depth1 {
		width: calc(100vw * (1130 / 1650));
	}
	.depth1 > li {
		width: calc(100vw * (90 / 1650));
	}
	.en .depth1 > li {
		width: calc(100vw * (130 / 1650));
	}
	.depth1 > li > a {
		font-size: calc(100vw * (18 / 1650));
		line-height: calc(100vw * (38 / 1650));
	}
	.en .depth1 > li > a {
		line-height: calc(100vw * (28 / 1650));
	}
	.depth2 {
		top: calc(100vw * (50 / 1650));
		gap: calc(100vw * (24 / 1650));
		width: calc(100vw * (130 / 1650));
		border-radius: calc(100vw * (16 / 1650));
	}
	.depth2.active {
		max-height: calc(100vw * (500 / 1650));
		padding: calc(100vw * (24 / 1650)) calc(100vw * (16 / 1650));
	}
	.depth2 li a {
		font-size: calc(100vw * (16 / 1650));
	}
	.depth2 li a:hover::after {
		bottom: calc(100vw * (-4 / 1650));
		width: calc(100vw * (90 / 1650));
	}
	header .hd_wp2 {
		width: calc(100vw * (277 / 1650));
	}
	header .lang_wp {
		display: flex;
		border-radius: calc(100vw * (16 / 1650));
	}
	header .lang_btn {
		width: calc(100vw * (71 / 1650));
		height: calc(100vw * (31 / 1650));
		padding: calc(100vw * (8 / 1650)) calc(100vw * (32 / 1650))
			calc(100vw * (8 / 1650)) calc(100vw * (12 / 1650));
		font-size: calc(100vw * (13 / 1650));
		background: url("/img/arrow_icon.png") center right
			calc(100vw * (12 / 1650)) / calc(100vw * (8 / 1650)) no-repeat;
	}
	header .lang_btn.active {
		background: url("/img/arrow_icon02.png") center right
			calc(100vw * (12 / 1650)) / calc(100vw * (8 / 1650)) no-repeat;
	}
	header .lang_btn.active::after {
		width: calc(100vw * (37 / 1650));
		height: calc(100vw * (1 / 1650));
	}
	header .lang_list li a {
		padding: calc(100vw * (8 / 1650)) calc(100vw * (12 / 1650));
		font-size: calc(100vw * (13 / 1650));
	}
	header .sns_wp {
		gap: calc(100vw * (8 / 1650));
	}
	header .sns_wp li {
		width: calc(100vw * (32 / 1650));
		height: calc(100vw * (32 / 1650));
	}
	/* footer */
	footer {
		padding: calc(100vw * (80 / 1650)) 0;
	}
	.ft_place_wp {
		gap: calc(100vw * (16 / 1650)) calc(100vw * (32 / 1650));
	}
	.ft_place_wp li {
		gap: calc(100vw * (12 / 1650));
	}
	.ft_place_wp li strong {
		font-size: calc(100vw * (15 / 1650));
	}
	.ft_place_wp li div {
		gap: calc(100vw * (17 / 1650));
	}
	.ft_place_wp li div span {
		font-size: calc(100vw * (14 / 1650));
	}
	.ft_place_wp li div span:first-of-type::after {
		right: calc(100vw * (-8 / 1650));
		height: calc(100vw * (8 / 1650));
	}
	footer .copy {
		margin: calc(100vw * (16 / 1650)) 0 0 0;
		font-size: calc(100vw * (13 / 1650));
	}
	/* modal css */
	/* modal */
	.modal_inner2 {
		padding: calc(100vw * (80 / 1650));
		width: calc(100vw * (1424 / 1650));
		height: calc(100vw * (638 / 1650));
	}
	.modal_inner2 .cont_img {
		width: calc(100vw * (440 / 1650));
		height: calc(100vw * (478 / 1650));
	}
	.modal_inner2 .cont_txt {
		padding: calc(100vw * (57 / 1650)) calc(100vw * (48 / 1650));
		width: calc(100vw * (728 / 1650));
	}
	.modal_inner2 .cont_txt span {
		margin-bottom: calc(100vw * (20 / 1650));
		font-size: calc(100vw * (20 / 1650));
	}
	.modal_inner2 .cont_txt h3 {
		margin-bottom: calc(100vw * (20 / 1650));
		font-size: calc(100vw * (40 / 1650));
	}
	.modal_inner2 .cont_txt strong {
		margin-top: calc(100vw * (8 / 1650));
		font-size: calc(100vw * (24 / 1650));
	}
	.modal_inner2 .cont_txt p {
		font-size: calc(100vw * (18 / 1650));
	}
	.modal .close_btn {
		top: calc(100vw * (20 / 1650));
		right: calc(100vw * (20 / 1650));
		width: calc(100vw * (40 / 1650));
		height: calc(100vw * (40 / 1650));
	}
	.modal .img_inner,
	.modal .img_inner img {
		border-radius: calc(100vw * (30 / 1650));
	}
	.buyer_amd_detail .tit a {
		width: calc(100vw * (120 / 1650));
		height: calc(100vw * (40 / 1650));
		font-size: calc(100vw * (16 / 1650));
	}
	.buyer_amd_detail h2 {
		margin-bottom: calc(100vw * (16 / 1650));
		font-size: calc(100vw * (28 / 1650));
	}
	.regist_num {
		margin-bottom: calc(100vw * (40 / 1650));
		font-size: calc(100vw * (20 / 1650));
	}
	.regist_num span {
		margin-left: calc(100vw * (8 / 1650));
		font-size: calc(100vw * (20 / 1650));
	}
	.buyer_amd_detail th,
	.buyer_amd_detail td {
		padding: calc(100vw * (16 / 1650));
	}
	.buyer_amd_detail th {
		width: calc(100vw * (160 / 1650));
	}
	.image-box {
		height: calc(100vw * (180 / 1650));
		margin-bottom: calc(100vw * (8 / 1650));
	}
	.download-link {
		padding-right: calc(100vw * (32 / 1650));
		font-size: calc(100vw * (18 / 1650));
		background: url("/img/down_icon.png") center right /
			calc(100vw * (24 / 1650)) no-repeat;
	}
	.btn-group {
		margin-top: calc(100vw * (24 / 1650));
	}
	.btn-group button {
		width: calc(100vw * (80 / 1650));
		height: calc(100vw * (40 / 1650));
		padding: calc(100vw * (6 / 1650)) calc(100vw * (16 / 1650));
		margin-left: calc(100vw * (8 / 1650));
		font-size: calc(100vw * (16 / 1650));
	}
	/* sub tab menu */
	.sub_tab_wp {
		margin-bottom: calc(100vw * (120 / 1650));
	}
	.sub_tab_wp a {
		padding: calc(100vw * (8 / 1650)) calc(100vw * (24 / 1650));
		font-size: calc(100vw * (20 / 1650));
	}
	.sub_tab_wp .active a {
		color: #581467;
		border-bottom: calc(100vw * (3 / 1650)) solid #581467;
	}
	input[type="text"],
	input[type="tel"],
	select,
	textarea,
	input[type="email"] {
		padding: calc(100vw * (15 / 1650));
		font-size: calc(100vw * (14 / 1650));
	}
	textarea {
		height: calc(100vw * (100 / 1650));
	}
	.sub_wrap h2 {
		margin-bottom: calc(100vw * (64 / 1650));
		font-size: calc(100vw * (48 / 1650));
	}
	.sub_bnr {
		padding: calc(100vw * (72 / 1650)) calc(100vw * (100 / 1650));
		height: calc(100vw * (300 / 1650));
		margin-bottom: calc(100vw * (40 / 1650));
	}
	.sub_bnr .cont_img {
		width: calc(100vw * (140 / 1650));
		height: calc(100vw * (140 / 1650));
	}
	.sub_bnr .tit {
		/* top: calc(100vw * (54 / 1650));
		margin-left: calc(100vw * (-600 / 1650)); */
	}
	.sub_bnr .tit h2 {
		margin-bottom: calc(100vw * (16 / 1650));
		font-size: calc(100vw * (40 / 1650));
	}
	.sub_bnr .history {
		gap: calc(100vw * (8 / 1650));
	}
	.sub_bnr .history .cont_img {
		width: calc(100vw * (24 / 1650));
		height: calc(100vw * (24 / 1650));
	}
	.sub_bnr .history .cont_txt {
		font-size: calc(100vw * (15 / 1650));
	}
	.sub_wrap .container {
		margin-bottom: calc(100vw * (120 / 1650));
	}
	.sub_wrap .inner {
		width: calc(100vw * (1400 / 1650));
	}
	.sub_wrap th {
		padding: calc(100vw * (10 / 1650)) calc(100vw * (16 / 1650));
		width: calc(100vw * (160 / 1650));
		font-size: calc(100vw * (16 / 1650));
	}
	.en.sub_wrap th {
		width: calc(100vw * (230 / 1650));
	}
	.sub_wrap td {
		padding: calc(100vw * (8 / 1650)) calc(100vw * (24 / 1650));
	}
	.sub_wrap td textarea {
		height: calc(100vw * (208 / 1650));
	}
}

@media screen and (max-width: 768px) {
	.pBr {
		display: none;
	}
	.mBr {
		display: inline-block;
	}
	.custom_select select {
		padding: calc(100vw * (6 / 393)) calc(100vw * (8 / 393));
		font-size: calc(100vw * (8 / 393));
	}
	.buyer_regist .custom_select select {
		padding: calc(100vw * (13 / 393)) calc(100vw * (16 / 393));
		font-size: calc(100vw * (16 / 393));
	}
	.custom_select::after {
		right: calc(100vw * (16 / 393));
		font-size: calc(100vw * (12 / 393));
	}
	.wrap,
	.sub_wrap {
		padding-top: calc(100vw * (120 / 393));
	}
	.layout {
		width: calc(100vw * (353 / 393));
	}
	header {
		padding: calc(100vw * (12 / 393)) 0;
		margin-bottom: calc(100vw * (40 / 393));
	}
	header .layout {
		align-items: center;
	}
	header .hd_wp1 {
		width: calc(100vw * (300 / 393));
	}
	.en header .hd_wp1 {
		width: calc(100vw * (300 / 393));
	}
	header h1,
	.mb_gnb_logo {
		width: calc(100vw * (62 / 393));
		height: calc(100vw * (64 / 393));
	}
	.mb_gnb_logo {
		position: absolute;
		top: 10px;
		left: 20px;
		z-index: 10;
	}
	header nav .depth1 {
		width: 100% !important;
		flex-direction: column;
	}
	.depth1 > li {
		width: 100% !important;
		display: block !important;
	}
	.depth1 > li > a {
		padding: calc(100vw * (20 / 393));
		font-size: calc(100vw * (18 / 393));
		line-height: calc(100vw * (19 / 393));
		text-align: start;
		background: url("/img/chevron_down.png") center right 20px / 24px no-repeat;
	}
	.depth1 > li > a.on {
		color: #490656;
		background: url("/img/chevron_up.png") center right 20px / 24px no-repeat;
	}
	nav {
		position: fixed;
		top: 0;
		right: -100%;
		width: 100%;
		height: 100vh;
		background: #fff;
		box-shadow: -2px 0 8px rgba(0, 0, 0, 0.2);
		transition: right 0.3s ease-in-out;
		padding: 100px 0;
		z-index: 100;
	}

	nav.active {
		right: 0;
	}
	.mb_btn_wp {
		display: flex;
		align-items: center;
		position: absolute;
		gap: calc(100vw * (20 / 393));
		top: calc(100vw * (30 / 393));
		right: 15px;
		background: none;
		border: none;
		cursor: pointer;
	}
	.mb_lang_btn {
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 16px;
		width: 73px;
		height: 31px;
		border: 1px solid #661576;
		border-radius: 16px;
		font-size: 13px;
		color: #999;
	}
	.mb_lang_btn button {
		font-family: "Pretendard Variable", sans-serif;
		color: #999;
	}
	.mb_lang_btn button.on {
		font-weight: 500;
		color: #661576;
	}
	.mobile_menu_btn,
	.nav_close_btn {
		display: block;
		width: calc(100vw * (30 / 393));
		height: calc(100vw * (30 / 393));
	}
	.mb_gnb_logo {
		display: block;
	}
	/* PC nav 숨기기 안함 — 구조는 동일하게 사용 */

	.hd_wp1 .mobile_menu_btn {
		display: block;
		position: absolute;
		right: 1rem;
		top: 1rem;
		background: none;
		border: none;
		font-size: 2rem;
		cursor: pointer;
		z-index: 1001;
	}
	.depth2 {
		position: unset;
		gap: 0;
		width: 100%;
		border-radius: 0;
		transform: none;
		background: #661676;
	}
	.depth2.active {
		max-height: calc(100vw * (300 / 393));
		padding: 0;
		border: none;
	}
	.depth2 li a {
		padding: calc(100vw * (20 / 393));
		font-size: calc(100vw * (14 / 393));
		text-align: start;
		color: #fff;
		border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	}
	.depth2 li a:hover::after {
		bottom: calc(100vw * (-2 / 393));
		width: calc(100vw * (45 / 393));
	}
	header .hd_wp2 {
		display: none;
		width: calc(100vw * (138.5 / 393));
	}
	header .lang_wp {
		border-radius: calc(100vw * (8 / 393));
	}
	header .lang_btn {
		width: calc(100vw * (30.5 / 393));
		height: calc(100vw * (15.5 / 393));
		padding: calc(100vw * (4 / 393)) calc(100vw * (16 / 393))
			calc(100vw * (4 / 393)) calc(100vw * (6 / 393));
		font-size: calc(100vw * (6.5 / 393));
		background: url("/img/arrow_icon.png") center right calc(100vw * (6 / 393)) /
			calc(100vw * (4 / 393)) no-repeat;
	}
	header .lang_btn.active {
		background: url("/img/arrow_icon02.png") center right
			calc(100vw * (6 / 393)) / calc(100vw * (4 / 393)) no-repeat;
	}
	header .lang_btn.active::after {
		width: calc(100vw * (18.5 / 393));
		height: calc(100vw * (0.5 / 393));
	}
	header .lang_list li a {
		padding: calc(100vw * (4 / 393)) calc(100vw * (6 / 393));
		font-size: calc(100vw * (6.5 / 393));
	}
	header .sns_wp {
		gap: calc(100vw * (4 / 393));
	}
	header .sns_wp li {
		width: calc(100vw * (16 / 393));
		height: calc(100vw * (16 / 393));
	}
	/* footer */
	footer {
		padding: calc(100vw * (40 / 393)) 0;
	}
	.ft_place_wp {
		gap: calc(100vw * (20 / 393)) 0;
	}
	.ft_place_wp li {
		width: 100%;
		flex-direction: column;
		gap: calc(100vw * (4 / 393));
	}
	.ft_place_wp li strong {
		font-size: calc(100vw * (14 / 393));
	}
	.ft_place_wp li div {
		gap: calc(100vw * (17 / 393));
	}
	.ft_place_wp li div span {
		font-size: calc(100vw * (13 / 393));
	}
	.ft_place_wp li div span:first-of-type::after {
		right: calc(100vw * (-8 / 393));
		height: calc(100vw * (8 / 393));
	}
	footer .copy {
		margin: calc(100vw * (16 / 393)) 0 0 0;
		font-size: calc(100vw * (12 / 393));
	}
	/* modal css */
	/* modal */
	.modal_inner2 {
		padding: calc(100vw * (80 / 393)) calc(100vw * (16 / 393));
		width: calc(100vw * (353 / 393));
		height: calc(100vw * (500 / 393));
		flex-direction: column;
		gap: calc(100vw * (24 / 393));
		overflow-y: scroll;
	}
	.modal_inner2 .cont_img {
		width: calc(100vw * (320 / 393));
		height: calc(100vw * (350 / 393));
	}
	.modal_inner2 .cont_txt {
		padding: 0;
		width: 100%;
	}
	.modal_inner2 .cont_txt span {
		margin-bottom: calc(100vw * (16 / 393));
		font-size: calc(100vw * (18 / 393));
	}
	.modal_inner2 .cont_txt h3 {
		margin-bottom: calc(100vw * (16 / 393));
		font-size: calc(100vw * (24 / 393));
	}
	.modal_inner2 .cont_txt strong {
		margin-top: calc(100vw * (8 / 393));
		font-size: calc(100vw * (16 / 393));
	}
	.modal_inner2 .cont_txt p {
		font-size: calc(100vw * (16 / 393));
	}
	.modal .close_btn {
		top: calc(100vw * (20 / 393));
		right: calc(100vw * (20 / 393));
		width: calc(100vw * (40 / 393));
		height: calc(100vw * (40 / 393));
	}
	.modal .img_inner,
	.modal .img_inner img {
		border-radius: 0;
	}
	.buyer_amd_detail .tit a {
		width: calc(100vw * (60 / 393));
		height: calc(100vw * (20 / 393));
		font-size: calc(100vw * (8 / 393));
	}
	.buyer_amd_detail h2 {
		margin-bottom: calc(100vw * (8 / 393));
		font-size: calc(100vw * (14 / 393));
	}
	.regist_num {
		margin-bottom: calc(100vw * (20 / 393));
		font-size: calc(100vw * (10 / 393));
	}
	.regist_num span {
		margin-left: calc(100vw * (4 / 393));
		font-size: calc(100vw * (10 / 393));
	}
	.buyer_amd_detail th,
	.buyer_amd_detail td {
		padding: calc(100vw * (8 / 393));
	}
	.buyer_amd_detail th {
		width: calc(100vw * (80 / 393));
	}
	.image-box {
		height: calc(100vw * (90 / 393));
		margin-bottom: calc(100vw * (4 / 393));
	}
	.download-link {
		padding-right: calc(100vw * (16 / 393));
		font-size: calc(100vw * (9 / 393));
		background: url("/img/down_icon.png") center right /
			calc(100vw * (12 / 393)) no-repeat;
	}
	.btn-group {
		margin-top: calc(100vw * (12 / 393));
	}
	.btn-group button {
		width: calc(100vw * (40 / 393));
		height: calc(100vw * (20 / 393));
		padding: calc(100vw * (3 / 393)) calc(100vw * (8 / 393));
		margin-left: calc(100vw * (4 / 393));
		font-size: calc(100vw * (8 / 393));
	}
	/* sub tab menu */
	.sub_tab_wp {
		margin-bottom: calc(100vw * (60 / 393));
	}
	.sub_tab_wp a {
		padding: calc(100vw * (4 / 393)) calc(100vw * (12 / 393));
		font-size: calc(100vw * (10 / 393));
	}
	.sub_tab_wp .active a {
		color: #581467;
		border-bottom: calc(100vw * (1.5 / 393)) solid #581467;
	}
	input[type="text"],
	input[type="tel"],
	select,
	textarea,
	input[type="email"] {
		padding: calc(100vw * (7.5 / 393));
		font-size: calc(100vw * (7 / 393));
	}
	textarea {
		height: calc(100vw * (50 / 393));
	}
	.sub_tab_wp {
		display: none;
	}
	.mobile_tab_selects {
		display: flex;
		border-bottom: 1px solid #ddd;
		margin-bottom: calc(100vw * (25 / 393));
	}
	.presentation .mobile_tab_selects {
		margin-bottom: 0;
	}
	.mb_select {
		position: relative;
		width: 50%;
	}
	.mb_select::after {
		content: "▼";
		position: absolute;
		top: 50%;
		right: 12px;
		transform: translateY(-50%);
		pointer-events: none;
		color: #333;
		font-size: 12px;
	}
	.mb_select.active::after {
		content: "▲";
	}
	.mb_select .sel_tit {
		font-weight: 700;
		color: #571763;
	}
	.sel_tit {
		padding: 17px;
		font-size: 14px;
		font-weight: 500;
		cursor: pointer;
		color: #666;
	}
	.en .sel_tit {
		font-size: 14px;
	}
	.mb_select.active .sel_tit {
		border-top: 1px solid #91268f;
		border-right: 1px solid #91268f;
		border-left: 1px solid #91268f;
		border-radius: 16px 16px 0 0;
	}
	.sel-opt {
		padding: 0 16px 16px;
		display: none;
		position: absolute;
		width: 100%;
		background: #fff;
		border-top: none;
		z-index: 10;
		border-left: 1px solid #91268f;
		border-right: 1px solid #91268f;
		border-bottom: 1px solid #91268f;
		border-radius: 0 0 16px 16px;
	}
	.sel-opt.active {
		display: block;
	}
	.sel-opt div {
		font-size: 14px;
		font-weight: 500;
		cursor: pointer;
		color: #666;
	}
	.en .sel-opt div {
		font-size: 14px;
	}
	.sel-opt div:not(:last-of-type) {
		margin-bottom: 15px;
	}
	.sub_wrap h2 {
		margin-bottom: calc(100vw * (32 / 393));
		font-size: calc(100vw * (24 / 393));
	}
	.sub_wrap.buyer_regist h2 {
		font-size: calc(100vw * (32 / 393));
	}
	.sub_bnr {
		flex-direction: column-reverse;
		justify-content: center;
		gap: calc(100vw * (24 / 393));
		padding: calc(100vw * (38 / 393)) calc(100vw * (24 / 393));
		height: calc(100vw * (260 / 393));
		margin-bottom: 0;
		background: url("/img/sub_bnr_mb.png") center / cover no-repeat;
	}
	.sub_bnr .tit {
		top: calc(100vw * (24 / 393));
		margin-left: 0;
	}
	.sub_bnr .tit h2 {
		margin-bottom: calc(100vw * (8 / 393));
		font-size: calc(100vw * (28 / 393));
		text-align: center;
	}
	.sub_bnr .cont_img {
		width: calc(100vw * (100 / 393));
		height: calc(100vw * (100 / 393));
	}
	.notice .sub_bnr .history,
	.notice_detail .sub_bnr .history {
		justify-content: center;
	}
	.sub_bnr .history {
		gap: calc(100vw * (4 / 393));
	}
	.sub_bnr .history .cont_img {
		width: calc(100vw * (20 / 393));
		height: calc(100vw * (20 / 393));
	}
	.sub_bnr .history .cont_txt {
		font-size: calc(100vw * (11 / 393));
	}
	.sub_wrap .container {
		margin-bottom: calc(100vw * (60 / 393));
	}
	.sub_wrap .inner {
		width: 100%;
	}
	.sub_wrap th {
		padding: calc(100vw * (5 / 393)) calc(100vw * (8 / 393));
		width: calc(100vw * (80 / 393));
		font-size: calc(100vw * (8 / 393));
	}
	.sub_wrap td {
		padding: calc(100vw * (4 / 393)) calc(100vw * (12 / 393));
	}
	.sub_wrap td textarea {
		height: calc(100vw * (104 / 393));
	}
	.domestic.sub_wrap th,
	.buyer_regist.sub_wrap th,
	.pre_regist.sub_wrap th,
	.pre_regist_chk2.sub_wrap th {
		background: transparent;
		border: none;
		padding: calc(100vw * (8 / 393)) 0;
		width: 100%;
		font-size: calc(100vw * (16 / 393));
	}
	.domestic.sub_wrap td,
	.buyer_regist.sub_wrap td,
	.pre_regist.sub_wrap td,
	.pre_regist_chk2.sub_wrap td {
		padding: 0;
		border: none;
	}
	.domestic.sub_wrap td.border,
	.buyer_regist.sub_wrap td.border {
		margin-bottom: 8px;
	}
	.domestic.sub_wrap td.border::after,
	.buyer_regist.sub_wrap td.border::after {
		display: block;
		margin-top: 20px;
		content: "";
		width: 100%;
		height: 1px;
		background: #ddd;
	}
	.domestic.sub_wrap td input,
	.buyer_regist.sub_wrap td input,
	.pre_regist.sub_wrap td input,
	.pre_regist_chk2.sub_wrap td input,
	.purpose td select {
		padding: calc(100vw * (13 / 393)) calc(100vw * (16 / 393));
		font-size: calc(100vw * (16 / 393));
	}
	.ft_sns_wp {
		display: flex;
		margin-top: calc(100vw * (20 / 393));
		gap: calc(100vw * (15 / 393));
	}
}
