#hd {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100px;
	z-index: 9999;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	white-space: nowrap;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	border-bottom: 1px solid #fff;
}
#hd .logo-wr {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
#hd .logo-wr a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
#hd .logo-wr .logo__img {
	display: block;
	width: 261px;
	height: 55px;
	background: url(/img/logo/logo.svg) center/contain no-repeat;
	margin-right: 25px;
	font-size: 0;
	-webkit-filter: brightness(0) invert(1);
	filter: brightness(0) invert(1);
}
#hd .logo-wr .logo__txt {
	font-size: 16px;
	color: #fff;
	font-weight: 200;
	line-height: 1;
}
#hd .logo-wr .logo__txt strong {
	font-weight: 500;
}
#hd .menu-wr {
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	color: #fff;
	border-left: 1px solid #fff;
	padding-left: 40px;
	font-size: 14px;
}
#hd .menu-wr .hd-mb {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-transition: 0.6s;
	transition: 0.6s;
}
#hd .menu-wr .sns {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
#hd .menu-wr .sns li {
	padding-left: 10px;
}
#hd .menu-wr .sns a {
	display: block;
	width: 32px;
	height: 32px;
}
#hd .menu-wr .sns .blog {
	background: url(/img/common/icon/blog-icon.svg);
}
#hd .menu-wr .sns .insta {
	background: url(/img/common/icon/insta-icon.svg);
}
#hd .menu-wr .sns .yt {
	background: url(/img/common/icon/yt-icon.svg);
}
#hd .tnb {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: relative;
	max-height: 30px;
	overflow: hidden;
}
#hd .tnb li {
	padding-right: 17px;
}
#hd #gnb {
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
#hd #gnb a {
	margin-left: 48px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background: none;
	border: 0;
	color: #fff;
	font-size: 18px;
	font-weight: 500;
}
#hd #hd-sns {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	padding-top: 45px;
	max-height: 200px;
	overflow: hidden;
}
#hd #hd-sns img {
	-webkit-filter: brightness(0) invert(1);
	filter: brightness(0) invert(1);
	-webkit-transition: -webkit-filter 0.3s;
	transition: -webkit-filter 0.3s;
	transition: filter 0.3s;
	transition:
		filter 0.3s,
		-webkit-filter 0.3s;
}
#hd #hd-sns li {
	margin-bottom: 18px;
}
#hd #hd-sns a:hover img {
	-webkit-filter: none;
	filter: none;
}
#hd #tnb,
#hd #hd-sns {
	-webkit-transition:
		0.6s 0.2s,
		max-height 0.6s;
	transition:
		0.6s 0.2s,
		max-height 0.6s;
}
#hd.sub__hd {
	background: rgba(var(--theme-color-rgb), 0.9);
}
body.hd-fixed #hd {
	background: rgba(var(--theme-color-rgb), 0.9);
}
#hd.active {
	background: rgba(var(--theme-color-rgb), 0.9);
}
#sitemap {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
	background: #fff;
	-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	padding-top: 0;
	max-height: 0;
	opacity: 0;
	-webkit-transition: 0.7s;
	transition: 0.7s;
}
#sitemap.active {
	opacity: 1;
	padding-top: 99px;
	max-height: 600px;
}
#sitemap nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	border-top: 1px solid var(--theme-color);
	border-bottom: 1px solid var(--theme-color);
	line-height: 1;
}
#sitemap nav dl {
	width: 25%;
	border-right: 1px solid var(--theme-color);
	font-size: 16px;
	color: #555;
	padding: 28px 24px;
}
#sitemap nav dl:last-child {
	border-right: 0;
}
#sitemap nav dl dt {
	font-size: 18px;
	color: var(--theme-color);
	font-weight: bold;
	margin-bottom: 50px;
}
#sitemap nav dl dd {
	margin-bottom: 16px;
}
#sitemap nav dl dd a {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
#sitemap nav dl dd a::before {
	content: "";
	display: block;
	width: 0;
	height: 2px;
	background: #3d4e32;
	-webkit-transition:
		width 0.3s,
		margin 0.3s;
	transition:
		width 0.3s,
		margin 0.3s;
	margin-right: 0;
}
#sitemap nav dl dd a:hover::before {
	width: 7px;
	margin-right: 0.3em;
}
#sitemap .stm-mb {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-transition: 0.6s;
	transition: 0.6s;
	padding: 0 24px;
}
#sitemap .stm-mb .tnb {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: relative;
	max-height: 30px;
	overflow: hidden;
}
#sitemap .stm-mb .tnb li {
	padding-left: 17px;
}
#sitemap .stm-mb .sns {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 14px 0;
}
#sitemap .stm-mb .sns li:not(:first-child) {
	padding-left: 10px;
}
#sitemap .stm-mb .sns a {
	display: block;
	width: 32px;
	height: 32px;
}
#sitemap .stm-mb .sns .blog {
	background: url(/img/common/icon/blog-icon.svg);
}
#sitemap .stm-mb .sns .insta {
	background: url(/img/common/icon/insta-icon.svg);
}
#sitemap .stm-mb .sns .yt {
	background: url(/img/common/icon/yt-icon.svg);
}
#wechat-pop {
	width: 100%;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: fixed;
	left: 0;
	top: 0;
	background: rgba(0, 0, 0, 0.567);
	z-index: -1;
	opacity: 0;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
