:root {
	--primary-red: #9c1c1f;
	--primary-blue: #253a73;
	--primary-gold: #9c8654;
	--secondary-color: #656565;
	--color-gray-100: #000;
	--color-gray-90: #1e2124;
	--color-gray-80: #33363d;
	--color-gray-70: #464c53;
	--color-gray-60: #58616a;
	--color-gray-50: #6d7882;
	--color-gray-40: #8a949e;
	--color-gray-30: #b1b8be;
	--color-gray-20: #cdd1d5;
	--color-gray-10: #e6e8ea;
	--color-gray-5: #f4f5f6;
	--color-red: #ff3b30;
	--color-blue: #007aff;

	--shadow1: 0 4px 10px 0 rgba(0, 0, 0, 0.25);
}

body.no-scroll {
  overflow: hidden;
}
.allmenu_bg {
  width: 100%;
  height: 100%;
  background: rgba(1, 1, 1, 0.6);
  z-index: 10;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
}
.bg-gray10 {
	background: #f3f4f6;
}
.text-left {
	text-align: left !important;
}
.text-center {
	text-align: center !important;
}
.text-right {
	text-align: right !important;
}
.color-gold {
	color: var(--primary-gold) !important;
}

.inner {
	width: min(1200px, 100%);
	margin: 0 auto;
}
@media (max-width: 1280px) {
	.inner {
		padding-left: 40px;
		padding-right: 40px;
	}
}
@media (max-width: 1024px) {
	.inner {
		padding-left: 20px;
		padding-right: 20px;
	}
}
.header-container {
	/* --header-h: 120px; */
	--header-h: 100px;
	background: rgba(6, 30, 71, 0.95);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 9999;
}
.subpage .header-container {
	position: relative;
}

.logo {
	flex: none;
}
.header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: min(1200px, 100%);
	height: var(--header-h);
	margin: 0 auto;
}
.gnb {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 50px;
}
.gnb li {
	flex: 1;
}
.gnb li a {
	display: flex;
	align-items: center;
	justify-content: center;
	height: var(--header-h);
	padding: 0 10px;
	font-size: 18px;
	font-weight: 700;
	color: #fff;
	white-space: nowrap;
}

.btn-menu {
    position: relative;
    width: 20px;
    height: 16px;
    background: transparent;
    cursor: pointer;
    display: none;
}

.btn-menu span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #fff;
    border-radius: 10px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
}

.btn-menu span:nth-of-type(1) {
    top: 0;
    transform-origin: left center;
}

.btn-menu span:nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
    transform-origin: left center;
}

.btn-menu span:nth-of-type(3) {
    top: 100%;
    transform-origin: left center;
    transform: translateY(-100%);
}

.btn-menu.open span:nth-of-type(1) {
    transform: rotate(45deg);
    top: 0;
    left: 4px;
}

.btn-menu.open span:nth-of-type(2) {
    width: 0;
    opacity: 0;
}

.btn-menu.open span:nth-of-type(3) {
    transform: rotate(-45deg);
    top: 14px;
    left: 4px;
}

@media (max-width: 1280px) {
	.header {
		padding-left: 40px;
		padding-right: 40px;
	}
	.gnb {
		gap: 30px;
	}
}
@media (max-width: 1024px) {
	.header-container {
		--header-h: 100px;
	}
	.header {
		padding-left: 20px;
		padding-right: 20px;
		gap: 40px;
	}
	.btn-menu {
		display: block;
	}

	.nav {
		position: absolute;
		top: var(--header-h);
		left: 0;
		width: 100%;
		background: #fff;
		display: none;
	}
	.gnb {
		flex-direction: column;
		gap: 0;
	}
	.gnb li {
		width: 100%;
	}
	.gnb li a {
		width: 100%;
		height: auto;
		color: #111;
		padding: 20px 0;
		border-bottom: 1px solid #D9DDE8;
	}
}
@media (max-width: 768px) {
}
@media (max-width: 480px) {
}
@media (max-width: 380px) {
}

.footer {
	background: #fff;
	border-top: 1px solid #d0d7e0;
	padding: 43px 0;
}
.footer__info {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px;
}
.footer__info li {
	font-weight: 500;
	color: #686a70;
}
.footer__info li >* {
	display: inline-block;
}
.footer__copy {
	margin-top: 1em;
	font-weight: 500;
	text-align: center;
	color: #686a70;
}
