@charset "utf-8";

/* 전체 스크롤바 트랙 (배경) */
body::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

/* 스크롤바 Thumb (움직이는 부분) */
body::-webkit-scrollbar-thumb {
  background-color: var(--second-color);
  border-radius: 10px;
  border: 2px solid var(--second-color);
  background-clip: content-box;
}

/* 스크롤바 트랙 (Thumb이 움직이는 영역) */
body::-webkit-scrollbar-track {
  background-color: #fff;
  border-radius: 10px;
}

.essential-icon{
	color: #ff0000;
	margin-left: 2px;
}

/* 바디 스크롤 잠금용 */
body.scroll-lock {
	overflow: hidden;
	position: fixed;
	width: 100%;
}

.container {
	max-width: 1420px;
}

.sub-container {
	max-width: 1420px;
	margin: 0 auto;
	padding: 0 2.5vw;
}

.main-container {}


/* 🟠 기본 dot 커서 스타일 */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 15px;
  height: 15px;
  background-color: rgba(253, 78, 22, 0.6);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  transition: all 0.2s ease;
}

.cursor-dot.active {
  transform: translate(-50%, -50%) scale(1.2);
  background-color: var(--main-color);
}

.cursor-dot.clicked {
  transform: translate(-50%, -50%) scale(2);
  transition: transform 0.15s ease;
}

.cursor-ripple {
  position: fixed;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: rgba(253, 78, 22, 0.1);
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  z-index: 9998;
  transition: transform 0.4s ease-out, opacity 0.4s ease-out;
}

.cursor-ripple.show {
  transform: translate(-50%, -50%) scale(4);
  opacity: 1;
}

/* ✅ 모바일 디바이스에서 숨기기 */
@media (hover: none) and (pointer: coarse) {
  .cursor-dot,
  .cursor-ripple {
    display: none !important;
  }
}

/* ✅ PC지만 창을 줄인 경우도 숨기기 (예: 1024px 이하) */
@media screen and (max-width: 1024px) {
  .cursor-dot,
  .cursor-ripple {
    display: none !important;
  }
}

/** 버튼 */
.more-btn-wrap {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-top: 64px;
	position: relative;
}

.more-btn-wrap.center {
	justify-content: center;
	width: unset;
	height: unset;
}

.more-btn-wrap a {
	--width: 190px;
	--height: 54px;
	border: 0;
	position: relative;
	min-width: var(--width);
	min-height: var(--height);
	border-radius: var(--height);
	color: #fff;
	font-family: "Montserrat";
	font-weight: bold;
	background: rgba(0, 0, 0, 0.3);
	cursor: pointer;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 2;
}

.more-btn-wrap a::after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, .1);
	border-radius: var(--height);
	z-index: 1;
	transition: transform 500ms ease;
}

.more-btn-wrap a .text {
	font-size: 16px;
	color: #fff !important;
	font-weight: 500;
}

.more-btn-wrap a .text,
.more-btn-wrap a .icon-container {
	position: relative;
	z-index: 3;
}

.more-btn-wrap a .icon-container {
	--icon-size: 25px;
	position: relative;
	width: var(--icon-size);
	height: var(--icon-size);
	margin-left: 15px;
	transition: transform 500ms ease;
}

.more-btn-wrap a .icon {
	position: absolute;
	left: 0;
	top: 0;
	width: var(--icon-size);
	height: var(--icon-size);
	transition: transform 500ms ease, opacity 250ms ease;
}

.more-btn-wrap a .icon-container .icon-left {
	transform: translateX(-200%);
	opacity: 0;
}

.more-btn-wrap a:hover .icon-container {
	transform: translateX(90%);
}

.more-btn-wrap a:hover .icon-container .icon-left {
	transform: translateX(0);
	opacity: 1;
}

.more-btn-wrap a:hover .icon-container .icon-right {
	transform: translateX(200%);
	opacity: 0;
}

.more-btn-wrap a:hover::after {
	transform: translateX(70%);
}

/* 문의하기 버튼 */
.more-btn-wrap.inq {
	justify-content: flex-end;
	width: unset;
	margin-top: 0;
}

