@charset "utf-8";

/* single items */
.total {
    font-size: 19px;
    font-weight: 700;
}
.total > span {
    color: var(--pri-blue-500);
}
.has_flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.srch_address {
    display: flex;
    align-items: center;
    gap: 8px;
}
.srch_address > input {
    width: 300px;
}
@media screen and (max-width:495px) {
    .srch_address{
        width: 100%;
    }
    .srch_address > input {
        width: 100%;
    }
}
.has_err{
    background-color: var(--err_surface);
}
.has_err input {
    border-color: var(--err_default) !important;
}
.err-color{
    color: var(--err_default) !important;
}
.suc-color{
    color: var(--suc_default) !important;
}

/* fullbtn red 추가 */
.btn.err {
    background-color: #eb003b;
    border: 1px solid var(--err_default);
    color: #ffffff;
}
.btn.err:hover {
    background-color: var(--err_strong);
    border: 1px solid var(--err_strong);
}

/* ******************************************** */
/* Fullpage */
/* ******************************************** */

/* === fullpage main header === */
#wrapper.main header#header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}
/* === fullpage === */
#fullpage .section{
    padding-top: 80px;
}
#fullpage .section_ft{
    padding-top: 0;
}

@media (max-width: 1305px) {
    .fp-section, .fp-tableCell {
        height: auto !important;
    }
}



/* ******************************************** */
/* Main Page */
/* ******************************************** */
#main_visual{
	position: relative;
}

/* ========== Section1 ========== */
/* 메인 : section1 slider */
.swiper-button-next,
.swiper-button-prev {
	padding: 30px;
	border-radius: 8px;
	background: rgba(0, 0, 0, 0.28);
    color: var(--white_default) !important;
}
.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal{
    bottom: 28% !important;
	top: var(--swiper-pagination-top, auto);
	left: 50% !important;
	transform: translateX(-50%);
	width: auto !important;
}
.swiper-pagination-bullet {
	width: 20px !important;
    height: 20px !important;
    background: #ccc !important;
    opacity: .65 !important
}
.swiper-pagination-bullet-active {
    opacity: 1 !important;
    background: #fff !important;
}
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 !important;
	margin-right: 16px !important;
}

#main_visual .swiper-slide > img {
    display: block;
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

/* 메인 슬라이더 반응형 */
@media screen and (max-width: 1445px) {
	#main_visual .swiper-slide > img {
		object-position: 45% center;
	}
}
@media screen and (max-width:1135px) {
	#fullpage .section:first-child {
		padding-top: 55px;
	}
	#main_visual .swiper-slide > img {
		object-position: center;
		height: 100%;
	}
	.swiper-horizontal>.swiper-pagination-bullets,
	.swiper-pagination-bullets.swiper-pagination-horizontal{
		bottom: 20px !important;
	}
}
@media screen and (max-width:890px) {
	.swiper-pagination-bullet {
		width: 16px !important;
		height: 16px !important;
	}
}

/* 메인 : section1 전체검색, 바로예약 */
/* 전체검색 */
.mv_search_all {
	position: absolute;
	top: -340%;
	left: 0;
	z-index: 10;
}
.mv_search_all .search_wrap {
	width: 530px;
	border: 2px solid var(--pri-blue-600);
	margin: 0 auto;
	border-radius: 30px;
	overflow: hidden;
}
.mv_search_all .search_box {
	display: flex;
    align-items: center;
    height: 58px;
    background-color: var(--white_alpha-90);
    padding: 5px;
}
.mv_search_all .search_box .txt_search {
	width: calc(100% - 80px);
	border: none;
	margin:  5px 5px 5px 30px;
	font-size: 18px;
	background-color: transparent;
}
.mv_search_all .search_box .txt_search::placeholder {
	font-size: 15px;
    font-weight: 700;
	color: var(--text_disabled);
}
.mv_search_all .search_box .btn_search {
	width: 48px;
	height: 48px !important;
	background: var(--pri-blue-500) url(/images/icons/ico_search_w.svg) no-repeat center center;
	background-size: 28px;
	transition: all .3s ease;
	border-radius: 24px !important;
}
.mv_search_all .search_box .btn_search:focus,
.mv_search_all .search_box .btn_search:hover {
    background-color: var(--pri-blue-700);
}

/* 바로예약 */
.quick_reserv_wrap {
	display: flex;
	align-items: center;
	position: relative;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 64px;
	z-index: 2;
	max-width: 1280px;
	margin: 0 auto;
	
}
.quick_reserv_wrap .qr_left {
	width: 100%;
	padding: 16px 20px 20px;
	background: var(--white_default);
	border-radius: 20px 0 0 20px;
	border:2px solid var(--pri-blue-500);
}
.quick_reserv_wrap .qr_left > p {
	margin-bottom: 16px;
	font-size: 24px;
	font-weight: 700;
	color: var(--pri-blue-600);
}
.quick_reserv_wrap .qr_left .form-group {
	flex-direction: row;
}
.quick_reserv_wrap .qr_left .form-group input::placeholder{
	color: var(--text_default);
}
.quick_reserv_wrap button {
	display: block;
	width: 220px;
	height: 148px !important;
	font-size: 24px !important;
	font-weight: 700;
	border-radius: 0 20px 20px 0 !important;
	box-shadow: var(--main-card-shdow);
}

/* 전체검색, 바로예약 반응형 */
@media screen and (max-width: 1320px) {
	.quick_reserv_wrap {
		margin: 0 16px;
	}
}
@media screen and (max-width: 1135px) {
	.quick_reserv_wrap {
		position: static;
		z-index: 2;
		max-width: 100%;
		margin:0
	}
	.quick_reserv_wrap .qr_left > p {
		font-size: 19px;
	}
	.quick_reserv_wrap button {
		height: 141px !important;
		font-size: 19px !important;
	}
	.quick_reserv_wrap .qr_left,
	.quick_reserv_wrap button {
		border-radius: 0 !important;
	}
	.mv_search_all {
		display: none;
	}
}
@media screen and (max-width: 890px) {
	.quick_reserv_wrap .qr_left .form-group {
		flex-direction: column;
	}
	.quick_reserv_wrap .qr_left .form-group select,
	.quick_reserv_wrap .qr_left .form-group input {
		height: 48px;
		font-size: 16px;
	}
	.quick_reserv_wrap button {
		height: 253px !important;
	}
}
@media screen and (max-width: 600px){
	.quick_reserv_wrap {
		flex-direction: column;
	}
	.quick_reserv_wrap button {
		height: 80px !important;
		width: 100%;
	}
}


/* ========== Section2 ========== */
#section2 {
	position: relative;
}
#section2::before{
	content: '';
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: url(/images/main_bg.png)center bottom no-repeat;
	background-size: contain;
	z-index: -1;
}
#section2::after{
	content: '';
	display: block;
	position: absolute;
	top: 198px;
	right: 60px;
	width: 220px;
	height: 140px;
	background: url(/images/main_bg_dron.png)center no-repeat;
	z-index: -1;
}
#section2 .fp-tableCell {
	align-content: center;
    width: 100%;
    height: 100%;
}
.inner_wrapper {
	max-width: 1280px;
	margin: 0 auto;
}
.section_tit {
	display: block;
	margin-bottom: 20px;
	font-size: var(--title-xxl-32);
	color: var(--pri-blue-800);
	text-align: center;
}
.inner_wrapper .layout {
	display: flex;
	gap: 24px;
}

