/**
 * ST: ========== sub menu ==========
 */

 .sub_menu {
	position: sticky;
	left:0;
	right:0;
	top:0;
	height:40px;
	background-color:#233259;
	z-index: 2;
}

.sub_menu_inner {
	display:flex;
	width:1100px;
	margin:0 auto;
}

.sub_menu_home {
	display:flex;
	justify-content:center;
	align-items:center;
	width:40px;
	height:40px;
	border-left:1px solid rgba(255,255,255,0.2);
	border-right:1px solid rgba(255,255,255,0.2);
}

.sub_menu_home img {
	margin-top:-3px;
}

.sub_menu_list {
	display:flex;
}

.sub_menu_list > li {
	position:relative;
}

.sub_menu_list > li > button {
	position:relative;
	display:block;
	min-width:205px;
	line-height:40px;
	padding:0 65px 0 25px;
	text-align:left;
	border-right:1px solid rgba(255,255,255,0.2);
	font-size: 14px;
	color:#fff;
}

.sub_menu_list > li > button i {
	position:absolute;
	top:12px;
	right:25px;
	color:rgba(255,255,255,0.5);
	transition:all 0.3s;
	font-size:14px;
}

.sub_menu_list > li:hover > button i {
	transform:rotate(-180deg)
}

.sub_menu_list > li > ul {
	position:absolute;
	left:0;
	right:0;
	z-index:1;
	background-color:#233259;
	display:none
}

.sub_menu_list > li > ul a {
	display:block;
	height:40px;
	line-height:38px;
	padding:0 25px;
	border-top:1px solid rgba(255,255,255,0.2);
	font-size:14px;
	color:#fff
}

.sub_menu_list > li > ul a:hover {
	background-color:#49668f
}

@media screen and (max-width: 768px) {
	.sub_menu {
		display: none;
	}
}

/**
 * EN: ========== sub menu ==========
 */


/**
 * ST : ========== title ==========
 */

.title_info {
	position:relative;
	padding-bottom:75px;
}

.title_info img {
	position:absolute;
	right:0;
	top:10px;
	width: 285px;
}

.title {
	position:relative;
}

/* big title */
.title.v1 {
	margin-bottom:45px
}

.title.v1 h2 {
	font-size:36px
}

.title.v1 p {
	margin-top: 5px;
	font-size: 18px;
	color:#333;
}

/* top middle title */
.title.v2 {
	margin-bottom:15px;
}

.title.v2 h3 {
	font-size:24px
}

.title.v2 h3 span {
	font-size:18px;
    font-weight: 400;
	color: #666;
}

.title.v2 p {
	margin-top:10px;
	font-size:18px;
	color:#333;
}

.title.v2 p + ul {
	margin-top:12px
}

.title.v2 ul {
	display:flex;
	flex-direction: column;
	gap:6px
}

.title.v2 ul li {
	position:relative;
	padding-left:20px;
	font-size: 18px;
	color: #333;
}

.title.v2 ul li:before {
	content:"\f00c";
	font-family:FontAwesome;
	position:absolute;
	top:3px;
	left:0;
	font-size:14px;
	color:#f87418
}

.title.v2 ul li.last:before {
	content:'';
}

/* body middle title */
.title.v3 {
	margin-bottom:15px;
}

.title.v3 h3 {
	font-size:24px
}

.title.v3 h3 span {
	color: #e7280e;
}

.title.v3 p {
	margin-top:5px;
	font-size:16px;
	color:#333;
}

.title.v3 > span {
	position:absolute;
	bottom:0;
	right:0;
	font-size:14px;
	color:#666
}

/* bullet big title */
.title.v4 {
	margin-bottom:15px;
	padding-left:17px;
}

.title.v4 h3 {
	position:relative;
	font-size:20px
}

.title.v4 h3:before {
	content:'';
	position:absolute;
	top:12px;
	left:-17px;
	width:5px;
	height:5px;
	border-radius:50%;
	background-color:#f87418
}

.title.v4 h3 span {
	font-size:16px;
	font-weight: 400;
	color: #666;
}

.title.v4 p {
	margin-top:5px;
	font-size:16px;
	color:#333;
}

.title.v4 > span {
	position:absolute;
	bottom:0;
	right:0;
	font-size:14px;
	color:#666
}

/* bullet middle title */
.title.v5 {
	margin:0 0 15px 17px;
}

.title.v5 h4 {
	position:relative;
	padding-left:10px;
	font-size:18px
}

.title.v5 h4:before {
	content:'';
	position:absolute;
	top:12px;
	left:0;
	width:3px;
	height:3px;
	border-radius:50%;
	background-color:#000
}

.title.v5 p {
	margin-top:5px;
	font-size:16px;
	color:#333;
}

@media screen and (max-width: 768px) {	
	.title_info {
		display:flex;
		flex-direction: column;
		padding-bottom:47px;
		margin-bottom: 40px;
	}

	.title_info.v2 {
		padding-bottom: 0;
		margin-bottom: 40px;
	}

	.title_info::after {
		content: "";
		position: absolute;
		left: 50%;
		bottom: 0;
		transform: translateX(-50%);
		width: calc(100% + 40px);
		height: 7px;
		background-color: #efefef;
	}

	.title_info.v2::after {
		display:none;
	}

	.title_info > img {
		position:static;
		width:244px;
		margin:25px 0 0 auto;
	}

	.title_info .text_indent.v1 {
		padding-left: 9px;
		text-indent: -9px;
	}

	/* big title */
	.title.v1 {
		display: none;
	}

	/* top middle title */
	.title.v2 {
		margin-bottom: 10px;
	}

	.title.v2 h3 {
		font-size:22px;
		line-height: 1.3;
	}

	.title.v2 h3 span {
		display: inline-block;
		margin-top: 5px;
		line-height: 1.5;
		font-size: 16px;
	}

	.title.v2 p {
		margin-top: 8px;
	}

	.title.v2 p .btns.v2 { 
		margin-top: 5px;
	}

	/* body middle title */
	.title.v3 {
		margin-bottom: 10px;
	}

	.title.v3 h3 {
		font-size: 22px;
	}

	/* bullet big title */
	.title.v4 {
		margin-bottom: 10px;
		padding-left:13px;
	}

	.title.v4 h3:before {
		left:-13px;
	}

	.title.v4 h3 span {
		display:block;
		font-size: 14px;
	}

	.title.v4 > span {
		position: static;
		display: block;
		text-align: right;
	}

	/* bullet middle title */
	.title.v5 {
		margin:0 0 10px 13px;
	}

	.title.v5 h4 {
		font-size:16px
	}

	.title.v5 h4:before {
		top:10px;
	}
}

/**
 * ED : ========== title ==========
 */


/**
 * ST : ========== tab ==========
 */

/* type1 */
.tab_type1 {
	display: flex;
	margin-bottom:55px;
}

.tab_type1 .tab_title {
	position:relative;
	flex:1;
	height:65px;
	line-height:65px;
	border-radius:10px 10px 0 0;
	border-top:2px solid transparent;
	border-bottom:2px solid #000;
	background-color:#fff;
	text-align:center;
	font-size:20px;
	color:#666;
	transition: none;
}

.tab_type1 .tab_title.on {
	border:2px solid #000;
	border-bottom-color:transparent;
	font-weight:700;
	color:#000;
}

.tab_type1 .tab_title:nth-child(n+2):before {
	content:'';
	position:absolute;
	top:20px;
	bottom:20px;
	left:0;
	width:1px;
	background-color:#ccc
}

.tab_type1 .tab_title.on:before,
.tab_type1 .tab_title.on + .tab_title:before {
	display:none
}

/* type2 */
.tab_type2 {
	display: flex;
	flex-wrap: wrap;
	margin-bottom:55px;
} 

.tab_type2 .tab_title {
	position:relative;
	height:60px;
	line-height:58px;
	text-align:center;
	border-bottom:1px solid #e2e2e2;
	border-left:1px solid #e2e2e2;
	background-color: #fff;
	font-size:18px;
	color:#666;
}

/* three */
.tab_type2.three .tab_title {
	width: 33.3%;
}

.tab_type2.three .tab_title:last-child {
	border-right:1px solid #e2e2e2;
}

.tab_type2.three .tab_title:nth-child(-n+3) {
	border-top:1px solid #e2e2e2;
}

/* eight */
.tab_type2.eight .tab_title {
	width: 25%;
}

.tab_type2.eight .tab_title:nth-child(4n) {
	border-right:1px solid #e2e2e2;
}

.tab_type2.eight .tab_title:nth-child(-n+4) {
	border-top:1px solid #e2e2e2;
}

.tab_type2 .tab_title.on {
	background-color:#f0f5fb;
	font-weight:700;
	color:#000
}

.tab_type2 .tab_title:before {
	content:'';
	position:absolute;
	top:-1px;
	left:-1px;
	right:-1px;
	height:3px;
	background-color:#233259;
	opacity:0;
	transition:all 0.3s
}

.tab_type2 .tab_title.on:before {
	opacity:1
}

/* type3 */
.tab_type3 {
	display: flex;
	margin-bottom:55px;
}

.tab_type3 .tab_title {
	min-width:120px;
	padding:0 15px 15px;
	text-align:center;
	border-bottom:2px solid #e2e2e2;
	font-size:18px;
	color:#666
}

.tab_type3 .tab_title.on {
	border-color:#000;
	font-weight:700;
	color:#000
}

/* type4 */
.tab_type4 {
	display: flex;
	flex-wrap:wrap;
	gap:36px;
	margin-bottom:55px;
}

.tab_type4 .tab_title {
	width: 82px;
	display:flex;
	flex-direction: column;
	align-items:center;
	gap:10px;
	text-align:center
}

.tab_type4 .tab_title.on {
	font-weight:700;
}

.tab_type4 .tab_title span {
	display:block;
	font-size:18px;
	color:#666
}

.tab_type4 .tab_title.on span {
	color:#000
}

.tab_type4 .tab_title img {
	width:66px;
	border-radius:50%;
	border:1px solid #e2e2e2;
	padding: 4px;
}

.tab_type4 .tab_title.on img {
	border: 2px solid #e7280e;
}

/* tab_content */
.tab_content {
	display:none;
}