#wechat-pop #wechat-close {
	width: 100%;
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
}
#wechat-pop img {
	height: 60.5%;
	position: relative;
	z-index: 1;
}
#wechat-pop.active {
	z-index: 99999;
	opacity: 1;
}
@media screen and (min-width: 1920px) {
	#hd {
		padding: 0 calc(50% - 960px + 65px);
	}
}
@media screen and (max-width: 1500px) {
	#hd .menu-wr .sns {
		display: none;
	}
}
@media screen and (max-width: 1400px) {
	#hd {
		height: 77px;
	}
	#hd .logo-wr .logo__img {
		width: 180px;
		height: 42px;
		margin-right: 14px;
	}
	#hd .logo-wr .logo__txt {
		font-size: 14px;
	}
	#hd #gnb a {
		font-size: 16px;
	}
	#sitemap.active {
		padding-top: 76px;
	}
}
@media screen and (max-width: 1180px) {
	#hd #gnb a {
		margin-left: 38px;
	}
}
.circle__symbol {
	position: absolute;
}
.circle__symbol .--symbol {
	width: 69px;
	height: 69px;
	background: url(/img/logo/symbol.svg) center/contain no-repeat;
	position: absolute;
	left: 50%;
	top: 50%;
	translate: -50% -50%;
}
.circle__symbol svg {
	fill: #7b7b7b;
	-webkit-animation: rotateText 26s linear infinite;
	animation: rotateText 26s linear infinite;
}
.circle__symbol svg textPath {
	letter-spacing: 7px;
}
@-webkit-keyframes rotateText {
	0% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
	100% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
}
@keyframes rotateText {
	0% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
	100% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
}
.section__title:not(.--df) h2 {
	padding-bottom: 10px;
}
.section__title .--kr {
	font-size: 35px;
}
.section__title .--en {
	font-size: 40px;
}
.section__title .--desc {
	font-size: 16px;
}
#quick {
	position: fixed;
	right: 0;
	top: 50%;
	translate: 0 -50%;
	z-index: 9;
	font-size: 14px;
	-webkit-transition: 1s 0s ease;
	transition: 1s 0s ease;
}
#quick > * {
	border-radius: 30px 0 0 30px;
	-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
