/* style css */
body, html {
	overflow-x:hidden;
	min-width:1280px
}
body {
	-ms-overflow-style: none;
	scrollbar-width: none;
	-webkit-font-smoothing: antialiased;
	color:#292929;
}
body::-webkit-scrollbar {
	display: none;
}
img {
	-webkit-user-drag: none;
}
::selection {
	background: #1f97f0;
	color: #fff
}
::-moz-selection {
	background: #1f97f0;
	color: #fff
}
::-webkit-selection {
	background: #1f97f0;
	color: #fff
}


.row {
	padding: 0 20px;
	margin: auto
}

/* 공통 헤더 시작 */
.header {
	position:fixed;
	top: 0;
	left: 0;
	right: 0;
	text-align:center;
	z-index: 999999;
	transition:all 300ms ease-in-out;
	min-width:1280px;
	height: 250px;
	cursor: default;
	background-color: #fff;
}
.header .row {
	position:relative;
	display:flex;
	flex-direction: column;
	height: 100%;
	max-width: 1200px;
	padding: unset;
}

.header .row .header_top {
	display: flex;
	align-items:center;
	justify-content: center;
	width: 100%;
	height: 130px;
	position: relative;
}
.header .today_box {
	display: flex;
	justify-content: space-between;
	flex-direction: row;
	padding-top: 65px;
	align-items: flex-end;
	padding-left: 10px;
}
.header .today_box .date {
	font-size: 12px;
}
.header .today_box .weather {
	margin: 0 5px;
}
.header .today_box .temper {
	font-size: 15px;
	line-height: 1.4;
}
.header .today_box .weather img {
	width: 16px;
}
.header .logo {
	/*padding-left: 80px;*/
	font-size: 48px;
	letter-spacing: -4px;
	font-weight: bold;
	font-family: 'NotoSansKR-Bold';
	margin-right: 75px;
	display: flex;
	flex-direction: row;
	align-items: center;
}
.header .logo > img {
	margin-right: 10px;
}
.top_link {
	width: 100%;
	height: 70px;
	display: flex;
	justify-content: center;
	border-bottom: 1px solid #000;
	align-items: flex-start;
}
.top_link a {
	position: relative;
	font-size: 18px;
	margin-right: 10px;
	margin-left: 10px;
	font-weight: 600;
	line-height: 1.4;
}
.top_link a.join_btn {
	color: #971E25;
}
.top_link a.on {
	color: #aaaaaa;
}
.top_link a:hover {
	color: #8b062c;
}

.top_link a:not(.join_btn)::after {
	content: none;
	display: inline-block;
	position: absolute;
	top: 50%;
	right: -9px;
	transform: translateY(-50%);
	width: 1px;
	height: 10px;
	background-color: rgba(170, 170, 170, 0.62);
}

.header .top_right_box {
	position: absolute;
	right: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: center;
}
.top_right_box .search_box {
	width: 240px;
	vertical-align: middle;
	white-space: nowrap;
	position: relative;
	height: 35px;
}
.search_box .search_input {
	width: 240px;
	height: 35px;
	background: #fff;
	border: 1px solid #c6c6c6;
	font-size: 13px;
	float: left;
	color: #292929;
	padding-left: 12px;
}
.search_box .search_input::selection {
	box-shadow: none !important;
	outline: none !important;
	border: none !important;
}
.search_input::placeholder, .search_input input#search:-moz-placeholder, .search_input input#search::-moz-placeholder, .search_input input#search:-ms-input-placeholder {
	color: #b5b4b4;
}
.search_box > a {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 10px;
	z-index: 1;
}

