/* sub css */
.header {
	background-color:#fff;
}
body {
	-ms-overflow-style: none;
	scrollbar-width: none;
}
body::-webkit-scrollbar {
	display: none;
}
.parallax {
	margin-top: 100px;
	background-color: transparent;
	background-image:none;
	position: relative;
	overflow:hidden;
	height: 321px;
}

.parallax .bg {
	position: absolute;
	left: 0;
	top: 0;
	width: 100vw;
	height: 321px;
	background: url('../img/sub/parallax.png?new') no-repeat;
	background-size: cover;
}

.parallax .row {
	position: relative;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.parallax p {
	position: absolute;
	clip: rect(0, 0, 214px, 0);
	animation: sub-text 1.3s ease-in-out both;
	left: calc(50% - 200px);
}

@keyframes sub-text {
	0% {
		clip: rect(0, 0, 185px, 0);
	}

	100% {
		clip: rect(0, 890px, 185px, 0);
	}
}
.sub-section {
	margin: 100px 0;
}

.sub-section img {
	display: block;
	margin: 0 auto;
	max-width: 100%;
	height: auto;
}

.ready-box {
	width: 1100px;
	height: 900px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #f2f2f2;
	border: 2px dashed #ccc;
	font-size: 2rem;
	font-weight: bold;
	color: #555;
	margin: 20px auto;
}


.overflow {
	position:absolute;
	width: 1100px;
	left: 50%;
	bottom: 0;
	margin-left: -550px;
	z-index: 99;
	max-width:1100px;
	background-color: #fff;
	text-align:center;
	height: 60px;
	/* overflow: hidden; */
}

.overflow ul.route {
	display:flex;
	position:relative;
	height: 60px;
	line-height: 60px;
	white-space: nowrap;
}

.overflow ul.route li {
	position:relative;
	white-space: normal;
	padding: 0 25px;
}

.overflow ul.route li::after {
	position: absolute;
    content: '';
    display: block;
    width: 1px;
    height: 10px;
    background-color: #6b6b6b;
    top: 50%;
    margin-top: -5px;
    right: 0;
}

.overflow ul.route li:last-child::after {
	display:none;
}

.overflow ul.route li a {
	display: inline-block;
	height: 60px;
	line-height: 60px;
	color: #000;
	transition-duration: 400ms;
}

.overflow ul.route li a:hover,
.overflow ul.route li a.active {
	color:#c20413;
}

.route_menu_wrap {
	position:relative;
	background-color:rgba(0,36,72,.8);
	margin-top: -65px;
}

.route_menu {
	position:relative;
	max-width:1100px;
	margin: auto;
	display:flex;
	z-index: 99999;
}

.route_menu > li {
	position:relative;
	width: calc((100% - 65px) / 2);
}

.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:#768895;
	top: 50%;
	right: 0;
	transform:translateY(-50%);
}

.route_menu > li.rmenu > a {
	display:block;
	line-height:65px;
	padding-left: 30px;
	cursor:pointer;
	font-size:18px;
	color:#fff;
	width: 100%;
	font-family:'NotoSansKR-Regular';
}

.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: 20px;
	transition:all 300ms;
	width: 10px;
	height: 14px;
	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.rmenu .rsub_menu {
	display:none;
	background-color:#062745;
	width: 100%;
	position:absolute;
	font-size:16px;
	z-index: 99999;
	border-top:1px solid #fff;
}

.route_menu > li.rmenu:nth-child(2) .rsub_menu {
	background-color:#977f64;
}

.route_menu > li.rmenu .rsub_menu li a {
	display:block;
	color:#fff;
	padding: 15px 0;
	padding-left: 30px;
	border:1px solid #fff;
	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;
}

.route_menu .home {
	width: 65px;
}

.route_menu .home a {
	display:block;
	background-color:#977f64;
	width: 65px;
	height: 65px;
	line-height:65px;
	text-align:center;
}

.container {
	padding: 80px 0;
	text-align:center;
}

.container .row {
	max-width:1240px;
	margin: auto;
	padding: 0 20px;
	text-align:center;
}

.container .row > h2 {
	font-size: 36px;
	margin-bottom: 80px;
	position: relative;
	color: #624a3d;
}
.container .row > h2::after {
	position: absolute;
	content: '';
	display: inline-block;
	width: 30px;
	height: 1px;
	background-color: #b2b2b2;
	bottom: -30px;
	left: 50%;
	transform: translateX(-50%);
}

.footer {
	border-top:1px solid #e5e5e5;
}

