@charset "utf-8";

/* ==================================================
	공통사항
================================================== */
.cont_inner {
	width: 100%;
}

.cont_inner2 {
	width: 100%;
}

.img100 {
	width: 100%;
}

.block {
	display: block;
}

.blue {
	color: var(--brand-color-main);
}

.green {
	color: var(--brand-color-dmain);
}

/* 주석 */
.uc {
	margin-top: var(--rem-13);
	text-align: var(--text-ag-right);
}

.uc a {
	font-size: var(--rem-16);
	color: var(--color-black);
}

.ul_disc li {
	position: relative;
	padding-bottom: 0.7rem;
	padding-left: var(--rem-18);
	line-height: 1.4;
}

/* · 리스트 */
.ul_disc li {
	position: relative;
	padding-bottom: 0.7rem;
	padding-left: var(--rem-18);
	line-height: 1.4;
}

.ul_disc li::after {
	content: '';
	position: absolute;
	top: 11px;
	left: 8px;
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: var(--color-gray5);
}

/* - 리스트 */
.ul_dash li {
	position: relative;
	padding-bottom: 0.7rem;
	padding-left: var(--rem-18);
	line-height: 1.4;
}

.ul_dash li::after {
	content: '-';
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 0;
}

/* 1,2,3 리스트 */
.ol_decimal {
	margin-top: var(--rem-13);
	padding-left: var(--rem-18);
	line-height: 1.4;
}

.ol_decimal li {
	position: relative;
	padding-bottom: 0.7rem;
	list-style: decimal;
}

/* 애니메이션 */
.cont_inner {
	opacity: 0;
	transform: translateY(50px)
}

.cont_inner.active {
	opacity: 1;
	transform: translateY(0);
	transition: all 0.7s 0.8s;
	-webkit-transition: all 0.7s 0.8s;
}


/* ① ② 리스트 */
ol.ol_list {
	list-style-type: none;
	counter-reset: item;
	padding-left: 0;
	margin: 5px 0 ;
}

ol.ol_list>li {
	counter-increment: item;
	padding-left: 2rem;
	padding-bottom: 0.8rem;
	line-height: 1.3;
}

ol.ol_list>li::before {
	content: counter(item);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3rem;
	width: 1.5rem;
	height: 1.5rem;
	border-radius: 50%;
	border: 1px solid var(--color-gray5);
	margin-right: 0.5em;
	margin-left: -2rem;
}


.ul_disc ol.ol_list li::after {
	display: none;
}

/* 모바일CSS */
@media screen and (max-width:1023px) {
	.cont_inner2 {
		margin-top: 3rem;
	}
}

@media screen and (max-width:800px) {
	.block {
		display: inline;
	}
}

/* ==================================================
	타이틀
================================================== */
p.b_tit {
	position: relative;
	font-weight: var(--font-sb);
	font-size: var(--rem-26);
}

p.b_tit::after {
	content: '';
	position: absolute;
	top: 6.5px;
	left: -2rem;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #90B80D;
}

/* 모바일CSS */
@media screen and (max-width:1023px) {
	p.b_tit {
		font-size: var(--rem-22);
	}

	p.b_tit::after {
		top: 4.5px;
		left: -2rem;
		width: 8px;
		height: 8px;
	}
}

/* ==================================================
	테이블
================================================== */
.chart01 {
	margin-top: var(--rem-20);
}

.chart01 table {
	width: 100%;
	border-bottom: 1px solid var(--color-gray2);
	text-align: center;
	margin-bottom: 1rem;
}

.chart01 th {
	color: var(--color-black);
}

.chart01 thead th {
	font-weight: var(--font-bd);
	color: var(--color-white);
	background: var(--gradient-02);
}

.chart01 tbody th {
	font-weight: var(--font-rg);
	background: var(--color-gray1);
}

.chart01 tr th:first-child {
	border-left: 0;
}

.chart01 tr th,
.chart01 tr td {
	line-height: 1.35;
	text-align: var(--text-ag-center);
	padding: 1.2rem 0.6rem;
	border-bottom: solid 1px var(--color-gray2);
	vertical-align: middle;
	border-left: solid 1px var(--color-gray2);
}

.chart01 ul {
	text-align: var(--text-ag-left);
	padding: 0.5rem 1.5rem;
}

.chart01 ol {
	text-align: var(--text-ag-left);
	line-height: 1.35;
}

/* 테이블 사이즈 */
.funds_width1 {
	width: 15%;
}

.funds_width2 {
	width: 20%;
}

.funds_width3 {
	width: 25%;
}

.funds_width4 {
	width: 40%;
}

.chart01 .right {
	text-align: right;
	color: var(--brand-color-main);
	font-size: var(--rem-16);
}

/* 모바일CSS */
@media screen and (max-width: 1023px) {
	.chart01 {
		font-size: var(--rem-16);
	}
}

@media screen and (max-width: 800px) {

	.chart01 tr th,
	.chart01 tr td {
		padding: 1.0rem 0.6rem;
	}

	.chart01 ul {
		padding: 0;
	}
}

