/* sub css */
.header {
	/*border-bottom: 1px solid rgba(17, 36, 58, 0.2);*/
}

.header .logo {
	/*background-image: url("../img/logo_img_v03.png");*/
}

.header .tel {
	background-image: url("../img/m_tel_img.png");
}

.header .menu_btn {
	background-image: url("../img/m_menu_btn.png");
}

/*.header .regi_btn {
	background-color: #fff;
	border: 1px solid #fff;
	color: #11243a;
}

.header .regi_btn:hover {
	color: #fff;
}*/

.parallax {
	position:relative;
	height: 440px;
	overflow:hidden;
}

.parallax .bg {
	position:absolute;
	background-image:url('../img/sub/parallax_bg_n.jpg');
	height: 100%;
	background-position:center;
	background-size:cover;
	width: 100%;
	animation: zoomOut 4.8s .2s ease both;
}

@keyframes zoomOut {
	0% {
		transform:scale3d(1.1, 1.1, 1.1);
	}

	100% {
		transform:scale3d(1, 1, 1);
	}
}

.parallax .text__ {
	width: 100%;
	color:#fff;
	position:absolute;
	left: 50%;
	top: calc(50% + 15px);
	transform:translate(-50%, -50%);
	font-size: 30px;
	text-align:center;
	/*animation: sub-text 1.5s .2s ease-in-out both;*/
}

.text__ p {
	font-size: 26px;
	color: #ffffff;
	font-family: 'Noto Sans', sans-serif;
	font-weight: 100;
	letter-spacing: 4.7px;
}
.dot-text {
	display: inline-flex;
	position: relative;
	letter-spacing: 0;
}
/* 문구 카피 */

/* 모든 기준이 첫 번째가 되는 곳 */
.text__box .text__ p {
	font-size: 26px;
	color: #ffffff;
	font-family: 'Noto Sans', sans-serif;
	font-weight: 100;
	letter-spacing: 4.7px;
}

/* 도트 효과 + 간격 제어 */
.dot-text {
	display: inline-flex;
	position: relative;
	letter-spacing: 0; /* 부모의 letter-spacing 영향 제거 */
}

.dot-text span {
	position: relative;
	display: inline-block;
}

/* 도트: 글자 중앙 위 */
.dot-text span:not(:empty)::after {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%) translateY(-100%);
	width: 5.5px;
	height: 5.5px;
	background-color: #ffffff;
	border-radius: 50%;
}

/* ‘첫’ 뒤에는 살짝 여백 주기 */
.dot-text span:nth-child(1) {
	margin-right: 6px; /* 첫과 번 사이 띄움 */
}

/* ‘번’과 ‘째’는 붙이기 */
.dot-text span:nth-child(3) {
	margin-right: 4px; /* 번째 사이 좁히기 */
}

.text__ .copy-wrap { display: flex; gap: 15px; justify-content: center; }
.part { opacity: 0; }
.part01 { animation: fade_normal 1s ease-out forwards; animation-delay: 0.4s; }
.part02 { animation: part02 1.1s ease-out forwards; animation-delay: 0.8s; }
.part03 { animation: fade_normal 1s ease-out forwards; animation-delay: 0.4s; }
@keyframes fadeInSimple { from{opacity:0;} to{opacity:1;} }
@keyframes fade_normal { 0%{opacity:0;}100%{opacity:1;} }
@keyframes part02 {
	0% {
		opacity: 0;
		filter: blur(8px);
	}
	100% {
		opacity: 1;
		filter: blur(0);
	}
}

@keyframes middleIn {
	0%{opacity:0;transform:translateX(-30px) scale(1);}
	60%{opacity:1;transform:translateX(0) scale(1);}
	100%{opacity:1;transform:translateX(0) scale(1);}
}
@keyframes slideInLeft { 0%{opacity:0;transform:translateX(-20px);}100%{opacity:1;transform:translateX(0);} }
.container .row > h6 {
	font-size: 43px;
	margin-top: 80px;
	margin-bottom: 80px;
	position: relative;
	color: #1d1d1d;
}

