* {
	line-height: 1.3;
	letter-spacing: -0.03em;
}

html,
body {
	width: 100%;
	max-width: 100%;
}

hr,
figure {
	padding: 0;
	margin: 0;
}

pre {
	white-space: pre-wrap;
}

textarea {
	resize: none;
}

hr {
	border: none;
	margin: 0;
}

.wrap {
	width: 100%;
	max-width: 100%;
	font-size: 1.6rem;
	position: relative;
	overflow-x: clip;
}

.wrap a {
	line-height: 1.3;
}

.wrap a:focus,
.wrap button:focus,
.wrap input:focus,
.wrap [tabindex]:focus {
	outline: 2px solid #000;
	outline-offset: 2px;
	transition: all 0s;
}

#skip {
	position: relative;
	z-index: 10;
}

#skip a {
	width: 140px;
	height: 30px;
	background: #333;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-white);
	font-size: 14px;
	opacity: 0;
	position: absolute;
	left: 0;
	top: -30px;
}

#skip a:active, #skip a:focus {
	opacity: 1;
	top: 0;
}

header {
	width: 100%;
	height: 105px;
	z-index: 2;
	transition: background-color 0.3s ease-in;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
}

header .header-box {
	column-gap: 40px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
}

header .logo {
	width: 200px;
	height: 60px;
}

header .logo a {
	display: block;
	width: 100%;
	height: 100%;
}

header a {
	color: #fff;
	display: inline-block;
	font-family: var(--font-pretendard);
	transition: all 0.4s ease-in-out;
}

header nav,
header .depth1,
header .depth1>li {
	height: 100%;
}

header nav {
	margin-left: auto;
}

header .depth1>li:hover>a, header .depth1>li.on>a,
header .depth2>li:hover>a,
header .depth2>li.on>a {
	color: var(--color-primary);
}

header .depth1,
header .depth1>li>a {
	display: flex;
	align-items: center;
}

header .depth1>li {
	position: relative;
}

header .depth1>li>a {
	height: inherit;
	font-size: 2rem;
	font-weight: 600;
	padding: 0 60px;
}

header .depth2,
header .depth2::before {
	border-radius: 15px;
}

header .depth2,
header .depth2 * {
	width: 100%;
}

header .depth2 {
	background: #FFE5F0;
	text-align: center;
	padding: 20px 0;
	display: none;
	position: absolute;
	top: calc(100% - 20px);
	left: 50%;
	transform: translateX(-50%);
}

header .depth2::before {
	content: "";
	display: block;
	box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.15);
	z-index: -1;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

header .depth2>li>a {
	color: #333;
	font-size: 1.8rem;
	padding: 8.5px 0;
}

header .open-button {
	width: 30px;
	height: 23px;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: space-between;
}

header .open-button span {
	display: block;
	width: 100%;
	height: 3px;
	background: #fff;
	transition: all 0.4s ease-in-out;
}

header .open-button span:last-child {
	width: 50%;
}

header:hover, header.bg-on {
	background: var(--color-white);
}

header:hover .logo .logo-cls, header.bg-on .logo .logo-cls, header.color-on .logo .logo-cls {
	fill: #666;
}

header:hover a, header.bg-on a, header.color-on a {
	color: #222;
}

header:hover .open-button span, header.bg-on .open-button span, header.color-on .open-button span {
	background: #222;
}

header .open-button svg rect {
	fill: #fff;
	transition: all 0.4s ease-in-out;
}

header:hover .open-button svg rect, header.bg-on .open-button svg rect, header.color-on .open-button svg rect {
	fill: #222;
}

header:hover .open-button img, header.bg-on .open-button img, header.color-on .open-button img {
	filter: invert(100%) brightness(200%);
}

header .open-button img {
	transition: all 0.4s ease-in-out;
	filter: none;
}

.site-map {
	width: 100%;
	height: 100vh;
	background: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(10px);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	display: none;
}

.site-map * {
	color: var(--color-white);
	font-family: var(--font-pretendard);
}

.site-map .inner {
	display: flex;
	align-items: center;
	position: relative;
	width: 100%;
	height: 100%;
}