.more-btn-wrap.inq a::after {
	background: #fff;
}

.more-btn-wrap.inq a {
	color: var(--navy);
	background: #fff;
	border: 1px solid var(--navy);
}

.more-btn-wrap.inq a .text {
	color: var(--navy) !important;
}

.more-btn-wrap.inq a:hover::after {
	background: var(--navy);
}

.more-btn-wrap.inq a:hover .icon-container {
	transform: translateX(135%);
}





/** HEADER */
header.header {
	position: fixed;
	width: 100%;
	height: 100px;
	left: 0;
	top: 0;
	z-index: 11;
	background-color: transparent;
	transform: translateY(0);
	transition: transform 0.3s ease, background-color .3s ease;
}

.header.hide {
	transform: translateY(-100%);
}

.header.show {
	background-color: rgba(8, 19, 37, .4);
	backdrop-filter: blur(10px);
}

.nav-up {
	top: -100px;
}


header.header .hd-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0 auto;
	height: 100px;
	max-width: 2345px;
	padding: 0 2.5vw;
}

header.header .util_wrap {
	width: 100%;
	margin: auto;
	font-size: 15px;
	border-bottom: 1px solid #cecece;
	overflow: hidden;
}

header.header .util_wrap .left_box {
	float: left;
}

header.header .util_wrap .right_box {
	float: right;
}

header.header .util_wrap .bg1 {
	background: #006999;
}

header.header .util_wrap .bg2 {
	background: #0a81b8;
}

header.header .util_wrap ul {
	width: 230px;
	overflow: hidden;
}

header.header .util_wrap ul li {
	width: 50%;
	float: left;
	text-align: center;
}

header.header .util_wrap ul li a {
	display: block;
	color: #fff;
	line-height: 45px;
}

header.header .util_wrap ul li a:hover,
header.header .util_wrap ul li a:focus {
	background: #333;
	transition: all .2s;
}

.logo_b {
	display: none;
}

.nav-up {
	top: -100px;
}

/** //HEADER */

section.main {
	position: relative;
	min-height: calc(100vh - 295px);
}

/** GNB */
.gnb-ul {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	font-weight: 700;
}

.gnb-ul li {
	position: relative;
	padding: 0 30px;
}

.gnb-ul .depth1 a {
	color: #fff;
}

.gnb-ul .depth1 a .d1 {
	font-size: 18px;
	font-weight: 600;
}

.gnb-ul li a {
	min-width: 120px;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100px;
}


.gnb-ul .depth1:hover .submenu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
}

.gnb-ul .submenu {
	position: absolute;
	top: calc(100% - 5px);
	left: 0;
	right: 0;
	line-height: 1.4;
	pointer-events: auto;
	padding: 20px 0 0;
	background: var(--second-color);
	border-radius: 20px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
	pointer-events: none;
}

.gnb-ul .submenu ul {
	position: relative;
}

.gnb-ul .submenu ul li a {
	color: #fff;
	height: unset;
	padding-bottom: 24px;
}

.gnb-ul .submenu ul li a:hover {
	text-decoration: underline;
}

.gnb-ul .depth1 .submenu ul li .submenu {
	display: none !important;
}

.tab-type01-inner ul>li>ul {
	display: none !important;
}

/* 사이트맵 */

.menu-icon {
	z-index: 2;
	cursor: pointer;
}

.menu-icon__line {
	height: 2px;
	width: 30px;
	display: block;
	background-color: #ffffff;
	margin-bottom: 4px;
	transition: transform 0.2s ease, background-color 0.5s ease;
}

.menu-icon__line-left {
	width: 15px;
}

.menu-icon__line-right {
	width: 15px;
	float: right;
}

.sitemap {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: 5;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-20px);
	transition: all 0.3s ease;
	pointer-events: none;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.sitemap.nav-active {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
}

.sitemap::before,
.sitemap::after {
	content: "";
	position: fixed;
	width: 100%;
	height: 100%;

	z-index: -1;
	transition: transform cubic-bezier(0.77, 0, 0.175, 1) 0.8s;
	transform: translateX(0%) translateY(-100%);
}

.sitemap::after {
	background: rgba(0, 0, 0, .6);
	backdrop-filter: blur(25px);
	transition-delay: 0s;
}