/* h6 위쪽 중앙에 세로줄 */
.container .row > h6::before {
	content: "";
	position: absolute;
	top: -60px; /* h6 위로 띄우기 */
	left: 50%;
	transform: translateX(-50%);
	width: 1px;
	height: 50px;
	background-color: #1d1d1d;
}



.route_menu_wrap {
	display: none;
	position:relative;
	background-color: #001140;
}

.route_menu {
	position:relative;
	max-width:1280px;
	margin: auto;
	display:flex;
	z-index: 99999;
}

.route_menu .home {
	width: 80px;
}

.route_menu .home a {
	display:block;
	background-color: transparent;
	width: 80px;
	height: 70px;
	line-height:68px;
	text-align:center;
}

.route_menu > li {
	position:relative;
	width: calc((100% - 70px) / 2);
}

.route_menu > li:last-child {
	margin-left: -1px;
}

.route_menu > li.rmenu {
	position:relative;
	max-width: 300px;
}

.route_menu > li.rmenu::after {
	position:absolute;
	content:'';
	display:block;
	width: 1px;
	height: 100%;
	background-color:#7b848f;
	top: 50%;
	right: 0;
	transform:translateY(-50%);
}

.route_menu > li:last-child.rmenu::after {
	display: none;
}

.route_menu > li.rmenu > a {
	display:block;
	line-height:70px;
	padding-left: 30px;
	cursor:pointer;
	font-size:17px;
	color:#fff;
	width: 100%;
	font-family:'NotoSansKR-Medium';
}

.route_menu > li.rmenu.off > a {
	cursor:default;
}

.route_menu > li.rmenu.off span {
	display:none;
}

.route_menu > li.rmenu .arrow {
	position:absolute;
	top: 50%;
	transform:translateY(-50%);
	right: 35px;
	transition:all 300ms;
	width: 10px;
	height: 15px;
	background-image:url('../img/sub/icon_arrow.png?new');
	background-size:100%;
	background-position:center;
}

.route_menu > li.rmenu .arrow img {
	opacity: 0;
}

.route_menu > li.rmenu.active .arrow {
	transform:rotate(180deg) translateY(50%);
}

.route_menu > li:last-child.rmenu .arrow {
	right: -10px;
}

.route_menu > li.rmenu .rsub_menu {
	display:none;
	background-color:#fff;
	width: 100%;
	position:absolute;
	z-index: 99999;
}

.route_menu > li.rmenu > a.line2 {
	line-height: 130%;
	margin-top: 11px;
	margin-bottom: 12px;
}

.route_menu > li.rmenu .rsub_menu li a {
	display:block;
	color:#11243a;
	padding: 15px 0;
	font-size:16px;
	padding-left: 30px;
	border:1px solid #11243a;
	border-top:0px;
	font-family:'NotoSansKR-Regular';
}

.route_menu > li.rmenu .rsub_menu li a:hover {
	font-family:'NotoSansKR-Bold';
}

.route_menu > li.rmenu .rsub_menu li a.active {
	display:none;
}

.container {
	padding: 100px 0;
	text-align:center;
}

.container .row {
	max-width: 1100px;
	margin: auto;
	padding: 0;
	text-align:center;
}

.container .row > h3 {
	font-size:50px;
	margin-bottom: 80px;
	position:relative;
}

/* .container .row > h3::after {
	position:absolute;
	left: 50%;
	margin-left: -7px;
	margin-top: 10px;
	content:'';
	display:block;
	width: 14px;
	height: 14px;
	border-radius:50%;
	background-color:#C30A18;
} */

.sub_f {
	margin-top: 100px;
	font-size: 15px;
	color: #2f2f2f;
	text-align: left;
	letter-spacing: -1px;
	background-color:#f4f4f4;
	padding: 40px;
	padding-left: 200px;
	background-image:url('../img/sub/sub_f_img_n.png?new');
	background-position: 80px center;
	font-family:'NotoSansKR-Light';
}