.layout .left {
	display: flex;
	flex-direction: column;
	width: 67%;
	gap: 24px;
}
.layout .left .cont_wrap {
	display: flex;
	gap: 24px;
}
.layout .left .cont_wrap.quickmenu {
	display: block;
}
.layout .left .cont_wrap > .li_tit {
 	margin-bottom: 8px;
}
.layout .left .cont {
	width: calc(50% - 12px);
	border-bottom: 2px solid var(--grey-400);
}
.layout .left .cont .li_tit {
	padding-bottom: 16px;
	border-bottom: 2px solid var(--pri-blue-800);
}
.layout .left .cont_wrap > .li_tit > p,
.layout .left .cont .li_tit > p {
	font-size: var(--title-l-21);
	font-weight: 700;
	color: var(--pri-blue-800);
}
.layout .left .cont .li_tit > a {
	display: block;
	width: 32px;
	height: 32px;
	background: url(/images/icons/ico_more_blue_32.svg) center no-repeat;
	border-radius: 4px;
	transition: all .3s ease;
}
.layout .left .cont .li_tit > a:hover {
	background-color: var(--pri-blue-50);
}
.layout .left .cont .li_cont li > a {
	padding: 16px 0;
	border-bottom: 1px dotted var(--grey-400);
}
.layout .left .cont .li_cont li > a> p{
	width: calc(100% - 83px);
	word-break: break-all;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.layout .left .cont .li_cont li > a:hover > p {
	color: var(--pri-blue-600);
}
.layout .left .cont .li_cont li > a > span{
	color: var(--text_info);
}
.layout .left .cont .li_cont li:last-child > a {
	border-bottom: none;
}

/* section2 left - 자주찾는 메뉴 슬라이드 */
.layout .left .cont_wrap .qmSlide .qm_item {
	display: block;
	text-align: center;
	background-color: var(--white_alpha-80);
	border-radius: 16px;
	border: 1px solid var(--pri-blue-100)
}
.layout .left .cont_wrap .qmSlide .qm_item  > img {
	display: block;
	margin-bottom: 8px;
}
.layout .left .cont_wrap .qmSlide .qm_item  > p {
	color: var(--pri-blue-500);
	font-weight: 700;
	padding: 10px;
}

.layout .left .cont_wrap .li_tit .paging > button,
.layout .left .cont_wrap .li_tit .paging > a {
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 999px;
}
.layout .left .cont_wrap .li_tit .paging #prev-button {
    background:var(--pri-blue-50) url(/images/icons/ico_left_blue_24.png) center center no-repeat;
    margin-right: 5px;
}
.layout .left .cont_wrap .li_tit .paging #next-button {
    background:var(--pri-blue-50) url(/images/icons/ico_right_blue_24.png) center center no-repeat;
}
#prev-button.disabled,
#next-button.disabled { /* 사용자 정의 컨트롤러 비활성화시 */
	opacity: 0.3;
	pointer-events: none;
}

/* section2 left - 날씨 슬라이드 20250210 yhan*/
.layout .left .cont_wrap .weatherSlide .weather_item {
	display: block;
    padding: 8px;
	border-radius: 12px;
	border: 1px solid var(--pri-blue-100);
	background: var(--white_default) url(/images/air.png) no-repeat;
    background-position: right 32px;
}
.layout .left .cont_wrap .weatherSlide .weather_item .item_tit{
    padding: 4px 8px;
    background-color: var(--pri-blue-50);
    border-radius: 4px;
}
.layout .left .cont_wrap .weatherSlide .weather_item .item_tit > p {
    font-size: 14px;
}
.layout .left .cont_wrap .weatherSlide .weather_item .item_cont{
    display: flex;
    align-items: center;
    margin-top: 5px;
}

.layout .left .cont_wrap .weatherSlide .weather_item .item_cont .weath_left{
    display: flex;
    gap: 4px;
    width: fit-content;
    min-width: 150px;
    padding: 0 10px;
    border-right: 1px solid var(--border_light);
}
.layout .left .cont_wrap .weatherSlide .weather_item .item_cont .weath_left .temperature {
    font-size: 32px;
    font-weight: 700;
}
.layout .left .cont_wrap .weatherSlide .weather_item .item_cont .weath_left .weather {
    padding-top: 6px;
    font-size: 14px;
    font-weight: 700;
}

.layout .left .cont_wrap .weatherSlide .weather_item .item_cont .weath_right{
    padding-left: 20px;
}
.layout .left .cont_wrap .weatherSlide .weather_item .item_cont .weath_right .wind{
    display: flex;
    gap: 20px;
}
.layout .left .cont_wrap .weatherSlide .weather_item .item_cont .weath_right .wind dt {
    color: var(--text_info);
    font-weight: 400;
}
.layout .left .cont_wrap .weatherSlide .weather_item .item_cont .weath_right .wind dd {
    font-weight: 700;
}

.layout .left .cont_wrap.weather{
    position: relative;
}
.layout .left .cont_wrap.weather .paging{
    position: absolute;
    width: 100%;
    z-index: 30;
}
.layout .left .cont_wrap.weather .paging > button,
.layout .left .cont_wrap.weather .paging > a {
    position: absolute;
    top: 35px;
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 999px;
}
.layout .left .cont_wrap.weather .paging #weather-prev-button {
    background:var(--pri-blue-50) url(/images/icons/ico_left_blue_24.png) center center no-repeat;
    margin-right: 5px;
    left: -12px;
}
.layout .left .cont_wrap.weather .paging #weather-next-button {
    background:var(--pri-blue-50) url(/images/icons/ico_right_blue_24.png) center center no-repeat;
    right: -12px;
}

/* section2 right - 슬라이드 배너 */
/* .layout .right {
	width: 396px;
    height:459px;
	border-radius: 20px;
	border: 1px solid #f5f5f5;
	overflow: hidden;
	box-shadow: var(--main-card-shdow);
} */
.layout .right .bannerSlide {
	position: relative;
	width: 396px;
    height:459px;
	border-radius: 20px;
	border: 1px solid #f5f5f5;
	overflow: hidden;
	box-shadow: var(--main-card-shdow);
}
.layout .right .bannerSlide a{
	display:block;
	height:461px;
	box-sizing:border-box;
	overflow:hidden;
	object-fit:cover;	
}
.layout .right .bannerSlide img{
	display: block;
	width:100%;
	height: 100%;
	margin: 0 auto;
	object-fit: cover;
}
.layout .right .bannerSlide .bs_page_nav {
	position: absolute;
	right: 16px;
	bottom: 16px;
	display: flex;
	align-items: center;
	padding: 10px 16px;
	border-radius: 50px;
	gap: 10px;
	background: rgba(0, 0, 0, 0.5) !important;
	z-index: 2;
}
.layout .right .bannerSlide .bs_page_nav .swiper-button-next, 
.layout .right .bannerSlide .bs_page_nav .swiper-button-prev,
.layout .right .bannerSlide .bs_page_nav .swiper-pagination  {
    position:static;
	margin-top: 0;
	color: var(--white_default);
}
.layout .right .bannerSlide .bs_page_nav .swiper-button-next, 
.layout .right .bannerSlide .bs_page_nav .swiper-button-prev{
	width: 24px;
	height: 24px;
	padding: 0;
	background: transparent;
	border-radius: 0;
}
.layout .right .bannerSlide .bs_page_nav .swiper-button-next:after, 
.layout .right .bannerSlide .bs_page_nav .swiper-button-prev:after {
    font-size: 20px;
    text-transform: none !important;
    letter-spacing: 0;
    font-variant: initial;
    line-height: 1;
}

/* section2 right - 문의사항 20250210 yhan */
.right .call_box {
    display: flex;
    justify-content: center;
    gap: 17px;
    height: 100px;
    margin-top: 24px;
    padding: 4px;
    border: 1px solid var(--border_light);
    border-radius: 12px;
    background: var(--white_light);
}
.right .call_box >  p {
    margin-top: 6px;
    font-size: 15px;
    font-weight: 700;
}
.right .call_box .call_cont .number {
    margin-bottom: 8px;
    font-size: 24px;
    font-weight: 700;
    color: var(--pri-blue-700);
}
.right .call_box .call_cont .info {
    font-size: 15px;
    color: var(--text_info);
}

/* section2 반응형 */
@media screen and (max-width: 1320px) {
    .inner_wrapper {
        margin: 0 16px;
		padding-bottom: 80px;
    }
}
@media screen and (max-width: 1305px) {
	#section2::after {
		top: 40px;
		right: 50px;
		width: 130px;
		height: 83px;
		background-size: cover;
	}
    .inner_wrapper .layout {
		flex-direction: column;
		gap: 40px;
	}
	.layout .left {
		gap: 40px;
		flex-direction: column-reverse;
	}
	.layout .left,
	.layout .right {
		width: 100%;
	}
	.layout .right .bannerSlide {
		width: 100%;
        height: auto;
		background-color: var(--white_alpha-80);
	}
	.layout .right .bannerSlide img{
		width: 100%;
	}	
}
@media screen and (max-width:890px) {
	.layout .left .cont_wrap .qmSlide .qm_item > p {
		font-size: 15px;
	}
	.layout .right .bannerSlide img{
		object-fit: contain;
	}
}
@media screen and (max-width:790px) {
	.layout .left .cont_wrap {
		flex-direction: column;
		gap: 40px;
	}
	.layout .left .cont_wrap.weather{
        flex-direction: row;
    }
	.layout .left .cont {
		width: 100%;
	}
	.layout .right .bannerSlide img{
        object-fit: cover;
	}
}
@media screen and (max-width:535px) {
	#section2::after {
		display: none;
	}
	.layout .left .cont_wrap .qmSlide .qm_item img {
		width: 50px;
		height: 50px;
	}
	.layout .left .cont_wrap .qmSlide .qm_item > p {
		font-size: 14px;
	}
}




