@charset "utf-8";

/* ==================================================
	body 공통 속성
================================================== */
/* 기본 폰트 및 사이즈 설정 */
html {
	font-size: 10px;
}

body {
	font-size: var(--rem-18);
	font-family: 'Pretendard', 'SUIT', '돋움', 'Dotum', '굴림', 'Gulim', 'Lucida Grande', 'Tahoma', 'Verdana', 'AppleGothic', 'UnDotum', 'sans-serif';
	font-weight: 400;
	line-height: 1.3;
	-webkit-text-size-adjust: none;
	-ms-interpolation-mode: bicubic;
	word-break: keep-all;
	color: #000000;
	background: #fff
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}



input,
button {
	font-family: var(--font-Pretendard)
}

img {
	/* 이미지 렌더링 방식 변경 */
	image-rendering: -webkit-optimize-contrast;
	/* z축을 0으로 초기화, 입체감 삭제 */
	transform: translateZ(0);
	/* 뒷면 숨기기, 입체감 삭제 */
	backface-visibility: hidden;
}

/* 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:1920px) {
	html {
		font-size: 9px;
	}
}

@media (max-width:1280px) {
	html {
		font-size: 8.5px;
	}
}

@media (max-width:1100px) {
	html {
		font-size: 8px;
	}
}

@media (max-width:800px) {
	html {
		font-size: 7.5px;
	}
}

@media (max-width:640px) {
	html {
		font-size: 7px;
	}
}


/* ==================================================
	스킵네비게이션
================================================== */
#skipnavi a {
	display: block;
	position: absolute;
	top: -1000px;
	left: 0;
	width: 100%;
	height: 1px;
	color: #222;
	overflow: hidden;
	z-index: 99999999;
}

#skipnavi a:focus,
#skipnavi a:hover,
#skipnavi a:active {
	top: 0px;
	left: 0;
	background-color: #e9e9e9;
	padding: 7px 0 5px;
	height: auto;
	color: #000;
	font-size: 1.6rem;
	text-align: center;
	text-decoration: none;
}

.clearfix {
	*zoom: 1
}

.clearfix:after {
	display: block;
	content: '';
	clear: both;
}

/* ==================================================
	반응형
================================================== */
.showPc {
	display: block;
}

.showTa {
	display: block;
}

.showMo {
	display: none;
}

.showTaMo {
	display: none;
}

/* 모바일CSS */
@media screen and (max-width:1100px) {
	.showPc {
		display: none;
	}

	.showTa {
		display: block;
	}

	.showMo {
		display: none;
	}

	.showTaMo {
		display: block;
	}
}

@media screen and (max-width:640px) {
	.pcArea {
		display: none;
	}

	.showPc {
		display: none;
	}

	.showTa {
		display: none;
	}

	.showMo {
		display: block;
	}

	.showTaMo {
		display: block;
	}
}

/* ==================================================
	레이아웃 큰박스
================================================== */
#wrap {
	position: relative;
	width: 100%;
	min-width: 320px;
	margin: 0 auto;
	height: auto !important;
	background-position: center top;
	overflow-x: hidden;
}

/* ==================================================
	컨텐츠
================================================== */
#container {
	clear: both;
	position: relative;
	min-width: 320px;
	/*	padding-top: 110px;*/
}

.cont_detail {
	padding-top: var(--rem-65);
	padding-bottom: 12rem;
}

.inner {
	position: relative;
	width: 100%;
	max-width: 1360px;
	padding: 0 25px;
	margin: 0 auto;
}

/* 모바일CSS */
@media screen and (max-width:1100px) {
	.cont_detail {
		padding-top: var(--rem-60);
		padding-bottom: 11rem;
	}
}

@media screen and (max-width:800px) {
	.cont_detail {
		padding-bottom: var(--rem-90);
	}
}

@media screen and (max-width:600px) {
	.cont_detail {
		padding-bottom: 7rem;
	}

	.inner {
		padding: 0 15px;
	}
}