#quick nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	background: #fff;
	margin: 25px 0 20px;
	padding: 30px;
	gap: 20px;
}
#quick nav i::after {
	display: block;
	line-height: 1;
	margin-right: 9px;
}
#quick nav button {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background: none;
	border: none;
}
#quick nav button .--wechat::after {
	content: url(/img/common/quick/wechat.png);
	width: 24px;
}
#quick nav button .--gangnam-rsv::after {
	content: "";
	background: url(/img/logo/symbol.svg) no-repeat center center/contain;
	width: 24px;
	height: 24px;
}
#quick nav button .--suwon-rsv::after {
	content: "";
	background: url(/img/logo/symbol.svg) no-repeat center center/contain;
	width: 24px;
	height: 24px;
}
#quick nav a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
#quick nav a .--skin::after {
	content: "";
	background: url(/img/common/quick/skin__symbol.svg) no-repeat center
		center/contain;
	width: 24px;
	height: 24px;
}
#quick nav a .--kakao::after {
	content: url(/img/common/quick/kakao.svg);
	width: 24px;
}
#quick nav a .--rsv::after {
	content: url(/img/common/quick/rsv.svg);
	width: 22px;
}
#quick nav a .--way::after {
	content: url(/img/common/quick/way.svg);
	width: 18px;
}
#quick nav a .--yt::after {
	content: url(/img/common/quick/yt.svg);
	width: 23px;
}
#quick nav a .--insta::after {
	content: url(/img/common/quick/insta.svg);
	width: 21px;
}
#quick nav a .--blog::after {
	content: url(/img/common/quick/blog.svg);
	width: 24px;
}
#quick nav .rsv__wrap {
	position: absolute;
	top: -18px;
	left: -150px;
	padding: 20px 26px;
	width: auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 16px;
	border-radius: 20px;
	background: #fff;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
#quick nav .rsv__wrap a {
	white-space: nowrap;
}
#quick nav .rsv__wrap.--on {
	left: -190px;
	opacity: 1;
	visibility: visible;
}
#quick #top__btn {
	width: 100%;
	border: none;
	background: #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 30px;
}
#quick #top__btn .--up::after {
	content: url(/img/common/quick/up.svg);
	width: 23px;
	display: block;
	line-height: 2;
	margin-right: 9px;
}
body.--hide #quick {
	right: -220px;
	opacity: 0;
	-webkit-transition:
		opacity 0.5s 0.2s,
		right 1s 0.2s ease;
	transition:
		opacity 0.5s 0.2s,
		right 1s 0.2s ease;
}
.section__ft {
	font-size: 16px;
}
.section__ft p {
	line-height: 1.8;
}
.ft__ways {
	padding: 100px 0;
	overflow: hidden;
}
.ft__ways > .--df {
	max-width: calc((100% - 1400px) / 2 + 1400px);
	margin: 0 0 0 auto;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}