/* ******************************************** */
/* login */
/* ******************************************** */

#login_section {
    position: relative;
    height: 740px;
    background: url(/images/Login_bg.png) no-repeat;
    background-position: bottom;
    background-size: contain;
}
.login_box {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 410px;
}
.login_box .login_tit {
    text-align: center;
    margin-bottom: 34px;
}
.login_box .login_tit > img {
    height: 50px;
    margin-bottom: 14px;
}
.login_box .login_tit > p {
    color: var(--text_info);
    font-size: 14px;
}

.login_box .form-group {
    margin-bottom: 16px;
    gap: 8px;
}
.login_box .form-group .form-check {
    text-align: end;
}
.login_box button.btn {
    display: block;
    width: 100%;
    margin-top: 24px;
}
.login_box .login_ft {
    margin-top: 12px;
    text-align: center;
}
.login_box .login_ft > a {
    color: var(--text_info);
    font-size: var(--label-s-40015);
}
.login_box .login_ft > a::after{
    content:'';
    display: inline-block;
    width: 1px;
    height: 10px;
    background-color: var(--divider_default);
    margin:0 12px;
}
.login_box .login_ft > a:last-child::after{
    display: none;
}
.login_box .login_ft > a:hover {
    text-decoration: underline;
}
.login_box .login_ft > a.joinin {
    color: var(--pri-blue-500);
    font-weight: 700;
}

/* 로그인 반응형 */
@media screen and (max-width:768px) {
    #login_section {
        background-position: left bottom;
        background-size: auto 200px;
    }
}
@media screen and (max-width:520px) {
    .login_box {
        width: 100%;
        padding: 0 20px;
    }
    .login_box .login_tit > img {
        height: 40px;
    }
}




/* ******************************************** */
/* content */
/* ******************************************** */

/* page title */
.title_wrap {
    padding: 36px 10px 12px;
    border-bottom: 2px solid var(--divider_strong);
}
.title_wrap > h2 {
    display: inline-block;
    font-size: var(--heading-m-40);
    color: var(--text_title);
    letter-spacing: 1px;
}
.title_wrap2 {
    padding: 36px 10px 12px;
    border-bottom: 1px solid var(--divider_default);
}
.title_wrap2 > h2 {
    display: inline-block;
    font-size: var(--heading-s-32);
    color: var(--text_title);
    letter-spacing: 1px;
}

/* sub titles */
.subtitle_01 {
    font-size: var(--title-xl-25);
    font-weight: 700;
    margin: 40px 0;
    color: var(--text_title);
}
.subtitle_02 {
    display: inline-block;
    font-size: var(--title-xl-25);
    font-weight: 700;
    margin: 40px 0 16px 0;
    color: var(--text_title);
}
.subtitle_02::before {
    content: '';
    display: block;
    height: 4px;
    width: 40px;
    background-color: var(--pri-blue-700);
    margin-bottom: 8px;
}

/* 화면 하단 버튼 영역 */
.bottom_btnarea {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
}
.bottom_btnarea > .btn {
    min-width: 100px;
}

/* 기본 프레임 */
.base_frame {
    padding-bottom: 24px;
}
.base_frame:last-of-type {
    padding-bottom: 0 !important;
}
.base_frame h4 {
    font-size: var(--body-l-40019);
    margin-bottom: 24px;
}
.base_frame h4.has_dot {
    position: relative;
    padding-left: 16px;
    margin-bottom: 16px;
}
.base_frame .has_dot::before {
    content: '';
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: var(--pri-blue-400);
    border-radius: 4px;
}

.base_frame .chk-area  {
    margin-bottom: 24px;
}




/* ******************************************** */
/* content - login*/
/* ******************************************** */
/* 이용약관 - 전체동의 */
.chk_all_agr {
    /* margin-bottom: 40px; */
    margin-bottom: 0px;
    
}
.chk_all_agr .form-check{
    padding: 0;
    margin-bottom: 24px;
}
.chk_all_agr .form-check > label {
    font-size: var(--body-l-40019) !important;
    font-weight: 700;
}
.chk_all_agr > p {
    color: var(--grey-700);
}

/* 이용약관 - 안내사항확인 및 동의 */
.terms_box {
    margin-bottom: 24px;
    padding: 40px;
    border: 1px solid var(--border_light);
    border-radius: 12px;
}
.terms_box .terms_cont h4 {
    font-size: 17px;
    margin-bottom: 24px;
    color: var(--text_title);
}

.terms_box .terms_cont .agr_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background-color: #f0f0f0;
    border-radius: 8px;
}
.terms_box .terms_cont .agr_box > p {
    font-size: 17px;
}

/* 이용약관 - 안내사항확인 및 동의 : docu_scroll 속성 내부 스크롤 디자인 변경 */
.terms_box .terms_cont {
    margin-bottom: 48px;
}
.terms_box .terms_cont:last-child{
    margin-bottom: 0;
}
.terms_box .terms_cont .docu_scroll {
    max-height: 200px;
    margin-bottom: 24px;
    padding-right: 8px;
    overflow-y: auto;
    font-size: 15px;
}
.docu_scroll::-webkit-scrollbar {
    width: 8px; /* 스크롤바 너비 */
    height: auto; /* 스크롤바 높이 */
}
.docu_scroll::-webkit-scrollbar-track {
    background: #f1f1f1; /* 배경 색상 */
    border-radius: 4px; /* 모서리 둥글게 */
}
.docu_scroll::-webkit-scrollbar-thumb {
    background: #b8b8b8; /* 핸들 색상 */
    border-radius: 10px; /* 핸들 모서리 둥글게 */
}
.docu_scroll::-webkit-scrollbar-thumb:hover {
    background: #808080; /* 핸들 색상 변경 */
}

/* ====  회원정보 입력 ====*/
.input_box {
    padding: 24px;
    background-color: var(--white_light);
    border-radius: 12px;
}
.input_box .align-verti {
    display: flex;
    align-items: center;
    gap: 24px;
}
.input_box .align-verti .cont {
    width: 100%;
}
.input_box .align-verti .cont .form-group .form-tit {
    display: flex;
    justify-content: space-between;
}
.input_box .align-verti .cont .form-group .form-conts {
    flex-direction: row;
}
.input_box .align-verti .cont .form-group .form_txt {
    font-size: var(--label-x-s-40013);
    color: var(--text_info);
}
.input_box .align-verti .cont .form-group .form_txt.pass {
    color: var(--suc_default);
}
.input_box .align-verti .cont .form-group .form_txt.fail {
    color: var(--err_default);
}
.form_txt.pass::before,
.form_txt.fail::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background: pink;
    vertical-align: sub;
    margin-right: 4px;
}
.form_txt.pass::before {
    background: url(/images/icons/pass_16.png) center no-repeat;
}
.form_txt.fail::before {
    background: url(/images/icons/fail_16.png) center no-repeat;
}

.input_box .cont_list .cont {
    padding: 16px 10px;
    border-bottom: 1px dashed var(--border_light);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    flex-wrap: wrap;
}
.input_box .cont_list .cont:first-child {
    padding-top: 0;
}
.input_box .cont_list .cont:last-child {
    padding-bottom: 0;
    border-bottom: none;
}
.input_box .cont_list .cont .form-group p{
    color: var(--text_info);
    font-size: 15px;
}
.input_box .cont_list .cont .form-group{
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    width: auto;
}
.input_box .cont_list .cont .form-group .form-tit{
    width: 120px;
    font-weight: 700;
}
.input_box .cont_list .cont .form-group .form-tit > label > span {
    font-size: 19px;
    color: var(--err_default);
}
.input_box .cont_list .cont .form-group .form-conts {
    flex-direction: row;
    align-items: center;
    width: 400px;
}
.input_box .cont_list .cont .form-select {
    width: 180px;
}