.toggle_search_box {
	width: 240px;
	vertical-align: middle;
	white-space: nowrap;
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
	display: inline-block;
}
.toggle_search_box.on {
	animation: toggle_search_box_on ease-in-out .2s forwards;
}
.toggle_search_box.off {
	animation: toggle_search_box_off ease-in-out .2s forwards;
}
.toggle_search_box.off input {
	cursor: default;
}
@keyframes toggle_search_box_on {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
@keyframes toggle_search_box_off {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}
.toggle_search_box .search_input {
	width: 240px;
	height: 35px;
	background: #fff;
	border: 1px solid #c6c6c6;
	font-size: 13px;
	float: left;
	color: #292929;
	padding-left: 12px;
}
.toggle_search_box .search_input::selection {
	box-shadow: none;
}
.toggle_search_box > img {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 10px;
	z-index: 1;
}

.header .row .header_bottom {
	position: relative;
	display: flex;
	align-items:center;
	justify-content: center;
	width: 100%;
	height: 50px;
	border-bottom: 2px solid rgba(170, 170, 170, 0.5);
}
.header .row .header_bottom .menu_link a {
	font-size: 18px;
	font-weight: bold;
	position: relative;
	margin-left: 13px;
	margin-right: 13px;
	letter-spacing: -1px;
}
.header .row .header_bottom .menu_link a::after {
	content: '';
	display: inline-block;
	position: absolute;
	top: calc(50% + 1px);
	right: -14px;
	transform: translateY(-50%);
	width: 1px;
	height: 11px;
	background-color: #aaaaaa;
}
.header .row .header_bottom .menu_link a:last-child::after {
	content: none;
}
.header .row .header_bottom .sns_link {
	position: absolute;
	right: 10px;
}
.header .row .header_bottom .sns_link a {
	margin-left: 2px;
	margin-right: 2px;
}










.header_bottom {
	position:fixed;
	top: 0;
	left: 0;
	right: 0;
	text-align:center;
	z-index: 999999;
	transition-duration: 400ms;
	height: 100px;
	!background-color:#fff;
}

.header_bottom:hover,
.header_bottom.w {
	background-color:#fff;
}


.header_bottom .bottom_row {
	position:relative;
	display:flex;
	align-items:center;
	justify-content: space-between;
	height: 100%;
	padding: 0 120px;
}

.header_bottom .nav {
	display:flex;
	/*position:absolute;
	left: 50%;
	transform:translate(-50%, 0);*/
}

.header_bottom .right_box {
	display:flex;
	align-items:center;
	height: 100%;
}

.header_bottom .nav li {
	width: 120px;
	text-align:center;
	height: 100%;
	line-height:100px;
	font-size:17px;
}

.header_bottom .nav li a {
	font-family:'NotoSansKR-Bold', serif;
	letter-spacing:-1px;
	color:#002448;
	display: flex;
	justify-content: center;
}

.header_bottom .nav li.on a,
.header_bottom .nav li a:hover {
	color:#8b062c;
}

.header_bottom .tel {
	margin: 0 25px;
}

.header_bottom .drop_menu {
	display:none;
	position:absolute;
	background-color:#002448;
	width: 100%;
	top: 50px;
	left: 0;
	padding: 30px 0px;
	height: 300px;
}

.header_bottom .drop_menu .drop {
	position:relative;
	z-index: 998;
	right: 0px;
	font-size:15px;
	display: flex;
	justify-content: center;
}

.header_bottom .drop_menu .drop > li {
	width: 120px;
	text-align:center;
}

.header_bottom .drop_menu .drop > li a {
	color:#fff;
}

.header_bottom .drop_menu .drop > li a:hover {
	font-weight: bold;
}

.header_bottom .drop_menu .sub_menu > li {
	margin-bottom: 15px;
	letter-spacing:-1px
}






















/* 공통 헤더 끝 */


/* 공통 푸터 시작 */
.footer {
	padding: 80px 0;
	text-align:center;
	background-color:#fff;
	cursor: default;
	position: relative;
	z-index: 20;
	border-top: 1px solid #aaaaaa;
}
.footer .row {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	justify-content: space-between;
	max-width: 1200px;
}
.footer_log p {
	font-size: 28px;
	letter-spacing: -1px;
	line-height: 2.5;
}
.footer_info01 {
	text-align: start;
}
.footer_info01 > div {
	margin-bottom: 20px;
}
.footer_info01 p, .footer_info01 span {
	font-size: 14px;
	color: #8c8c8c;
	line-height: 1.7;
}
.footer_info02 p, .footer_info02 a {
	text-align: start;
	font-size: 14px;
	color: #8c8c8c;
	line-height: 1.7;
}

.footer .select__zone, .footer .second_zone {
	position:relative;
	margin-left: 30px;
}
.footer .second_zone {
	margin-top: 5px;
}
.footer .select__zone .title, .footer .second_zone .title {
	border: 1px solid #dddddd;
	background-color: #fff;
	color: #848484;
	font-size: 13px;
	width: 260px;
	height: 45px;
	display: flex;
	align-items:center;
	padding-left: 25px;
	background-image: url('../img/footer_arrow.png?new');
	background-position: 90% center;
	cursor: pointer;
}
.footer .select_con, .footer .second_select_con {
	position: absolute;
	top: 45px;
	left: 0;
	right: 0;
	display: none;
	height: 176px;
	overflow-y: auto;
	overflow-x: hidden;
	/*border-bottom: 1px solid #dddddd;*/
}
.footer .select_con {
	z-index: 110;
}
.footer .second_select_con {
	z-index: 100;
}
.footer .select_con li, .footer .second_select_con li {
	border: 1px solid #dddddd;
	width: 260px;
	height: 45px;
	margin-top: -1px;
}
.footer .select_con li a, .footer .second_select_con li a {
	width: 100%;
	height: 100%;
	display: flex;
	align-items:center;
	padding-left: 25px;
	background-color: #fff;
	color: #848484;
}


.back-top {
	position:fixed;
	bottom: 20px;
	right: 20px;
	opacity: 0;
	visibility:hidden;
	transition-duration: .4s;
	cursor:pointer;
}
.back-top.fixed {
	position:fixed;
}
.back-top.show {
	opacity: 1;
	visibility:visible;
}
/* 공통 푸터 끝 */


.video-container {
	position: relative;
	padding-bottom: 53.5%;
	padding-top: 30px;
	height: 0;
	overflow: hidden;
}

.video-container iframe, .video-container object, .video-container embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


table.list_box {
	font-size: .9em;
	width: fit-content;
	border-collapse: collapse;
	overflow: hidden;
	margin-bottom: 40px;
}



.list_box thead {
	font-weight: bold;
	border-top: 2px solid #002448;
	border-bottom: 1px solid #002448;

}

.list_box td, .list_box th {
	padding: 5px 15px;
	vertical-align: middle;
}
.list_box th {
	text-align: center;
	padding-top: 10px;
	padding-bottom: 10px;
}
.list_box td {
	border-bottom: 1px solid rgba(0,0,0,.1);
	background: #fff;
	text-align: center;

}
.list_box td:nth-child(2) {
	width: 620px;
	text-align: start;

}
.list_box tr:last-child > td {
	border-bottom: 1px solid #002448;

}
.list_box a {
	color: #002448;
}

.footer_info01 > div {
	display: flex;
}
.footer_info01 > div > div:last-child {
	margin-left: 30px;
}
.footer_info01 a, .footer_info03 a {
	color: #8c8c8c;
}
.footer_log p {
	line-height: 1.2;
}
.today_count {
	text-align: start;
	font-size: 14px;
	margin-top: 15px;
	line-height: 2;
	width: 260px;
	padding-left: 40px;
}


/* 노트북 */
@media screen and (max-width:1680px) {

}

/* 테블릿 가로 */
@media screen and (max-width: 1200px) {

}
/* 테블릿 세로 */
@media screen and (max-width: 1040px) {

}

@media(min-width:992px) {
	.pc {
		display:block !important
	}
	.pc_flex {
		display:flex !important
	}
	.mobile {
		display:none !important
	}
	.mobile_flex {
		display: none !important;
	}
}
/* 모바일 */
@media(max-width:991px) {
	.pc {
		display:none !important
	}
	.pc_flex {
		display:none !important
	}
	.mobile {
		display:block !important
	}
	.mobile_flex {
		display: flex !important;
	}

	input, select, textarea {
		-webkit-appearance: none;
		-webkit-border-radius: 0;
		font-size:22px;
		color:#000;
	}
	input[type="checkbox"] {
		-webkit-appearance: checkbox;
	}
	input[type="radio"] {
		-webkit-appearance: radio;
	}
	input[type='radio'] {
		width: 22px;
		height: 22px;
	}
	body,html {
		min-width:320px;
		!overflow-x:hidden;
		margin: auto;
	}

	/* 헤더 */
	.header {
		min-width:100%;
		height: 220px;
		width: 100%;
		transition:none;
		max-width:750px !important;
	}
	.header .row {
		max-width: 750px;
		justify-content: space-between;
	}
	.header .row .header_top {
		height: 120px;
		width: 100vw;
		justify-content: space-between;
		padding: 0 35px;
	}
	.header .top_right_box {
		position: relative;
	}
	.header .menu_btn {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: space-between;
		height: 22px;
		margin-left: 40px;
		position: relative;
	}
	.header .menu_btn::after {
		position: absolute;
		display: inline-block;
		content: '메뉴';
		font-size: 26px;
		color: #000;
		letter-spacing: -1px;
		top: 50%;
		transform: translateY(-50%);
		left: -55px;
		border: 2px solid rgba(0, 0, 0, 0.53);
		padding: 15px 18px 15px 59px;
		border-radius: 50px;
	}
	.header .menu_btn > div {
		width: 27px;
		height: 2px;
		background-color: #282c34;
		position: relative;
		left: -32px;
	}
	.header .logo {
		padding-left: 0;
		margin-right: 0;
		font-size: 36px;
		letter-spacing: -1px;
	}
	.header .aside .logo {
		color: #fff;
	}
	.search_btn {
		/*position: absolute;*/
		/*left: calc(50% + 320px);*/
		padding: 0 15px;
	}

	.header .row .aside .menu_link a {
		font-size: 29px;
		margin-left: 14px;
		margin-right: 14px;
	}
	.header .row .aside .menu_link a::after {
		height: 20px;
		right: -17px;
	}


	.aside {
		width: 100vw;
		height: 100vh;
		background-color: #002448;
		position: fixed;
		top: 0;
		left: -100vw;
		z-index: 9999999;
		transition-duration: 300ms;
		transform: translate3d(0, 0, 0);
		padding: 60px;
		padding-top: 20px;
	}

	.aside.active {
		left: 0;
		transform: translate3d(0,0,0);
	}

	.aside .close_btn {
		position:absolute;
		top: 20px;
		left: 35px;
		right: unset;
		color:#fff;
		font-size:45px;
	}
	.aside.open {
		left: 0;
		transform: translate3d(0,0,0);
	}


	.aside .inner {
		display: flex;
		height: fit-content;
		margin-bottom: 40px;
		flex-direction: column;
		text-align: center;
	}

	.aside .title {
		width: fit-content;
		margin: 0 auto;
		margin-bottom: 80px;
	}

	.aside .aside_inner {
		overflow-y: scroll;
		height: 1200px;
	}

	.aside .aside_inner li {
		font-size:30px;
		padding: 20px;
		font-family:'NotoSansKR-Bold';
		position:relative;
		border-bottom:1px solid #88929d;
		text-align:left;
	}

	.header .row .header_top::after {
		content: none;
	}

	.aside .aside_inner li a {
		color:#fff;
		font-size: 35px;
	}

	.aside .aside_inner li.active a {
		color:#fff;
		font-weight: bold;
	}

	/*.aside .aside_inner > li .arrow {
        position:absolute;
        top: 8px;
        right: 10px;
        font-size:18px;
        transition:all 300ms;
        font-weight:normal;
        width: 12px;
    }

    .aside .aside_inner > li.active .arrow {
        transform:rotate(180deg);
    }*/

	.aside .sub_menu {
		display:none;
		background-color:#fff;
		padding: 10px 0;
	}

	.aside .sub_menu li {
		border-bottom:0;
		padding: 10px;
		padding-left: 30px;
		font-size:24px;
	}


	.aside .sub_menu li:last-child {
		margin-bottom: 0;
	}

	.aside .sub_menu li a {
		display:block;
		color:#8b062c;
	}




	.bg_black {
		display:none;
		position:fixed;
		z-index: 1000;
		top: 125px;
		bottom: 0;
		left: 0;
		right: 0;
		width: 100%;
		height: 100%;
		background-color:rgba(0,0,0,0.7);
	}

	.bg_black.active {
		display:block;
	}


	/* 푸터 */
	.footer {
		padding: 120px 0;
	}
	.footer .row {
		flex-direction:column;
		justify-content:center;
		align-items: center;
	}
	.footer_log p {
		font-size: 46px;
	}
	.footer_info00 {
		display: flex;
		margin: 20px;
		margin-top: 40px;
		align-items: center;
	}
	.footer_info00 p {
		color: #444;
		font-size: 35px;
		/*margin-right: 30px;*/
		position: relative;
	}
	.footer_info00 p::after {
		/*content: '';*/
		display: inline-block;
		position: absolute;
		top: 10px;
		right: -15px;
		width: 1px;
		height: 20px;
		background-color: #8c8c8c;
	}
	.footer_info01 p, .footer_info01 span, .footer_info02 p, .footer_info02 a {
		font-size: 28px;
		text-align: center;
	}
	.footer_info01 > div {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	.footer_info01 p {
		display: flex;
		flex-direction: row;
		text-align: center;
	}
	.footer_info01 p span {
		margin-right: 10px;
		margin-left: 10px;
		position: relative;
	}
	.footer_info01 p span:nth-child(1)::after {
		content: '';
		display: inline-block;
		position: absolute;
		top: 10px;
		right: -10px;
		width: 1px;
		height: 20px;
		background-color: #8c8c8c;
	}
	.copyright_box > div {
		flex-wrap: wrap;
		justify-content: center;
	}
	.copyright_box > div > p, .privacy_box > a {
		font-size: 20px;
	}
	.privacy_box {
		font-size: 16px;
	}
	.footer .left_area {
		width: 100%;
		margin-bottom: 40px;
	}
	.footer_info03 {
		margin-top: 25px;
	}
	.footer_info03 span {
		font-size: 28px;
		text-align: center;
		line-height: 1.8;
		color: #8c8c8c;
	}
	.footer .sns_link a {
		margin-right: 5px;
	}

	.back-top {
		position:absolute;
		right: 20px;
		bottom: 164px;
		z-index: 999999;
	}


	.header_bottom .drop_menu {
		display: none !important;
	}
	.header_bottom .nav {
		width: 100vw;
		justify-content: space-between;
		padding: 0 20px;
	}
	.header_bottom .nav li {
		width: 60px;
		line-height: 1;
		font-size: 20px;
	}
	.header_bottom .nav li.on a, .header_bottom .nav li a:hover {
		color: #002448;
	}

	table.list_box {
		font-size: 30px;
		border-top: 20px solid #ddd;
	}
	.list_box tr {
		display: flex;
		flex-direction: column;
		border-bottom: 2px solid #4b5d70;
		padding: 15px 0;
	}
	.list_box tr:last-child {
		border-bottom: unset;
	}
	.list_box td {
		width: 100vw;
		text-align: start;
	}
	.list_box td {
		border-bottom: none;
		padding: 0 25px;
	}
	.list_box div {
		display: flex;
		justify-content: flex-start;
		font-size: 25px;
		color: gray;
	}
	.list_box div p {
		margin-right: 20px;
		position: relative;
	}
	.list_box div p::after {
		content: '|';
		font-size: 18px;
		display: block;
		position: absolute;
		right: -13px;
		top: 50%;
		transform: translateY(-50%);
	}
	.list_box div p:last-child::after {
		content: none;

	}
	.list_box tr:last-child > td {
		border-bottom: unset;
	}
	table.list_box {
		margin-bottom: 0;
		padding: 0;
		margin-bottom: 150px;
	}
	.list_box a {
		font-weight: 600;
		color: #000;
	}

	.footer .select__zone {
		margin-top: 80px;
		margin-left: 0;
	}
	.footer .second_zone {
		margin-top: 5px;
		margin-left: 0;
	}
	.footer .select__zone .title, .footer .second_zone .title {
		font-size: 32px;
		width: 420px;
		height: 80px;
		border: 1px solid #444;
		background-image: url('../img/footer_arrow.png?new');
	}
	.footer .select_con, .footer .second_select_con {
		top: 80px;
		height: 316px;
	}

	.footer .select_con li, .footer .second_select_con li {
		width: 420px;
		height: 80px;
		border: 1px solid #444;
	}
	.footer .select_con li a, .footer .second_select_con li a {
		font-size: 28px;
	}
	.today_count {
		font-size: 32px;
		line-height: 1.5;
		margin: 40px;
		width: unset;
		padding-left: 0;
	}


	.m_login_box {
		position: relative;
		background-color: #fff;
		display: flex;
		justify-content: center;
		height: 100px;
		align-items: flex-start;
		border-bottom: 3px solid #ddd;
	}
	.m_login_box a {
		font-size: 28px;
		font-weight: bold;
		margin: 0 20px;
		line-height: 1.4;
	}
	.m_login_box a.join_btn {
		color: #971E25;
	}
}
