@charset "utf-8";

@font-face {
    font-family: "InkLipquid";
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_one@1.0/InkLipquid.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

.InkLipquid {
	font-family: "InkLipquid", sans-serif;
}

:root {
  --main-green: #5A6857;  --main-black: #1E1E1E;
  --sub-bgc: #F2F1EC;
  --sub-gray: #C2C2C2;
  --dark-green: #2D372B;
  --yellow: #DACF9A;
}

.point-text {
	color: var(--light-brown);
}

.mob {
	display: none;
}

html {
	scroll-behavior: smooth;
}

body {
	color: #1E1E1E;
}

.inner-wrapper {
	max-width: 1700px;
	width: 100%;
	margin: 0 auto;
}

.flex {
	display: flex;
}

header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10;
	background: #fff;
}

header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: white; /* 배경 지정 필수: 투명하면 아래 콘텐츠 보임 */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* 선택사항: 그림자 효과 */
}

#header-placeholder {
	display: none;
}

header .inner-wrapper {
	height: 90px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

header .inner-wrapper #logo a img {
	vertical-align: middle;
	max-width: 100px;
}

header .inner-wrapper .menu {
	display: flex;
	align-items: center;
	color: #fff;
	gap: 20px;
}

header .inner-wrapper .menu > li {
	min-width: 60px;
}

header .inner-wrapper .menu li a {
	display: block;
	color: var(--main-green);
	font-size: 18px;
	font-weight: 500;
	height: 44px;
	line-height: 44px;
	padding: 0 20px;
	min-width: 60px;
}

header .inner-wrapper .menu li a img {
	vertical-align: middle;
	max-height: 30px;
}

header .inner-wrapper .menu li.active a {
	background: var(--main-green);
	color: #fff;
	font-weight: 700;
	border-radius: 44px;
}

header .inner-wrapper .menu .sub-menu {
	position: absolute;
	text-align: center;
	background: var(--main-green);
	border-radius: 20px;
	overflow: hidden;
	transform: translateY(10px);
	display: none;
}

header .inner-wrapper .menu .sub-menu li a {
	color: #BBB;
	font-size: 18px;
	font-weight: 400;
}

header .inner-wrapper .menu .sub-menu li.active {
	background: #6A7768;
}

header .inner-wrapper .menu .sub-menu li.active a {
	background: #6A7768;
	color: #FFF;
	font-weight: 700;
}

/*
	company-info
*/
footer {
	background-color: var(--main-green);
	color: #fff;
}

footer .top {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 53px;
	border-top: 2px solid #4c514b;
	border-bottom: 2px solid #4c514b;	
}

footer .top p {
	font-size: 18px;
	font-weight: 400;
	color: var(--sub-bgc);
}

footer .top p b {
	font-weight: 700;
}

footer .middle .inner {
	display: flex;
}

footer .middle .inner > div {
	padding-top: 50px;
}

footer .middle .inner > div:nth-child(2) {
	border-left: 2px solid #4c514b;
	border-right: 2px solid #4c514b;
}


footer .middle .inner > div {
	width: 33.333333%;
}

footer .middle .inner > div:first-child {
	padding-left: 140px;
	padding-bottom: 40px;
}

footer .middle .inner > div:first-child > span {
	display: flex;
	align-items: center;
	font-size: 20px;
	font-weight: 700;
	gap: 10px;
}

footer .middle .inner > div:first-child > h4 {
	font-size: 50px;
	font-weight: 800;
	padding: 10px 0 20px;
}

footer .middle .inner > div:first-child > span:nth-of-type(2) {
	margin: 80px 0 20px;
}

footer .middle .inner > div:first-child > ul li {
	display: flex;
	align-items: center;
}

footer .middle .inner > div:first-child > ul li:not(:last-child) {
	margin-bottom: 10px;
}

footer .middle .inner > div:first-child > ul li span {
	font-size: 20px;
	font-weight: 500;
}

footer .middle .inner > div:first-child > ul li span:first-child {
	width: 120px;
}

footer .middle .inner > div:first-child > ul li span:nth-child(2) {
	font-weight: 700;
}

footer .middle .inner > div:first-child > ul li span:nth-child(3) {
	background: #fff;
	color: var(--main-green);
	font-size: 14px;
	padding: 5px;
	border-radius: 20px;
	margin-left: 10px;
	font-weight: 700;
}

footer .middle .inner > div:nth-child(2) {
	padding-left: 90px;
	padding-right: 90px;
}

footer .middle .inner > div:nth-child(2) > span {
	display: flex;
	align-items: center;
	font-size: 20px;
	font-weight: 700;
	gap: 10px;
}

footer .middle .inner > div:nth-child(2) > p {
	font-size: 20px;
	font-weight: 600;
	letter-spacing: -0.36px;
	margin: 20px 0;
	line-height: 1.3;
}