/* .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: 30px;
	font-size: 12px;
	color: #858585;
	text-align: left;
	padding: 40px;
}

.mobile_suf {
	font-size: 12px;
	color: #858585;
	text-align: left;
	margin-top: 10px;
}

.sub_f dl,
.mobile_suf {
	margin-bottom: 3px;
	display:flex;
}

.sub_f dt,
.mobile_suf dt{
	padding-right: 5px;
}

/* 관심고객등록 */
/* .pb_30 {
	padding-bottom: 30px;
}

.agree_wrap {
	padding-bottom: 40px;
	border-bottom: 1px solid #000;
	margin-bottom: 30px;
	text-align:left;
}

.agree_box {
	width: 100%;
	overflow-y: scroll;
	border: 2px solid #3f1d42;
	padding: 20px;
	box-sizing: border-box;
	margin-bottom: 20px;
	height: 280px;
	background: #f4f5f9;
	color: #333;
	font-size: 17px;
}

.agree_box p {
	margin-bottom: 20px;
}

.agree_box p:last-of-type {
	margin-bottom: 0;
}

.agree_box .h5 {
	display: inline-block;
	font-weight: 800;
	font-size: 19px;
}

.agree_box .h6 {
	display: inline-block;
	font-weight: 800;
}

.agree_radio {
	font-size: 18px;
}

.agree_radio label {
	display:inline-block;
	margin-left: 10px;
	cursor:pointer;
}

.board_write_form {
	width: 100%;
}


.board_write_form .form_field:first-child {
	border-top: 1px solid #e4e4e4;
}

.board_write_form .form_field {
	font-size: 15px;
	border-bottom: 1px solid #e4e4e4;
}



.board_write_form .form_field th {
	border-bottom: 1px solid #fff;
	width: 214px;
	font-size: 18px;
	color: #fff;
	text-align: center;
	background-color: #A7121E;
	padding: 20px;
	vertical-align:middle;
}

.board_write_form td.field {
	font-size: 18px;
	padding: 20px;
	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: 30px;
}

.board_write_form .buttons a.confirm {
	background-color: #AC6A3A;
	color: #fff;
	display: inline-block;
	font-size: 22px;
	width: 220px;
	height: 66px;
	line-height:66px;
}

.board_write_form input[type='text'],
.board_write_form input[type='tel'],
.board_write_form select {
	height: 35px;
}

.w120 {
	width: 120px;
}

.w500 {
	width: 500px;
}

.board_write_form .form-group:nth-of-type(2) {
	margin: 5px 0;
}

.find_tel {
	width: 100px;
	height: 35px;
	line-height: 35px;
	padding: 0;
	font-size: 17px;
	background-color: #AC6A3A;
	color:#fff;
	margin-left: 5px;
}

.find_post {
	width: 150px;
	height: 35px;
	line-height: 35px;
	padding: 0;
	font-size: 17px;
	background-color: #AC6A3A;
	color:#fff;
	margin-left: 5px;
} */

.news-zone {
	display: flex;
	flex-wrap: wrap;
	/* justify-content: space-between; */
}

.news-zone li {
	max-height: 435px;
	margin-bottom: 40px;
}

.news-zone li {
	position:relative;
	width: 31%;
	margin-right: 2%;
	text-align:left;
}

.news-zone li a:hover {
}
.news-zone li a .inner {
	transition: 0.35s

}
.news-zone li a .inner:hover {
	border:1px solid #2c3d47; 
	-webkit-transform: scale(1.02);
	transform: scale(1.02);
	-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%;
	height: 245px;
	max-height: 245px;
	flex: 1;
	padding: 30px;
	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;
	height: 55px;
	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-bottom: 20px;
}

.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 #d5d5d5;
	font-weight: normal;
}

.indicator li a:hover, .indicator li a.active {
	background-color: #624a3d;
	border: 1px solid #624a3d;
	color: #fff;
}

.tab {
	margin-bottom: 60px;
	display: flex;
	justify-content: center;
	margin-top: 40px;
}

.tab li {
	display: inline-block;
	width: 280px;
	height: 65px;
	line-height: 65px;
	font-size: 25px;
	text-align: center;
	background-color: #fff;
	cursor: pointer;
	font-weight: bold;
	transition: .3s;
	border: 1px solid #624a3d;
	margin-left: 10px;
	margin-right: 10px;
	color: #624a3d;
}

.tab li.a-tab a {
	display: inline-block;
	width: 100%;
	height: 65px;
	line-height: 65px;
	font-size: 24px;
	text-align: center;
	cursor: pointer;
	font-weight: bold;
	color:#624a3d;
	transition: .3s;
}

.tab li:hover,
.tab li.active,
.tab li.a-tab a:hover {
	background-color:#624a3d;
	color:#fff;
}
