@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');




.main_color {
	color: #1e4951 !important;
}





/* 각종 접수화면 상단 처리 */
.menu_list {
	display: flex;

	margin-bottom: 20px;
}

.menu_list .menu_item {
	float: left;
	width: calc(33.3333% + 1px);
	list-style: none;
	border-top: solid 1px #C8C7C7FF;

}

.menu_list>li>a {
	width: 100%;
	height: 55px;
	text-align: center;
	display: flex;
	flex-wrap: nowrap;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	border-bottom: 3px solid #1e4951;
	font-size: 20px;
	font-weight: 400;
	letter-spacing: -0.5px;
	position: relative;
	transition: 0.2s;
	line-height: 120%;
	padding: 0 20px;
	color: darkblue;

}

.menu_list>li:hover>a {
	color: #000;
	font-weight: 700;
	background-color: #efefef;
}

.menu_list>li.on {
	color: #ffffff;
	background-color: #001b2e;
	height: 55px;
	text-align: center;
	display: flex;
	flex-wrap: nowrap;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	border-bottom: 3px solid #1e4951;
	font-size: 18px;
	font-weight: 400;
	letter-spacing: -0.5px;
	position: relative;
	transition: 0.2s;
	line-height: 120%;
	padding: 0 20px;
}



@media all and (max-width:580px) {
	.menu_list>li>a {
		font-size: 16px
	}

	.menu_list>li.on {
		font-size: 16px
	}
}


/* sContainer */
.sContainer {

	padding: 0 auto;
	margin: 0 auto;
	overflow: hidden;
}

.sContainer .title {
	padding: 0 auto 30px 30px;
	display: block;
	position: relative;
	border: 1px solid red;
}




.sContainer .title:after {
	content: '';
	width: 100%;
	height: 1px;
	display: block;
	position: absolute;
	padding: top 50px;
	margin: auto;
	background: #1e4951;
	z-index: -1;
}

.sContainer .title h2 {
	font-size: 27px;
	color: #1e4951;
	letter-spacing: -0.5px;
	line-height: 100%;
	display: inline-block;
	background: #fff;
	padding: 0 10px;
	margin-left: 15px;

	font-family: "Fira Sans", sans-serif;
	font-weight: 700;
}

/* sContents */
.sContents {
	margin: 0 auto;
	position: relative;
	word-break: keep-all;
	font-size: 18px;
}

.sContents h4 {
	font-size: 26px;
	color: #111;
	font-weight: 800;
	line-height: 100%;
	margin: 50px 0 20px;
	background: url('../asset/img/list_title.png') no-repeat left 2px;
	padding-left: 35px;
	font-family: "Fira Sans", sans-serif;
	font-weight: 500;

}

.sContents h4:nth-child(1) {
	margin-top: 0;
}

.sContents h5 {
	font-size: 20px;
	margin: 40px 0 15px;
	font-weight: 700;
	color: #1e4951;
}

.sContents h4+h5 {
	margin-top: 0;
}



.lineBox {
	border: 1px solid #ddd;
	padding: 40px 50px;
	border-radius: 10px;
}

@media all and (max-width : 600px) {
	.lineBox {
		border: 1px solid #ddd;
		padding: 10px 10px;
		border-radius: 5px;
	}
}

.contentsTable tr th {
	background: #0b2343;
	color: #fff;
	font-weight: 600;
}

.bg_sky {
	background: #b2d0e8;
}

.bg_sky strong {
	color: #0b2343;
}

.bg_green {
	background: #e0eac0;
}

.bg_green strong {
	color: #8db42a;
}

.bg_turque {
	background: #1e4951 !important;
	color: #fff !important;
}

.bg_TxtBox {
	padding: 30px 25px;
	line-height: 145%;
}

.bg_TxtBox_sky {
	background: #deebf7;
}

.bg_TxtBox_orange {
	background: #fff2cc;
}

