@charset "utf-8";

/* ==================================================
	body 공통 속성
================================================== */
/* 기본 폰트 및 사이즈 설정 */
html {
	font-size: 10px;
}

body {
	font-size: var(--rem-20);
	font-family: 'Pretendard', '돋움', 'Dotum', '굴림', 'Gulim', 'Lucida Grande', 'Tahoma', 'Verdana', 'AppleGothic', 'UnDotum', 'sans-serif';
	font-weight: var(--font-rg);
	-webkit-text-size-adjust: none;
	-ms-interpolation-mode: bicubic;
	color: var(--color-black);
	background: var(--color-white);
}

/*.hide {
	position: absolute;
	left: -9999%;
	font-size: 0;
	line-height: 0;
	text-indent: -9999rem;
}*/

input,
button {
	font-family: var(--font-Pretendard)
}

/* Internet Explorer 10 in Windows 8 and Windows Phone 8 Bug fix */
@-webkit-viewport {
	width: device-width;
}

@-moz-viewport {
	width: device-width;
}

@-ms-viewport {
	width: device-width;
}

@-o-viewport {
	width: device-width;
}

@viewport {
	width: device-width;
}

/* 모바일CSS */
@media (max-width:1700px) {
	html {
		font-size: 9px;
	}
}

@media (max-width:1280px) {
	html {
		font-size: 8.5px;
	}
}

@media (max-width:1000px) {
	html {
		font-size: 8px;
	}
}

@media (max-width:750px) {
	html {
		font-size: 7.5px;
	}
}

/*
 @media (max-width:450px) {
	html {
		font-size: 7px;
	}
} */

.hid {
	position: absolute;
	left: -9999%;
	font-size: 0;
	line-height: 0;
	text-indent: -9999rem;
}

/* ==================================================
	레이아웃 큰박스
================================================== */
#wrap {
	position: relative;
	width: 100%;
	min-width: var(--rem-320);
	/*margin: 0 auto;
	height: auto !important;
	background-position: center top;
	overflow-x: hidden;*/
}

/* ==================================================
	컨텐츠
================================================== */
#container {
	clear: both;
	position: relative;
	min-width: var(--rem-320);
}

.container._sub {
	padding-top: var(--header-hei);
}

.container._sub #header {
	color: var(--color-black);
	background-color: var(--color-white);
}

.container._sub #header::before {
	opacity: 1;
}

.container._sub #header #logo .hov {
	display: block;
}

.container._sub #header #logo .on {
	display: none;
}

.container._sub #header .h_inner {
	background-color: var(--color-white);
}

.container._sub #allMenuBtn .line {
	fill: var(--color-black) !important;
}

.cont_detail {
	padding-top: 6rem;
	padding-bottom: 8rem;
}

.cont_detail2 {
	padding-top: 6rem;
}

.inner {
	position: relative;
	width: 100%;
	max-width: var(--px-base);
	margin: 0 auto;
}

/* 모바일CSS */
@media screen and (max-width:1600px) {
	.inner {
		width: 96%;
	}
}

@media screen and (max-width:1400px) {
	.inner {
		width: 94%;
	}
}

@media screen and (max-width:640px) {
	.cont_detail {
		padding-top: 5rem;
		padding-bottom: 7rem;
	}

	.cont_detail2 {
		padding-top: 5rem;
	}
}

@media screen and (max-width:450px) {
	.cont_detail {
		padding-top: 4rem;
		padding-bottom: 6rem;
	}

	.cont_detail2 {
		padding-top: 4rem;
	}
}

/* ==================================================
	비주얼
================================================== */
#subvisual {
	position: relative;
	z-index: 2
}

#subvisual .sv-box {
	position: relative;
	width: 100%;
	height: 13rem;
	background: #eeeff2;
}

#subvisual .sv-box .inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 13rem;
	padding: 4.4rem 0;
	background: url('../images/common/dongwon.svg');
	background-repeat: no-repeat;
	background-position: left 13rem bottom 0;
	background-size: contain;
}

.sv-title {
	font-size: 3.3rem;
	font-weight: var(--font-bd);
	color: var(--brand-color-main);
}

/* 애니메이션 */
.sv-box .inner {
	opacity: 0;
	transform: translateY(50px);
}

.sv-box .inner.active {
	opacity: 1;
	transform: translateY(0);
	transition: all 0.7s 0.3s;
	-webkit-transition: all 0.7s 0.3s;
}

/* 모바일CSS */
@media screen and (max-width:1024px) {
	#subvisual .sv-box {
		height: 10rem;
	}

	#subvisual .sv-box .inner {
		height: 10rem;
		padding: 3.4rem 0;
		background: url('../images/common/dongwon.svg');
		background-repeat: no-repeat;
		background-position: left 10rem bottom 0;
		background-size: contain;
	}
}

@media screen and (max-width:800px) {
	#subvisual .sv-box {
		height: auto;
	}

	#subvisual .sv-box .inner {
		display: block;
		height: auto;
		padding: 3.5rem 0;
	}

	#subvisual .sv-lnb {
		margin-top: 2rem;
	}
}