footer .middle .inner > div:nth-child(2) > div {
	display: flex;
	gap: 20px;
	margin-bottom: 40px;
}

footer .middle .inner > div:nth-child(2) > div a {
	flex: 1;
}

footer .middle .inner > div:nth-child(2) > img {
	width: 100%;
	max-height: 240px;
	object-fit: cover;
}

footer .middle .inner > div:last-child {
	position: relative;
	padding-left: 60px;
}

footer .middle .inner > div:last-child > img {
	margin-bottom: 20px;
	max-width: 234px;
}

footer .middle .inner > div:last-child > ul li {
	display: flex;
	align-items: center;
	gap: 20px;
}

footer .middle .inner > div:last-child > ul li:not(:last-child) {
	margin-bottom: 10px;
}

footer .middle .inner > div:last-child > ul li span {
	font-size: 20px;
	font-weight: 500;
}

footer .middle .inner > div:last-child > ul li span:first-child {
	width: 80px;
	display: flex;
	justify-content: space-between;
}

footer .middle .inner > div:last-child > ul li span:first-child em {
	font-style: normal;
}

footer .middle .inner > div:last-child > ul li span:last-child {
	font-weight: 500;
}

footer .middle .inner > div:last-child img:last-child {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	opacity: 0.2;
	mix-blend-mode: multiply;
}

footer .bottom {
	height: 82px;
	padding: 0 140px;
	background: var(--main-black);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

footer .bottom p {
	font-size: 13px;
	font-weight: 500;
	letter-spacing: -0.26px;
	color: #fff;
}

footer .bottom ul {
	display: flex;
	align-items: center;
	gap: 40px;
}

footer .bottom ul li a {
	font-size: 14px;
	font-weight: 700;
	letter-spacing: -0.28px;
	color: #fff;
}

/* 햄버거 버튼 */
.hamburger {
	display: flex;
    cursor: pointer;
    width: 30px;
    flex-direction: column;
    justify-content: space-between;
    height: 20px;
    z-index: 999;
    display: none;
}
.hamburger span {
    display: block;
    height: 3px;
    background: var(--main-green);
    border-radius: 2px;
}

/* 사이드 메뉴 */
.side-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: #5A6857;
    transition: right 0.3s ease;
    z-index: 999;
}

.side-menu .side-menu-logo {
	max-width: 200px;
}

.side-menu .overlay-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #4E3926;
	mix-blend-mode: multiply;
}

.side-menu.open {
    right: 0;
}

.side-menu-list > li {
    position: relative;
}

.side-menu .flex {
	align-items: center;
	justify-content: space-between;
	height: 90px;
	padding: 0 20px;
}

.side-menu .close-btn {
    font-size: 36px;
    cursor: pointer;
    text-align: right;
    color: #fff;
    max-width: 30px;
}

.side-menu .side-menu-list {
	display: flex;
	height: 100%;
}

.side-menu .side-menu-list > li.active {
	background: rgba(255 255 255 / 10%);
}

.side-menu .side-menu-list > li.active a {
	font-weight: 800;
}

.side-menu .side-menu-list > li .depth1 {
	display: block;
	color: #fff;
	font-size: 40px;
	font-weight: 400;
}

.side-menu .side-menu-list > li .sub-menu {
	padding-top: 40px;
	display: flex;
	flex-direction: column;
	padding-left: 20px;
}

.side-menu .side-menu-list > li .sub-menu li a {
	color: #fff;
	font-size: 24px;
	font-weight: 400;
}

.side-menu .side-menu-list > li .sub-menu li a:hover {
	font-weight: 800;
	text-decoration: underline;
}

.hamburger {
}

/* 반응형 처리 */
@media screen and (max-width: 1024px) {
    header .inner-wrapper .menu {
        display: none; /* 기본 메뉴 숨기기 */
    }
    .hamburger {
        display: flex;
    }
}

@media(max-width: 1280px) {
	.side-menu { overflow-y: scroll; }
	.side-menu .overlay-bg { height: 150%; }
	
	.side-menu .side-menu-list > li > a { padding: 20px 30px; }
	.side-menu .side-menu-list { flex-direction: column; }
	.side-menu .side-menu-list > li .depth1 { font-size: 22px; }
	.side-menu .side-menu-list > li .sub-menu { padding-top: 0; }
	.side-menu .side-menu-list > li .sub-menu li a { font-size: 16px; padding: 20px 40px; display: block; }
}

@media(max-width: 1024px) {
	header .inner-wrapper #logo a img {
		max-width: 120px;
	}
}

@media(max-width: 1024px) {
	.mob { display: block; }
	.web { display: none; }
	.inner-wrapper { max-width: calc(100% - 30px); }
	
	header .inner-wrapper .menu { gap: 10px; }
	
	.sub-visual img { height: 200px; object-fit: cover; }
}

