@charset "utf-8";

.inner {
	padding: 0 15px;
}

.img_full_wrap {
	font-size: 0;
	text-align: center;
}


/* PC , 테블릿 가로 (해상도 768px ~ 1023px)*/
@media all and (min-width:480px) and (max-width:1023px) { 
	#wrap {
		width: 100%;
		padding-top: 50px;
	}
}

/* 모바일 가로, 테블릿 세로 (해상도 ~ 479px)*/
@media all and (max-width:479px) { 
	#wrap {
			width: 100%;
			padding-top: 50px;
	}
}


.wrap_overlay {
	content: "";
    position: fixed;
    top: 0;
    right: 0;
    bottom: -70px;
    left: 0;
    z-index: 1030;
    background-color: rgba(0,0,0,.6);
}
#wrap.type_base {
	background-color: #2F3A56;
}
#wrap.type_E8ECF2 {
	background-color: #E8ECF2;
}
#wrap.type_fff,
#wrap.type_sub {
	background-color: #fff;
}

.main_ani_right {
	-webkit-transform: translateX(-50px);
	-moz-transform: translateX(-50px);
	-ms-transform: translateX(-50px);
	-o-transform: translateX(-50px);
	transform: translateX(-50px);
	-webkit-transition: .2s cubic-bezier(0.175, 0.885, 0.705, 1.435);
	-o-transition: .2s cubic-bezier(0.175, 0.885, 0.705, 1.435);
	-moz-transition: .2s cubic-bezier(0.175, 0.885, 0.705, 1.435);
	transition: .2s cubic-bezier(0.175, 0.885, 0.705, 1.435);
	opacity: 0;
}
.main_ani_left {
	-webkit-transform: translateX(50px);
	-moz-transform: translateX(50px);
	-ms-transform: translateX(50px);
	-o-transform: translateX(50px);
	transform: translateX(50px);
	-webkit-transition: .2s cubic-bezier(0.175, 0.885, 0.705, 1.435);
	-o-transition: .2s cubic-bezier(0.175, 0.885, 0.705, 1.435);
	-moz-transition: .2s cubic-bezier(0.175, 0.885, 0.705, 1.435);
	transition: .2s cubic-bezier(0.175, 0.885, 0.705, 1.435);
	opacity: 0;
}
/*
.main_ani_fade {
	-webkit-transition: .2s ease-in;
	-o-transition: .2s ease-in;
	-moz-transition: .2s ease-in;
	transition: .2s ease-in;
	opacity: 0;
}
*/
/* #wrap.on .main_ani_fade, */
#wrap.on .main_ani_right,
#wrap.on .main_ani_left {
	-webkit-transform: none;
	-moz-transform: none;
	-ms-transform: none;
	-o-transform: none;
	transform: none;
	opacity: 1;
}

.splash_wraaper {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: center;
	padding: 0 20px;
	font-size: 0;
	width: 100%;
	height: 100%;
	background-color: #E8ECF2;
}

.header {
	position: fixed;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    top: 0;
    right: 0;
    left: 0;
    height: 50px;
    padding: 7px 15px;
	z-index: 10000;
/*	border-bottom: 1px solid #EAEAEA; */
}
.header.header--back {
	border-bottom: 1px solid #EAEAEA;
}

.type_base .header {
	background-color: #2F3A56;
}
.type_E8ECF2 .header {
	background-color: #E8ECF2;
}
.type_fff .header {
	background-color: #fff;
}