/* ==================================================
	비주얼
================================================== */
.sub_visual {
	position: relative;
	height: 50rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.sub_visual .tt {
	margin-top: 3rem;
	font-size: var(--rem-60);
	font-weight: var(--font-bd);
	color: #fff;
	text-align: center;
	transform: translate3d(0, 150%, 0);
	animation: fadeInUp 1s 0s ease-in-out;
	animation-delay: 0s;
	animation-fill-mode: both;
	/*	text-shadow: 0px 2px 6px rgba(0, 0, 0, 0.5);*/
}

.visual_about {
	background: url("../images/about/sub_visual.jpg") no-repeat center center / cover;
}

.visual_products {
	background: url("../images/products/sub_visual.jpg") no-repeat center center / cover;
}

.visual_performance {
	background: url("../images/performance/sub_visual.jpg") no-repeat center center / cover;
}

.visual_rnd {
	background: url("../images/rnd/sub_visual.jpg") no-repeat center center / cover;
}

.visual_support {
	background: url("../images/support/sub_visual.jpg") no-repeat center center / cover;
}




/* 애니메이션 */
@keyframes fadeInUp {
	0% {
		opacity: 0;
		transform: translate3d(0, 150%, 0);
	}

	to {
		opacity: 1;
		transform: translateZ(0);
	}
}

/* 모바일CSS */
@media screen and (max-width:1100px) {
	.sub_visual {
		height: 35rem;
		/*margin-top: 9rem;*/
	}

	.sub_visual .tt {
		font-size: var(--rem-55)
	}
}

@media screen and (max-width:800px) {

	/* Sub Visual */
	.sub_visual {
		height: 26rem;
		/*margin-top: 8rem;*/
	}

	.sub_visual .tt {
		font-size: var(--rem-40)
	}
}

@media screen and (max-width:640px) {

	/* Sub Visual */
	.sub_visual {
		height: 36rem;
	}

	.sub_visual .tt {
		font-size: var(--rem-60);
	}
}

/* ==================================================
	타이틀
================================================== */
.sub_tit {
	padding-bottom: var(--rem-50);
	color: var(--color-black);
	text-align: var(--text-ag-center);
}

.sub_tit>span {
	position: relative;
	display: inline-block;
	font-size: var(--rem-45);
	font-style: normal;
	font-weight: var(--font-sb);
}

/* 애니메이션 */
.sub_tit {
	opacity: 0;
	transform: translateY(30px);
}

.sub_tit.active {
	opacity: 1;
	transform: translateY(0);
	transition: all 0.6s;
	-webkit-transition: all 0.6s;
}

/* 모바일CSS */
@media screen and (max-width:1100px) {

	.sub_tit {
		padding-bottom: var(--rem-45);
	}
}


/* ==================================================
	스크롤탑
================================================== */
.btn_top {
	display: block;
	overflow: visible;
	position: fixed;
	right: 10px;
	bottom: 38px;
	z-index: 50;
	width: 48px;
	height: 48px;
	opacity: 0;
	transition: opacity 0.5s;
}

.btn_top.on {
	opacity: 1;
}

.btn_top:before,
.btn_top:after {
	display: block;
	content: '';
	position: absolute;
	animation: moveTop 1s ease infinite alternate;
}

/* .btn_top:before {
	left: -6px;
	top: -6px;
	z-index: 20;
	width: 60px;
	height: 60px;
	background-color: rgba(34, 37, 210, 0.1);
	border-radius: 30px;
} */

/* .btn_top:after {
	left: -12px;
	top: -12px;
	z-index: 10;
	width: 72px;
	height: 72px;
	background-color: rgba(34, 37, 210, 0.2); 
	border-radius: 36px;
} */

.btn_top .icon {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 30;
	width: 48px;
	height: 48px;
	background-color: var(--color-white);
	background-image: url('../images/common/btn_top.png?v=0714');
	background-position: 50% 50%;
	background-repeat: no-repeat;
	border: solid 1px #aaaaaa;
	border-radius: 24px;
	text-indent: -9999px;
	/* transition: 0.3s; */
}

/* 애니메이션 */
/* @keyframes moveTop {
	from {
		opacity: 0;
		transform: scale(0)
	}

	to {
		opacity: 1;
		transform: scale(1)
	}
} */

/* 모바일CSS */
@media all and (min-width:0) and (max-width:1399px) {
	.btn_top {
		right: 20px;
		bottom: 15px;
	}

	.btn_top {
		bottom: 28px;
		width: 38px;
		height: 38px;
	}

	.btn_top:before {
		width: 50px;
		height: 50px;
	}

	.btn_top:after {
		width: 62px;
		height: 62px;
	}

	.btn_top .icon {
		width: 38px;
		height: 38px;
	}

}

@media all and (min-width:1280px) {
	.btn_top:hover:before {
		background-color: rgba(34, 37, 210, 0.2);
	}

	.btn_top:hover:after {
		background-color: rgba(34, 37, 210, 0.1);
	}


}

/* ==================================================
	카피라이터
================================================== */
#footerW {
	clear: both;
	width: 100%;
	background: #212A3A;
}

#footer_content {
	max-width: 1360px;
	margin: 0 auto;
	padding: var(--rem-50) 25px;
}

#footer_content:after {
	content: '';
	display: block;
	visibility: hidden;
}

.copy_font {
	text-align: center;
	color: var(--color-white);
	font-size: var(--rem-16);
	font-weight: 300;
}

.copy_number {
	display: flex;
	justify-content: center;
	gap: var(--rem-30);
}

.copy_number+.copy_number {
	margin-top: 1.0rem;
}

.copy_number li {
	position: relative;
}

.copy_number li::after {
	content: '';
	position: absolute;
	top: calc(50% - 6px);
	right: -1.5rem;
	width: 1px;
	height: 13px;
	background-color: var(--color-gray1);
}

.copy_number li:last-child:after {
	display: none;
}

.copy_number a.tnum {
	color: var(--color-white);
	text-decoration: none;
}

.copyright {
	margin-top: var(--rem-30);
	text-align: center;
	color: var(--color-white);
	font-weight: 300;
	font-size: var(--rem-13);
	opacity: .6;
}

/* 모바일CSS */
@media screen and (max-width:1100px) {
	#footer_content {
		padding: 40px 25px;
	}

	.copy_number li::after {
		top: calc(50% - 5px);
		height: 10px;
	}

	.copyright {
		margin-top: 2rem;
	}
}

@media all and (max-width:800px) {

	.copy_number {
		display: grid;
		gap: 0;
	}

	.copy_number li::after {
		display: none;
	}

	.copyright {
		margin-top: 1.6rem;
	}
}