.ft__ways .ways__def {
	width: 700px;
	margin-right: 13px;
	border-top: 2px solid #000;
	border-bottom: 2px solid #000;
}
.ft__ways .ways__def > * {
	padding: 40px 20px;
}
.ft__ways .ways__def > *:not(:last-child) {
	border-bottom: 1px solid #bcbcbc;
}
.ft__ways .ways__def .--tit {
	padding-bottom: 6px;
	display: block;
}
.ft__ways .ways__def .def__addr .--addr {
	font-size: 25px;
	padding-bottom: 14px;
	display: block;
}
.ft__ways .ways__def .def__addr ul {
	line-height: 1.8;
}
.ft__ways .ways__def .def__hours {
	position: relative;
}
.ft__ways .ways__def .def__hours dl {
	line-height: 2;
	font-size: 20px;
}
.ft__ways .ways__def .def__hours dl dt:nth-of-type(1),
.ft__ways .ways__def .def__hours dl dt:nth-of-type(1) *,
.ft__ways .ways__def .def__hours dl dd:nth-of-type(1),
.ft__ways .ways__def .def__hours dl dd:nth-of-type(1) * {
	color: var(--theme-color);
}
.ft__ways .ways__def .def__hours dl dt:nth-of-type(3) span,
.ft__ways .ways__def .def__hours dl dd:nth-of-type(3) span {
	color: red;
}
.ft__ways .ways__def .def__hours dl dt {
	width: 4.5em;
	font-weight: 600;
	white-space: nowrap;
}
.ft__ways .ways__def .def__hours dl dt:nth-of-type(1) {
	letter-spacing: 1.8em;
}
.ft__ways .ways__def .def__hours dl dt:nth-of-type(2) {
	letter-spacing: 0.43em;
}
.ft__ways .ways__def .def__hours dl dt:nth-of-type(3) {
	letter-spacing: 1.8em;
}
.ft__ways .ways__def .def__hours dl dt:nth-of-type(4) {
	letter-spacing: 0em;
}
.ft__ways .ways__def .def__hours dl dd {
	width: calc(100% - 7em);
	font-weight: 500;
}
.ft__ways .ways__def .def__hours dl dd:not(:last-child) {
	letter-spacing: 0.1em;
}
.ft__ways .ways__def .def__hours dl dd:last-child {
	padding-top: 8px;
	font-size: 16px;
}
.ft__ways .ways__def .def__hours .circle__symbol {
	right: 17px;
	bottom: 28px;
}
.ft__ways .ways__def .def__contact .--tel {
	font-size: 40px;
	margin-right: 35px;
}
.ft__ways .ways__def .def__contact a {
	padding: 9px 37px;
	border-radius: 10em;
	background: var(--theme-color);
}
.ft__ways .ways__map {
	width: 1000px;
	height: 735px;
}
.ft__ways .ways__map .root_daum_roughmap {
	width: 100%;
	height: 100%;
}
.ft__ways.--v2 {
	position: relative;
}
.ft__ways.--v2 .ways__btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 10px;
	max-width: calc((100% - 1400px) / 2 + 1400px);
	margin: 0 0 20px auto;
}
.ft__ways.--v2 .ways__btn .ways__tab {
	padding-bottom: 2px;
	display: block;
	width: 118px;
	height: 40px;
	font-size: 16px;
	line-height: 1;
	border-radius: 20px;
	color: var(--theme-color);
	border: 1px solid var(--theme-color);
	background: rgba(0, 0, 0, 0);
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.ft__ways.--v2 .ways__btn .ways__tab:hover,
.ft__ways.--v2 .ways__btn .ways__tab.--on {
	color: #fff;
	background: var(--theme-color);
}
.ft__ways.--v2 .ways__list {
	display: none;
}
.ft__ways.--v2 .ways__list.--on {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.ft__contact {
	border-top: 1px solid #e2e0ce;
	border-bottom: 1px solid #e2e0ce;
	padding: 86px 0 56px;
}
.ft__contact .contact__wr {
	width: 1600px;
	margin: 0 auto;
}
.ft__contact .contact__link .link__tit {
	font-size: 20px;
	padding-bottom: 25px;
}
.ft__contact .contact__link .link__tit svg {
	width: 57px;
	margin-right: 20px;
}
.ft__contact .contact__link ul li {
	margin: 0 7px;
}
.ft__contact .contact__link ul li a {
	width: 168px;
	height: 60px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border-radius: 10em;
	color: #fff;
	background: var(--theme-color);
}
.ft__contact .contact__hours {
	width: 360px;
	padding-left: 20px;
	line-height: 2;
}
.ft__contact .contact__hours dt:nth-of-type(1),
.ft__contact .contact__hours dt:nth-of-type(1) *,
.ft__contact .contact__hours dd:nth-of-type(1),
.ft__contact .contact__hours dd:nth-of-type(1) * {
	color: var(--theme-color);
}
.ft__contact .contact__hours dt:nth-of-type(3) span,
.ft__contact .contact__hours dd:nth-of-type(3) span {
	color: red;
}
.ft__contact .contact__hours dt {
	width: 4.5em;
	font-weight: 600;
	white-space: nowrap;
}
.ft__contact .contact__hours dt:nth-of-type(1) {
	letter-spacing: 1.8em;
}
.ft__contact .contact__hours dt:nth-of-type(2) {
	letter-spacing: 0.43em;
}
.ft__contact .contact__hours dt:nth-of-type(3) {
	letter-spacing: 1.8em;
}
.ft__contact .contact__hours dt:nth-of-type(4) {
	letter-spacing: 0em;
}
.ft__contact .contact__hours dd {
	width: calc(100% - 7em);
}
.ft__contact .contact__hours dd:not(:last-child) {
	letter-spacing: 0.1em;
}
.ft__contact .contact__hours dd:last-child {
	width: 100%;
	font-size: 14px;
}
.ft__contact .contact__hours dd .--box {
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	display: inline-block;
	line-height: 1;
	padding: 6px 12px;
	margin-left: 5px;
	color: #fff;
}
.ft__contact .contact__hours dd .--box.--red {
	background: #ab4b49;
}
.ft__contact .contact__hours dd .--box.--orange {
	background: #d47d4d;
}
#ft .ft__wr {
	width: 1600px;
	margin: 0 auto;
	padding: 77px 0 162px;
}
#ft .logo__wr {
	padding-right: 88px;
}
#ft .logo__wr .logo svg {
	width: 318px;
}
#ft .logo__wr ul {
	padding-top: 20px;
}
#ft .logo__wr ul li:not(:last-child) {
	margin-right: 15px;
}
#ft .logo__wr ul svg {
	width: 38px;
	border-radius: 50%;
	-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