.main_tit {
	font-size: 0;
}
.main_tit img {
	display: inline-block;
	vertical-align: middle;
	margin-right: 5px;
}
.main_tit span {
	display: inline-block;
	vertical-align: middle;
	font-size: 21px;
	font-weight: 700;
	color: #fff;
	
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.selectbox {
	position: relative;
    display: inline-block;
    vertical-align: middle;
    z-index: 1;
    padding-right: 20px;
    width: auto;
    max-width: 80%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    background: #fff url(/assets/img/ic_spinner_down.svg) no-repeat right center;
}
.main_tit .select_label {
	position: relative;
    top: 0;
    left: 0;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    z-index: -1;
}
.main_tit select {
	position: absolute;
    top: 0;
    left: 0;
	width: 100%;
    height: auto;
    padding: 0;
    border: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-size: 17px;
}
.type_E8ECF2 .main_tit span,
.type_E8ECF2 .main_tit .select_label,
.type_fff .main_tit span,
.type_fff .main_tit .select_label {
	color: #242424;
}
.header__setting {
	font-size: 0;
	flex-shrink: 0;
}
.header__setting .icon-ic_gnb_setting_nor {
	font-size: 23px;
}
.header__setting .icon-ic_gnb_setting_nor:before {
	color: #787F8D;
}
.header__setting.active .icon-ic_gnb_setting_nor:before {
	color: #fff;
}

.sub_tit {
	position: absolute;
	top: 50%;
	left: 50%;
	font-size: 17px;
	font-weight: 500;
	color: #222;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	pointer-events: none;
}

.container {
	position: relative;
	background-color: #fff;
	height: 100%;
/*	border-top: 1px solid #EAEAEA; */
/*
	border-radius: 20px 20px 0 0;
	-webkit-box-shadow: 0 -2px 13px -1px rgba(0,0,0,.15);
	box-shadow: 0 -2px 13px -1px rgba(0,0,0,.15);
*/
}

.container_intro {
	position: relative;
	height: 100%;
}


.type_fff .container {
	-webkit-box-shadow: none;
	box-shadow: none;
}
.type_sub .container {
	border-top: 1px solid #EAEAEA;
}
/*
.container:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 27px;
}
.type_base .container:before {
	background-color: #2F3A56;
}
.type_E8ECF2 .container:before {
	background-color: #E8ECF2;
}
*/

.inner_form {
	display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    min-height: 100%;
}

.inner_form__bot {
	padding: 0 15px 20px;
}

.container__inner {
	position: relative;
/*	border-radius: 20px 20px 0 0; */
/*	height: 100%; */
/*	overflow: hidden; */
/*    overflow-y: auto; */
}
.container__head {
	padding: 15px 20px 42px;
	background-color: #F7F7F7;
}
.container__body {
	padding: 20px 0;
/*	border-radius: 20px 20px 0 0; */
	background-color: #fff;
	overflow: auto;
}

.container_body_intro {
	padding: 20px 0;
	overflow: hidden;
}

.container__head + .container__body {
	margin-top: -27px;
}
.container__body article + article {
/*	margin-top: 30px; */
}
.container__body.container__body--detail {
	padding: 0;
/*	padding-bottom: 60px; */
	background-color: #F7F7F7;
}
.container__body.container__body--detail article {
	position: relative;
	padding: 15px 20px 47px;
    background-color: #fff;
}
.container__body.container__body--detail article + article {
	margin-top: 10px;
}
.container__body.container__body--detail .search_no_item {
	height: calc(100vh - 245px) !important;
}
.search_form {
	position: relative;
}
.form {
	position: relative;
}
.form input {
	padding: 0 34px 0 20px;
	height: 24px;
	font-size: 15px; 
}
::-ms-clear {
	display: none;
}
.search_form input {
	border: 0;
    padding: 0 34px;
    width: calc(100% - 74px);
	background: url('/assets/img/ic_search_search.svg') no-repeat left center;
	margin-right: 20px;
}
.clear_input {
	position: absolute;
	top: 50%;
	right: 67px;
	margin-top: -12px;
	font-size: 0;
	background: none;
	outline: none;
	pointer-events: auto;
	cursor: pointer;
	z-index: 1;
	display: none;
}
input.written ~ .clear_input {
	display: block;
}
.search_form .btn_search {
	position: absolute;
    top: 50%;
    right: 0;
    margin-top: -15px;
    display: none;
}
.search_form input.written ~ .btn_search {
	display: block;
}
.btn_round_basecolor {
	font-size: 17px;
    font-weight: 500;
    color: #406D96;
    background: none;
    border: 1px solid #406D96;
    border-radius: 30px;
    width: auto;
    height: 30px;
    padding: 0 10px;
	line-height: 28px;
    text-align: center;
}
.btn_round_basecolor.disable {
	color: #bebebe;
	border-color: #bebebe;
	pointer-events: none;
}

.header__btn {
	display: inline-block;
	vertical-align: top;
	padding: 2px;
	border-radius: 2px;
	opacity: .8;
}
.header__btn.active {
	opacity: 1;
}

#wrap.header_detail {
	padding-top: 148px;
}
.header_detail .header {
	height: 175px;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}
.header_detail .header:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(36,36,36,.4);
}
.header_detail .header > * {
    position: relative;
    z-index: 1;
}
.header_detail .header__inner {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-moz-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-moz-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	width: 100%;
}
.header__description {
	width: 100%;
}
.header__description p a {
	text-decoration: underline;
}
.header__commu_info {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-moz-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 100%;
}
.header__commu_info > p {}
.header__commu_info > button {}
.btn_round {
	font-size: 14px;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 30px;
    line-height: 1;
}
.btn_round.type_red {
	background-color: #E2484B;
	color: #fff;
}

.header.fixed {
	top: 0 !important;
	z-index: 1020;
/*
    height: 53px !important;
    padding-bottom: 15px !important;
*/
	border-bottom: 1px solid #EAEAEA;
	-webkit-transition: .2s top ease-in;
	-o-transition: .2s top ease-in;
	-moz-transition: .2s top ease-in;
	transition: .2s top ease-in;
}
.type_base .header.fixed {
	background: #2F3A56 !important;
}
.type_E8ECF2 .header.fixed {
	background: #E8ECF2 !important;
}
.type_fff .header.fixed {
	background: #fff !important;
}
.header_detail .header.fixed:after {
	display: none;
}
.header.fixed .header__description,
.header.fixed .header__commu_info {
	display: none;
}