.main_tab {
	width: 100%;
	height: auto;
	text-align: center;
	margin: 50px auto 50px;
	overflow: hidden;
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	align-items: stretch;
	padding-top: 1px;
	padding-left: 1px;
}

.main_tab>li {
	margin-left: -1px;
	margin-top: -1px;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 5px;
	min-height: 53px;
	text-align: center;
	font-size: 17px;
	color: #666;
	border: 1px solid #d0d0d0;
	font-weight: 400;
	position: relative;
	line-height: 130%;
	cursor: pointer;
	word-break: break-all;
}

.main_tab>li a {
	display: block;
	width: 100%;
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.main_tab>li.on {
	color: #fff;
	background: #b83f2b;
}

.main_tab>li:after {
	content: '';
	z-index: -1;
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	width: 100%;
	height: 0%;
	background: #f9f9f9;
	transition: all 0.3s ease 0s;
}

.main_tab>li:hover:after,
.main_tab>li:focus:after {
	height: 51px;
	transition: all 0.3s ease 0s;
}

.main_tab.s2>li {
	width: calc(50% + 1px);
}

.main_tab.s3>li {
	width: calc(33.3333% + 1px);
}

.main_tab.s4>li {
	width: calc(25% + 1px);
}

.main_tab.s5>li {
	width: calc(20% + 1px);
}

.main_tab.s6>li {
	width: calc(16.666% + 1px);
}

.main_tab.s7>li {
	width: calc(14.285% + 1px);
}

.main_tab.s8>li {
	width: calc(12.5% + 1px);
}

/* footer */
footer {
	width: 100%;
	background: #232323;
}

.footer_wrap {
	max-width: 1050px;
	padding: 40px 25px;
	margin: 0 auto;
	color: #fff;
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.3px;
	line-height: 170%;
}

.footer_wrap span {
	display: inline-block;
}

.footer_wrap span:after {
	content: '';
	width: 1px;
	height: 10px;
	background: #fff;
	display: inline-block;
	margin: 0 10px;
}

/* btn_over */
.btn_over:before {
	display: block;
	content: '';
	width: 120%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: #fff;
	-webkit-transform-origin: right top;
	-ms-transform: translateX(-101%) skewX(-17.620001deg);
	transform: translateX(-101%) skewX(-17.620001deg);
	-webkit-transform-origin: right top;
	-ms-transform-origin: right top;
	transform-origin: right top;
	transition: transform .55s cubic-bezier(.52, .08, .18, 1), -webkit-transform .55s cubic-bezier(.52, .08, .18, 1);
}

.btn_over {
	display: inline-block;
	border: 2px solid #1e4951;
	background: #1e4951;
	position: relative;
	overflow: hidden;
	transition: color .55s;
	text-align: center;
	border-radius: 50px;
}

.btn_over a {
	display: block;
	width: 100%;
	height: 100%;
	color: #fff;
	position: relative;
	z-index: 100;
	transition: color .55s;
	padding: 5px 30px;
}

.btn_over:hover a {
	color: #1e4951;
}

.btn_over:hover::before {
	background: #fff;
	-webkit-transform: translateX(0) skewX(-17.62deg);
	-ms-transform: translateX(0px) skewX(-17.620001deg);
	transform: translateX(0px) skewX(-17.620001deg);
	-webkit-transform-origin: left top;
	-ms-transform-origin: left top;
	transform-origin: left top;
}

.btn_green {
	border-color: #8db42a;
	background: #8db42a;
	/*border-radius: 30px;*/
}

.btn_green:hover {
	border-color: #8db42a !important;
}

.btn_green::before {
	background: #fff;
}

.btn_green:hover::before {
	background: #fff;
}

.btn_green a {
	font-weight: 900;
	color: #fff;
	position: relative;
}

.btn_green a:hover {
	color: #8db42a;
}

.btn_navy {
	border-color: #0b2343;
	background: #0b2343;
	/*border-radius: 10px;*/
}

.btn_navy:hover {
	border-color: #0b2343 !important;
}

.btn_navy::before {
	background: #fff;
}

.btn_navy:hover::before {
	background: #fff;
}

.btn_navy a {
	color: #fff;
	position: relative;
}

.btn_navy a:hover {
	color: #0b2343;
}

.link_btn.btn_over {
	border-color: #1e4951 !important;
	background: #1e4951 !important;
}

.link_btn.btn_over a {
	font-weight: 500;
	display: block;
	height: 100%;
	padding: 10px 20px;
	color: #fff !important;
	background: url('/images/main/btn_link.png') calc(100% - 35px) center no-repeat !important;
	line-height: 140%;
}

.link_btn.btn_over:before {
	background: #fff !important;
}

.link_btn.btn_over:hover a {
	background: transparent url('/images/main/btn_link_ov.png') calc(100% - 40px) center no-repeat !important;
	color: #1e4951 !important;
	position: relative;
}

/* popup */
.pop_load {
	width: 100%;
	height: 1px;
	z-index: 99999999;
	position: fixed;
	top: 0;
	left: 0;
}

.popup_wrap {
	width: 100%;
	height: 100%;
	background: url('/images/common/popBg.png');
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99999999999999;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	padding: 0 5px;
	display: none;
}

.popup {
	width: 1200px;
	max-height: 745px;
	background: #fff;
	overflow-x: hidden;
	overflow-y: auto;
	position: relative;
	border: 5px solid #3962db;
}

.popTitle {
	height: 60px;
	position: relative;
	background: #3962db;
}

.popTitle div {
	width: 1130px;
	line-height: 60px;
	font-weight: 500;
	color: #fff;
	font-weight: 500;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: 25px;
	font-weight: 500;
	padding: 0 30px;
}

.popTitle p.close_bt {
	position: absolute;
	top: 9px;
	right: 40px;
	z-index: 999999;
	cursor: pointer;
}

.popVideo {
	width: 100%;
	margin-top: 0px;
	overflow: hidden;
}

.popup_load {
	padding-bottom: 40px;
}

.popup_load.popPhoto_load {
	padding-bottom: 0;
}

.popVideo.popPhoto {
	text-align: center;
	height: auto;
	overflow: auto;
}

.hidden {
	height: 100%;
	min-height: 100%;
	overflow: hidden !important;
	touch-action: none;
}

.popVideo iframe {
	width: calc(100% + 50px);
	height: 690px;
	margin-left: -20px;
	margin-top: -10px;
}

.sContents .navy_btn {
	display: inline-block;
	background: #002c71 !important;
	border-color: #002c71 !important;
	color: #fff !important;
	padding: 10px 30px 10px 30px;
}

.sContents .sky_btn {
	background: #2eafc9 !important;
	border-color: #2eafc9 !important;
	color: #fff !important;
	padding: 10px 30px 10px 30px;
}

.sContents .red_btn {
	background: #a50021 !important;
	border-color: #a50021 !important;
	color: #fff !important;
	padding: 10px 30px 10px 30px;
}

.sContents .green_btn {
	background: #21ba45 !important;
	border-color: #21ba45 !important;
	color: #fff !important;
	padding: 10px 30px 10px 30px;
}

.sContents .navy_btn:hover {
	background: #002256 !important;
	border-color: #002256 !important;
}

.sContents .sky_btn:hover {
	background: #289ab1 !important;
	border-color: #289ab1 !important;
}

.sContents .red_btn:hover {
	background: #9e0121 !important;
	border-color: #9e0121 !important;
}

.sContents .green_btn:hover {
	background: #0ea432 !important;
	border-color: #0ea432 !important;
}

.sContents .btn_320 input {
	width: 320px !important;
	margin-bottom: 5px !important;
}

.sContents .btn_190 input {
	width: 190px !important;
	margin-bottom: 5px !important;
}