.input_box .cont_list .cont .form-group .form-conts.form-address {
    flex-direction: column;
    align-items: flex-start;
    width: 600px;
}
.input_box .cont_list .cont .form-group .form-conts.form-address > input:first-child {
    width: 180px;
}


/* 반응형 */
@media screen and (max-width:1280px) {
    #content_wrap{
        padding: 0 20px 80px 20px;
    }
}
@media screen and (max-width:978px) {
    .input_box .cont_list .cont .form-check.email_chk {
        padding-left: 132px;
    }
}
@media screen and (max-width:836px) {
    .input_box .cont_list .cont {
        align-items: end;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    .input_box .cont_list .cont .form-group {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .input_box .cont_list .cont .form-check.email_chk {
        padding-left: 0;
    }
}
@media screen and (max-width:768px) {
    .terms_box {
        padding: 24px;
    }
    .terms_box .terms_cont .agr_box {
        justify-content: flex-end;
    }
    .terms_box .terms_cont .agr_box > p {
        display: none;
    }
    .input_box .align-verti {
        flex-direction: column;
    }
}
@media screen and (max-width:704px) {
    .input_box .cont_list .cont {
        flex-direction: column;
        align-items: flex-end;
        flex-wrap: nowrap;
    }
    .input_box .cont_list .cont .form-group,
    .input_box .cont_list .cont .form-group > div,
    .input_box .cont_list .cont .form-group .form-conts,
    .input_box .cont_list .cont .form-select,
    .input_box .cont_list .cont .form-group .form-conts.form-address  {
        width: 100%;
    }
}
@media screen and (max-width:600px) {
    .input_box {
        padding: 16px;
    }
}
@media screen and (max-width:468px) {
    .chk_all_agr .form-check > label {
        font-size: 17px !important;
    }
}




/* ******************************************** */
/* content - reservation(예약)*/
/* ******************************************** */
/* 예약 : 라디오 선택 박스 */
.rdi_box{
    background-color: var(--white_light);
    padding: 40px;
    border-radius: 12px;
}
.rdi_box .chk-area {
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 0;
}
.rdi_box .chk-area .form-check {
    width: calc(100% / 3 - 16px) ;
}

/* 예약 선택 테이블 */
.chk_rserv-box {
    position: relative;
}
/* 주별신청 selectbox */
.chk_rserv-box #weekly_tab {
    position: relative;
}
.chk_rserv-box #weekly_tab > .form-select {
    position: absolute;
    left: 0;
    top: 0;
    width: 200px;
}

/* 예약 선택 테이블 : 상단 일자,날짜 컨트롤러 css */
.rserv_top {
    margin-bottom: 16px;
}
.rserv_top .date_header {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    font-weight: 700;
    gap: 24px;
    user-select: none;
}
.rserv_top .date_header > button {
    background-color: var(--pri-blue-50);
    width: 40px;
    height: 40px;
    border-radius: 100%;
}
.rserv_top .date_header > button.prev::before,
.rserv_top .date_header > button.next::before{
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
}
.rserv_top .date_header > button.prev::before{
    background: url(/images/icons/arrleft_24.png);
}
.rserv_top .date_header > button.next::before{
    background: url(/images/icons/arrright_24.png);
}
/* 예약 선택 테이블 : Toggle Tab*/
.chk_rserv-box .tab-slider--nav {
    position: absolute;
    top: 0;
    right: 0;
}
.tab-slider--tabs {
    display: block;
    position: relative;
    border-radius: 35px;
    overflow: hidden;
    background: #f1f1f1;
}
.tab-slider--tabs:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    background: var(--pri-blue-600);
    height: 100%;
    border-radius: 35px;
    transition: all .2s ease-in-out;
}
.tab-slider--tabs.slide:after {
    left: 50%;
}
.tab-slider--trigger {
    position: relative;
    display: inline-block;
    padding: 8px 24px;
    font-size: 17px;
    color: var(--pri-blue-800);
    text-transform: uppercase;
    text-align: center;
    z-index: 2;
    cursor: pointer;
    transition: color .2s ease-in-out;
    user-select: none; 
}
.tab-slider--trigger.active {
    color: #fff;
    font-weight: 700;
}
/* 예약 선택 테이블 : table form*/
.rserv_body .rserv_table{
    border-top: 2px solid var(--grey-900);
    border-bottom: 1px solid var(--border_light);
}
.rserv_body .rserv_table .thead {
    display: flex;
    align-items: center;
    height: 50px;
    border-bottom: 1px solid var(--border_light);
    background-color: var(--pri-blue-50);
}
.rserv_body .rserv_table .thead > li {
    font-size: 17px;
    font-weight: 700;
    width: 100%;
    height: 100%;
    text-align: center;
    align-content: center;
}
.rserv_body .rserv_table .thead > .th {
    max-width: 172px;
    min-width: 172px;
    border-right: 1px solid var(--border_light);
}

.rserv_body .rserv_table .tbody {
    display: flex;
    align-items: center;
    height: 92px;
}
.rserv_body .rserv_table .tbody > li {
    width: 100%;
    height: 100%;
    text-align: center;
    align-content: center;
}
.rserv_body .rserv_table .tbody > .th {
    max-width: 172px;
    background-color: var(--white_light);
    font-weight: 700;
    border-right: 1px dashed var(--border_light);
}
.rserv_body .rserv_table .tbody > .td_wrap {
    display: flex;
    align-items: center;
    padding: 8px;
    gap: 8px;
}
.rserv_body .rserv_table .tbody > .td_wrap .td {
    height: 100%;
    width: 100%;
}
.rserv_table .tbody > .td_wrap .td.form-chip .checkbox~.form-chip-outline {
    width: 100%;
}
.rserv_table .tbody > .td_wrap .td.form-chip .checkbox~.form-chip-outline {
    flex-direction: column;
    justify-content: center;
    position: relative;
    height: 100%;
    padding: 12px 16px;
    font-size: 15px;
}
.rserv_table .tbody > .td_wrap .td.form-chip .checkbox~.form-chip-outline::before {
    display: none;
}
.rserv_table .tbody > .td_wrap .td.form-chip .checkbox:checked~.form-chip-outline {
    background-color: var(--sec-50);
    border-color: var(--suc_default);
    color: var(--sec-700);
}

/* 신청확인 및 성공 알림 박스 */
.success_box {
    width: 800px;
    margin: 80px auto;
    padding: 60px 40px;
    border: 2px solid var(--sec-600);
    background-color: var(--sec-50);
    border-radius: 12px;
    text-align: center;
}
.success_box .tit {
    font-size: var(--title-l-21);
    font-weight: 700;
    color: var(--sec-700);
    margin-bottom: 16px;
}
.success_box .tit .info {
    color: var(--text_info);
}



/* ******************************************** */
/* Modal*/
/* ******************************************** */
/* 모달*/
.modal_box {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: auto;
    height: auto;
    min-width: 580px;
    max-width: 650px;
    max-height: 800px;
    padding: 40px 40px 8px 40px;
    background-color: var(--white_default);
    border: 1px solid var(--border_dark);
    border-radius: 12px;
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.24);
}
.modal_box.lg {
    min-width: 1280px;
    padding: 24px 20px 8px 20px;
}
.modal_box .modal-tit,
.modal_box .modal-footer{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.modal_box .modal-tit {
    margin-bottom: 24px;
}
.modal_box .modal-tit > p {
    font-size: 19px;
    font-weight: 700;
}  
.modal_box .modal-content {
    margin-bottom: 24px;
    border: none;
    max-height: 620px;
    overflow-y: auto;
}
.modal_box .modal-content > h5 {
    font-size: 19px;
    margin-bottom: 16px;
}
.modal_box .modal-content .map_section {
    border: 1px solid var(--border_light);
    width: 100%;
    height: 100%;
}
.modal_box .modal-content table {
    margin-bottom: 0;
}
.modal_box .modal-footer {
    padding: 0.75rem 0;
}
.modal_box .close {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(/images/component/ico_close.svg) center no-repeat;
}
.modal_box .close:hover,
.modal_box .close:focus {
    cursor: pointer;
}



/* ******************************************** */
/* Table*/
/* ******************************************** */
/* table - base */
table {
    border: 1px solid var(--border_light);
    margin-bottom: 24px;
    border-top: 2px solid var(--border_dark);
}
table tr {
    border-bottom: 1px solid var(--border_light);
}
table tr > th {
    text-align: center;
    font-weight: 17px;
    font-weight: 700;
    background-color: #eee;
}
table tr > th, 
table tr > td{
    padding: 14px 16px;
    border-right: 1px solid var(--border_light);
}
table tr > th:last-child, 
table tr > td:last-child{
    border-right: none;
}
table input,
table select {
    border-color: var(--border_light) !important;
}
table tr > .th2 {
    text-align: center;
    background-color: var(--white_light);
}
table tr > td .has_flex {
    gap: 8px;
}

table .form-group {
    gap: 6px !important;
}
table .form-group .form-hint.err-color {
    color: var(--err_strong);
}
table .form-group .form-hint.err-color::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 4px;
    background: url(/images/icons/fail_16.png);
    vertical-align: middle;
}
/* 첨부파일 테이블 너비 고정 - 텍스트가 넘쳤을 경우 대비 */
.table_base.upload tr td {
    max-width: 960px;
}