.btn_gnb {
	position: relative;
	display: inline-block;
	width: 24px;
    height: 22px;
}
.btn_gnb.on {
	position: fixed;
    top: 11px;
    right: 15px;
	z-index: 100000;
}
.btn_gnb span {
	height: 3px;
	background: #000;
    left: 0;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
.btn_gnb span:nth-child(1) {
	position: absolute;
    top: 50%;
	right: 0;
	left: auto;
    margin-top: -1.5px;
    width: 60%;
}
.btn_gnb span:nth-child(2) {
	position: absolute;
    top: 0;
    width: 100%;
}
.btn_gnb span:nth-child(3) {
	position: absolute;
    bottom: 0;
    width: 100%;
}

.btn_gnb.on span:nth-child(1) {
	opacity: 0;
}
.btn_gnb.on span:nth-child(2) {
	height: 2px;
    transform: translateY(10px) rotate(-45deg);
}
.btn_gnb.on span:nth-child(3) {
	height: 2px;
    transform: translateY(-10px) rotate(45deg);
}

.btn_gnb.active span {
	background: #1470cb;
}

.gnb_wrap {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 10050;
}
.gnb_inner {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	overflow-y: auto;
	background-color: #fff;
	opacity: 0;
	
	-webkit-transition: .2s all ease-in-out;
	-o-transition: .2s all ease-in-out;
	-moz-transition: .2s all ease-in-out;
	transition: .2s all ease-in-out;
}
.gnb_inner.on {
	opacity: 1;
}
.gnb_home {
	position: absolute;
	top: 0;
    right: 55px;
    font-size: 21px;
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
}
.gnb_inner.on .gnb_home {
	top: 7px;
}
.gnb {
	padding: 20px 15px;
    padding-top: 50px;
}
.gnb__box {
	background-color: #F7F8F9;
    border: 1px solid #D4DAE1;
    border-radius: 10px;
    -webkit-box-shadow: 0 10px 15px rgba(0,0,20,.15);
    box-shadow: 0 10px 15px rgba(0,0,20,.15);
	
	-webkit-transition: .2s all ease-in-out;
	-o-transition: .2s all ease-in-out;
	-moz-transition: .2s all ease-in-out;
	transition: .2s all ease-in-out;
}
.gnb__box.open {
    background-color: #DCE5EF;
    border-color: #91B9DD;
}

.gnb__box + .gnb__box {
	margin-top: 10px;
}
.gnb__box__depth1 {
	font-size: 0;
    padding: 30px 10px;
}
.gnb__box__depth1__list {
	position: relative;
    display: inline-block;
    box-shadow: none !important;
    vertical-align: top;
    width: 33.333333%;
    text-align: center;
	
	top: -20px;
    opacity: 0;
}
.gnb_inner.on .gnb__box__depth1__list {
	top: 0;
    opacity: 1;
}
.gnb__box__depth1__inner {
	position: relative;
    padding: 10px;
	padding-bottom: 30px;
}
.gnb__box__depth1__inner.in:after {
	content: "";
	position: absolute;
	bottom: 11px;
	left: 50%;
	width: 13px;
	height: 8px;
	margin-left: -6.5px;
	background: url('/assets/images/ico_gnb_in.png') no-repeat center/13px;
}
.gnb__box__depth1__inner.in.open:after {
	background: url('/assets/images/ico_gnb_in_on.png') no-repeat center/13px;
}
.gnb__box__depth1__inner__ico {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 46px;
	font-size: 0;
}
.gnb__box__depth1__inner figure {}
.gnb__box__depth1__inner figure img {}
.gnb__box__depth1__inner p {
	font-size: 15px;
    font-weight: 500;
	margin-top: 15px;
}
.gnb__box__depth1__inner a {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}
.gnb__box__depth1__inner a.active {
	background-color: rgba(255,255,255,.3);
}
.gnb__box__depth2 {
	padding: 0;
	height: 0;
	opacity: 0;
	overflow: hidden;
	
	transition: .2s .2s opacity ease-in-out;
}
.gnb__box__depth2.open {
	padding: 0 10px;
	height: auto;
	opacity: 1;
}
/* .gnb__box__depth1__list:nth-child(1) .gnb__box__depth2 {
	margin-right: -200%;
}
.gnb__box__depth1__list:nth-child(2) .gnb__box__depth2 {
	margin-right: -100%;
	margin-left: -100%;     
}
.gnb__box__depth1__list:nth-child(3) .gnb__box__depth2 {
	margin-left: -200%;
} */
.gnb__box__depth2__list {
	border-bottom: 1px solid #C7D5E4;
	text-align: left;
}
.gnb__box__depth2__list a {
	display: block;
    font-size: 15px;
    font-weight: 400;
    text-align: left;
    padding: 7px 0;
    text-align: center;
}
.gnb__box__depth2__list:last-child {
/*	border-bottom: 0; */
}
.gnb__box__depth2__list a.active {
	color: #397dee;
}
.gnb__box__depth3 {
	padding-bottom: 7px;
}
.gnb__box__depth3__list {}
.gnb__box__depth3__list a {
	padding: 3px 0;
    padding-left: 6px;
	font-size: 14px;
}
.gnb__box__depth3__list a:before {
    content: "- ";
}


.bg_gray {
  background-color: #f5f5f5;
  padding: 15px;
  color: #243dbb;
  font-weight: 500;
  margin-bottom: 20px;
}