#ft .def__wr {
	font-size: 14px;
}
#ft .def__wr ul {
	width: 660px;
	color: #676767;
	line-height: 2;
}
#ft .def__wr ul .bar::after {
	content: "";
	width: 1px;
	height: 0.8em;
	background: #676767;
	display: inline-block;
	margin: 0 8px;
}
#ft .def__wr .--copy {
	padding-top: 35px;
	color: #a2a2a2;
}
#ft.--v2 .branch {
	margin-bottom: 8px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	color: var(--theme-color);
}
#ft.--v2 .def__wrap {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 130px;
}
#ft.--v2 .def__wrap .def__wr:last-child ul::before {
	content: "";
	position: absolute;
	top: -20px;
	left: -105px;
	width: 1px;
	height: 106px;
	background: #cecccc;
}
#ft.--v2 .def__wrap .def__wr > ul {
	position: relative;
	max-width: 380px;
}
#ft.--v2 .def__wrap .--suwon .--copy {
	display: none;
}
#sub__visual {
	height: 700px;
	background: url(/img/sub/visual/sub-1.jpg) center no-repeat;
	color: #fff;
	text-align: center;
}
#sub__visual .visual_title {
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
#sub__visual nav {
	padding-bottom: 45px;
	font-size: 16px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	line-height: 1;
}
#sub__visual nav > *:not(:last-child) {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
#sub__visual nav > *:not(:last-child)::after {
	content: "";
	width: 9px;
	height: 15px;
	background: url(/img/sub/visual/arr.png) center no-repeat;
	display: inline-block;
	margin: 0 10px 0 15px;
}
#sub__visual h2 {
	font-size: 50px;
	line-height: 1.2;
}
#sub__visual h2 strong {
	color: #9cb0fe;
}
#lnb.bo_table {
	margin-bottom: 100px;
}
#lnb nav {
	width: 1400px;
	margin: 0 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