/* table type1 */
.table_type1 tr > th {
    padding: 12px;
    background-color: var(--sec-50);
}
.table_type1 tr > td{
    padding: 12px 16px;
    border-right: 1px dashed var(--border_light);
    text-align: center;
}

/* table type small */
.table_sm tr > th,
.table_sm tr > td{
    padding: 4px 8px;
    font-size: 15px;
}
.table_sm  input,
.table_sm  select {
    height: 28px !important;
}



/* ******************************************** */
/* uploda Form*/
/* ******************************************** */
/* upload */
.upload_form > input[type="file"] {
    padding-left: 0;
    background-color: var(--white_light);
    height: 40px;
    border: 1px solid var(--border_light);
    border-radius: 8px;
    font-size: 17px;
}
input[type=file]::file-selector-button {
    background-color: var(--pri-blue-500);
    height: 100%;
    margin-right: 12px;
    padding: 0 16px;
    color: var(--white_default);
    border: none;
}

.upload_list > li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--border_default);
    border-radius: 8px;
    padding: 4px 16px;
    margin-bottom: 8px;
}
.upload_list > li:last-child {
    margin-bottom: 0;
}
.upload_list > li > p {
    width: calc(100% - 80px);
    font-weight: 700;
    word-break: break-all;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}



/* ******************************************** */
/* search box*/
/* ******************************************** */
/* 검색박스 */
.base_frame .search_wrap {
    position: relative;
    background-color: var(--grey-50);
    margin-top: 40px;
    margin-bottom: 24px;
    padding: 24px 119px 24px 40px;
    border-radius: 12px;
    border: 1px solid var(--border_light);
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.base_frame .search_wrap input,
.base_frame .search_wrap select {
    border-color: var(--grey-700);
}
.base_frame .search_wrap  select {
    width: 175px;
    min-width: 150px;
}
.base_frame .search_wrap div.has_flex {
    gap: 24px;
    flex-wrap: wrap;
}
.base_frame .search_wrap div .form-group,
.base_frame .search_wrap div .form-conts{
    width: auto;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}
.base_frame .search_wrap div .form-group .form-tit {
    width: 90px;
    min-width: 90px;
}
.base_frame .search_wrap div .form-group .form-tit > label {
    font-size: 17px;
    font-weight: 700;
}
.base_frame .search_wrap .srch_btn {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
}

/* 너비 200 추가  */
.base_frame .search_wrap .wd_200 select {
    width: 200px;
}

@media screen and (max-width:890px) {
    .base_frame .search_wrap {
        padding: 24px 40px;
    }
    .base_frame .search_wrap div .form-group, 
    .base_frame .search_wrap div .form-conts {
        width: 100%;
    }
    .base_frame .search_wrap  select,
    .base_frame .search_wrap .wd_200 select {
        width: 100%;
    } 
    .base_frame .search_wrap  select.with_input {
        max-width: 100px;
    }
    .base_frame .search_wrap .srch_btn {
        position: unset;
        transform: translateY(0);
        margin-top: 24px;
    }
    .base_frame .search_wrap .srch_btn button {
        width: 100%;
    }
}
@media screen and (max-width:610px) {
    .base_frame .search_wrap {
        padding: 16px 20px;
    }
    .base_frame .search_wrap div.has_flex {
        gap: 14px;
    }
    .base_frame .search_wrap div .form-group{
        flex-direction: column;
        align-items: flex-start;
    }
    .base_frame .search_wrap div .form-group .form-tit > label {
        font-size: 15px;
    }
    .base_frame .form-group .form-conts {
        gap: 4px;
    }
}
@media screen and (max-width:400px) {
    .base_frame .search_wrap input[type="date"]{
        min-width: 138px;
    }
}




/* ******************************************** */
/* board*/
/* ******************************************** */
/* ========== 등록화면 ========== */
.base_frame .edit-sect .edit-form,
.table-sect .table-form{
	border-top: 1px solid var(--border_dark);
}
.base_frame .edit-sect .edit-form input,
.base_frame .edit-sect .edit-form select,
.base_frame .edit-sect .edit-form textarea{
    border-color: var(--grey-600);
}

.edit-form > dl{
    min-height: 68px;
}
.edit-form > dl,
.table-form > dl  {
	border-bottom: 1px solid var(--border_light);
	display: flex;
}
.edit-form > dl dt {
	width: 200px;
	padding: 14px 10px;
	font-size: 17px;
	font-weight: 700;
	align-content: center;
}
.edit-form > dl dd {
	padding: 14px 10px;
	width: 100%;
    max-width: 1105px;
}
.edit-form > dl dd.cont-dob,
.table-form > dl dd.cont-dob {
	display: flex;
	align-items: center;
}
.edit-form > dl dd select {
    width: 200px;
}
.edit-form > dl dd textarea {
	width: 100% !important;
	height: 320px !important;
	resize: none;
}

/* 반응형 - 등록화면 */
@media screen and (max-width:890px) {
	.edit-form > dl,
	.table-form > dl {
		display: block;
		padding: 15px 5px;
	}
	.edit-form > dl dt,
	.table-form > dl dt  {
		width: 100% !important;
		padding: 0 !important;
		font-size: 15px;
		font-weight: 700;
		margin-bottom: 8px;
	}
	.edit-form > dl dd,
	.table-form > dl dd {
		padding: 0 !important;
		font-size: 16px;
	}
	.edit-form > dl dd select,
	.table-form> dl dd select {
		width: 35%;
	}
}
@media screen and (max-width:620px) {
    .base_frame .edit-sect .edit-form select{
        width: 100%;
    }
}


/* ========== 목록화면 ========== */
.base_frame .list-sect .list-table-wrap {
	border-top: 2px solid var(--grey-600);
}
.base_frame .list-sect .list-table-wrap .list-table table{
	width: 100%;
	table-layout: fixed;
    border: none;
}
.list-table-wrap .list-table table thead,
.list-table-wrap .list-table table tbody > tr {
	border-bottom: 1px solid var(--border_light);
}
.list-table-wrap .list-table table thead tr th{
	background: var(--white_light);
    padding: 12px 10px;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    border: none;
}
.list-table-wrap .list-table table tbody tr td {
	text-align: center;
	font-size: 16px;
	padding: 16px 10px;
    border: none;
}
.list-table-wrap .list-table table tbody tr .li-tit {
	text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.list-table-wrap .list-table table tbody tr td.listhas-file {
	background:url(/images/component/ico_attach_file.svg) no-repeat 50% 50%;
}

.list-table-wrap .list-table table tbody tr .li-tit > a {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
	display: block;
}
.list-table-wrap .list-table table tbody tr.top-notice .li-tit > a {
	color: var(--err_strong);
	font-weight: 500;
}

.list-table-wrap .list-table table tbody tr .li-tit > a:hover,
.list-table-wrap .list-table table tbody tr.top-notice .li-tit > a:hover {
	font-weight: 700;
}


.list-table-wrap .list-table table tbody .tn-label{
	display: block;
	width: 24px;
    height: 24px;
	margin: 0 auto;
    border-radius: 12px;
    background: var(--err_default) url('/images/component/icon_notice_white_20.svg') center no-repeat;
}

/* 목록화면 - QnA */
.list-table-wrap .list-table.qna .li-tit{
    display: flex;
    align-items: center;
}
.list-table-wrap .list-table.qna .li-tit::before {
    content:'';
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 8px;
    background: url(/images/component/ico_lock_20.svg) center no-repeat;
}
.list-table-wrap .list-table.qna .li-tit.my-wrote::before{
	background:none;
}
.list-table-wrap .list-table.qna .answer_badge {
    display: inline-block;
    border: 1px solid var(--border_light);
    background-color: var(--white_light);
    font-size: 13px;
    color: var(--text_info);
    border-radius: 4px;
    padding: 0px 10px;
}
.list-table-wrap .list-table.qna .answer_badge.success {
    border: 1px solid var(--suc_border);
    background-color: var(--suc_surface);
    color: var(--sec-800);
}

.qna_info_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--sec-50);
    border: 1px solid var(--sec-100);
    border-radius: 12px;
    margin-top: 40px;
    padding: 24px 40px;
}
.qna_info_box .info_wrap > strong {
    display: inline-block;
    font-size: 19px;
    margin-bottom: 14px;
}
.qna_info_box .info_wrap > p {
    color: var(--text_info);
}
.qna_info_box .info_wrap > p > a {
    font-weight: 700;
    font-size: 17px;
    color: var(--sec-600);
    text-decoration: underline;
}
.qna_info_box .btn {
    width: 270px;
    font-weight: 700;
}