.sitemap::before {
	transition-delay: 0.1s;
}

.nav__content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	color: #fff;
	width: 100%;
	max-height: calc(100vh - 7em - 5rem);
	overflow-x: hidden;
	overflow-y: auto;
}

.nav__content .nav__list {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	padding: 0 60px 40px;
}

/* 전체 스크롤바 트랙 (배경) */
.nav__content::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

/* 스크롤바 Thumb (움직이는 부분) */
.nav__content::-webkit-scrollbar-thumb {
  background-color: var(--second-color);
  border-radius: 10px;
  border: 2px solid var(--second-color);
  background-clip: content-box;
}

/* 스크롤바 트랙 (Thumb이 움직이는 영역) */
.nav__content::-webkit-scrollbar-track {
  background-color: rgba(255,255,255,.2);
  border-radius: 10px;
}

.nav__list-item {
	position: relative;
	display: inline-block;
	transition-delay: 0.8s;
	opacity: 0;
	/* transform: translate(0%, 100%); */
	transition: opacity 0.2s ease, transform 0.3s ease;
}

.nav__list-item h4 {
	font-size: 28px;
	font-weight: 600;
	margin-bottom: 44px;
}

.nav__list-item img {
	display: none;
}

.nav__depth2 {
	display: flex;
	flex-direction: column;
}

.nav__depth2 li a:hover,
.nav__depth3 li a:hover {
	color: var(--main-color);
	transition: color .2s ease-in-out;
}

.nav__depth2 li a {
	font-size: 18px;
	padding-bottom: 20px;
	display: block;
}

.nav__depth3 {
	margin-bottom: 60px;
}

.nav__depth2 li,
.nav__depth3 li{
	width: 100%;
}

.nav__depth3 li a {
	font-size: 16px;
	padding-bottom: 10px;
	color: #aaa;
	display: block;
}


/* Active State */
.menu-icon.nav-active .menu-icon__line {
	background-color: #fff;
	transform: translateX(0px) rotate(-45deg);
}

.menu-icon.nav-active .menu-icon__line-left {
	transform: translateX(1px) rotate(45deg);
}

.menu-icon.nav-active .menu-icon__line-right {
	transform: translateX(-2px) rotate(45deg);
}

.sitemap.nav-active .sitemap-nav {
	visibility: visible;
}

.sitemap.nav-active::before,
.sitemap.nav-active::after {
	transform: translateX(0%) translateY(0%);
}

.sitemap.nav-active .sitemap::after {
	transition-delay: 0.1s;
}

.sitemap.nav-active .sitemap::before {
	transition-delay: 0s;
}

.sitemap.nav-active .nav__list-item {
	opacity: 1;
	transform: translateX(0%);
	transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
}


/* Manually apply transition-delay for each item (since SCSS loop is unavailable in CSS) */
.sitemap.nav-active .nav__list-item:nth-child(0) {
	transition-delay: 0.3s;
}

.sitemap.nav-active .nav__list-item:nth-child(1) {
	transition-delay: 0.4s;
}

.sitemap.nav-active .nav__list-item:nth-child(2) {
	transition-delay: 0.5s;
}

.sitemap.nav-active .nav__list-item:nth-child(3) {
	transition-delay: 0.6s;
}

.sitemap.nav-active .nav__list-item:nth-child(4) {
	transition-delay: 0.7s;
}

.sitemap.nav-active .nav__list-item:nth-child(5) {
	transition-delay: 0.8s;
}


/** //GNB */

/** FOOTER */
footer.footer {
	width: 100%;
	overflow: hidden;
	background: var(--navy);
}

.footer .ft-inner {
	max-width: 1420px;
	padding: 0 20px;
	/* width: 100%; */
	margin: 0 auto;
}


.ft-top {
	margin: 40px 0;
}

.ft-top .ft-top-inner {
	display: flex;
	justify-content: space-between;
}

/* 왼쪽 컨텐츠 */
.ft-top-left .pi {
	color: var(--main-color);
	font-weight: 600;
}

.ft-top-left .address-list {
	margin-top: 30px;
	display: flex;
	gap: 60px;
}