/* ==================================================
	반응형 테이블 스크롤
================================================== */
.msg_touch_help {
	display: none;
}

/* 모바일CSS */
@media screen and (max-width:720px) {
	.con_table_wrap {
		overflow-x: auto;
	}

	.con_table_wrap {
		position: relative;
	}

	.table_scroll {
		width: 200%;
	}

	.msg_touch_help {
		position: absolute;
		left: 50%;
		top: 50%;
		margin-left: -40px;
		margin-top: -40px;
		display: block;
	}

	.msg_touch_help img {
		width: 100px;
		height: 100px;
	}
}

/* ==================================================
	이미지 움직이는 효과
================================================== */
.over-cover {
	overflow: hidden;
	position: relative;
	display: inline-block;
	line-height: 0;
}

.over-cover img {
	width: 100%;
	height: 100%;
	-webkit-transition: all 0.5s linear;
	transition: all 0.5s linear;
	-webkit-transform: scale3d(1, 1, 1);
	transform: scale3d(1, 1, 1);
}

.over-cover:hover img {
	-webkit-transform: scale3d(1.2, 1.2, 1);
	transform: scale3d(1.2, 1.2, 1);
}

/* ==================================================
	영상
================================================== */
.movie_con {
	text-align: center;
}

.movie_con video {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	border: 1px solid #d7d7d7;
}

.promovie_con {
	text-align: center;
}

.promovie_con video {
	width: 100%;
	max-width: 1000px;
}

/* ==================================================
	유튜브 영상
================================================== */
.youtubeWrap {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 35px;
	height: 0;
	overflow: hidden
}

.youtubeWrap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1
}

.youtubeWrap .btn_prev,
.youtubeWrap .btn_next {
	display: inline-block;
	position: absolute;
	top: 50%;
	margin-top: -45px;
	z-index: 100;
	background: rgba(0, 0, 0, 0.6);
	color: #fff
}

.youtubeWrap .btn_prev {
	left: 0
}

.youtubeWrap .btn_next {
	right: 0
}

.youtubeWrap .btn_prev>img {
	float: left
}

.youtubeWrap .btn_next>img {
	float: right
}

.youtubeWrap .btn_prev>span,
.youtubeWrap .btn_next>span {
	display: inline-block;
	float: left;
	height: 90px;
	padding: 0 15px;
	margin: 20px 0;
	max-height: 50px;
	max-width: 180px;
	font-size: 16px;
	display: block;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	display: none;
}

.youtubeWrap .btn_prev:hover>span,
.youtubeWrap .btn_prev:focus>span,
.youtubeWrap .btn_next:hover>span,
.youtubeWrap .btn_next:focus>span {
	display: inline-block
}


/* ==================================================
	hooking_pop
================================================== */
#hook_popup_mask { /* 팝업 배경 css */
	position: fixed;
	width: 100vw;
	height: 100vh;
	top: 0px;
	left: 0px;
/*	display: none; */
	background-color:#000;
	opacity: 0.7;
	z-index:1002;
}
 
.hooking_pop{
	position: fixed;
	margin: 0 auto;
	padding: 1.4rem 1.6rem 1.4rem 1.2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    width: 520px;
	top: 82%; 
	left: calc(50% - 260px); 
/*	display: none; */
    z-index: 1003;
    background-color: #5EC88F;
	border: solid 1px #25A35D;
	color: #fff;
	font-size: var(--rem-24);
}
.hooking_pop_con{
	position: relative;
    display: flex;
    justify-content: center; align-items: center;
	gap: 1rem;
}

.hooking_pop_con span{
	font-weight: var(--font-bd);
}

.hooking_pop_con i{
	position: absolute;
	right: 0;
	color: #fff;
	font-size: var(--rem-20);
}
/* 모바일CSS */
@media screen and (max-width:800px) {
	.hooking_pop{
		padding: 1.0rem 1.4rem 1.0rem 1.0rem;
		width: 66%;
		top: 88%;
		left: 17%; 
		font-size: var(--rem-22);
	}

	.hooking_pop img{
		width: var(--rem-50);
	}

	.hooking_pop_con i{
		font-size: var(--rem-17);
	}
}

@media screen and (max-width:480px) {
	.hooking_pop{
		width: 88%;
		top: 90%;
		left: 6%; 
		font-size: var(--rem-18);
	}

	.hooking_pop img{
		width: var(--rem-40);
	}

	.hooking_pop_con i{
		font-size: var(--rem-14);
	}
}



/* ==================================================
	push_pop
================================================== */
#popup_mask { /* 팝업 배경 css */
	position: fixed;
	width: 100vw;
	height: 100vh;
	top: 0px;
	left: 0px;
	display: none; 
	background-color:#000;
	opacity: 0.7;
	z-index:1002;
}
 