/* 목록화면 - 카드형 */
.card-list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.card-list .card-item{
	width: calc( 100% / 3 - 11px );
	margin-bottom: 16px;
	margin-right: 16px;
}
.card-list .card-item:nth-child(3n + 2){
	margin-right: 0;
}
.card-item > a {
	display: block;
	padding-top: 10px;
}
.card-item .card-thumb {
	/* 어떤 사이즈의 이미지든 대응할 수 있도록 처리 */
	position: relative;
    width: 100%;
    padding-top: 56.25%;
	border-radius: 8px;
    overflow: hidden;
}
.card-item .card-thumb > img {
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.card-item .card-tit {
	font-size: 19px;
	font-weight: 700;
	margin-top: 8px;
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.card-item .card-info {
	margin-top: 2px;
	color: var(--text_info);
	font-size: 15px;
}

/* 데이터형 - 목록화면 */
.list-table-wrap .list-table table.listty-data tr:hover {
    background-color: var(--pri-blue-50);
}

@media all and (max-width: 890px) {
    .list-table-wrap .list-table table.listty-data tbody tr td.list-info::after {
        display: none;
    }

	.list-table-wrap .list-table table.listty-data tr {
		border-bottom: 1px solid var(--border_dark);
		display: block;
        padding: 0;
	}

	.list-table-wrap .list-table table.listty-data td {
		border-bottom: 1px dashed var(--border_light);
		display: flex;
		justify-content: space-between;
		height: auto !important;
        padding: 10px !important;
	}

	.list-table-wrap .list-table table.listty-data td::before {
		content: attr(data-label); /*data-label을 가상요소 표출*/
		float: left;
		font-weight: bold;
		text-transform: uppercase;
	}

	.list-table-wrap .list-table table.listty-data td:last-child {
		border-bottom: 2px solid var(--dh-border-2);
	}
}

/* 반응형 - 목록화면 */
@media screen and (max-width:890px){
    /* 리스트 */
	.list-table-wrap .list-table table colgroup col {
		width: auto;
	}
	.list-table-wrap .list-table table,
	.list-table-wrap .list-table table tr   {
        display: block;
	}
    .list-table-wrap .list-table table thead {
		display: none;
	}
	.list-table-wrap .list-table table tbody {
		display: block;
	}
    .list-table-wrap .list-table table tbody tr {
        padding: 12px 16px;
    }
    .list-table-wrap .list-table table tbody tr td {
        padding: 0;
        padding-bottom: 4px;
        font-size: 15px;
    }
	.list-table-wrap .list-table table tbody tr td.mob-hide {
		display: none;
	}
	.list-table-wrap .list-table table tbody tr td.li-tit {
		margin: 0px;
		width: 100%;
		display: block;
        font-size: 16px;
	}
	.list-table-wrap .list-table table tbody tr td.list-info {
		padding-bottom: 0;
	}
	.list-table-wrap .list-table table tbody tr td.list-info::after {
		content: '|';
		display: inline-block;
        padding: 0 8px;
        color: var(--text_info);
	}
    .list-table-wrap .list-table table tbody tr td.listhas-file {
		padding: 12px;
	}
	.list-table-wrap .list-table table tbody tr td.list-info:last-child::after {
		display: none;
	}
    .list-table-wrap .list-table table tbody .tn-label {
        margin-right: 4px;
    }
}

/* QnA목록 반응형 */
@media screen and (max-width: 930px) {
    .qna_info_box .btn {
        width: auto;
    }
}
@media screen and (max-width: 890px) {
    .qna_info_box {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px 20px;
    }
    .qna_info_box .info_wrap {
        margin-bottom: 16px;
    }
    .qna_info_box .btn {
        width: 100%;
    }
}

/* 카드형목록 반응형 */
@media screen and (max-width:890px) {
	.card-list .card-item{
		width: calc( 100% / 2 - 10px );
		margin-right: 15px;
	}
	.card-list .card-item:nth-child(3n){
		margin-right: 15px;
	}
	.card-list .card-item:nth-child(2n){
		margin-right: 0;
	}
}
@media screen and (max-width:580px) {
	.card-list .card-item{
		width: 100%;
		margin-right: 0 !important;
	}
}



/* ========== 조회화면 ========== */

.view_wrap {
	border-top: 1px solid var(--border_dark);
	border-bottom: 1px solid var(--border_light);
}
.view-top {
    border-bottom: 1px dashed var(--border_light);
	padding: 24px 10px;
}
.view-top .view-tit {
    font-size: var(--title-l-21);
	font-weight: 700;
	margin-bottom: 12px;
}
.view-top .view-tit  > span {
    display: block;
    font-size: 15px;
    font-weight: 400;
    color: var(--text_info);
}
.view-top .view-info {
	color: var(--text_info);
	font-size: 15px;
}
.view-info .view-date::before {
	content: '|';
	display: inline-block;
	margin: 0 6px;
}
.view-body {
	padding: 24px 16px;
}

/* 조회화면 - 첨부파일 영역 */
.view-file {
	background: var(--white_light);
	border-bottom: 1px dashed var(--border_light);
	padding: 16px 12px;
}
.file-list li{
	margin-bottom: 8px;
}
.file-list li:last-child{
	margin-bottom: 0px;
}
.file-list li > a {
	display: block;
	width: 100%;
	color: var(--pri-blue-500);
	font-size: 15px;
	position: relative;
	padding-left: 24px;
	word-break: break-all;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.file-list li > a:hover {
	color: var(--pri-blue-700);
}
.file-list li > a::before {
	content: '';
	display: inline-block;
	width: 20px;
	height: 20px;
	background: url(/images/component/ico_download_20.svg) no-repeat center;
	position: absolute;
	left: 0;
	top: 10px;
	transform: translateY(-50%);
}

/* 조회화면 - 이전글,다음글 영역 */
.view-bottom .view-pre-next{
	border-top: 1px solid var(--border_light);
}
.view-bottom .view-pre-next dl {
	display: flex;
	align-items: center;
	padding: 18px 12px;
	gap: 12px;
}
.view-bottom .view-pre-next .view-prev {
	border-bottom: 1px solid var(--border_light);
}
.view-bottom .view-pre-next dl > dt {
	width: 65px;
	min-width: 65px;
}
.view-bottom .view-pre-next dl > dd{
	width: 100%;
}
.view-bottom .view-pre-next dl > dd > a {
	display: block;
	width: calc(100% - 80px);
	word-break: break-all;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.view-bottom .view-pre-next dl > dd > a:hover {
	color: var(--pri-blue-500)
}
.view-bottom .view-pre-next dl > dt::before {
	content: '';
	display: inline-block;
	width: 20px;
	height: 20px;
	margin-right: 4px;
	vertical-align: sub;
	background-size: 16px !important;
}
.view-bottom .view-pre-next dl.view-prev > dt::before{
	background: url(/images/component/ico_arr_top_20.svg) center no-repeat;
}
.view-bottom .view-pre-next dl.view-next > dt::before{
	background: url(/images/component/ico_arr_bottom_20.svg) center no-repeat;
}

/*  조회화면 - QnA용 */
.answer_wrap {
	background-color: var(--pri-blue-50);
	border: 1px solid var(--info_border);
	border-radius: 12px;
	margin-top: 24px;
}
.answer_wrap .view-top{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0;
	margin: 18px 12px 0 12px;
	padding-bottom: 18px;
	border-bottom: 1px solid var(--info_border);
}
.answer_wrap .view-top .view-tit {
	margin-bottom: 0;
}
.answer_wrap .view-top .view-tit h4 {
	display: block;
}
.qna_tit {
	position: relative;
	padding-left: 30px;
}
.qna_tit::before {
	content: 'Q.';
	display: inline-block;
	position: absolute;
	top: -2px;
	left: 0;
	font-size: 25px;
	color: var(--warn_default);
	margin-right: 8px;
}
.qna_tit.answer::before {
	content: 'A.';
	color: var(--pri-blue-500);
}
@media screen and (max-width:890px) {
	.answer_wrap .view-top{
		flex-direction: column;
		align-items: flex-start;
	}
	.answer_wrap .view-top .view-tit {
		margin-bottom: 8px;
	}
}




/* ******************************************** */
/* Introduce - 소개페이지 */
/* ******************************************** */
.gray_box {
	margin-bottom: 24px;
	padding: 24px;
	border-radius: 12px;
	background-color: var(--white_light);
}

/* 설명란 */
.gray_box .intro_whatis {
	display: flex;
	align-items: center;
}
.gray_box .intro_whatis::before {
	content: '';
	display: block;
	min-width: 110px;
	height: 110px;
	margin-right: 40px;
	border-radius: 55px;
	background: #EAECEF url(/images/icons/ico_intro_deco.png) center no-repeat;
}
.gray_box .intro_whatis .txt  strong {
	display: block;
	font-size: 21px;
	margin-bottom: 8px;
}
.gray_box .intro_whatis .txt  p {
	font-size: 17px;
	color: var(--text_info);
}

/* dots 추가 한 list */
.gray_box > ul {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.gray_box > ul > li {
	position: relative;
	font-weight: var(--grey-700);
	font-size: 17px;
	padding-left: 16px;
} 
.gray_box > ul > li::before {
	content: '';
	display: inline-block;
	position: absolute;
	left: 0;
	top: 8px;
	width: 8px;
	height: 8px;
	margin-right: 8px;
	border-radius: 6px;
	background-color: var(--pri-blue-700);
}
.gray_box > ul > li > span {
	display: block;
	color: var(--text_info);
} 

/* number 추가 한 list */
.gray_box > ul.num_list > li {
    counter-increment: list-counter;
    padding-left: 18px;
}
.gray_box > ul.num_list > li::before{
    content: counter(list-counter) ".";
    display: inline-block;
    position: absolute; 
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    background-color: transparent;
} 

/* ========== 소개 이미지 영역 ========== */
.img_sect {
	margin-bottom: 40px;
}
.img_sect.has_border {
	padding: 40px 24px;
	text-align: center;
	border: 1px solid var(--border_light);
	border-radius: 12px;
}
.img_sect > img {
	display: block;
	margin: 0 auto;
}

.img_sect > ul {
	display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.img_sect > ul > li .thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.img_sect > ul > li .thumb{
    position: relative;
    width: 100%;
    padding-top: 64.25%;
    border-radius: 4px;
    overflow: hidden;
}
.img_sect > ul > li > p {
	margin-top: 16px;
	font-size: 19px;
	font-weight: 700;
	text-align: center;
}
/* 기본 3단 */
.img_sect .img_list > li {
	width: calc(100% / 3 - 10px);
    margin-bottom: 16px;
    margin-right: 15px;
	padding: 18px 21px;
	border: 1px solid var(--border_light);
	border-radius: 8px;
}
.img_sect .img_list > li:nth-child(3n) {
	margin-right: 0;
}

/* 기본 2단 */
.img_sect .img_list_twoline > li {
	width: calc(100% / 2 - 8px);
	margin-bottom: 16px;
    margin-right: 15px;
	padding: 18px 21px;
	border: 1px solid var(--border_light);
	border-radius: 8px;
}
.img_sect .img_list_twoline > li:nth-child(2n) {
	margin-right: 0;
}

/* 소개페이지 반응형 */
@media screen and (max-width:890px) {
	.gray_box .intro_whatis::before {
		min-width: 80px;
		height: 80px;
		margin-right: 24px;
		background: #EAECEF url(/images/icons/ico_intro_deco.png) center no-repeat;
		background-size: contain;
	}

	.img_sect .img_list > li {
		width: calc(100% / 2 - 10px);
		margin-bottom: 20px;
		margin-right: 20px;
	}
	.img_sect .img_list > li:nth-child(3n) {
		margin-right: 20px;
	}
	.img_sect .img_list > li:nth-child(2n) {
		margin-right: 0;
	}

	.tb_has_scroll{
		overflow-x: scroll;
	}
	.tb_has_scroll table {
		width: 100%;
		min-width: 850px;
		table-layout: fixed;
	}
}
@media screen and (max-width:600px) {
	.img_sect .img_list > li,
	.img_sect .img_list_twoline > li {
		width: 100%;
		margin-bottom: 20px;
		margin-right: 0;
		padding: 16px;
	}
	.img_sect .img_list > li:nth-child(3n) {
		margin-right: 0;
	}
	.img_sect .img_list_twoline > li:nth-child(2n){
		margin-right: 0;
	}
} 


/* ========== 소개페이지 - 이미지+설명 영역 ========== */
.i_txt_wrap {
    display: flex;
    gap: 16px;
}
.i_txt_wrap .img_box {
    padding: 18px 21px;
    border: 1px solid var(--border_light);
    border-radius: 12px;
    width: 35%;
}
.i_txt_wrap .img_box  img {
	width: 100%;
}
.i_txt_wrap .img_box  p {
    margin-top: 14px;
    font-size: 19px;
    font-weight: 700;
    text-align: center;
}
.i_txt_wrap .gray_box {
    width: 65%;
	margin-bottom: 0;
    border: 1px solid var(--border_light);
}

/* i_txt_wrap 영역 이미지 슬라이더 */
.i_txt_wrap .img_box .imgSlider {
	position: relative;
}

.i_txt_wrap .img_box .swiper-slide {
    width: 100% !important;
}

.i_txt_wrap .img_box .imgSlider .swiper-button-next:after, 
.i_txt_wrap .img_box .imgSlider .swiper-button-prev:after {
    font-size: 14px;
	font-weight: 700;
}
.i_txt_wrap .img_box .imgSlider .swiper-button-next,
.i_txt_wrap .img_box .imgSlider .swiper-button-prev {
	top: auto;
	bottom: 3px;
	width: 32px;
	height: 32px;
    padding: 10px;
    border-radius: 20px;
    background: var(--pri-blue-100);
    color: var(--pri-blue-700) !important;
}
.i_txt_wrap .img_box .imgSlider .swiper-button-next{
	right: 3px;
}
.i_txt_wrap .img_box .imgSlider .swiper-button-prev {
	left: 3px;
}
.i_txt_wrap .img_box .imgSlider .thumb {
    position: relative;
    width: 100%;
    padding-top: 64.25%;
    border-radius: 4px;
    overflow: hidden;
}
.i_txt_wrap .img_box .imgSlider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========== 소개페이지 - 지도+설명 영역 ========== */
.mp_txt_wrap{
	display: flex;
	flex-direction:column;
	gap: 16px;
}
.mp_txt_wrap .map_wrap {
	width: 100%;
	height: 500px;
	border-radius: 12px;
	border: 1px solid var(--border_light);
	overflow: hidden;
}
.mp_txt_wrap .map_wrap > frame {
	display: block;
}
.mp_txt_wrap .gray_box {
    width: 100% ;
	margin-bottom: 0;
    border: 1px solid var(--border_light);
}

/* 이미지+설명, 지도+설명영역 반응형 */
@media screen and (max-width:890px) {
	.i_txt_wrap .img_box {
		width: 40%;
	}
	.i_txt_wrap .gray_box {
		width: 60%;
	}

	.mp_txt_wrap{
		flex-direction: column;
	}
	.mp_txt_wrap .map_wrap,
	.mp_txt_wrap .gray_box {
		width: 100%;
	}
}
@media screen and (max-width:690px) {
	.i_txt_wrap {
		flex-direction: column;
	}
	.i_txt_wrap .img_box,
	.i_txt_wrap .gray_box {
		width: 100%;
	}
	.i_txt_wrap .img_box > img {
		width: 100%;
	}	
}
@media screen and (max-width:600px) {
	.i_txt_wrap .img_box {
		padding: 16px;
	}
}


/* ========== 조회 - 댓글영역 추가 ========== */
#replySection{
    border-top: 1px solid var(--border_light);
    padding: 20px 0;
}
#replySection .reply_top{
    padding: 0 0 8px 0;
    font-size: 20px;
    font-weight: 700;
}
#replySection .reply_write_wrap .box_area {
    border: 1px solid var(--border_light);
    margin-bottom: 24px;
    padding: 12px 12px;
    border-radius: 4px;
}
#replySection .reply_write_wrap .box_area .nologin_placeholder{
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 8px;
    color: var(--text_info);
    font-weight: 700;
}
#replySection .reply_write_wrap .box_area .nologin_placeholder::before{
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background: url(/images/icons/fail_blue_16.png) center;
}
#replySection .reply_write_wrap .box_area .write_label{
    margin-bottom: 4px;
    font-weight: 700;
}
#replySection .reply_write_wrap .box_area textarea {
    padding: 4px 0;
    overflow: hidden;
    resize: none;
    min-height: auto;
    border: none;
    border-radius: 2px !important;
}