#lnb nav a {
	padding: 20px 0;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	text-align: center;
	font-size: 18px;
	color: #c9c9c9;
	border-bottom: 1px solid #c9c9c9;
}
#lnb nav a.active {
	font-weight: 600;
	color: var(--theme-color);
	border-bottom: 1px solid var(--theme-color);
}
#sub__lnb nav {
	width: 1400px;
	padding: 160px 0 14px;
	margin: 0 auto;
	padding-bottom: 45px;
	font-size: 16px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	line-height: 1;
	color: #555;
}
#sub__lnb nav img {
	-webkit-filter: grayscale(100%) brightness(23%);
	filter: grayscale(100%) brightness(23%);
}
#sub__lnb nav > *:not(:last-child) {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
#sub__lnb nav > *:not(:last-child)::after {
	content: "";
	width: 9px;
	height: 15px;
	background: url(/img/sub/visual/arr.png) center no-repeat;
	-webkit-filter: grayscale(100%) brightness(23%);
	filter: grayscale(100%) brightness(23%);
	display: inline-block;
	margin: 0 10px 0 15px;
}
#sub__lnb nav > *:last-child {
	color: var(--theme-color);
}
#fixed-db {
	width: 100%;
	position: fixed;
	left: 0;
	bottom: 0;
	padding: 20px 0;
	z-index: 99;
	background: #f7f7f7;
	-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}
#fixed-db form {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
#fixed-db form h2 {
	padding-right: 30px;
	font-size: 30px;
	line-height: 1.2;
}
#fixed-db form .db__input {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 20px;
}
#fixed-db form .db__input li:not(:last-child) {
	margin-right: 35px;
}
#fixed-db form .db__input input[type="text"] {
	width: 180px;
	height: 30px;
	border: none;
	border-bottom: 1px solid #0f0f0f;
	background: #f7f7f7;
}
#fixed-db form .db__input .--check {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	font-size: 14px;
	color: #7b7b7b;
}
#fixed-db form .db__input .--submit {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
#fixed-db form .db__input .--submit button {
	width: 193px;
	height: 50px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: #fff;
	font-weight: 600;
	border: none;
	background: var(--theme-color);
	margin-right: 7px;
}
#fixed-db .--check li {
	margin-bottom: 12px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: 16px;
}
#fixed-db .--check label {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	cursor: pointer;
	gap: 8px;
}
#fixed-db .--check a,
#fixed-db .--check span {
	display: inline-block;
	font-size: 14px;
	line-height: 1;
}
#fixed-db .--check input[type="checkbox"] {
	-moz-appearance: none;
	appearance: none;
	-webkit-appearance: none;
	width: 16px;
	height: 16px;
	border: 1px solid #dadada;
	background: #fff;
	cursor: pointer;
	position: relative;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	margin: 0;
	-webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
}
#fixed-db .--check input[type="checkbox"]:checked {
	background: var(--theme-color);
}
#fixed-db .--check .branch {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
#quick-db.db__ft form {
	display: block;
}
#quick-db.db__ft form .top ul {
	-ms-flex-wrap: unset;
	flex-wrap: unset;
	-webkit-box-orient: unset;
	-webkit-box-direction: unset;
	-ms-flex-direction: unset;
	flex-direction: unset;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	gap: 10px;
	margin-bottom: 20px;
}
#quick-db.db__ft form .top ul li {
	width: auto;
}
#quick-db.db__ft form .top ul button {
	padding-bottom: 2px;
	display: block;
	width: 118px;
	height: 40px;
	font-size: 16px;
	line-height: 1;
	border-radius: 20px;
	color: var(--theme-color);
	border: 1px solid var(--theme-color);
	background: rgba(0, 0, 0, 0);
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
#quick-db.db__ft form .top ul button:hover,
#quick-db.db__ft form .top ul button.--on {
	color: #fff;
	background: var(--theme-color);
}
#quick-db.db__ft form .bottom {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}
@media screen and (max-width: 1325px) {
	#fixed-db form {
		-webkit-transform: scale(0.85);
		-ms-transform: scale(0.85);
		transform: scale(0.85);
		white-space: nowrap;
		min-width: 1200px;
	}
} /*# sourceMappingURL=layout.min.css.map */