.push_pop{
	position: fixed;
	margin: 0 auto;
	padding: 3.2rem 0;
    border-radius: 4rem 4rem 1rem 1rem;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
    width: 300px;
	top: 40%; 
	left: 45%; 
	display: none; 
    z-index: 1003;
    background-color: #fff;
}

.push_pop .push_txt{
	text-align: center;
	line-height: 1.5;
    font-size: var(--rem-16);
}

.push_pop .push_txt span{
	display: block;
    font-size: var(--rem-18);
	font-weight: var(--font-sb);
}

.push_pop .push_link{
    margin-top: 16px;
    display: flex; justify-content: center; gap: 1rem;
}

.push_pop .push_link a{
    background-color: var(--color-gray2);
	color: var(--color-black);
    border-radius: 2rem;
    padding: 1.2rem 0;
    width: 14rem;
    font-size: var(--rem-17);
    text-align: center;
}
.push_pop .push_link a.on{
    background-color: var(--brand-color-main);
	color: var(--color-white);
}


/* ==================================================
	none_text
================================================== */
.none_text{
	margin: 4.4rem auto;
	text-align: center;
}

.none_text img{
	margin-bottom: var(--rem-16);
	width: var(--rem-50);
}

.none_text p{
	line-height: 1.5;
}

.none_text p+p{
	margin-top: 4px;
}

.none_text p.ntit{
	font-weight: var(--font-md);
	color: var(--color-gray4);
}

.none_text p.ntxt{
	font-size: var(--rem-16);
	color: var(--color-gray3);
}
/* 모바일CSS */
@media screen and (max-width:480px) {
	.none_text{
		margin: 3.6rem auto;
	}
	
	.none_text img{
		width: 4.2rem;
	}

	.none_text p.ntit{
		font-size: var(--rem-17);
	}
	
	.none_text p.ntxt{
		font-size: var(--rem-15);
	}
}


/* ==================================================
	전체상품 퀵 버튼
================================================== */
.all_manu_quck{
    position: fixed;
    bottom: 20%;
    left: 0;
    display: inline-grid;
    justify-content: center;
	text-align: center;
    width: 64px;
	background: linear-gradient(0deg, #005BAC 0%, #00A84D 100%);
    z-index: 1000;
	border-radius: 0 3rem 3rem 0;
	padding: 25px 0;
	padding-right: 5px;
}

.all_manu_quck a{
	font-family: var(--font-Elice);
	font-weight: var(--font-md);
	font-size: var(--rem-24);
	color: #fff;
	writing-mode: vertical-lr;
}

.all_manu_quck i{
	display: none;
	margin-top: 2rem;
	border-top: solid 1px rgba(255, 255, 255, 0.4);
	padding-top: 2rem;
    color: #fff;
	font-size: var(--rem-20);
}
/* 모바일CSS */
@media screen and (max-width:800px) {
	.all_manu_quck{
		bottom: 13rem;
		width: 6rem;
		padding-right: 3px;
	}
	
	.all_manu_quck a{
		font-size: var(--rem-20);
		padding-bottom: 1.6rem;
	}
	
	.all_manu_quck i{
		padding-top: 1.6rem;
		font-size: var(--rem-16);
	}
}
@media screen and (max-width:480px) {
	.all_manu_quck{
		width: 4rem;
		border-radius: 0 2rem 2rem 0;
		padding: 16px 0;
		padding-right: 0;
	}
	
	.all_manu_quck a{
		font-size: var(--rem-16);
		padding-bottom: 1rem;
	}
	
	.all_manu_quck i{
		padding-top: 1rem;
		font-size: var(--rem-14);
	}
}


/* 모바일CSS */
@media screen and (max-width:1100px) {
}
@media screen and (max-width:800px) {
}
@media screen and (max-width: 640px) {
}
@media screen and (max-width:480px) {
}


/* ==================================================
	개인정보처리방침 & 이메일무단수집거부
================================================== */
.util_box {
	padding: var(--rem-30);
	border: 1px solid #dcdcdc;
	border-top-color: var(--brand-color-main);
	background: #fff;
	font-size: 1.7rem;
	line-height: 1.5;
}

.util_box ul,
.util_box ol {
	padding-left: var(--rem-13);
}

.terms_txt p {
	margin-bottom: 16px;
}

.util_box .list-tit {
	font-size: var(--rem-22);
	margin: 4rem 0 1rem;
}

.util_box .list-tit:first-child {
	margin: 0 0 10px;
}

h5.t_tit {
	margin: 15px 0 6px;
}

.list-etc li {
	margin-bottom: 10px;
}

.list-etc2>li {
	margin-bottom: 25px;
}

.list-etc.num li {
	position: relative;
	padding-left: 25px;
}

.list-etc.num li i {
	position: absolute;
	left: 0;
	top: 3px;
}

.list-etc.num li li {
	padding-left: 0;
}

.width_line_list li {
	padding-left: 12px !important;
}

/* 모바일CSS */
@media all and (max-width:640px) {
	.util_box {
		padding: 20px;
		font-size: 1.7rem;
	}
}