.ft-top-left .address-list .adl-section {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.ft-top-left .address-list dl {
	display: inline-block;
	vertical-align: middle;
	color: #fff;
	flex: 1 1 35%;
}

.ft-top-left .address-list dl dt {
	width: 120px;
	color: #A3A5A7;
}

.ft-top-left .address-list dl dd {}

.ft-top-left .address-list dl dt,
.ft-top-left .address-list dl dd {
	vertical-align: middle;
	display: inline-block;
}


/* 오른쪽 컨텐츠 */
.ft-top-right {
	width: 30%;
}

.ft-mail-wrap {}

.ft-mail-wrap ul {
	display: flex;
	flex-wrap: wrap;
	row-gap: 40px;
}

.ft-mail-wrap ul>* {
	color: #fff;
}

.ft-mail-wrap ul>li {
	flex: 1 1 50%;
	font-size: 18px;
	font-weight: 600;
}

.ft-mail-wrap ul>li h5 {
	margin-bottom: 4px;
}

.ft-mail-wrap ul>li>a{
	font-size: 18px;
	font-weight: 600;
}

.ft-bottom {
	padding: 20px 0;
	border-top: 1px solid rgba(255, 255, 255, .2);
}

.ft-bottom span {
	color: #d1d2d3;
}


/** //FOOTER */

/** SNB */
.snb_wrap {
	width: 1200px;
	margin: auto;
	position: relative;
}

.snb {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

.snb .top {
	text-align: center;
	width: 230px;
	line-height: 150px;
	height: 150px;
	background: #0a81b8;
	color: #fff;
	font-size: 21px;
}

.snb>ul ul {
	display: none;
}

.snb ul li a {
	display: block;
	padding: 12px 20px;
}

.snb ul li a span {
	font-size: 19px;
}

.snb li.on ul {
	display: block;
}

.snb>ul {
	width: 230px;
	margin: auto;
	background: #fff;
	border: 1px solid #cecece;
	box-sizing: border-box;
	background: #fff;
}

.snb>ul>li {
	box-sizing: border-box;
}

.snb>ul>li+li {
	border-top: 1px solid #cecece;
}

.snb>ul>li.on>a {
	background: #f1f1f1;
}

.snb>ul>li.on>a>span {
	font-weight: bold;
}

.snb ul[data-level="2"] {
	padding: 10px;
}

.snb ul[data-level="2"]>li>a:hover>span,
.snb ul[data-level="2"]>li>a:focus>span {
	border-bottom: 2px solid #006999;
	padding-bottom: 1px;
	transition: all .2s;
}

.snb ul[data-level="3"] {
	padding: 10px;
}

.snb ul[data-level="3"]>li>a:hover>span,
.snb ul[data-level="3"]>li>a:focus>span {
	border-bottom: 2px solid #006999;
	padding-bottom: 1px;
	transition: all .2s;
}

/** //SNB */

/** SUB */
.sub_wrap {}

.sub_wrap .sub_title {
	background: #c5dce7;
	padding: 45px 0;
	overflow: hidden;
	box-sizing: border-box;
	height: 150px;
}

.sub_wrap .sub_title .inner {
	width: 100%;
	float: right;
}

.sub_wrap .sub_title p {
	font-size: 19px;
	font-weight: bold;
}

.sub_wrap .sub_title p+ul {
	margin-top: 8px;
}

.sub_wrap .sub_title ul {
	overflow: hidden;
}

.sub_wrap .sub_title ul li {
	float: left;
	font-size: 15px;
}

.sub_wrap .sub_title ul li+li::before {
	content: '>';
	margin: 15px;
}

.sub_wrap .sub_content {
	margin: 40px 0;
	overflow: hidden;
}

.sub_wrap .sub_content .inner {
	width: 100%;
	float: right;
}

.sub_side {
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
}

.sub_side+.sub_wrap .sub_title .inner {
	width: calc(100% - 300px);
}

.sub_side+.sub_wrap .sub_content .inner {
	width: calc(100% - 300px);
}

/** //SUB */


/* ========================================================
* css 추가 
======================================================== */
.sub-visual-wrap {
	position: relative;
	width: 100%;
	height: 100vh;
	overflow: hidden;
	z-index: -1;
}

.sub-visual-wrap .img-wrap {
	transform: scale(1);
	transition: all 1.4s;
	background: url(/images/subview_business.png) no-repeat center / cover;
	width: 100%;
	height: 100%;
}


.subname-wrap {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
}

.subname-wrap h2,
.subname-wrap span {
	color: #fff;
	text-align: center;
}

.subname-wrap h2 {
	font-size: 72px;
	font-weight: 700;
}

.subname-wrap span {
	font-size: 22px;
}

/* 스크롤다운 애니메이션 */
.scroll-downs {
	position: absolute;
	bottom: 5%;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}

.mousey {
	width: 3px;
	padding: 5px 10px;
	height: 30px;
	border: 2px solid #fff;
	border-radius: 25px;
	opacity: 0.75;
	box-sizing: content-box;
}

.scroller {
	width: 3px;
	height: 10px;
	border-radius: 25%;
	background-color: #fff;
	animation-name: scroll;
	animation-duration: 2.2s;
	animation-timing-function: cubic-bezier(.15, .41, .69, .94);
	animation-iteration-count: infinite;
}


@keyframes scroll {
	0% {
		opacity: 0;
	}

	10% {
		transform: translateY(0);
		opacity: 1;
	}

	100% {
		transform: translateY(15px);
		opacity: 0;
	}
}

.scroll-txt {
	color: #fff;
}


/* 탭 */
.tab-type01-mobile {
	display: none;
}

.tab-type01-wrap {
	position: sticky;
	top: 0;
	left: 0;
	z-index: 4;
	background: #fff;
	transition: all .3s ease-in-out;
}

.tab-type01-wrap.unstuck {
	position: relative;
}

.tab-type01-inner {
	display: flex;
	justify-content: center;
	width: 100%;
	border-bottom: 1px solid #ddd;
	background-color: #fff;
	position: sticky;
	top: 0;
	left: 0;
	margin-bottom: 90px;

}

.tab-type01-inner .container {
	width: 100%;
}

.tab-type01-inner ul {
	display: flex;
	justify-content: space-between;
}

.tab-type01-inner ul>li {
	position: relative;
	width: 100%;
	text-align: center;
}

.tab-type01-inner ul>li>a {
	padding: 27px 0;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 18px;
	font-weight: 500;
	letter-spacing: -0.038em;
	transition: all 0.3s ease;
}

.tab-type01-inner ul>li:hover a,
.tab-type02-inner ul>li:hover>a {
	color: var(--main-color);
	transition: color ease .3s;
}

.tab-type01-inner ul>li.active>a {
	color: var(--main-color);
	font-weight: 700;
}

.tab-type01-inner ul>li:after {
	display: block;
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: var(--main-color);
	;
	opacity: 0;
	transition: all 0.2s ease;
}

.tab-type01-inner ul li.active::after {
	opacity: 1;
}

.tab-type02-wrap {
	position: relative;
	margin: 0 2.5vw 64px;
}

.tab-type02-inner {
	background-color: #f1f2f3;
	max-width: 1420px;
	width: 100%;
	margin: 0 auto;
	border-radius: 50px;
}

.tab-type02-inner ul {
	display: flex;
	justify-content: space-between;
	padding: 4px;
}

.tab-type02-inner ul>li {
	flex: 1;
	text-align: center;
}

.tab-type02-inner ul>li>a {
	width: 100%;
	display: block;
	padding: 14px 0;
	font-size: 18px;
}


.tab-type02-inner ul>li.active>a {
	background: var(--second-color);
	color: #fff;
	border-radius: 50px;
	font-weight: 600;
}


/* 서브타이틀 */
.sub-title-wrap {
	text-align: center;
	margin: 90px 0;
}

.sub-title-wrap span,
.sub-title-wrap h4 {
	font-weight: 700;
}

.sub-title-wrap span {
	font-size: 24px;
}

.sub-title-wrap h4 {
	font-size: 48px;
	margin-top: 10px;
	word-break: keep-all;
}

/** 게시판 페이징 */
.prev_next_table {
	margin-bottom: 100px;
}

.prev_next_table table {
	border-top: 1px solid #a1a2a3;
	border-bottom: 1px solid #ddd;
}

.prev_next_table table tr{
	border-bottom: 1px solid #ddd;
}

.prev_next_table table th,
.prev_next_table table td {
	padding: 24px 10px;
}

.prev_next_table table th {
	background-color: #fff;
	position: relative;
	text-align: left;
	padding-left: 0;
	min-width: 130px;
	font-weight: 500;
}

.prev_next_table table td.writer {
	display: none;
}

.prev_next_table table td {
	color: #717171;
}

.prev_next_table table td a {
	color: #222;
}

.prev_next_table table td a:hover {
	text-decoration: underline;
}

.prev_next_table table tr th::before {
	content: '';
	width: 20px;
	height: 20px;
	display: inline-block;
	vertical-align: middle;
	margin-right: 12px;
}

.prev_next_table table tr:first-child th::before {
	background: url(/images/notice_prev.svg) no-repeat;
	background-size: contain;
}

.prev_next_table table tr:last-child th::before {
	background: url(/images/notice_next.svg) no-repeat;
	background-size: contain;
}


/** 플로팅 버튼 */
.floating-btn {
	position: fixed;
	bottom: 60px;
	right: 50px;
	z-index: 2;
	transition: all .4s ease-in-out;
}

.floating-btn-in{
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}

.btn-inquiry {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	width: 64px;
	height: 64px;
	box-sizing: border-box;
	border-radius: 40px;
	background: var(--main-color);
	transition: width .3s ease;
	box-shadow: 0 0 10px rgba(0, 0, 0, .2);
}
.btn-inquiry a{
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 5;
}

.btn-inquiry p{
	position: absolute;
	top: 50%;
	right: 38px;
	width: max-content;
	transform: translateY(-50%);
	z-index: 2;
	color: #fff;
	font-weight: 600;
	margin-right: 20px;
	opacity: 0;
}

.btn-inquiry:hover{
	width: 140px;
}

.btn-inquiry:hover a{
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding-right: 20px;
	position: relative;
	top: unset;
	left: unset;
	transform: unset;
}

.btn-inquiry:hover p{
	opacity: 1;
}

.btn-top {
	margin-top: 16px;
}

.btn-top {
	position: relative;
	border-radius: 50%;
	background: #fff;
	transition: all .3s ease-in-out;
	box-shadow: 0 0 10px rgba(0, 0, 0, .2);
}

.btn-top a{
	width: 64px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/** 게시판 상단 레이아웃 */
.board-top-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 32px;
}

.board_search_form {
	background: var(--light-gray);
	border-radius: 25px;
	width: unset;
}

.board_search_form .search_box {
	height: 50px;
	line-height: 50px;
	border-radius: 25px;
	padding: 0 20px;
}

.board_search_form .search_box input {
	background: var(--light-gray);
	border: 0;
	padding: 0;
}

.board_total_count>b {
	color: var(--main-color);
	margin-left: 4px;
}

.board_total_count+.list_table {
	margin-top: 5px;
}


.search_box .search_btn {
	background-image: url(/images/i_search.svg);
	background-color: transparent;
	background-size: 24px auto;
}

/** 페이징  */
.paging{
	margin: 0 0 100px;
	display: inline-block;
}

.page_btn{
	width: 40px;
	height: 40px;
	border: 0;
}

.page_btn + .page_btn{
	margin-left: 4px;
}

.page_btn span{
	line-height: 40px;
}

.page_first, .page_prev, .page_next, .page_last{
	background: transparent;
}

.page_first, .page_prev, .page_next, .page_last:hover{
	border: 0 !important;
}

.page_btn.current_page{
	background: transparent;
	border-bottom: 2px solid var(--main-color);
}

.page_btn.current_page span{
	color: var(--main-color) !important;
	font-weight: 600;
}

.page_btn:not(.current_page):hover{
	border: 0;
	border-bottom: 1px solid #717171;
}

.page_btn.current_page:hover{
	border: 0;
	border-bottom: 2px solid var(--main-color);
}

.page_btn img{
	width: 40px;
}


/** 유효성검사 */
.error{    
	border: 1px solid #ff0000 !important;
  box-shadow: 0 0 10px rgba(255, 0, 0, .1);
}
.error-txt{
	font-size: 14px;
	font-weight: 500;
	color: #ff0000;
	margin: 4px;
	position: relative;
	display: inline-block;
	padding-left: 20px;
}

.error-txt::before{
	content: '';
	background: url(/images/i_error.svg) no-repeat;
	background-size: cover;
	width: 16px;
	height: 16px;
	position: absolute;
	left: 0;
	top: 2px;
}

.error-txt > label{
	border: 0 !important;
    box-shadow: none;
}

/* ========================================================
* 반응형 
======================================================== */
@media (max-width: 1280px) {

	/** footer */
	.ft-top .ft-top-inner {
		flex-direction: column;
		gap: 40px;
	}

	.ft-top-right {
		width: 50%;
	}

	/** gnb */
	.gnb_wrap {
		display: none;
	}

	/** 사이트맵 */
	.nav__content {
		top: 0;
		left: 50%;
		transform: translateX(-50%);
		height: 100%;
		margin-top: 150px;
	}

	.sitemap {
		height: 100%;
	}

	.nav__content .nav__list {}


}


@media (max-width: 1080px) {

	/** 플로팅버튼 */
	.btn-inquiry,
	.btn-top a {
		width: 56px;
		height: 56px;
	}

	.btn-inquiry>a>div>img,
	.btn-top>a>img {
		width: 20px;
		height: auto;
	}

	/** 서브페이지 레이아웃 */
	.sub-visual-wrap {
		height: 50vh;
	}

	.subname-wrap h2 {
		font-size: 48px;
	}

	.subname-wrap span,
	.sub-title-wrap span {
		font-size: 18px;
	}

	.scroll-downs {
		display: none;
	}

	.sub-title-wrap {
		margin: 60px 0;
	}

	.sub-title-wrap h4 {
		font-size: 32px;
	}

	.tab-type01-inner .container {
		display: none;
	}

	/* 모바일 서브메뉴 드롭다운 */

	.tab-type01-inner {
		margin-bottom: 48px;
	}

	.tab-type01-mobile {
		width: 100%;
		position: relative;
		display: block;
	}

	.tab-recent {
		display: flex;
		justify-content: space-between;
		padding: 18px 20px;
		width: 100%;
		cursor: pointer;
	}

	.tab-recent .dropbtn {
		font-weight: 500;
	}

	.tab-cont {
		display: none;
		position: absolute;
		background-color: #efefef;
		border-top: 1px solid #cecece;
		width: 100%;
		overflow: auto;
		z-index: 1;

		animation: fadeDown 0.3s ease;
		transform-origin: top;
		opacity: 0;
		transform: translateY(-10px);
		transition: opacity 0.3s ease, transform 0.3s ease;
	}

	.tab-cont.show {
		display: block;
		opacity: 1;
		transform: translateY(0);
	}

	.tab-cont a {
		padding: 12px 20px;
		display: block;
		border-bottom: 1px solid #cecece;
	}

	.tab-cont a.active {
		color: var(--second-color);
		font-weight: 600;
	}

	.show {
		display: block;
	}

	@keyframes fadeDown {
		from {
			opacity: 0;
			transform: translateY(-10px);
		}

		to {
			opacity: 1;
			transform: translateY(0);
		}
	}

	.tab-recent img {
		transition: transform .3s ease;
	}

	.tab-cont.show~.tab-recent img,
	.tab-recent.active img {
		transform: rotate(180deg);
	}

	/** 컨텐츠 탭 */

	.tab-type02-wrap {
		margin-bottom: 48px;
	}

	.tab-type02-inner ul>li>a {
		font-size: 16px;
		padding: 10px 0;
	}


	/** 모바일 사이트맵 */

	header.header.nav-active {
		background: #fff;
	}

	.nav__content {
		top: 120px;
		transform: translateX(-50%);
		color: #222;
		margin-top: 0;
	}

	.nav__content .nav__list {
		flex-direction: column;
		padding: 0;
		gap: 40px;
		padding-bottom: 40px;
	}

	.sitemap::after {
		background: #fff;
	}

	.nav__list-item {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		flex-wrap: wrap;
		row-gap: 16px;
		cursor: pointer;
	}

	.nav__list-item h4 {
		font-size: 20px;
		margin-bottom: 0;
		padding-left: 20px;
		font-weight: 500;
	}

	.nav__list-item .arrow-icon {
		background: url('/images/i_down_b.svg');
		transform: rotate(-90deg);
		width: 24px;
		height: 24px;
		display: inline-block;
		margin-right: 20px;
	}

	.nav__list-item img {
		display: block;
		transform: rotate(-90deg);
		margin-right: 20px;
	}

	.nav__depth2,
	.nav__depth3 {
		display: none;
	}

	.nav__depth2.open,
	.nav__depth3.open {
		background: #f5f5f5;
		display: flex;
		align-items: flex-start;
		flex-direction: column;
	}

	.nav__depth2.open {
		padding: 20px 0 20px 20px;
		gap: 16px;
	}

	.nav__depth2.open .nav__depth2_li {
		display: flex;
		align-items: center;
		width: 100%;
		justify-content: space-between;
		flex-wrap: wrap;
		min-height: 44px;
		cursor: pointer;
	}

	.nav__list-item:has(.nav__depth2.open) h4 {
		color: var(--main-color);
		transition: color .3s ease;
	}

	.nav__list-item:has(.nav__depth2.open) .arrow-icon {
		background-image: url('/images/i_down_or.svg');
		transform: rotate(0deg);
		transition: transform .3s ease;
	}

	.nav__depth2_li:has(.nav__depth3.open) img {
		transform: rotate(0deg);
		padding-bottom: 0;
	}

	.nav__depth2_li:has(.nav__depth3.open) a {
		font-weight: 600;
	}

	.nav__depth2.open .nav__depth2_li img {
		padding-right: 0;
	}

	.nav__depth3.open {
		margin: 20px 20px 0;
		margin-left: 0;
		flex-basis: 100%;
		gap: 16px;
		background: #fff;
		border-radius: 6px;
		padding: 16px;
	}

	.nav__depth2 {
		flex-basis: 100%;
	}

	.nav__depth2 li a {
		text-align: left;
		font-size: 16px;
		padding-bottom: 0;
		font-weight: 500;
		flex: 1;
	}

	.nav__depth3 li a {
		color: #717171;
	}

	.menu-icon.nav-active .menu-icon__line {
		background-color: #222;
	}

	.header.nav-active .logo_w {
		display: none;
	}

	.header.nav-active .logo_b {
		display: block;
	}



	/** footer */
	.footer>* {
		font-size: 14px;
	}

	.ft-mail-wrap ul>li a {
		font-size: 16px;
	}

	.ft-top-left .address-list {
		flex-direction: column;
		gap: 4px;

	}

}

@media (max-width: 768px) {

	/** header */
	.hd-inner .logo_wrap .logo a {
		display: block;
		width: 80%;
	}

	.nav__list-item h4 {
		font-size: 18px;
	}

	/** footer */
	.ft-mail-wrap ul {
		flex-direction: column;
	}

	/** tab */
	.tab-type02-inner {
		border-radius: 25px;
	}

	.tab-type02-inner ul {
		flex-wrap: wrap;
	}

	.tab-type02-inner ul>li {
		flex: 1 1 50%;
	}

	.tab-type02-inner ul>li>a {
		width: unset;
		padding: 10px;
		word-break: keep-all;
	}

	/** 플로팅 */
	.floating-btn {
		bottom: 40px;
		right: 20px;
	}

	.btn-inquiry,
	.btn-top a {
		width: 48px;
		height: 48px;
	}

	.btn-inquiry>a>div>img,
	.btn-top>a>img {
		width: 16px;
		height: auto;
	}

	/** 게시판 */
	.board_search_form{
		display: none;
	}
}
@media (max-width: 680px) {
	.notice-list ul li:has(.notice-label){
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}
}

@media (max-width: 375px) {
	.tab-type02-inner ul>li {
		flex: 1 1 100%;
	}
}