/* 댓글 리스트 */
.reply_list{
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.reply_list .reply_cont {
    border: 1px solid var(--border_light);
    border-radius: 4px;
    overflow: hidden;
}
.reply_list .reply_cont .reply{
    padding: 20px;
    border-bottom: 1px dashed #e1e1e1;
}

.reply .reply_head {
    display: flex;
    flex-direction: column;
    gap: 0px;
}
.reply .reply_head .create_date{
    font-size: 15px;
    color: var(--text_disabled);
} 
.reply .reply_head .usr_id {
    font-size: 17px;
    font-weight: 700;
}
.reply .reply_head .usr_id.me::after {
    content: '나';
    display: inline-block;
    height: 18px;
    margin-left: 8px;
    padding: 2px 6px;
    font-size: 12px;
    font-weight: 400;
    border: 1px solid var(--text_default);
    border-radius: 4px;
    vertical-align: middle;
}
.reply .reply_head .usr_id.author::after {
    content: '작성자';
    display: inline-block;
    height: 18px;
    margin-left: 8px;
    padding: 2px 6px;
    font-size: 12px;
    font-weight: 400;
    color: var(--white_default);
    border: 1px solid var(--pri-blue-500);
    border-radius: 4px;
    background-color: var(--pri-blue-500);
    vertical-align: middle;
}

.reply .reply_body{
    margin: 12px 0;
}

.reply .reply_btn button {
    text-decoration: none !important;
    padding: 4px !important;
}
.reply .reply_btn .btn-reply{
    color: var(--text_info);
}
.reply .reply_btn .btn-edit{
    color: var(--sec-700);
}
.reply .reply_btn .btn-delete{
    color: var(--err_default);
}


.reply_comment .reply {
    position: relative;
    padding-left: 60px !important;
    background-color: var(--grey-50);
}
.reply_comment .reply::before{
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    position: absolute;
    left: 20px;
    top: 18px;
    background: url(/images/component/ico_subdirectory_arr_right.svg) center center;
}
.reply_comment .reply .reply_body .mention{
    display: inline-block;
    padding: 0 8px;
    color: var(--pri-blue-600);
    background-color: var(--pri-blue-50);
    border-radius: 999px;
}

.reply_list .reply_cont .reply:last-child,
.reply_comment .reply:last-child{
    border-bottom: none;
} 

.reply_comment .reply.comment_write{
    background-color: transparent;
}
.reply_comment .reply.comment_write .reply_body {
    margin: 4px 0 0 0;
}
.reply_comment .reply.comment_write textarea {
    padding: 4px 0;
    overflow: hidden;
    resize: none;
    min-height: auto;
    border: none;
    border-radius: 2px !important;
}

/* 댓글 반응형 */
@media screen and (max-width: 600px){
    .reply .reply_head .usr_id {
        font-size: 16px;
    }
    .reply .reply_head .create_date {
        font-size: 14px;
    }
    .reply_list .reply_cont .reply {
        padding: 16px;
        border-bottom: 1px dashed #e1e1e1;
    }
    .reply_comment .reply {
        padding-left: 40px !important;
    }
    .reply_comment .reply::before {
        top: 13px;
        left: 12px;
    }
}


/* ========== 통합검색 - 검색결과 ========== */
.result_container{
    margin-top: 40px;
}
.result_message{
    font-size: 18px;
    border-radius: 8px;
}
.result_message > span{
    color: var(--err_default);
}
.no_result{
    margin-top: 20px;
    padding: 100px 0;
    border-radius: 8px;
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    color: var(--text_disabled);
    background-color: #f8f8f8;
}
.result_list{
    padding-bottom: 20px;
}

/* 상단 검색창 */
.result_container .search_cont {
    margin-bottom: 26px;
    padding: 20px 0;
}
.result_container .search_wrap {
	width: 600px;
    margin: 0 auto;
	border: 3px solid var(--pri-blue-600);
	border-radius: 999px;
	overflow: hidden;
}
.result_container .search_box {
	display: flex;
    align-items: center;
    height: 80px;
    padding: 5px;
}
.result_container .search_box .txt_search {
	width: calc(100% - 80px);
	border: none;
	margin:  5px 5px 5px 30px;
	font-size: 24px;
	background-color: transparent;
}
.result_container .search_box .txt_search::placeholder {
	font-size: 24px;
    font-weight: 700;
	color: var(--text_disabled);
}
.result_container .search_box .btn_search {
	width: 71px;
	height: 66px !important;
	background: var(--pri-blue-500) url(/images/icons/ico_search_w.svg) no-repeat center center;
	background-size: 30px;
	transition: all .3s ease;
	border-radius: 999px !important;
}
.result_container .search_box .btn_search:focus,
.result_container .search_box .btn_search:hover {
    background-color: var(--pri-blue-700);
}
@media screen and (max-width:640px) {
    .result_container .search_wrap {
        width: 100% !important;
    }
    .result_container .search_box {
        height: 60px;
    }
    .result_container .search_box .txt_search {
        font-size: 17px;
    }
    .result_container .search_box .txt_search::placeholder {
        font-size: 17px;
    }
    .result_container .search_box .btn_search {
        width: 52px;
        height: 50px !important;
    }
}

/* 검색결과 리스트 상단 - 그룹표시 */
.result_list .list_top{
    margin-top: 20px; 
    padding-bottom: 8px;
    color: var(--pri-blue-600);
    border-bottom: 2px solid var(--pri-blue-600);
}
.result_list .list_top > p {
    font-size: 20px;
    font-weight: 700;
}
.result_list .list_top > a ,
.result_list .list_top > p > span {
    font-size: 16px;
    font-weight: 400;
    color: var(--text_default);
}
.result_list .list_top > a {
    display: flex;
    align-items: center;
    padding: 8px;
    border-radius: 8px;
    transition: all .5s ease;
    color: var(--text_info);
}
.result_list .list_top > a::after {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-left: 4px;
    background-color: #246beb;
    background: url(/images/icons/ico_arrow_forward_24.svg) center center;
} 
.result_list .list_top > a:hover {
    background-color: #eee;
}

/* 검색결과 리스트 */
.result_list ul > li{
    padding: 16px 8px;
    border-bottom: 1px solid var(--border_light);
}
.result_list ul > li > a {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 700;
    word-break:break-all;
}
.result_list ul > li > a:hover{
    text-decoration: underline;
}
.result_list ul > li > p {
    color: var(--text_info);
}

/* 조직소개 */
.organize_wrap{
	margin-top:40px;
}
.organize_wrap > img {
	display:block;
	margin:0 auto;
}