@media screen and (max-width:600px) {
	.sv-title {
		font-size: 2.6rem;
	}

	#subvisual .sv-lnb {
		display: none;
	}
}

/* ==================================================
	타이틀
================================================== */
.sub_tit {
	color: var(--color-black);
	text-align: var(--text-ag-center);
}

.sub_tit>span {
	position: relative;
	display: inline-block;
	font-size: 3.5rem;
	font-weight: var(--font-bd);
}

/* 애니메이션 */
.sub_tit {
	opacity: 0;
	transform: translateY(30px);
}

.sub_tit.active {
	opacity: 1;
	transform: translateY(0);
	transition: all 0.7s 0.6s;
	-webkit-transition: all 0.7s 0.6s;
}

/* 모바일CSS */
@media screen and (max-width:1023px) {
	.sub_tit>span {
		font-size: 3rem;
	}
}

/* ==================================================
	카피라이터
================================================== */
#footerW {
	clear: both;
	width: 100%;
	background: #242424;
}

.ft_inner {
	position: relative;
	width: 100%;
	max-width: var(--px-base);
	margin: 0 auto;
}

.footer_top .ft_top {
	padding-top: 2.7rem;
	padding-bottom: 2.7rem;
}

.footer_top .btn_top {
	position: absolute;
	right: 0;
	top: 0;
	width: 70px;
	height: 70px;
	background: #474747;
	color: var(--color-white);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	font-size: 1.7rem;
	font-weight: var(--font-sb);
}

.footer_top .ft_top>div {
	display: flex;
	align-items: center;
}

.footer_top .ft_top h2 a {
	display: block;
	width: 22.6rem;
	height: 5.7rem;
	background: url('../images/gnb/logo_w.svg') no-repeat center;
	background-size: contain;
}

.footer_top .ft_top div>ul {
	position: absolute;
	right: 100px;
	display: flex;
}

.footer_top .ft_top div>ul.fprivacy>li {
	position: relative;
	padding-right: 1.5rem;
}

.footer_top .ft_top div>ul.fprivacy>li:last-child {
	padding-right: 0;
}

.footer_top .ft_top div>ul.fprivacy>li a {
	font-size: 1.6rem;
	color: var(--color-white);
}

.footer_top .ft_top div>ul.fprivacy>li:after {
	content: "";
	display: block;
	position: absolute;
	top: 3px;
	right: 0;
	width: 1px;
	height: 1.4rem;
	background: var(--color-white);
}

.footer_top .ft_top div>ul.fprivacy>li:last-child:after {
	display: none;
}

.footer_top .ft_top div>ul.fprivacy>li:last-child {
	margin-left: 15px;
}

.footer_bot {
	position: relative;
	width: 100%;
/*	border-top: 1px solid #5f5f5f;*/
	padding: 2.5rem 0 3.5rem;
}

.caddress p {
	font-size: 1.5rem;
	color: var(--color-white);
	line-height: 1.6;
}

.caddress>ul {
	font-size: 1.5rem;
	color: var(--color-white);
	margin-top: 1.3rem;
}

.caddress>ul>li {
	position: relative;
	display: inline-block;
	padding-left: 1.2rem;
	padding-right: 1.2rem;
}

.caddress>ul>li:after {
	content: "";
	display: block;
	position: absolute;
	top: 1px;
	right: 0;
	width: 1px;
	height: 1.4rem;
	background: var(--color-white);
}

.caddress>ul>li:last-child:after {
	display: none;
}

.caddress>ul>li:first-child {
	padding-left: 0;
}

.copyright {
	position: absolute;
	right: 0;
	bottom: 0;
	color: #b0b0b0;
	font-family: var(--font-Outfit);
	font-size: 1.4rem;
}

/* 모바일CSS */
@media screen and (max-width: 1400px) {
	.ft_inner {
		width: 96%;
	}
}

@media screen and (max-width: 1200px) {
	.ft_inner {
		width: 94%;
	}

	.copyright {
		position: relative;
		margin-top: 2rem;
	}
}

@media screen and (max-width: 1024px) {
	.footer_top .ft_top div>ul {
		display: none;
	}

	.ft_bot {
		display: block;
	}
}

@media screen and (max-width:768px) {
	.footer_top .ft_top {
		padding-top: 3rem;
		padding-bottom: 2rem;
	}

	.footer_top .ft_top>div {
		flex-direction: column;
	}

	.footer_top .btn_top {
		width: 50px;
		height: 50px;
		font-size: 1.4rem;
	}

	.footer_bot {
		padding-bottom: 3rem;
		text-align: center;
	}

	.caddress p {
		font-size: 1.4rem;
		line-height: 1.5;
	}

	.caddress>ul>li:first-child {
		display: block;
		padding-right: 0;
		margin-bottom: 1rem;
	}

	.caddress>ul>li:first-child:after {
		display: none;
	}

	.copyright {
		position: relative;
		margin-top: 2rem;
	}
}