@media screen and (max-width: 768px) {
	/* type1 */
	.tab_type1 {
		position: sticky;
		top: 60px;
		z-index:1;
		margin: 0 -20px 0;
		padding: 0 20px;
		background-color: #fff;
		border-bottom:1px solid #e2e2e2
	}

	.tab_type1 .tab_title {
		height:47px;
		line-height:47px;
		padding-top: 3px;
		border: none;
		border-radius:0;
		font-size:16px;
	}

	.tab_type1 .tab_title.on {
		border: none;
	}
	
	.tab_type1 .tab_title:before {
		display: none;
	}

	.tab_type1 .tab_title:after {
		content:'';
		position: absolute;
		left:0;
		right:0;
		bottom:-1px;
		height: 2px;
		background-color: #000;
		opacity: 0;
	}

	.tab_type1 .tab_title.on:after {
		opacity: 1;
	}

	.mo_tab_type1 {
		margin: 0 -20px 35px;
		border:0
	}
	
	.mo_tab_type1 .tab_title {
		border-radius: 10px 10px 0 0;
		border-top: 2px solid transparent;
		border-bottom: 2px solid #000;
		padding-top:0
	}

	.mo_tab_type1 .tab_title.on {
		border: 2px solid #000;
		border-bottom-color: transparent;
	}

	.mo_tab_type1 .tab_title:after {
		display:none
	}

	.tab_type1 .tab_content {
		padding-top: 80px;
	}

	/* type2 */
	.tab_type2 {
		display: none;
	}

	.mo_tab_type2 {
		position: sticky;
		top: 60px;
		margin-bottom:35px;
		background-color: #fff;
		z-index:2;
	}

	.mo_tab_type2.active {
		padding:15px 0;
		transition: all 0.3s;
	}

	.mo_tab_type2 select {
		width: 100%;
		height: 46px;
		line-height: 44px;
		padding: 0 16px;
		border: 1px solid #e2e2e2;
		border-radius: 6px;
		font-size: 16px;
		color: #000;
		background: url(../img/common/ico_select.svg) no-repeat center right 16px/12px
	}

	/* type3 */
	.tab_type3 {
		margin-bottom:35px;
	}

	.tab_type3 .tab_title {
		min-width:90px;
		padding:0 15px 7px;
		font-size:16px;
	}
	
	/* type4 */
	.tab_type4 {
		display: grid;
		grid-template-columns: 1fr 1fr 1fr 1fr;
		gap:30px;
		margin-bottom: 35px;
	}

	.tab_type4 .tab_title {
		width: auto;
		gap:10px
	}

	.tab_type4 .tab_title img {
		width:50px;
		padding: 2px;
	}

	.tab_type4 .tab_title span {
		font-size:16px;
	}
}

/**
 * ED : ========== tab ==========
 */


/**
 * ST : ========== table ==========
 */

.table {
	table-layout: fixed;
	border-top:1px solid #8a8a8a
}

.table th {
	padding:18px;
	background-color:#f5f6f8;
	text-align:center;
	border-bottom:1px solid #e2e2e2;
	border-right:1px solid #e2e2e2;
	font-weight:700;
}

.table th:last-child {
	border-right:0;
}

.table td {
	padding:18px;
	border-left:1px solid #e2e2e2;
	border-bottom:1px solid #e2e2e2;
	background-color:#fff;
	color: #333;
}

.table td:first-child {
	border-left:0;
}

.table tfoot * {
	background-color:#aaa;
	color:#fff
}

/* �뚮몢由� 諛곌꼍 */
.table .emphasis {
	position:relative;
}

.table .emphasis:before {
	content:'';
}

.table th.emphasis {
	color:#fff
}

.table th.emphasis span {
	position:relative;
	z-index:1;
}

.table th.emphasis:before {
	position:absolute;
	top:-1px;
	bottom:-1px;
	right:-1px;
	left:-1px;
	background-color:#444c73;
}

.table td.emphasis:before {
	position:absolute;
	top:-1px;
	bottom:-1px;
	right:-1px;
	left:-1px;
	border-left:2px solid #444c73;
	border-right:2px solid #444c73;
}

.table td.emphasis.last:before {
	border-bottom:2px solid #444c73;
}

/* �꾪뿕��*/
.table .danger {
	display: inline-block;
	min-width: 80px;
	padding:3px 10px;
	background-color: #ddd;
	border-radius: 15px;
	text-align: center;
	font-size: 14px;
	color: #fff;
}

.table .d_green {
	background-color: #008000;
}

.table .d_orange {
	background-color: #ff8400;
}

.table .d_red {
	background-color: #be4343;
}

.table .d_deepred {
	background-color: #c00000;
}



.table .d_grade1 {
	background-color: #ff4948;
	color: #FFF;
}

.table .d_grade2 {
	background-color: #fdc169;
	color: #000;
}

.table .d_grade3 {
	background-color: #fef200;
	color: #000;
}

.table .d_grade4 {
	background-color: #a0e0e9;
	color: #000;
}

.table .d_grade5 {
	background-color: #b3d7ed;
	color: #000;
}

.table .d_grade6 {
	background-color: #2c67ff;
	color: #FFF;
}



.table .graph_area {
	display:flex;
	gap:5px
}

.table .graph {
	line-height: 30px;
	color: #fff;
	font-size: 12px;
}

.table .per30 {
	width: 30%;
}

.table .per40 {
	width: 40%;
}

.table .per50 {
	width: 50%;
}

.table .per70 {
	width: 70%;
}

.table .per100 {
	width: 100%;
}

.table .g_green {
	background-color: #6b925a;
}

.table .g_gray {
	background-color: #656565;
}

.table .g_sky {
	background-color: #6b91be;
}

.table .g_blue {
	background-color: #385d89;
}

.table .g_red {
	background-color: #be4343;
}

