@charset "utf-8";

/* font */
@import url("../font.css");
@import url('https://fonts.googleapis.com/css?family=Montserrat:100,200,300,400,500,600,700,800');



/* 웹폰트 */
@font-face {
	font-family: 'icomoon';
	src:  url('fonts/icomoon.eot?xiheii');
	src:  url('fonts/icomoon.eot?xiheii#iefix') format('embedded-opentype'),
		url('fonts/icomoon.ttf?xiheii') format('truetype'),
		url('fonts/icomoon.woff?xiheii') format('woff'),
		url('fonts/icomoon.svg?xiheii#icomoon') format('svg');
	font-weight: normal;
	font-style: normal;
	font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
	/* use !important to prevent issues with browser extensions that change fonts */
	font-family: 'icomoon' !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;

	/* Better Font Rendering =========== */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.icon-download:before {
	content: "\e900";
}
.icon-subway:before {
	content: "\e901";
}
.icon-travel-bus:before {
	content: "\e902";
}
.icon-keyboard_arrow_right:before {
	content: "\e905";
}
.icon-keyboard_arrow_down:before {
	content: "\e906";
}
.icon-arrow-right:before {
	content: "\e903";
}
.icon-youtube:before {
	content: "\ea9d";
}



/* Type */
html {
	font-size: 14pt;
}
	@media only screen and (max-width: 1200px) {
		html {
			font-size: 13pt;
		}
	}
	@media only screen and (max-width: 900px) {
		html {
			font-size: 12pt;
		}
	}



/* Basic */
* {
    -ms-user-select: none;
    -moz-user-select: -moz-none;
    -webkit-user-select: ;
    -khtml-user-select: ;
    user-select: ;
}
@-ms-viewport {
	width: device-width;
}



/* Box Model */
*, *:before, *:after {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}



/* Reset */
html, body, div, span, applet, object, iframe, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0; padding: 0;
	font-family: 'Noto Sans KR', 'Montserrat', sans-serif;
	border:0;
}
body {
	overflow-y: scroll;
	color: #333; line-height: 1.6; font-weight: 350;	
	-webkit-text-size-adjust: none;
	-ms-overflow-style: scrollbar;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
ol, ul, li {
	list-style: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
strong, b {
	font-weight: 700;
}
a {
	text-decoration: none; 
	color: #333;
}
a:hover {
	text-decoration: none;
}
hr, legend, caption {	
	overflow: hidden; 
	position: absolute; 
	left: -9999rem; top: -9999rem; 
	width: 100%; height: 1px; 	
	color: #fff; 
	text-indent: -999rem;
}
caption {
    width: 100%;
    margin: 0; padding: 0;
    font-size: 0; line-height: 0; text-align: right; 
}
caption.blind { 
	position: relative; 
}

	@media only screen and (max-width: 500px) {
		html, body {
			min-width: 320px;
		}
	}



/* form */
input, textarea, button {
	-webkit-appearance: none; 
	-moz-appearance: none; 
	appearance: none;
}
input, textarea, button, select {
	-webkit-border-radius: 0; 
	-moz-border-radius: 0; 
	-o-border-radius: 0; 
	font-family: 'Noto Sans KR', sans-serif; color: #333; 
}
input:not([type=image], [type=file], [type=submit], [type=button]), textarea, select { 
	box-sizing: border-box; 
	max-width: 96%; height: 40px; 
	padding: 5px; 
	border: 1px solid #ccc;
}
select { 
	max-width: 100%;
}
input[type="checkbox"],
input[type="radio"] {
	width: 20px; height: 20px;
	background-color: #fff; 
	-webkit-appearance: checkbox;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}
select, label, input { 
	cursor: pointer;
}
input + label { 
	margin-right: 15px; margin-left: 3px;
    vertical-align: middle;
}

	@media only screen and (max-width: 500px) {
		input, textarea, select { 
			height: 30px;
			padding: 2px;
		}
	}



/* h */
h1, h2, h3, h4, h5, h6 {	
	margin: 0; padding: 0;
	line-height: 1.5;	
	word-break: keep-all;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
	color: inherit;
	text-decoration: none;
}
h2 {
	font-size: 1.7rem; line-height: 54px; font-weight: 700;
}
h3	{
	font-size: 1.3rem; line-height: 34px; font-weight: 500;
}
h4 {
	font-size: 1.1rem;
}
h5 {
	font-size: 0.9rem;
}
h6 {
	font-size: 0.7rem;
}

	@media only screen and (max-width: 736px) {
		h3 {
			font-size: 1.2rem;			
		}
	}



/* align */
.text_left {
	text-align: left !important;
}

.text_center {
	text-align: center !important;
}

.text_right {
	text-align: right !important;
}



/* Font Color */
.gray { 
	color: #999 !important;
}
.orange { 
	color: #ff6c00 !important;
}
.red { 
	color: #ff2222 !important;
}
.lightBlue { 
	color: #0078cb !important;
}



/* Background */
.bgwhite { 
	background: #fff !important;
}



/* 여백 */
.mt20 {
	margin-top: 20px !important;
}
.mt40 {
	margin-top: 40px !important;
}
.mt60 {
	margin-top: 60px !important;
}
.mt80 {
	margin-top: 80px !important;
}
.mb5 { 
	margin-bottom: 5px !important;
}
.mb10 {
	margin-bottom: 10px !important;
}
.mb20 {
	margin-bottom: 20px !important;
}
.mb40 {
	margin-bottom: 40px !important;
}
.mb60 {
	margin-bottom: 60px !important;
}
.mb80 {
	margin-bottom: 80px !important;
}
.mlr_auto {
	margin-left: auto !important; margin-right: auto !important;
}
.pt20 { 
	padding-top: 20px !important; 
}
.pt40 { 
	padding-top: 40px !important; 
}
.pt60 { 
	padding-top: 60px !important; 
}
.pb5 { 
	padding-bottom: 5px !important;
}
.pb40 { 
	padding-bottom: 40px !important;
}
.plr10 {
	padding-left: 10px !important; padding-right: 10px !important;
}

	@media only screen and (max-width: 1024px) {
		.mt20 {
			margin-top: 15px !important;
		}
		.mt40 {
			margin-top: 20px !important;
		}
		.mt60 {
			margin-top: 40px !important;
		}
		.mt80 {
			margin-top: 60px !important;
		}
		.mb20 {
			margin-bottom: 15px !important;
		}
		.mb40 {
			margin-bottom: 20px !important;
		}
		.mb60 {
			margin-bottom: 40px !important;
		}
		.mb80 {
			margin-bottom: 50px !important;
		}
		.pt20 { 
			padding-top: 15px !important; 
		}
		.pt40 { 
			padding-top: 20px !important; 
		}
		.pt60 { 
			padding-top: 40px !important; 
		}
		.pb40 { 
			padding-bottom: 20px !important;
		}
	}



/* 스킵네비게이션 */
.skip_navigation,
.skip {    
	overflow: hidden; 
	position: absolute; 
	top: -9999rem; left: -9999rem; 
	width: 100%; height: 1px; 	
	margin: 0 !important;
	color: #fff; 
	z-index: 100;
}
.skip_navigation dt,
.skip_navigation a,
.skip a { 
    font-size: 1.3em; text-align: center;
}
.skip_navigation dt:focus,
.skip_navigation a:focus,
.skip a:focus, 
.skip a:active {
    position: relative; 
    top: 0; left: 0;
	width: 100%; height: auto; 
    padding: 15px 0;
	font-weight: bold; color: #fff; 
	border-bottom: 1px solid #dcdcdc;
    background: #368dc9;
}



/* Hidden */
.sound_only, .blind, #accessibility { 
	overflow: hidden; 
	position: absolute; 
	left: -9999rem; top: -9999rem; 
	width: 100%; height: 1px; 	
	color: #fff; 
	text-indent: -999rem;
}



/* 버튼관련 */
.btn_small { 
	padding: 4px 7px; 
	color: #555; 
	background: #ffffff; /* Old browsers */
	background: -moz-linear-gradient(top,  #ffffff 1%, #f9f9f9 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(1%,#ffffff), color-stop(100%,#f9f9f9)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #ffffff 1%,#f9f9f9 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #ffffff 1%,#f9f9f9 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #ffffff 1%,#f9f9f9 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #ffffff 1%,#f9f9f9 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f9f9f9',GradientType=0 ); /* IE6-9 */; 
	border:1px solid #aaa; border-radius:3px; cursor:pointer 
}

.btn_small01 { 
	box-sizing: border-box; 
	padding: 7px 18px; 
	color: #fff; font-size: .85rem; 
	border: 1px solid #666; 
	background: #666; 
	cursor: pointer;
}
.btn_small01:focus, .btn_small01:hover { 
	color: #fff !important; 
	border: 1px solid #3163c7; 
	background: #3163c7; 
}

.btn_small02,
.btn_small03 { 
	box-sizing: border-box; 
	display: inline-block; 
	margin-left: 3px; 
	font-size: .9rem;
	vertical-align: top; 
	cursor: pointer;
}
.btn_small02 { 	
	color: #fff; 
	border: 1px solid #666; border-radius: 3px; 
	background: #666; 
}
.btn_small02:hover, .btn_small02:focus { 
	border: 1px solid #333; 
	background: #333; 
}

.btn_small02:only-child, .btn_small02:first-child { 
	border: 1px solid #003b68; 
	background:#003b68; 	 
}

.btn_small02:only-child:focus, .btn_small02:first-child:focus,
.btn_small02:only-child:hover, .btn_small02:first-child:hover { 
	border: 1px solid #012038; 
	background: #012038; 	
}

.btn_small03 { 
	color: #537fa7; 
	border: 1px solid #b0cbea; border-radius: 3px;  
	background: #f5fdfe; 
}
.btn_small03:first-child {
	margin-left: 0;
}
.btn_small03:focus, .btn_small03:hover { 
	color: #124777;
	border-color: #124777;
}


/* 우편번호검색 */
.btn_zip01 { 
	display: inline-block;
	padding: 4px 6px; 
	color: #fff !important; 
	border: 1px solid #7a7a7a; border-radius: 5px 0 0 0; 
	background: #9f9f9f;  
}


	@media only screen and (min-width: 1201px) {
		.btn_small02,
		.btn_small03 {
			height: 55px;
			padding: 0 1.5rem;
			line-height: 50px;
		}
	}
	@media only screen and (max-width: 1200px) {
		.btn_small02,
		.btn_small03 {
			height: 44px;
			margin-left: 1px; 
			padding: 0 1rem;
			font-size: .9rem; line-height: 40px;
		}
	}
	@media only screen and (max-width: 900px) {
		.btn_small02,
		.btn_small03 {
			height: 40px;
			padding: 0 .5rem;
			line-height: 36px;
		}
	}