.site-map .top {
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	position: absolute;
	top: 100px;
	left: 50%;
	transform: translateX(-50%);
}

.site-map .logo {
	display: block;
	width: 225px;
	height: 58px;
	filter: brightness(0) invert(1);
}

.site-map .depth1 {
	width: 100%;
	max-width: 1430px;
	display: grid;
	grid-template-columns: repeat(4, auto);
	justify-content: space-between;
	text-align: center;
	margin: auto;
}

.site-map .depth1>li>a {
	font-size: 5rem;
	font-weight: 700;
}

.site-map .depth2 {
	padding: 30px 0;
}

.site-map .depth2>li>a {
	display: block;
	font-size: 2.2rem;
	padding: 10px 0;
	opacity: 0.5;
}

footer {
	border-top: 1px solid rgba(0, 0, 0, 0.2);
}

footer * {
	color: #222;
	font-size: 1.7rem;
	font-family: var(--font-pretendard);
}

footer .footer-box>hr {
	width: 100vw;
	height: 1px;
	background: rgba(0, 0, 0, 0.1);
	position: relative;
	left: 50%;
	transform: translateX(-50%);
}

footer .top {
	display: flex;
	justify-content: space-between;
	padding: 80px 0 50px;
}

footer .info-box,
footer .button-box {
	display: flex;
	flex-direction: column;
}

footer .logo {
	width: 212px;
}

footer .about {
	display: grid;
	grid-template-columns: repeat(3, auto);
	row-gap: 20px;
	column-gap: 70px;
	margin-top: 75px;
}

footer .about * {
	letter-spacing: -0.02em;
}

footer .about li {
	display: inline-flex;
	align-items: center;
	column-gap: 10px;
}

footer .about li:nth-child(1) b, footer .about li:nth-child(4) b {
	width: 58px;
}

footer .about li:nth-child(2) b, footer .about li:nth-child(5) b {
	width: 73px;
}

footer .about b {
	display: inline-block;
}

footer .about hr {
	width: 1px;
	height: 10px;
	background: rgba(0, 0, 0, 0.2);
}

footer .about span {
	opacity: 0.7;
}

footer .button-box {
	align-items: flex-end;
}

footer .button-box img {
	width: 11px;
}

footer .top-button {
	width: 90px;
	height: 90px;
	row-gap: 10px;
	background: var(--color-primary);
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

footer .top-button img {
	filter: brightness(0) invert(1);
}

footer .top-button span {
	color: var(--color-white);
	font-weight: 600;
}

/* footer .family {
	width: 220px;
	border-radius: 15px;
	position: relative;
}

footer .family button,
footer .family ul>li>a {
	width: 100%;
	height: 60px;
	padding: 0 25px;
}

footer .family button span,
footer .family ul>li>a {
	font-size: 1.8rem;
}

footer .family button {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 15px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
}

footer .family button * {
	transition: all 0.2s ease-out;
}

footer .family button span {
	color: var(--color-white);
}

footer .family button img {
	filter: brightness(0) invert(1);
}

footer .family ul {
	width: 100%;
	background: var(--color-white);
	border-radius: 15px 15px 0 0;
	overflow: hidden;
	position: absolute;
	left: 50%;
	bottom: 100%;
	transform: translateX(-50%);
	display: none;
}

footer .family ul>li>a {
	color: #666;
	transition: all 0.4s ease-in-out;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
}

footer .family ul>li:hover>a {
	background: #f8f8f8;
	color: var(--color-primary);
}

footer .family.on button {
	background: var(--color-white);
	border-color: transparent;
	border-radius: 0 0 15px 15px;
	transition: all 0s 0s;
}

footer .family.on button span {
	color: #222;
}

footer .family.on button img {
	filter: brightness(0) invert(0.135);
	transform: rotateX(180deg);
} */

footer .bottom {
	padding: 30px 0;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
}

footer .copy {
	display: flex;
	gap: 0 10px;
	align-items: center;
}
footer .copy .text {
	font-weight: 500;
	opacity: 0.5;
}

footer a {
	display: inline-flex;
	align-items: center;
	column-gap: 10px;
}