.table_ul_list.v1 {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media screen and (max-width: 768px) {
	.mo_none.table {
		display:table
	}

	colgroup.mo_none {
		display:contents;
	}

	.table {
		font-size:16px
	}

	.table_scroll_area {
		position:relative;
	}

	.table_scroll_area:after {
		content:'';
		position:absolute;
		top:0;
		bottom:0;
		right:0;
		z-index:1;
		width:20px;
		background: -webkit-gradient(linear, left top, right top, color-stop(0, rgba(255, 255, 255, 0)), color-stop(100%, #fff));
	}

	.table_scroll {
		overflow:auto
	}

	.table_scroll .table {
		word-break: break-all;
	}

	.table th {
		padding: 8px;
	}

	.table td {
		padding: 8px;
	}

	.table td img {
		width: 60%;
	}
}

/**
 * ED : ========== table ==========
 */


/**
 * ST : ========== button ==========
 */

/* top btn */
.top_btn {
	display:none;
	position:fixed;
	bottom:20px;
	right:20px;
	z-index:2;
	width:60px;
	height:60px;
	background-color:rgba(255,255,255,0.8);
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
	border-radius:10px;
	color:#494949;
	transition:none
}

/* sticky btn */
.fixed_btn {
	position:sticky;
	left:0;
	right:0;
	bottom:0;	
	z-index:1;
	display:flex;
	justify-content:center;
	gap:10px;	
	margin-top:45px;
	padding:0 20px 20px;
	background-color:#fff;
}

.fixed_btn:before {
	z-index: -1;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 7px 10px rgb(255, 255, 255);
}

.btns.v1 {
	display:inline-flex;
	justify-content:center;
	align-items:center;
    min-width: 200px;
    height: 50px;
    padding: 0 23px;
	text-align:center;
    border:1px solid #e2e2e2;
    border-radius: 5px;
    cursor: pointer;
}

.btns.v1 img {
	width:13px;
	margin: -1px 0 0 6px;
}

.btns.v1 span {
	overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* small btn */
.btns.v2 {
	display: inline-block;
	padding: 5px 15px;
	background-color: #fff;
	border:1px solid #e2e2e2;
    border-radius: 5px;
	font-size: 14px;
}

.btns.v2:hover {
	background-color: #f5f6f8;
}

/* middle btn */
.btns.v3 {
	display:inline-block;
    padding:13px 20px;
    border-radius: 5px;
}

/* btn color */
.btns.btn_type1 {
	border-color:#233259;
    background-color:#233259;
    color:#fff;
}

.btns.btn_type5 {
	border-color:#7a809d;
    background-color:#7a809d;
	color:#fff;
}

/* popup_btn */
.popup_btn {
	display:inline-flex;
	justify-content: center;
	align-items: center;
    min-width:200px;
    height:50px;
    padding: 0 23px;
	text-align: center;
	border: 1px solid #e7280e;
    color:#e7280e;
    background-color:#fff;
    border-radius:5px;
}

.popup_btn img {
	width: 17px;
}

.popup_btn:hover {
	background-color:#e7280e;
	color:#fff;
}

.popup_btn:hover img {
	content: url("../img/common/mobile/download_ico_white.png");
}

/* line link */
.link {
	display:inline-block;
	position: relative;
	color: #333;
}

.link:after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 100%;
	height: 1px;
	transform: translateX(-50%);
	background-color: #333;
	transition: 0.2s;
}

.link.on:after {
	width: 0;
}

/* line ico link */
.view_more {
	position: absolute;
	right:0;
	bottom: 0;
}

.view_more img {
    margin-left: 8px
}

/* bottom fixed wide btn */
.wide_btn_wrap {
	position:fixed;
	left:0;
	right:0;
	bottom:0;
	z-index:1;
	display:none;
}

.wide_btn {
	width:100%;
	height:52px;
	padding:0 20px;
	text-align:left;
	background-color:#233259;
	font-size:16px;
	color:#fff;
	letter-spacing: -1.5px;
}

.wide_btn span {
	color:#e7280e
}

.wide_btn img {
	position: absolute;
    top: -8px;
    right: 37px;
    width: 63px;
}

.wide_btn_close {
	position: absolute;
	right: 23px;
	top: -28px;
	width:24px;
	height:24px;
	border-radius: 50%;
	background-color: #999;
	z-index: 1;
}

.wide_btn_close span {
	display:block;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 50%;
	height: 1px;
	background-color: #fff;
}

.wide_btn_close span:first-child {
	transform: translate(-50%, -50%) rotate(45deg);
}

.wide_btn_close span:nth-child(2) {
	transform: translate(-50%, -50%) rotate(-45deg);
}

@media screen and (max-width: 768px) {
	/* kakao btn */
	.kakao_link_btn {		
		bottom:70px;
		right:15px;
	}

	.kakao_link_btn img {
		width: 40px;
	}

	/* top btn */
	.top_btn {
		bottom:15px;
		right:15px;
		width:40px;
		height:40px;
	}

	/* sticky btn */
	.fixed_btn {
		margin-top:25px;
		padding: 0 20px 20px;
	}

	.btns.v1 {
		flex:1;
		min-width:auto;
		height:60px;
		padding: 0 10px;
		font-weight:500;
		font-size:18px
	}

	.btns.v1 img {
		width: 11px;
		margin: 1px 0 0 6px;
	}

	/* middle btn */
	.btns.v3 {
		padding:8px 12px;
	}

	/* popup_btn */
	.popup_btn {
		display:inline-flex;
		justify-content: center;
		align-items: center;
		min-width:200px;
		height:50px;
		padding: 0 23px;
		text-align: center;
		border: 1px solid #e7280e;
		color:#fff;
		background-color:#e7280e;
		border-radius:5px;
	}

	.popup_btn img {
		content: url("../img/common/mobile/download_ico_white.png");
	}

	/* line link */
	.link {
		display:inline;
		text-decoration: underline;
		word-break: break-all;
	}

	.link:after {
		display: none;
	}

	/* line ico link */
	.view_more {
		margin-top: 20px;
		position: static;
		display: flex;
		align-items: center;
		justify-content: flex-end;
	}

	.view_more img {
		margin-left: 4px;
		width: 9px;
	}

	/* bottom fixed wide btn */
	.wide_btn_wrap {
		display:block;
	}
}

/**
 * ED : ========== button ==========
 */


/**
 * ST : ========== content ==========
 */

.content_box_area > .content_box:first-child {
	margin-top:0;
}

.content_box.v1 {
	position: relative;
	margin-top:75px;
}

.content_box.v2 {
	margin-top:50px;
}

.content_box.v3 {
	margin-top:25px;
}

.content_box.v3 > button {
	display: inline-block;
	text-align: left;
}

.content_box.v3 > button > strong {
	vertical-align: middle;
	margin-right: 10px;
	font-size: 16px;
	color: #000;
}

.content_bg {
	padding:75px 0 107px;
	background-color:#f5f6f8
}

.content_bg.v2 {
	padding:75px 0
}

.content_bg .inner {
	padding-top:0;
}

.top_box {
	height:35px
}

.ul_bar_list {
	display:flex
}

.ul_bar_list li:not(:last-child) {
	position: relative;
	padding-right: 13px;
	margin-right:13px
}

.ul_bar_list li:not(:last-child):before {
	content: "";
	position: absolute;
	top: 5px;
	right: -1px;
	width: 1px;
	height: 12px;
	background-color: #ccc;
}

@media screen and (max-width: 768px) {
	.content_box_area > .content_box:first-child {
		padding-top: 0;
	}

	.content_box.v1 {
		position: relative;
		margin-top: 40px;
		padding-top: 47px;
	}

	.content_box.v1:not(:first-child):after {
		content: "";
		position: absolute;
		top: 0;
		left:-20px;
		right:-20px;
		height: 7px;
		background-color: #efefef;
	}

	.content_box.v2 {
		margin-top: 40px;
	}

	.content_box.v3 > button > strong {
		margin-right: 5px;
	}

	.content_bg {
		padding: 0 0 70px;
		background-color: transparent;
	}

	.content_bg.v2 {
		padding:0;
		background-color: transparent;
	}

	.content_bg.v3 {
		padding-top: 40px;
		background-color: #f5f6f8;
	}

	.ul_bar_list {
		flex-direction: column;
	}
	
	.ul_bar_list li:not(:last-child) {
		padding-right:0;
		margin-right:0
	}
	
	.ul_bar_list li:not(:last-child):before {
		display: none;
	}
}

/**
 * ED : ========== content ==========
 */


/**
 * ST : ========== sub_txt ==========
 */

.sub_txt {
	margin-top:15px;
	font-size:14px;
	color: #666;
}

@media screen and (max-width: 768px) {
	.sub_txt {
		margin-top:10px;
	}

	.sub_txt .text_indent.v12 {
		padding-left: 9px;
    	text-indent: -9px
	}
}

/**
 * ED : ========== sub_txt ==========
 */


/**
 * ST : ========== text_indent ==========
 */

.text_indent *,
.num_text_indent * {
	text-indent:0
}

/* - 16px, * 16px �� 14px */
.text_indent.v1 {
	padding-left:11px;
	text-indent:-11px;
}

/* �� 14px */
.text_indent.v2 {
	padding-left:16px;
	text-indent:-16px;
}

/* 쨌 16px */
.text_indent.v3 {
	padding-left:8px;
	text-indent:-8px;
}

/* �� 16px */
.text_indent.v4 {
	padding-left:18px;
	text-indent:-18px;
}

/* 쨌 14px */
.text_indent.v5 {
	padding-left:6px;
	text-indent:-6px;
}

/* �� 14px, - 18px */
.text_indent.v6 {
	padding-left:12px;
	text-indent:-12px;
}

/*�댁쇅二쇱떇 �쒖옣�덈궡 > �띿쉘 > CAS*/
.text_indent.v7 {
	padding-left:11px;
}

/* �� 16px */
.text_indent.v8 {
	padding-left:18px;
	text-indent:-18px;
}

/* �� 14px, �� 16px, ** 14px */
.text_indent.v9 {
	padding-left:15px;
	text-indent:-15px;
}

/* �� 16px */
.text_indent.v10 {
	padding-left:14px;
	text-indent:-14px;
}

/* 媛�., ��., ��., ��. 16px */
.text_indent.v11 {
	padding-left:21px;
	text-indent:-21px;
}

/* - 14px, 쨌 16px */
.text_indent.v12 {
	padding-left:8px;
	text-indent:-8px;
}

/* �쇱엫�� ISA �덈궡 > 媛��낆슂嫄� 1,2 */
.text_indent.v13 {
	padding-left:155px;
	text-indent:-155px;
}

/* �쇱엫�� ISA �덈궡 > 媛��낆슂嫄� 3 */
.text_indent.v14 {
	padding-left:151px;
	text-indent:-151px;
}

/* 二�) 14px */
.text_indent.v15 {
	padding-left:21px;
	text-indent:-21px;
}

/* : 16px */
.text_indent.v16 {
	padding-left:7px;
	text-indent:-7px;
}

/* * 14px */
.text_indent.v17 {
	padding-left:9px;
	text-indent:-9px;
}

/*1. 16px */
.num_text_indent.v1 {
	padding-left: 13px;
	text-indent: -13px;
}

/*2., 3., 5., 6., 7. 16px*/
.num_text_indent.v2 {
	padding-left: 16px;
	text-indent: -16px;
}

/*4., 8., 11. 16px*/
.num_text_indent.v3 {
	padding-left: 18px;
	text-indent: -18px;
}

/*5., 6., 9. 16px*/
.num_text_indent.v4 {
	padding-left: 17px;
	text-indent: -17px;
}

/*10. 16px*/
.num_text_indent.v5 {
	padding-left: 23px;
	text-indent: -23px;
}

/*12. 16px*/
.num_text_indent.v6 {
	padding-left: 21px;
	text-indent: -21px;
}

@media screen and (max-width: 768px) {
	/* �쇱엫�� ISA �덈궡 > 媛��낆슂嫄� 1,2 */
	/* �쇱엫�� ISA �덈궡 > 媛��낆슂嫄� 3 */
	.text_indent.v13,
	.text_indent.v14 {
		padding-left:0;
		text-indent:0;
	}

	.text_indent.v13 strong,
	.text_indent.v14 strong {
		display: block;
	}
}

/**
 * ED : ========== text_indent ==========
 */


/**
 * ST : ========== point_list ==========
 */

.point_list {
	display:flex;
	border-top:2px solid #494949;
	border-bottom:1px solid #e2e2e2;
}

.point_list > li {
	flex:1;
	position:relative;
	padding: 35px 10px 50px;
	text-align:center;
}

.point_list > li:not(:last-child):after {
	content:'';
	position:absolute;
	top:30px;
	bottom:30px;
	right:0;
	width:1px;
	background-color:#e2e2e2;
}

.point_list li dt {
	display:inline-flex;
	justify-content:center;
	align-items:center;
	width: 100px;
	height: 100px;
	margin-bottom:12px;
	border-radius: 50%;
	background-color:#fff8f6;
}

.point_list li dd {
	display: flex;
    flex-direction: column;
	align-items: center;
    gap: 8px;
}

.point_list li dd span.step {
	display:inline-block;
	padding:2px 13px 1px;
	margin-bottom:5px;
	background-color:#444c73;
	border-radius:25px;
	color:#fff
}

.point_list li dd h3 {
	font-size:20px;
}

.point_list li dd p {
	font-size:16px;
	color:#333;
}

@media screen and (max-width: 768px) {
	.point_list {
		flex-direction: column;
		border-top:2px solid #494949;
		border-bottom:none;
	}

	.point_list > li {
		padding: 0;
	}

	.point_list > li:not(:last-child):after {
		content:'';
		position:absolute;
		top: auto;
		bottom: 0px;
		right:0;
		width:100%;
		height: 1px;
		background-color:#e2e2e2;
	}

	.point_list > li:last-child::after {
		content:'';
		position:absolute;
		top: auto;
		bottom: 0px;
		right:0;
		width:100%;
		height: 1px;
		background-color:#e2e2e2;
	}

	.point_list li dl {
		display: flex;
		gap: 16px;
		padding: 18px 0;
	}

	.point_list li dt { 
		width: 80px;
		height: 80px;
		margin-bottom: 0;
	}

	.point_list > li > div {
		padding: 18px 16px 25px;
		text-align:left;
		background-color: #f4f5f7;		
	}

	.point_list .table th,
	.point_list .table td {
		font-size: 14px;
	}

	.point_list li dd {
		flex:1;
		align-items: flex-start;
		justify-content:center;
		gap:3px;
	}

	.point_list li dd span.step {
		padding:2px 10px 1px;
		margin-bottom:9px;
	}

	.point_list li dd h3 {
		font-size:18px;
		text-align: left;
	}

	.point_list li dd p {
		text-align: left;
	}

	.point_list li dd p br {
		display: none;
	}
}

/**
 * ED : ========== point_list ==========
 */


/**
 * ST : ========== progress_list ==========
 */

.progress_list {
	border-top:2px solid #494949;
}

.progress_list > li {
	position: relative;
	padding:35px 40px;
	border-bottom:1px solid #e2e2e2;
}

.progress_list dl {
	display:flex;
	gap:45px;
}

.progress_list.v2 dl {
	align-items: center;
}

.progress_list dt{
	display:inline-flex;
	justify-content:center;
	align-items:center;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background-color:#fff8f6;
}

.progress_list dd {
	flex:1;
	font-size:16px;
}

.progress_list dd span.step {
	display:inline-block;
	padding:2px 13px 1px;
	margin-bottom:13px;
	background-color:#444c73;
	border-radius:25px;
	color:#fff
}

.progress_list dd h3 {
	font-size:20px;
}

.progress_list dd > p {
	margin-top:8px;
	color:#333;
}

.progress_box:not(:first-child) {
	margin-top:12px
}

/* CFD 嫄곕옒�덉감 > 2step */
.progress_img_box {
	display:flex;
	gap: 80px;
	padding-left: 40px;
}

.progress_img_box > div{
	max-width: 140px;
}

.progress_img_box img{
	width: 100%;
}

.progress_ul_list {
	display: flex;
    flex-direction: column;
    gap: 5px;
}

.progress_ex_box {
	display: flex;
	align-items:center;
	gap: 35px;
}

.progress_ex_box li {
	width: 335px;
	text-align: center;
}

.progress_ex_box li h4 {
	padding: 12px 15px;
	background-color: #7a809d;
	border-radius: 5px 5px 0 0;
	font-size:16px;
	font-weight:500;
	color: #fff;
}

.progress_ex_box li div {
	padding: 15px;
	border:1px solid #e2e2e2;
	border-top:0;
	border-radius: 0 0 5px 5px;
}

.progress_ex_box li div h2 {
	font-size:24px
}

.progress_list .table .btns.v2 {
	margin-top:0
}

@media screen and (max-width: 768px) {
	.progress_list > li {
		padding: 18px 0;
	}
	
	.progress_list dl {
		gap: 16px;
		align-items: flex-start;
	}

	.progress_list dt {
		width: 80px;
		height: 80px;
	}

	.progress_list dd span.step {
		padding:2px 10px 1px;
		margin-bottom: 12px;
		font-size: 14px;
	}

	.progress_list dd h3 {
		font-size:18px;
	}

	.progress_list dd > p {
		margin-top:3px
	}

	.progress_box:not(:first-child) {
		margin-top:10px
	}

	/* CFD 嫄곕옒�덉감 > 2step */
	.progress_img_box{
		gap: 40px;
		padding-left: 0;
		justify-content: center;
	}

	.progress_img_box > div{
		max-width: 100px;
		text-align:center;
	}

	.progress_ex_box {
		gap: 10px;
		width: 100%;
	}

	.progress_ex_box li {
		flex: 1;
		max-width: 200px;
	}

	.progress_ex_box li h4 {
		padding: 5px;
		font-size: 14px;
	}

	.progress_ex_box li div {
		padding: 5px;
		background-color: #fff;
	}
}

/**
 * ED : ========== progress_list ==========
 */


/**
 * ST : ========== img area ==========
 */

.img_area {
	display:flex;
	justify-content:center;
	align-items:center;
	margin-top: 15px;
	padding:40px 30px;
	border:1px solid #e2e2e2;
}

.img_area.v1 {
	min-height:345px
}

.img_area.v2 {
	min-height:190px;
}

.img_area img {
	max-width:100%;
	max-height:100%
}

/* super365 �덈궡 > �곷떒 �대�吏� 2媛� */
.top_img_area {
	position: absolute;
	top: 0;
	right: 0;
	display: flex;
	justify-content: center;
	align-items:center;
	gap: 60px;
}

.top_img_area li {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}	

.top_img_area dt {
	position: relative;
	width: 160px;
	height: 160px;
	background-color: #fff8f6;
	border-radius: 50%;
}

.top_img_area dt img {
	position: absolute;
	top: 50%;
	left: 50%;
}

.top_img_area li:first-child dt img {
	width: 124px;
	transform: translate(-50%, -50%);
}

.top_img_area li:nth-child(2) dt img {
	width: 155px;
	transform: translateX(calc(-50% + 25px)) translateY(calc(-50% - 8px));
}

.top_img_area dd {
	text-align: center;
}

.top_img_area dd h3 {
	font-size: 18px;
}

.top_img_area dd h3 span{
	color: #e7280e;
}

@media screen and (max-width: 768px) {
	.img_area {
		padding: 40px 15px;
	}

	.img_area.v1 {
		min-height: auto;
	}

	/* super365 �덈궡 > �곷떒 �대�吏� 2媛� */
	.top_img_area {
		margin-top: 30px;
		position: static;
		gap: 45px;
	}

	.top_img_area dt {
		width: 130px;
		height: 130px;
	}

	.top_img_area dt img {
		margin-top: 0;
	}

	.top_img_area li:first-child dt img {
		width: 104px;
	}

	.top_img_area li:nth-child(2) dt img {
		width: 123px;
		transform: translateX(calc(-50% + 17px)) translateY(calc(-50% - 5px));
	}
}

/**
 * ED : ========== img area ==========
 */


/**
 * ST : ========== explain_box ==========
 */

.explain_box {
	display: flex;
	align-items:center;
	gap: 20px;
	padding: 20px;
	border-radius: 8px;
	font-size: 16px;
	color: #666;
	background-color:#f5f6f8
}

@media screen and (max-width: 768px) {
	.explain_box {
		gap: 15px;
	}

	.explain_box img {
		width: 47px;
	}

	.explain_box p {
		font-size: 14px;
	}
}

/**
 * ED : ========== explain_box ==========
 */


/**
 * ST : ========== share ==========
 */

.share_inner {
	position: absolute;
	top:55px;
	right:0;
	z-index:1;
}

.share_box {
	display:inline-flex;
	gap:13px;
}

.share_box button {
	width:35px;
	height:35px;
	border-radius: 50%;
}

.share_box button.link_copy_btn {
	display: inline-flex;
    justify-content: center;
    align-items: center;
	background-color: #f87418;
	font-size: 17px;
	color:#fff
}

.share_box button img {
	width: 35px;
}

@media screen and (max-width: 768px) {
	.share_inner {
		position:static;
		padding-top:15px;
		margin-bottom: 10px;
		text-align:right
	}

	.share_box {
		gap:8px
	}

	.share_box button {
		width:25px;
		height:25px;
	}
	
	.share_box button.link_copy_btn {
		font-size: 14px;
	}
	
	.share_box button img {
		width: 25px;
	}
}

/**
 * ED : ========== share ==========
 */


/**
 * ST : ========== 怨좉컼吏��먯꽱�� ==========
 */

.center_area {
	display: flex;
	justify-content:center;
	gap:70px;
	padding: 30px;
    border-top: 2px solid #494949;
    border-bottom: 1px solid #e2e2e2;
}

.center_img img {
	max-width: 280px;
}

.center_info {
	width: 500px;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
}

.center_info ul {
	border-top: 1px solid #e2e2e2;
}

.center_info ul li {
	padding: 15px;
	border-bottom: 1px solid #e2e2e2;
}

.center_info ul li dl {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.center_info ul li dl dt {
	display:flex;
	align-items: center;
	gap: 3px;
	font-size: 18px;
	font-weight: 700;
}

.center_info ul li dl dt span {
	padding-top: 2px;
	font-size: 20px;
	letter-spacing: -1px;
}

.center_info ul li dl dd a {
	display:flex;
	justify-content:center;
	align-items: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: #f5f5f7;
}

.center_info ul li dl dd img {
	width:20px;
}

.center_ars > div {
	display: flex;
	align-items:center;
	gap: 20px;
	padding: 20px;
	border-radius: 20px;
	background-color:#f5f6f8
}

.center_ars > div img {
	width: 55px;
}

.center_ars > div p {
	font-size: 20px;
}

.center_ars > div h3 {
	font-size: 18px;
}

.center_ars > p {
	margin-top:10px;
	font-size:16px;
	color: #666;
}

@media screen and (max-width: 768px) {
	.center_area {
		flex-direction: column;
		gap: 30px;
		padding:0;
		border: none;
	}

	.center_img {
		text-align: center;
	}

	.center_info {
		width: auto;
	}

	.center_info ul {
		width: 100%;
	}

	.center_info ul li {
		padding: 15px 5px;
	}

	.center_info ul li dl {
		gap:0;
		justify-content: space-between;
	}

	.center_info ul li dl dt {
		font-size: 16px;
		letter-spacing: -1.5px;
	}

	.center_info ul li dl dt span{
		font-size: 18px;
		padding-top:0;
	}

	.center_info ul li dl dd img {
		width:16px;
	}

	.center_ars > div {
		gap: 15px;
		padding: 15px;
		justify-content: center;
	}

	.center_ars > div img {
		width: 45px;
	}

	.center_ars > div p {
		font-size: 18px;
	}

	.center_ars > div h3 {
		font-size: 16px;
	}

	.center_ars > p {
		margin-top:10px;
		font-size:14px;
		text-align: center;
	}
}

/**
 * ED : ========== 怨좉컼吏��먯꽱�� ==========
 */


/**
 * ST : ========== bo_card_list ==========
 */

.bo_card_inner {
	border-top: 2px solid #000;
}

.bo_card_list li {
	padding: 30px 10px;
	border-bottom: 1px solid #ddd;
}

.bo_card_list li.bo_empty {
	padding:50px 10px;
	text-align:center
}

.bo_card_list li.bo_empty h3 {
	font-size:18px
}

.bo_card_list dl {
	display:flex;
	gap:25px
}

.bo_card_list dt {
	position:relative;
	display:flex;
	justify-content:center;
	align-items:center;
	width: 420px;
	height: 139px;
	border-radius: 5px;
	overflow: hidden;
}

.bo_card_list dt .event_close {
	position:absolute;
	top:0;
	bottom:0;
	left:0;
	right:0;
	display: flex;
    justify-content: center;
    align-items: center;
	background-color: rgba(0,0,0,0.5);
}

.bo_card_list dt .event_close h3 {
	font-size:24px;
	color:#fff
}

.bo_card_list dt img {
	max-width:100%;
	max-height:100%
}

.bo_card_list dd {
	display:flex;
	flex-direction:column;
	flex:1;
	padding:5px 0
}

.bo_card_list dd h3 {
	margin-top: 10px;
	font-size:20px;
}

.bo_card_list li a:hover dd h3 {
	text-decoration: underline;
}

.bo_card_list dd p {
	font-weight: 600;
}

.bo_card_list dd span {
	margin-top: 30px;
	color: #666;
}

@media screen and (max-width: 768px) {
	.bo_card_inner {
		border-top: 0;
		background-color: #f6f7f9;
		margin: 0 -20px;
    	padding: 0px 20px 50px 20px;
		border-bottom: 7px solid #efefef;
	}

	.bo_card_list li {
		padding: 0;
		border-bottom: none;
	}

	.bo_card_list li:not(:first-child) {
		padding-top: 35px;
	}

	.bo_card_list li.bo_empty {
		padding:40px 10px;
		background-color:#fff;
		box-shadow: 0px 1px 6px rgba(0,0,0,0.1);
		border-radius:5px
	}

	.bo_card_list li.bo_empty h3 {
		font-size:16px
	}

	.bo_card_list dl {
		flex-direction: column;
		gap:20px;
		box-shadow: 0px 1px 6px rgba(0,0,0,0.1);
		background-color: #fff;
		border-radius: 5px 5px 0 0;
	}

	.bo_card_list dt {
		width: 100%;
		height: auto;
    	min-height: 105px;
	}

	.bo_card_list dt .event_close h3 {
		font-size:22px;
	}

	.bo_card_list dd {
		display:flex;
		flex-direction:column;
		padding:0 20px;
	}

	.bo_card_list dd h3 {
		margin-top: 8px;
		font-size:16px;
	}

	.bo_card_list dd span {
		margin: 18px 0;
	}
}

/**
 * ED : ========== bo_card_list ==========
 */


/**
 * ST : ========== type_list ==========
 */

.type_list {
	display:flex;
	border-top:2px solid #494949;
	border-bottom:1px solid #e2e2e2;
}

.type_list li {
	flex: 1;
	position:relative;
	padding: 40px 30px;
}

.type_list li:not(:last-child):after {
	content:'';
	position:absolute;
	top:30px;
	bottom:30px;
	right:0;
	width:1px;
	background-color:#e2e2e2;
}

.type_list li dt h3 {
	margin-top:18px;
	font-size:20px;
}

.type_list li dd {
	display:flex;
	align-items:center;
	gap:10px;
	color:#333;
}

.type_list li dd div {
	display:flex;
	justify-content:center;
	align-items:center;
	width:23px;
	height:23px
}

@media screen and (max-width: 768px) {
	.type_list li {
		flex: 1;
		position:relative;
		padding:20px 0;
	}

	.type_list li:not(:last-child):after {
		top: 22px;
		bottom: 22px;
	}

	.type_list li dd {
		flex-direction: column;
		word-break: break-all;
	}

	.type_list li dt h3 {
		margin-top:5px;
		text-align:center;
		font-size: 18px;
	}

	.type_list li dt h3 span {
		display:block;
		margin-top:-3px;
		font-size:14px;
		font-weight:400;
		color:#666
	}
}

/**
 * ED : ========== type_list ==========
 */


/**
 * ST : ========== accordion_list ==========
 */

.accordion_list {
	border-top:2px solid #494949;
}

.accordion_list > li {
	transition:all 0.3s;
	border-bottom:1px solid #e2e2e2;
}

.accordion_list.v3 > li:not(last-child) {
	margin-bottom:28px
}

.accordion_list.v3 > li.on {
	margin-bottom:0
}

.accordion_list .question {
	position:relative;
	display:flex;
	width:100%;
	padding:30px 25px;
	text-align:left;
	color: #000;
}

.accordion_list .question h3 {
	padding-right:50px;
	font-size: 20px;
}

.accordion_list.v3 .question h3 {
	padding-right:0
}

.accordion_list .question span.num {
	display:inline-block;
	width: 30px;
	height:30px;
	line-height: 31px;
	margin-right:15px;
	text-align:center;
	border-radius: 50%;
	font-size: 15px;
	color: #fff;
	background-color: #233259;
	font-weight:500
}

.accordion_list .question span.more {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -48px;
	z-index: 1;
	width: 248px;
	height: 48px;
	margin: 0 auto;
	padding: 3px 0 8px;
	text-align: center;
	background:url(../img/content/overseas/accordion_more_bg.png) no-repeat top;
	color: #666;
}

.accordion_list li.on .question span.more {
	background-image:url(../img/content/overseas/accordion_more_bg_on.png);
	color:#e7280e
}

.accordion_list .question span.more i {
	transition:all 0.3s;
}

.accordion_list li.on .question span.more i {
	transform:rotate(-180deg);
}

.accordion_list .question > i {
	position:absolute;
	top:50%;
	right:25px;
	margin-top:-15px;
	font-size:30px;
	transition:all 0.3s;
	color: #999;
}

.accordion_list li.on .question > i {
	transform:rotate(-180deg);
	color:#333;
}

.accordion_list .answer {
	display:none;
	flex-direction:column;
	gap:10px;
	padding:30px 25px;
	background-color: #edeff3;
	color: #333;
}

.accordion_list.v2 .answer {
	padding:30px 25px 30px 70px;
}

.accordion_list.v3 .answer {
	border-top:1px solid #e4e4e4;
	padding:66px 25px 66px
}

.accordion_box:not(:first-child) {
	margin-top:20px
}

.accordion_box.v2:not(:first-child) {
	margin-top:30px
}

.accordion_title.v1,
.accordion_title.v2 {
	position:relative;
	margin-bottom:5px;
	padding-left:12px;
	font-size:18px
}

.accordion_title.v2 {
	margin-bottom:10px
}

.accordion_title.v1:before,
.accordion_title.v2:before {
	content:'';
	position:absolute;
	top:12px;
	left:0;
	width:3px;
	height:3px;
	border-radius:50%;
	background-color:#333
}

.accordion_title.v3 {
	margin-bottom:10px;
	font-size:16px
}

.accordion_title.v4 {
	margin-bottom:10px;
	font-size:18px;
	font-weight:400
}

.accordion_title.v5 {
	margin-bottom:10px;
	font-size:20px;
}

.accordion_indent.v1 {
	margin-left:12px
}

.accordion_ul_list {
	display:flex;
	flex-direction:column;
	gap:8px;
}

.accordion_ul_list.v2 {
	gap: 15px;
}

.accordion_invest {
	padding:15px 20px;
	border:1px solid #d6d7db;
	border-radius:10px
}

.accordion_invest h3 {
	padding-bottom:10px;
	margin-bottom:10px;
	border-bottom:1px solid #d6d7db;
	font-size:20px
}

.accordion_invest ul {
	display: flex;
    flex-direction: column;
    gap: 7px;
	font-size:14px;
	color:#666
}

.accordion_list .answer .tab_type3 {
	margin-bottom:40px
}

.accordion_step {
	display:flex;
	flex-wrap: wrap;
	gap:50px
}

.accordion_step li {
	position:relative;
	text-align:center
}

.accordion_step li:not(:last-child):after {
	content:"\f105";
	position:absolute;
	top:19px;
	right:-31px;
	font-family: 'FontAwesome';
	font-size:30px;
	color:#666
}

.accordion_step dl {
	min-width:100px;
}

.accordion_step dt {
	display:inline-flex;
	justify-content:center;
	align-items:center;
	width:90px;
	height:90px;
	background-color:#fff;
	border-radius:50%;
	margin-bottom:15px
}

.accordion_step dd span {
	display:inline-block;
	padding:2px 13px 1px;
	margin-bottom:6px;
	background-color:#444c73;
	border-radius:25px;
	color:#fff
}

.accordion_step dd p {
	font-size:18px
}

@media screen and (max-width: 768px) {
	.accordion_list .question {
		padding: 20px 0px;
	}

	.accordion_list .question h3 {
		padding-right: 20px;
		font-size: 16px;
	}

	.accordion_list .question > i {
		margin-top: -12.5px;
		right:0;
		font-size:25px
	}

	.accordion_list .question span.num {
		width: 24px;
		height: 24px;
		line-height: 25px;
		margin-right: 10px;
		font-size: 12px;
	}

	.accordion_list .question span.more {
		width: 160px;
		background-size: 160px 40px;
	}

	.accordion_list .answer {
		padding: 15px;
		font-size:16px;
	}

	.accordion_list.v3 .answer {
		padding: 60px 15px 30px;
	}

	.accordion_list .answer .table {
		font-size:14px
	}

	.accordion_list .answer .table .text_indent.v1 {
		padding-left:9px;
		text-indent:-9px;
	}
	
	.accordion_list .answer .table .text_indent.v4 {
		padding-left:16px;
		text-indent:-16px;
	}
	
	.accordion_list .answer .table .text_indent.v8 {
		padding-left:15px;
		text-indent:-15px;
	}
	
	.accordion_list .answer .table .text_indent.v10 {
		padding-left:11px;
		text-indent:-11px;
	}
	
	.accordion_list .answer .table .text_indent.v12 {
		padding-left:6px;
		text-indent:-6px;
	}

	.accordion_list.v2 .answer {
		padding: 15px;
	}

	.accordion_title.v1,
	.accordion_title.v2 {
		margin-bottom: 2px;
		padding-left: 10px;
		font-size: 16px;
	}

	.accordion_title.v2 {
		margin-bottom:5px
	}

	.accordion_title.v1:before,
	.accordion_title.v2:before {
		top:10px;
	}

	.accordion_title.v4 {
		font-size:16px
	}

	.accordion_title.v5 {
		font-size:18px
	}

	.accordion_box:not(:first-child) {
		margin-top: 15px;
	}

	.accordion_box .btns.v1 {
		height:50px;
		font-size:14px
	}

	.accordion_invest {
		padding:10px 15px
	}

	.accordion_invest h3 {
		font-size:18px
	}

	.accordion_list .answer .tab_type3 {
		margin-bottom:25px
	}

	.accordion_list .answer .tab_type3 .tab_title {
		flex:1;
		min-width:auto
	}

	.accordion_step {
		gap:8px
	}

	.accordion_step li:not(:last-child):after {
		top:13px;
		right:-9px;
		font-size:23px;
	}

	.accordion_step dl {
		min-width:90px;
	}

	.accordion_step dt {
		width:65px;
		height:65px;
	}

	.accordion_step dd span {
		padding: 2px 10px 1px;
		font-size: 14px;
	}

	.accordion_step dd p {
		font-size:16px
	}
}

/**
 * ED : ========== accordion_list ==========
 */


/**
 * ST : ========== 二쇱슂 諛쒖옄痍� ==========
 */

.history_list {
	padding: 0 20px;
}

.history_list > li:not(:last-child) {
	position:relative;
	padding-bottom:35px
}

.history_list > li:not(:last-child):after {
	content:'';
	position:absolute;
	top: 20px;
    bottom: -20px;
	left:91px;
	z-index:-1;
	width:1px;
	background-color:#e2e2e2
}

.history_list dl {
	display:flex;
}

.history_list dt {
	position:relative;
	min-width:100px;
	padding-right:17px;
	font-size: 24px;
	font-weight: 700;
}

.history_list dt:after {
	content:'';
	position:absolute;
	top:9px;
	right:0;
	width: 5px;
    height: 5px;
	border:6px solid #f7d3b9;
	background-color:#f87418;
	border-radius:50%;
}

.history_list dd {
	display: flex;
    flex-direction: column;
    gap: 10px;
	margin-left:35px;
	padding-top:7px;
	color: #333;
}

.history_list dd > p {
	position:relative;
	padding-left:10px;
	font-size: 16px;
}

.history_list dd > p:before {
	content:'';
	position:absolute;
	top:9px;
	left:0;
	width:3px;
	height:3px;
	background-color:#333;
	border-radius:50%;
}

.history_list dd > ul {
	display: flex;
    flex-direction: column;
    gap: 10px;
	margin-left:10px;
	font-size:14px;
	color:#666
}

@media screen and (max-width: 768px) {
	.history_list > li:not(:last-child):after {
		left: 81px;
	}
	
	.history_list dt {
		min-width: 90px;
	}

	.history_list dd {
		margin-left:15px;
	}
}

/**
 * ED : ========== 二쇱슂 諛쒖옄痍� ==========
 */


/**
 * ST : ========== �좎쓽�ы빆 ==========
 */

.invest_area {
	margin-top:85px;
}

.invest_noti {
	border:1px solid #e2e2e2;
	border-radius:7px
}

.invest_noti > button {
	position:relative;
	display:flex;
	align-items:center;
	width:100%;
	padding:22px 25px;
	color: #000;
	font-weight:700
}

.invest_noti > button span {
	width:22px;
	height:22px;
	line-height:23px;
	margin-right:12px;
	text-align:center;
	border-radius:50%;
	background-color:#e7280e;
	font-size:13px;
	color:#fff;
}

.invest_noti > button i {
	position:absolute;
	top:50%;
	right:25px;
	width: 30px;
    height: 30px;
	line-height:27px;
	margin-top:-15px;
	font-size:30px;
	transition:all 0.3s;
	color:#333
}

.invest_noti > button.active i {
	transform:rotate(180deg)
}

.invest_noti ul {
	margin:0 25px 22px;
	padding-top:22px;
	border-top:1px solid #e2e2e2;
	color:#666
}

.invest_noti ul li {
	position:relative;
	margin-top:10px;
	padding-left:10px;
	font-size:14px
}

.invest_noti ul li:first-child {
	margin-top:0
}

.invest_noti ul li:before {
	content:'·';
	position:absolute;
	top:0;
	left:0
}

.invest_noti ul li.button:before {
	content:'';
}

.invest_area .keyword {
	display:block;
	margin-top:10px;
	font-size:14px;
	color:#666
}

.invest_area .directNum {
	margin-top:-40px;
}

.invest_noti .tit_noti {
	color: #222;
}
.invest_noti .tit_noti:before {
	content:'' !important;
}

@media screen and (max-width: 768px) {
	.invest_area {
		margin-top:40px;
	}

	.invest_noti > button {
		padding:15px 20px;
		font-size:16px
	}

	.invest_noti > button i {
		right:20px;
		width: 24px;
		height: 24px;
		line-height:21px;
		margin-top:-12px;
		font-size:24px;
		transform:rotate(180deg)
	}

	.invest_noti > button.active i {
		transform:rotate(0deg);
	}

	.invest_noti ul {
		display:none;
		padding-top:20px;
		margin:0 20px 20px
	}

	.invest_noti ul li {
		word-break: break-all;
	}

	.invest_noti ul li br {
		display:none;
	}

	.invest_area .keyword {
		font-size:12px
	}
	
	.invest_area .directNum {
		margin-top:-50px;
	}
}

/**
 * ED : ========== �좎쓽�ы빆 ==========
 */
 

/**
 * ST : ========== 寃뚯떆�� ==========
 */

/* 寃��� */
.bo_search {
	display:flex;
	justify-content:center;
	align-items: center;
	gap:10px;
	margin-bottom:35px;
	padding:25px 10px;
	background-color:#f0f5fb
}

.bo_search div {
	position:relative
}

.bo_search div input {
	width: 290px;
    height: 46px;
    line-height: 46px;
    padding: 0 38px 0 16px;
    border:1px solid #e2e2e2;
    border-radius: 6px;
}

.bo_search div button {
	position:absolute;
	top:50%;
	right:5px;
	width:30px;
	height:30px;
	margin-top:-15px;
	border-radius:50%;
	color:#333
}

.bo_search div button:hover {
	background-color:#fff8f6;
}

/* 寃��� selectbox */
.ui-selectmenu-button {
	position:relative;
	width: 150px;
	height: 46px;
	line-height: 44px;
	padding: 0 16px;
    border:1px solid #e2e2e2;
    border-radius: 6px;
	background-color:#fff;
	cursor:pointer
}

.ui-selectmenu-button:hover {
	border: 1px solid #000;
}

.ui-selectmenu-button-open {
	border: 1px solid #000;
	text-decoration: underline;
} 

.ui-selectmenu-button:after {
	content:'';
	position:absolute;
	top:17px;
	right:16px;
	width:12px;
	height:8px;
	background: url(../img/common/ico_select.svg) no-repeat center/12px;
	transition:all 0.3s
}

.ui-selectmenu-button-open:after {
	transform: rotate(-180deg);
}

.ui-selectmenu-menu {
	position: absolute;
	top: 0;
	left: 0;
	height: 0;
	opacity: 0;
	overflow:hidden;
	transition: opacity 0.8s, height 0.4s, transform 0.5s;
}

.ui-selectmenu-open {
	height: 104px;
	opacity: 1;
	transform: translateY(6px);
}

.ui-selectmenu-menu ul {
	padding:5px 15px;
	border-radius:6px;
	border: 1px solid #e2e2e2;
	background-color:#fff;
	transition:all 0.3s
} 

.ui-selectmenu-menu ul li {
	margin:5px 0;
	color:#666;
	cursor:pointer
}

.ui-selectmenu-menu ul li:hover {
	text-decoration:underline;
	color:#000
}

/* list */
.bo_table_list {
	table-layout: fixed;
	border-top: 2px solid #000; 
}

.bo_table_list tr {
	border-bottom: 1px solid #e2e2e2;
}

.bo_table_list tbody tr:hover {
	background-color: #fff8f6;
}

.bo_table_list th {
	background-color: #f5f6f8;
	padding: 22px 15px;
	text-align: center;
}

.bo_table_list td {
	color: #333;
	font-size: 18px;
	padding: 22px 15px;
	text-align: center;
}

.bo_table_list td.subject {
	text-align: left;
}

.bo_table_list td.subject a {
	display:block;
    max-width:100%;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
} 

.bo_table_list td.file a img {
	width:18px
}

.bo_table_list td.date {
	font-size:16px
}

/* pagenation */
.pagenation {
    display:flex;
    justify-content:center;
    gap:13px;
	margin-top:40px
}

.pg_page {
	width:30px;
    height:30px;
    line-height:30px;
	font-size:20px;
	color:#ccc;
    text-align:center;
    border-radius:50%
}

.pg_page.prev {
	margin-right:10px
}

.pg_page.next {
	margin-left:10px
}

.pg_page.next i,
.pg_page.last i{
	padding-left:3px
}

.pg_page:hover {
	background-color:#fff8f6;
	color:#000
}

.pg_page.disabled:hover {
	background-color:#fff;
	color:#ccc
}

.pg_num {
	display: inline-block;
	width:30px;
    height:30px;
    line-height:30px;
	text-align:center;
	border-radius:50%;
}

.pg_num:hover {
	background-color:#fff8f6;
	text-decoration:underline;
}

.pg_num.pg_current {
	background-color:#e7280e;
	color:#fff;
	text-decoration:none;
	font-weight:500
}

/*寃뚯떆�� �곸꽭*/
.bo_v_top {
	padding: 25px 40px;
	border-top: 2px solid #000;
	border-bottom: 1px solid #e2e2e2;
}

.bo_v_tit {
	display:flex;
	justify-content:space-between;
	align-items:center;
}

.bo_v_tit h3 {
	flex:1;
	padding-right:30px;
	font-size:24px
}

.bo_v_file {
	display:flex;
	flex-wrap:wrap;
	align-items:baseline;
	gap:20px;
	margin-top:20px;
}

.bo_v_file ul {
	flex:1;
	display:flex;
	flex-wrap:wrap;
	gap:10px
}

.bo_v_file ul li a {
	display:inline-block;
	padding:5px 10px;
	border-radius:5px;
	background-color:#f5f6f8;
	font-size:14px
}

.bo_v_file ul li a img {
	width:18px;
	margin-right:5px;
}

.bo_v_cont {
	padding: 35px 40px 55px;
	border-bottom: 1px solid #e2e2e2;
	color: #333;
}

.bo_v_cont * {
	font-family: 'Montserrat', 'Pretendard' !important;
}

.bo_v_cont iframe {
	display:block;
	width: 750px;
	margin:0 auto;
	border:0
}

.bo_v_cont img {
	width:auto;
	max-width: 100%;
}	

.bo_v_move {
	display: flex;
	margin-top: 50px;
	padding: 20px 70px;
	border-top: 1px solid #c6c6c6;
	border-bottom: 1px solid #e2e2e2;
}

.bo_v_move li {
	width:50%;
	position: relative;
}

.bo_v_move li.prev {
	padding-right: 20px;
}

.bo_v_move li.next {
	padding-left: 20px;
	text-align: right;
}

.bo_v_move li.next::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 1px;
	background-color: #e2e2e2;
}

.bo_v_move li i {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	font-size: 30px;
	color: #ccc;
}

.bo_v_move li.prev i  {
	left: -30px;
}

.bo_v_move li.next i  {
	right: -30px;
}

.bo_v_move li a:hover i {
	color: #e7280e;
}

.bo_v_move li span {
	display: block;
	font-size: 14px;
	color: #333;
}

.bo_v_move li p {
	margin-top: 10px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	font-size: 18px;
	color: #666
}

.bo_v_move li a:hover p {
	text-decoration: underline;
	color: #e7280e;
}

.bo_v_btn {
	margin-top: 45px;
	display: flex;
	justify-content: center;
	gap:8px
}

.bo_v_btn a {
	min-width: 145px;
	height: 50px;
	line-height: 50px;
	padding:0 10px;
	text-align: center;
	border-radius: 60px;
	background-color: #e7280e;
	color: #fff;
}

@media screen and (max-width: 768px) {
		/* 寃��� */
		.bo_search {
			flex-direction: column;
			margin-bottom: 0;
			padding: 0 0 37px;
			background-color: #fff;
		}
	
		.bo_search div {
			width: 100%;
		}
	
		.bo_search div input {
			width: 100%;
			font-size: 16px;
		}
	
		.bo_search div button {
			right: 8px;
		}
	
		.bo_search div button i {
			font-size: 16px;
		}
	
		/* 寃��� selectbox */
		.ui-selectmenu-button {
			width: 100%;
			font-size:16px
		}
	
		/* list */
		.bo_table_list {
			position:relative;
			border-top: none;
		}
	
		.bo_table_list::before {
			content: "";
			position: absolute;
			top:-7px;
			left:-20px;
			right: -20px;
			height: 7px;
			background-color: #efefef;
		}
	
		.bo_table_list colgroup {
			display: none;
		}
		
		.bo_table_list tr {
			display: block;
			padding: 22px 0;
		}
	
		.bo_table_list thead {
			display: none;
		}
	
		.bo_table_list tbody tr {
			position:relative
		}
		
		.bo_table_list tbody tr:hover {
			background-color: transparent;
		}
	
		.bo_table_list td {
			display: block;
			padding: 0;
			text-align: left;
		} 
	
		.bo_table_list td.bo_empty {
			text-align:center;
			font-size:16px
		}
	
		.bo_table_list td.num {
			display: none;
		}
	
		.bo_table_list td.file {
			display: inline-block;
		}

		.bo_table_list td.file a {
			position:relative;
			display: flex;
			align-items: center;
			gap: 7px;
			margin-left:11px;
			padding-left:11px;
			color: #333;
			font-size:14px;
		}

		.bo_table_list td.file a:before {
			content: "";
			position: absolute;
			top: 4px;
			left: 2px;
			width: 1px;
			height: 12px;
			background-color: #ccc;
		}
	
		.bo_table_list td.file a img {
			width: 14px;
		}
	
		.bo_table_list td.date {
			display: inline-block;
			line-height: 27px;
			font-size: 14px;
			color: #666;
		}
	
		.bo_table_list td.subject a {
			font-size:16px;
			color: #333;
		}
	
		/* pagenation */
		.pagenation {
			gap: 6px;
			margin-top:30px
		}
	
		.pg_page.prev {
			margin-right:2px
		}
	
		.pg_page.next {
			margin-left:2px;
		}
	
		/* 寃뚯떆�� �곸꽭 */
		.bo_v_top {
			padding: 20px 0;
		}
	
		.bo_v_tit {
			flex-direction: column;
			align-items:flex-start;
			gap: 12px;
		}
	
		.bo_v_tit h3 {
			padding-right: 0;
			font-size: 22px;
			line-height: 1.3;
		}
	
		.bo_v_tit p {
			color: #666;
		}
	
		.bo_v_file {
			margin-top: 12px;
			flex-direction: column;
			gap: 0;
		}
	
		.bo_v_file span {
			font-size:16px
		}
	
		.bo_v_file ul {
			width: 100%;
			margin-top:10px
		}
	
		.bo_v_file ul li {
			width: 100%;
		}
	
		.bo_v_file ul li a img {
			width: 16px;
		}
	
		.bo_v_file ul li a {
			width: 100%;
			color: #666;
		}
	
		.bo_v_cont {
			padding: 30px 0 40px;
			font-size:16px
		}

		.bo_v_cont iframe {
			width:100%
		}
	
		.bo_v_move {
			flex-direction: column;
			padding: 0;
			border-top: 1px solid #8a8a8a;
			margin-top: 30px;
		}
	
		.bo_v_move li {
			width: 100%;
		}
	
		.bo_v_move li span {
			display: inline-block;
			width: 60px;
			font-size: 16px;
			vertical-align: middle;
		}
	
		.bo_v_move li p {
			display: inline-block;
			width: calc(100% -  85px);
			margin-top: 0;
			font-size: 16px;
			vertical-align: middle;
		}
	
		.bo_v_move li i {
			right: 8px;
			font-size: 20px;
		}
	
		.bo_v_move li.prev span,
		.bo_v_move li.prev p {
			color: #999;
		}
	
		.bo_v_move li.prev,
		.bo_v_move li.next{
			text-align: left;
			padding: 13px 0;
		}
	
		.bo_v_move li.next::after {
			width: 100%;
			height: 1px;
		}
	
		.bo_v_move li.prev i {
			left: auto;
			transform: translateY(-50%) rotate(180deg);
		}
	
		.bo_v_move li.next i {
			right: 8px;
			color: #333;
		}
	
		.bo_v_btn {
			margin-top: 30px;
		}
	
		.bo_v_btn a {
			height: 47px;
			line-height: 47px;
			font-size: 18px;
		}
}

/**
 * ED : ========== 寃뚯떆�� ==========
 */


/**
 * ST : ========== precaution ==========
 */

.precaution h3 {
	margin-bottom:26px;
	padding: 35px 30px;
	background-color:#fff8f6;
	font-size: 16px;
	border-radius:10px;
}

.precaution ul li {
	position: relative;
	margin-top: 10px;
	padding-left:10px;
	color: #333;
}

.precaution ul li:first-child {
	margin-top: 0;
}

.precaution ul li:before {
	content:'.';
	position:absolute;
	top:-4px;
	left:0
}

@media screen and (max-width: 768px) {
	.precaution h3 {
		padding: 20px;
		font-size: 16px;
	}

	.precaution ul li {
		font-size:16px;
	}
}

/**
 * ED : ========== precaution ==========
 */


/**
 * ST : ========== 由щ뵫 利앷텒�� ==========
 */

.overview_list1 {
	display:flex;
	border-top:2px solid #494949;
	border-bottom:1px solid #e2e2e2;
}

.overview_list1 li {
	flex:1;
	position:relative;
	padding:40px;
	text-align:center;
	background-color:#fff
}

.overview_list1 li:not(:last-child):after {
	content:'';
	position:absolute;
	top:30px;
	bottom:30px;
	right:0;
	width:1px;
	background-color:#e2e2e2;
}

.overview_list1 li h4 {
	margin-bottom:5px;
	font-size:20px;
	font-weight:normal;
	color:#666
}

.overview_list1 li div {
	display:inline-flex;
	align-items:baseline
}

.overview_list1 li div h1 {
	display:flex;
	flex-direction: row-reverse;
	line-height:1;
	font-size:55px;
	font-weight:800;
	color: #e7280e;
}

.overview_list1 li div h1.count_num1 {
	width: 40px;
}

.overview_list1 li div h1.count_num2 {
	width: 148px;
}

.overview_list1 li div h1.count_num3 {
	width: 145px;
}

.overview_list1 li div h1 span {
	font-size:45px
}

.overview_list1 li div strong {
	margin-right:15px;
	font-weight:600;
	font-size:28px
}

.overview_list1 li div strong:last-child {
	margin-right:0
}

.overview_list2 {
	display:flex;
	flex-wrap:wrap;
	gap: 20px;
	margin-top:40px;
}

.overview_list2 li {
	width:calc((100% - 40px)/3);
	height:270px;
	padding:59px 0 0;
	text-align:center;
	background-color:#fff;
	border-radius: 10px;
}

.overview_list2 li:nth-child(n+4) {
	width: calc((100% - 20px)/2);
}

.overview_list2 li p {
	margin-top:35px;
	font-size:18px;
	color:#333
}

.overview_list2 li h3 {
	margin-top:10px;
	line-height:1.3;
	font-size:20px
}

@media screen and (max-width: 768px) {
	.overview_list1 li {
		padding:20px 12px;
	}

	.overview_list1 li:not(:last-child):after {
		top: 20px;
		bottom: 20px;
	}

	.overview_list1 li h4 {
		font-size: 18px;
	}

	.overview_list1 li div h1 {
		font-size: 28px;
	}

	.overview_list1 li div h1.count_num1 {
		width: 20px;
	}
	
	.overview_list1 li div h1.count_num2 {
		width: 74px;
	}
	
	.overview_list1 li div h1.count_num3 {
		width: 74px;
	}

	.overview_list1 li div strong {
		margin-right: 6px;
		font-size:16px
	}

	.overview_list2 {
		gap: 10px;
	}

	.overview_list2 li {
		width: calc((100% - 10px)/2);
		height: auto;
		padding: 30px 0;
	}

	.overview_list2 li:last-child {
		width: 100%;
	}

	.overview_list2 li img {
		height: 43px;
	}

	.overview_list2 li:first-child img {
		margin-left: 5px;
	}

	.overview_list2 li:nth-child(2) img {
		margin-right: 4px;
	}

	.overview_list2 li:last-child img {
		margin-left: 5px;
	}

	.overview_list2 li p {
		margin-top: 20px;
		font-size: 16px;
	}

	.overview_list2 li h3 {
		line-height:1.5;
		margin-top: 4px;
		font-size: 18px;
	}
}

/**
 * ED : ========== 由щ뵫 利앷텒�� ==========
 */


/**
 * ST : ========== popup ==========
 */

.popup_area {
	position: fixed;
	top:0;
	bottom:0;
	right:0;
	left:0;
	z-index:5;
	background-color: rgba(0,0,0,0.4);
	visibility: hidden;
	opacity: 0;
	display:flex;
	align-items: center;
	justify-content: center;
}

.popup_cont {
	width: 1100px;
}

.popup_title {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 30px;
	background-color: #233259;
}

.popup_title h3 {
	flex: 1;
	padding-right: 10px;
	font-size: 24px;
	color: #fff;
}

.popup_close {
	position: relative;
	width: 28px;
	height: 28px;
}

.popup_close span {
	position: absolute;
	top:50%;
	left:50%;
	width: 28px;
	height: 2px;
	background-color: #fff;
}

.popup_close span:first-child {
	transform: translate(-50%, -50%) rotate(45deg);
}

.popup_close span:nth-child(2) {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.popup_box {
	padding: 30px 50px;
	background-color: #fff;
	max-height: 550px;
	overflow: auto;
}

.popup_box .root_daum_roughmap {
	width: 100%;
}

.popup_box .way {
    display: flex;
	gap: 10px;
}

.popup_box .way:not(:first-child) {
	margin-top: 6px;
}

.popup_box .way span.num {
	flex: 0 0 22px;
    height: 22px;
    line-height: 23px;
    text-align: center;
    border-radius: 50%;
    font-size: 13px;
    color: #fff;
    background-color: #233259;
}

@media screen and (max-width: 768px) {
	.popup_area {
		display:block;
	}

	.popup_cont {
		width:100%;
		height:100vh;
		background-color:#fff;
	}
	
	.popup_title {
		padding: 15px;
	}
	
	.popup_title h3 {
		font-size: 18px;
	}
	
	.popup_close {
		width: 22px;
		height: 22px;
	}
	
	.popup_close span {
		width: 22px;
	}
	
	.popup_box {
		padding: 15px 15px 75px;
		max-height:calc(100vh - 57px);
		overflow: auto;
	}
}

/**
 * ED : ========== popup ==========
 */


/**
 * ST : ========== �곸뾽�� �덈궡 ==========
 */

.map_area {
	display: flex;
	justify-content: space-between;
	padding: 35px 0 50px;
	border-top: 2px solid #494949;
	border-bottom: 1px solid #e2e2e2;
}

.map_info p {
	margin-bottom:10px;
}

.map_img {
	position: relative;
	border: 1px solid #e2e2e2;
}

.map_tab {
	display:flex;
}

.map_tab button {
	position: absolute;
	padding: 4px 12px;
	font-size: 14px;
	background-color: #e7280e;
	color: #fff;
}

.map_tab button::after {
	content: "";
	position: absolute;
	bottom: -7px;
	left: 50%;
	transform: translate(-50%);
    border-top: 8px solid #e7280e;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 0px solid transparent;
}

.map_tab button:nth-child(2){
	top: 103px;
	left: 183px;
}

.map_tab button:nth-child(3) {
	bottom: 346px;
	right: 164px;
}

.map_tab button:nth-child(4) {
	bottom: 278px;
	right: 117px;
}

.map_area .tab_content_area {
	width: calc(100% - 587px);
}

.map_list {
	border-top: 2px solid #494949;
}

.map_list > li {
	display: flex;
	align-items: center;
	justify-content: space-between;
    padding: 15px;
    border-bottom: 1px solid #e2e2e2;
}

.map_list dl {
	flex:1;
    padding-right:15px;
}

.map_list dt {
	margin-bottom:6px;
	font-size: 18px;
	font-weight: 700;
}

.map_list dd p {
	margin-bottom:5px;
}

@media screen and (max-width: 768px) {
	.map_area {
		flex-direction: column;
		padding:0;
		border:0
	}

	.map_info {
		position:sticky;
		top:60px;
		z-index:1
	}
	
	.map_img {
		border:0
	}

	.map_tab:after {
		content: "";
		position: absolute;
		left: 50%;
		top: 46px;
		transform: translateX(-50%);
		width: calc(100% + 40px);
		height: 1px;
		background-color: #e7e7e7;
	}
	
	.map_tab button {
		flex:1;
		position: relative;
		height: 47px;
		line-height: 47px;
		padding: 3px 0 0; 
		font-size: 16px;
		background-color: #fff;
		color: #000;
	}

	.map_tab button:nth-child(2){
		top: 0;
		left: 0;
	}
	
	.map_tab button:nth-child(3) {
		bottom: 0;
		right: 0;
	}
	
	.map_tab button:nth-child(4) {
		bottom: 0;
		right: 0;
	}

	.map_tab button.on {
		z-index: 1;
		font-weight: 700;
	}
	
	.map_tab button::after {
		bottom:0;
		left:0;
		right:0;
		height: 2px;
		background-color:#000;
		border:0;
		transform: none;
		opacity: 0;
	}

	.map_tab button.on::after {
		opacity: 1;
	}
	
	.map_area .tab_content_area {
		width:100%;
		margin-top:35px;
	}
	
	.map_list > li {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 15px;
		border-bottom: 1px solid #e2e2e2;
	}
	
	.map_list dd {
		font-size: 16px;
	}
}

/**
 * ED : ========== �곸뾽�� �덈궡 ==========
 */


/**
 * ST : ========== 媛쒖씤�뺣낫泥섎━諛⑹묠 ==========
 */

.priv_box {
	margin-bottom: 45px;
	padding: 20px;
	background-color: #f5f6f8;
}

.priv_box p:not(:first-child) {
	margin-top: 10px;
}

.priv_box p {
	position: relative;
	padding-left: 12px;
}

.priv_box p::before {
	content: "";
	position: absolute;
	top: 9px;
	left: 0;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background-color: #000;
}

.priv_list {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.priv_list li {
	width: calc((100% - 100px)/6);
	text-align: center;
	border: 1px solid #e2e2e2;
	border-radius: 10px;
}

.priv_list dl {
	padding: 25px 10px;
}

.priv_list dt {
	display:flex;
	justify-content: center;
	align-items: center;
	height:90px;
}

.priv_list dt img {
	width: 70px;
}

.priv_list dd h3 {
	margin-top:16px;
	font-size: 16px;
}

@media screen and (max-width: 768px) {
	.priv_box {
		margin: 35px 0;
	}

	.priv_list {
		gap: 10px;
	}
	
	.priv_list li {
		width: calc((100% - 30px)/4);
	}
	
	.priv_list dl {
		padding: 13px 10px;
	}
	
	.priv_list dt {
		height:40px;
	}
	
	.priv_list dt img {
		width: 35px;
	}
	
	.priv_list dd h3 {
		line-height:1.3;
		margin-top:11px;
		font-size: 12px;
	}
}

/**
 * ED : ========== 媛쒖씤�뺣낫泥섎━諛⑹묠 ==========
 */


/**
 * ST : ========== step_slide_list ==========
 */

.swiper.step_slide_list {
	padding-top: 20px;
}

.step_slide_list .swiper-wrapper {
	display:inline-flex
}

.step_slide_list .swiper-button-prev,
.step_slide_list .swiper-button-next {
	top:230px;
	margin-top:0;
}

.step_slide_list.v2 .swiper-button-prev,
.step_slide_list.v2 .swiper-button-next {
	top:312px;
}

.step_slide_list .swiper-button-prev:after,
.step_slide_list .swiper-button-next:after {
	color: #999;
}

/* swiper pagination */
.common_swiper_pagination.swiper-pagination { 
	position: static;
	bottom: 0; 
	margin-top:20px
}

.common_swiper_pagination.swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 var(--swiper-pagination-bullet-horizontal-gap,6px);
}

.common_swiper_pagination.swiper-pagination .swiper-pagination-bullet-active {
	background-color: #cc6b65;
}

.step_slide_list dl {
	display:flex;
	flex-direction:column;
	gap:15px;
	text-align:center
}

.step_slide_list dt {
	display:inline-flex;
	justify-content:center;
}

.step_slide_list dt img {
	max-height:527px
}

.step_slide_list dd {
	display: flex;
    flex-direction: column;
	align-items: center;
    gap: 8px;
}

.step_slide_list dd span.step {
	display:inline-block;
	padding:2px 13px 1px;
	margin-bottom:5px;
	background-color:#444c73;
	border-radius:25px;
	color:#fff
}

.step_slide_list dd span.detail_step {
	display: inline-block;
	margin-right: 5px;
	padding: 0 15px;
	border-radius:15px;
	font-size: 18px;
	font-weight: 400;
	background-color: #dedadb;
}

.step_slide_list dd h3 {
	font-size:20px;
}

.step_slide_list dd p {
	font-size:16px;
	color:#333;
}

@media screen and (max-width: 768px) {
	.swiper.step_slide_list {
		padding-top: 10px;
	}

	.step_slide_list .swiper-button-prev,
	.step_slide_list .swiper-button-next {
		top:173px;
	}

	.step_slide_list.v2 .swiper-button-prev,
	.step_slide_list.v2 .swiper-button-next {
		top:246px;
	}
	
	.step_slide_list dl {
		gap:15px;
	}

	.step_slide_list dt img {
		max-height:400px;
	}

	.step_slide_list dd span.step {
		padding:2px 10px 1px;
		font-size:14px
	}

	.step_slide_list dd span.detail_step{
		font-size: 16px;
	}

	.step_slide_list dd h3 {
		font-size:18px;
	}
}

/**
 * ED : ========== step_slide_list ==========
 */


/**
 * ST : ========== character_box_list ==========
 */

.character_box_list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	word-break: keep-all;
}

.character_box_list li {
	width: calc((100% - 30px)/2);
	border: 1px solid #ddd;
	border-radius: 5px;
	padding: 35px 25px;
}

.character_box_list dl {
	display: flex;
	gap:30px;
}

.character_box_list dl dt {
	display: inline-flex;
    justify-content: center;
    align-items: center;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background-color: #fff8f6;
}

.character_box_list dl dd {
	flex:1;
}

.character_box_list dl dd h3 {
	font-size: 20px;
}

.character_box_list dl dd p {
	margin-top: 8px;
	font-size: 16px;
}

@media screen and (max-width: 768px) {
	.character_box_list {
		gap: 20px;
	}

	.character_box_list li {
		width: 100%;
		padding: 22px 12px;
	}

	.character_box_list dl {
		gap:16px;
	}

	.character_box_list dl dt {
		width: 80px;
		height: 80px;
	}

	.character_box_list dl dd h3 {
		font-size: 18px;
	}
	
	.character_box_list dl dd p {
		margin-top: 3px;
	}
}

/**
 * ED : ========== character_box_list ==========
 */


/**
 * ST : ========== img_txt_box ==========
 */

.img_txt_box {
	display: flex;
	align-items: center;
	gap: 65px;
	padding: 40px 100px 40px 60px;
	border: 1px solid #ddd;
	border-radius: 5px;
	word-break: keep-all;
	background-color: #fff;
}

.img_txt_box img {
	width: 285px;
}

@media screen and (max-width: 768px) {
	.img_txt_box {
		border: none;
		flex-direction: column;
		gap: 20px;
		padding: 0;
	}

	.img_txt_box img {
		width: 220px;
	}

	.img_txt_box p {
		font-size:16px;
	}
}

/**
 * ED : ========== img_txt_box ==========
 */


/**
 * ST : ========== video tip ==========
 */

.video_view {
	display:flex;
	justify-content: space-between;
	gap:60px;
	margin-bottom:35px;
 }

.video_view_img {
	width:720px;
	border-radius:15px;
	overflow: hidden;
}

.video_view_img iframe {
	display:block;
	width: 100%;
    height: 405px;
} 

.video_view_txt {
	flex:1;
	display:flex;
	flex-direction: column;
	padding:30px 15px;
	border-top:2px solid #494949;
	border-bottom:1px solid #e2e2e2
}

.video_view_txt h3 {
	font-size:20px;
}

.video_view_txt h2 {
	line-height: 1.3;
    margin: 8px 0 25px;
    font-size: 24px;
}

.video_view_txt p {
	position: relative;
	margin-bottom:10px;
	padding-left:12px
}

.video_view_txt p:last-child {
	margin-bottom:0
}

.video_view_txt p:before {
	content:'';
	position: absolute;
	top:9px;
	left:0;
	width:3px;
	height:3px;
	border-radius: 50%;
	background-color: #000;
}

.video_view_txt a {
	display:flex;
	justify-content: space-between;
	align-items: center;
    width:100%;
    height:54px;
	margin-top:auto;
    color:#fff;
    padding: 0 24px;
    background-color:#e7280e;
    border-radius:10px
}

.video_view_txt a.mo_none {
	display:none
}

.video_view_txt a i {
	margin-top:-2px;
	font-size:20px
}

.video_thumbnail_area {
	padding-top:35px;
	border-top: 1px solid #e2e2e2;
}

.video_thumbnail dt {
	position: relative;
}

.video_thumbnail dt:before {
	content:'';
	position: absolute;
	top:0;
	bottom:0;
	left:0;
	right:0;
	border:3px solid #e7280e;
	border-radius:10px;
	opacity:0
}

.video_thumbnail .swiper-slide.active dt:before {
	opacity: 1;
}

.video_thumbnail dt img {
	width:100%;
	border-radius:10px;
}

.video_thumbnail dd {
	margin-top:10px;
	padding:0 5px;
}

.video_thumbnail .swiper-slide.active dd {
	font-weight:700;
	color:#e7280e
}

.video_thumbnail .swiper-button {
	top: 28px;
	width: 28px;
	height: 28px;
	border-radius:50%;
	background-color: rgba(0,0,0,0.8);
	margin-top:0
}

.video_thumbnail .swiper-button-prev {
	left:0;
}

.video_thumbnail .swiper-button-next {
	right:0;
}

.video_thumbnail .swiper-button:after {
	font-size: 10px;
	color: #fff;
}

@media screen and (max-width: 768px) {
	.video_view {
		flex-direction: column;
		gap:30px;
		margin-bottom:25px;
	 }
	
	.video_view_img {
		width:100%;
	}
	
/* 	.video_view_img iframe {
		height: 50vw;
	}  20231117 LKM 
*/
	
	.video_view_txt {
		padding:23px 15px 25px;
	}
	
	.video_view_txt h3 {
		font-size:18px;
	}
	
	.video_view_txt h2 {
		margin: 8px 0 20px;
		font-size: 22px;
	}
	
	.video_view_txt p {
		margin-bottom:5px;
		font-size:16px;
	}
	
	.video_view_txt a {
		width: 180px;
		height: 45px;
		margin-top: 20px;
		padding: 0 15px;
	}

	.video_view_txt a.mo_none {
		display:flex
	}

	.video_view_txt a.pc_none {
		display:none
	}
	
	.video_view_txt a i {
		font-size:16px
	}
	
	.video_thumbnail_area {
		padding-top:0;
		border-top:0
	}

	.video_thumbnail .swiper-slide {
		width:150px;
	}
}

/**
 * ED : ========== video tip ==========
 */


/**
 * ST : ========== webtoon tip ==========
 */

.webtoon_view {
	padding: 55px 0;
	text-align: center;
	border: 1px solid #e2e2e2;
}

.webtoon_view h3 {
	margin-bottom: 55px;
	font-size: 26px;
}

.webtoon_view img {
	max-width: 690px;
}

.webtoon_view img:not(:nth-of-type(1)) {
	margin-top: 150px;
}

@media screen and (max-width: 768px) {
	.webtoon_view {
		padding: 0 0 35px;
		border: none;
	}

	.webtoon_view h3 {
		margin-bottom: 35px;
		font-size: 18px;
	}

	.webtoon_view img {
		max-width: 100%;
	}

	.webtoon_view img:not(:nth-of-type(1)) {
		margin-top: 100px;
	}
}

/**
 * ED : ========== webtoon tip ==========
 */