@media(max-width: 767px) {
	header .inner-wrapper { height: 70px; }
	header .inner-wrapper #logo a img { max-width: 80px; }
}

.ctm-btn {
	display: flex;
	width: 342px;
	height: 93px;
	border-radius: 30px;
	background: var(--main-green);
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 24px;
	font-weight: 600;
	gap: 22px;
}

.ctm-btn.white {
	background: #fff;
	border: 1px solid var(--sub-gray);
	color: var(--main-black);
}

.ctm-btn.white2 {
	background: transparent;
	border: 2px solid #fff;
	color: #fff;
	width: 190px;
	height: 63px;
	font-size: 18px;
	font-weight: 600;
	border-radius: 20px;
}

.ctm-btn.black {
	background: transparent;
	border: 2px solid var(--main-black);
	color: var(--main-black);
}

.ctm-btn::after {
	content: "";
	display: block;
	width: 18px;
	height: 16px;
	background-image: url("/ebo/file/IMAGE/uu/8c8d5bd01f5b4be48639fcf5aea7eaeb");
	background-size: contain;
}

.ctm-btn.reverse {
	flex-direction: row-reverse;
}

.ctm-btn.reverse:after {
	transform: rotate(180deg);
}

.ctm-btn.white::after {
	width: 24px;
	height: 24px;
	background-image: url("/ebo/file/IMAGE/uu/cf8b218419df474694964e5f6ceb6933");
}

.ctm-btn.black::after {
	width: 24px;
	height: 24px;
	background-image: url("/ebo/file/IMAGE/uu/a079d388f0b4456e9e7b8503803579eb");
}

br.mobile {
	display: none;
}

#quick-menu {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: #fff;
    /* border: 1px solid var(--main-green); */
    border-radius: 5px;
    box-shadow: 0 0 10px 1px rgba(90 104 87 / 20%);
}

#quick-menu ul {
	display: flex;
	flex-direction: column;
	padding: 0 10px;
}

#quick-menu ul li {
	padding-top: 15px;
	text-align: center;
	font-family: "Nanum Gothic", sans-serif;
	font-size: 12px;
}

#quick-menu ul li:last-child {
	padding-bottom: 15px;
}

#quick-menu ul li a {
	color: var(--main-green);
}

#quick-menu ul li a img {
	max-width: 40px;
}

#quick-menu ul li a p {
	margin-top: 5px
}

@media(max-width: 1024px) {
	br.mobile { display: block; }
	
	.ctm-btn { width: 260px; height: 60px; font-size: 18px; margin: 0 auto; }
	.ctm-btn.white2 { margin: 0; font-size: 16px; }
	.ctm-btn.white2.footer { width: 100%; }
	
	footer .top { height: auto; padding: 15px 0; text-align: center; }
	footer .top p { line-height: 1.3; }
	footer .middle .inner { flex-direction: column; }
	footer .middle .inner > div { width: 100%; }
	footer .middle .inner > div:first-child { padding: 20px; position: relative; }
	footer .middle .inner > div:first-child > h4 { padding: 10px 0 10px; font-size: 36px; }
	footer .middle .inner > div:first-child > span:nth-of-type(2) { margin: 20px 0 20px; }
	footer .middle .inner > div:first-child > ul li span:first-child { width: 100px; }
	footer .middle .inner > div:first-child > ul li span:nth-child(3) { font-size: 12px; }
	footer .middle .inner > div:first-child .mob.line { margin-top: 20px; margin-left: -50vw; left: 50%; position: relative; width: 100vw; height: 2px; background: #4c514b; }
	footer .middle .inner > div:nth-child(2) > p { font-size: 16px; }
	footer .middle .inner > div:nth-child(2) { border: none; border-top: 2px solid #4c514b; border-bottom: 2px solid #4c514b; padding: 20px; }
	footer .middle .inner > div:nth-child(2) > div { margin-bottom: 0; }
	footer .middle .inner > div:first-child > ul li span { font-size: 16px; }	
	footer .middle .inner > div:last-child { padding: 20px; }
	footer .middle .inner > div:nth-child(2) > img { display: none; }
	footer .middle .inner > div:nth-child(2) > div a { gap: 10px; }	
	footer .middle .inner > div:last-child > ul li span { font-size: 16px; }
	footer .middle .inner > div:last-child img:last-child { display: none; }
	footer .bottom { padding: 20px; flex-direction: column; gap: 10px; }
}

@media(max-width: 767px) {
	footer { margin-bottom: 82px; }
	
	#quick-menu { top: unset; right: unset; left: 0; bottom: 0; width: 100%; transform: none; }
	#quick-menu ul { align-items: center; }
	#quick-menu ul li { flex: 1; padding-top: 10px; }
	#quick-menu ul li { padding-bottom: 10px; }
	#quick-menu ul li img { width: 100%; }
	#quick-menu ul { flex-direction: row; }
}