.sub_f dl {
	margin-bottom: 3px;
	display:flex;
}

.sub_f dt {
	padding-right: 5px;
}

/* 관심고객등록 */
 .pb_30 {
	padding-bottom: 30px;
}

.agree_wrap {
	text-align:left;
}

.agree_wrap.bt {
	margin-top: 50px;
}

.agree_wrap h2 {
	display: block;
	font-family:'NotoSansKR-Bold';
	font-size: 19px;
	letter-spacing: -1px;
	border-bottom: 2px solid #000;
	padding-bottom: 10px;
}

.agree_wrap p {
	letter-spacing: 0;
	color: #7e7e7e;
	font-size: 14px;
	font-family:'NotoSansKR-Regular';
	margin-top: 5px;
}

.regi_table {
	width: 100%;
	font-size: 15px;
	text-align: center;
}

.regi_table th {
	border-right: 1px solid #E3E5E4;
	border-bottom: 1px solid #E3E5E4;
	color: #393939;
    background-color: #f9f9f9;
	padding: 10px;
	font-family:'NotoSansKR-Medium';
	letter-spacing: -0.5px;
}

.regi_table td {
	border-right: 1px solid #E3E5E4;
	border-bottom: 1px solid #E3E5E4;
	padding: 10px;
	font-size: 14.5px;
	font-family:'NotoSansKR-Regular';
}

.regi_table th:last-child, .regi_table td:last-child {
	border-right: none;
}

.agree_box {
	width: 100%;
	padding: 20px;
	box-sizing: border-box;
	margin-bottom: 10px;
	color: #585858;
	font-size: 15px;
	font-family:'NotoSansKR-Regular';
	height: 310px;
    overflow-y: auto;
	background-color: #fff;
	border: 1px solid #ccc;
}

.agree_box p {
	margin-bottom: 20px;
}

.agree_box p:last-of-type {
	margin-bottom: 0;
}

.agree_box .h6 {
	display: inline-block;
	font-family:'NotoSansKR-Medium';
	color: #393939;
}

.agree_radio {
	font-size: 16px;
	display: flex;
}

.agree_radio.bt {
	margin-top: 10px;
}

.agree_radio label {
	display:inline-block;
	margin-left: 15px;
	cursor:pointer;
}

.agree_radio .ag__ label {
	margin-left: 0;
}

.agree_radio input {
	margin-bottom: 4px;
	margin-right: 4px;
}

input:checked {
  accent-color: #990544 !important;
}

.board_write_form {
	width: 100%;
}

.board_write_form .form_field {
	font-size: 15px;
	border-bottom: 1px solid #E3E5E4;
}

.board_write_form .form_field th {
	font-size: 15px;
	text-align: center;
	padding: 10px;
	vertical-align:middle;
	border-bottom: 1px solid #E3E5E4;
	color: #393939;
    background-color: #f9f9f9;
	font-family:'NotoSansKR-Medium';
	width: 14%;
}

.board_write_form td.field {
	font-size: 18px;
	padding: 10px;
	text-align:left;
}

.board_write_form td.field.type span,
.board_write_form td.field.age span {
	display:inline-block;
	margin-right: 30px;
}

.board_write_form td.field span label {
	cursor:pointer;
}

.board_write_form .buttons {
	text-align: center;
	margin-top: 60px;
}

.board_write_form .buttons a.confirm {
	background-color: #001140;
	color: #fff;
	border: 2px solid #001140;
	display: inline-block;
	font-size: 17px;
	width: 280px;
	height: 50px;
	line-height:45px;
	font-family:'NotoSansKR-Medium';
	transition:all 200ms ease-in-out;
}

/*.board_write_form .buttons a.confirm:hover {*/
/*	background-color: #fff;*/
/*	color: #11243a;*/
/*}*/

.board_write_form input[type='text'],
.board_write_form input[type='tel'],
.board_write_form select {
	height: 35px;
	font-size: 15px;
	color: #495057;
	padding: 5px 7px;
}

.para__ {
	display: inline-block;
	color: #FF8000 !important;
	margin-left: 5px;
	font-size: 15px;
}

.w120 {
	width: 100px;
}

.w200 {
	width: 328px;
}

.w500 {
	width: 500px;
}

/* 언론보도 */
.news-zone {
	display: flex;
	flex-wrap: wrap;
}

.news-zone li {
	max-height: 435px;
	margin-bottom: 50px;
}

.news-zone li {
	position:relative;
	width: 31%;
	margin-right: 3%;
	text-align:left;
}

.news-zone li:nth-child(3),
.news-zone li:nth-child(6) {
	margin-right: 0;
}

.news-zone li .inner:hover {
	border:1px solid #2c3d47;
	-webkit-transform: scale(1.03);
	transform: scale(1.03); -webkit-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out; -webkit-box-shadow: 20px 30px 50px 8px black;
	box-shadow: 0px 20px 30px 8px rgba(0,0,0,.1);}
}

.news-zone li:nth-child(3n) {
	margin-right: 0;
}

.news-zone li a {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
}

.news-zone li .thumbnail img {
	width: 100%;
	height: 100%;
	max-height: 100%;
	object-fit: cover;
}

.news-zone li .thumbnail {
	width: 100%;
	height: 190px;
	max-height: 190px;
	flex: 1;
}

.news-zone li .content {
	width: 100%;
	padding: 30px;
	height: 270px;
	max-height: 270px;
	letter-spacing:-1px;
	border:1px solid #d5d5d5;
}

.news-zone li .content .news-title {
	font-size:20px;
	overflow: hidden;
	text-overflow: ellipsis;
	word-wrap: break-word;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	margin-bottom: 20px;
	line-height:140%;
	color: #5f5e5e;
}

.news-zone li .content .news-content {
	font-size:14px;
	overflow: hidden;
	text-overflow: ellipsis;
	word-wrap: break-word;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	height: 65px;
	margin-bottom: 20px;
}

.news-zone li .news-info {
	display: flex;
	justify-content: space-between;
	font-size:13px;
}

.indicator {
	display:flex;
	justify-content: center;
	margin-top: 50px;
}

.indicator ul { display:flex;}

.indicator li { margin:0 2px}
.indicator li a {
	display:flex;
	justify-content: center;
	align-items: center;
	width: 30px;
	height: 30px;
	background-color: #fff;
	border: 1px solid #11243a;
	font-weight: normal;
	color: #11243a;
}

.indicator li a:hover, .indicator li a.active {
	background-color: #11243a;
	color: #fff;
}

/* .tab {
	margin-bottom: 60px;
}

.tab li {
	display:inline-block;
}

.tab li a {
	display:inline-block;
	width: 200px;
	text-align:center;
	height: 70px;
	line-height:70px;
	border:1px solid #AC6A3A;
	color:#AC6A3A;
	cursor:pointer;
	font-size:25px;
}

.tab li.on a,
.tab li a:hover {
	background-color:#AC6A3A;
	color:#fff;
} */

@media(max-width:750px) {
	.header .m_logo {
		background-image: url("../img/logo_img_v03.png") !important;
	}

	.header .m_tel {
		background-image: url("../img/m/m_tel_img.png") !important;
	}

	.header .menu_btn {
		background-image: url("../img/m/m_menu_btn.png") !important;
	}

	.header.w .m_logo {
		background-image: url("../img/logo_img_v03.png") !important;
	}

	.header.w .m_tel {
		background-image: url("../img/m/m_tel_img.png") !important;
	}

	.header.w .menu_btn {
		background-image: url("../img/m/m_menu_btn.png") !important;
	}
}

