html,
body {
  font-family: "SUIT Variable", -apple-system, BlinkMacSystemFont, system-ui,
    Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR",
    "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
    sans-serif;
  font-size: 16px;
  font-weight: var(--font-weight-reg);
  color: var(--gray-01);
}
* {
  box-sizing: border-box !important;
}

:root {
  /*폰트 굵기*/
  --font-weight-bold: 700;
  --font-weight-reg: 400;
  /*컬러*/
  /*--로컬--*/
  --primary-dark: #297349;
  --primary: #27ae60;
  /*--그레이스케일--*/
  --gray-01: #333333;
  --gray-02: #4f4f4f;
  --gray-03: #828282;
  --gray-04: #bdbdbd;
  --gray-05: #e0e0e0;
  --gray-06: #f2f2f2;
}
/*요소 스타일 통일*/
button,
a {
  display: inline-block;
  font-family: "SUIT Variable";
  text-decoration: none;
  color: var(--gray-01);
  cursor: pointer;
}
button {
  background: none;
  border: 0;
}
img {
  object-fit: cover;
  vertical-align: middle;
}
/*폰트*/
h1,
.h1,
.display-1,
h2,
.h2,
.display-2,
h3,
.h3,
.display-3,
h4,
.h4,
h5,
.h5,
h6,
.h6,
.h7,
.bold-caption,
.body-xl,
.body-l,
p,
.body,
.body-s,
.caption {
  line-height: 150%;
  word-break: keep-all;
}
.display {
  font-family: "NanumSquareNeo";
}
h1,
.h1,
.display,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-weight: var(--font-weight-bold);
}
h1,
.h1 {
  font-size: 4rem;
}
h2,
.h2 {
  font-size: 3.5rem;
}
h3,
.h3 {
  font-size: 3rem;
}
h4,
.h4,
.body-xl {
  font-size: 1.5rem;
}
h5,
.h5,
.body-l {
  font-size: 1.125rem;
}
h6,
.h6 .body,
p {
  font-size: 1rem;
}
.h7,
.body-s {
  font-size: 0.875rem;
}
.bold-caption,
.caption {
  font-size: 0.75rem;
}
sub {
  vertical-align: sub;
  font-size: smaller;
}
/*레이아웃*/
.container {
  margin: 0 12.5rem;
}
.row,
.d-flex {
  display: flex;
}
.d-grid {
  display: grid;
}
.d-none {
  display: none;
}
.d-inline-block {
  display: inline-block;
}
.d-block {
  display: block;
}
.flex-wrap {
  flex-wrap: wrap;
}
.flex-1-1-0 {
  flex: 1 1 0;
}
.flex-0-0-auto {
  flex: 0 0 auto;
}
.align-center {
  align-items: center;
}
.align-end {
  align-self: flex-end;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.justify-end {
  justify-content: flex-end;
}
.gap-16 {
  gap: 1rem;
}
.gap-24 {
  gap: 1.5rem;
}
/*--글자 정렬--*/
.txt-center {
  text-align: center;
}
.txt-right {
  text-align: right;
}
.txt-left {
  text-align: left;
}
/*--position--*/
.p-relative {
  position: relative;
}
.p-absolute {
  position: absolute;
}
.p-fixed {
  position: fixed;
}
.p-abs-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.p-abs-center-btm {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
}
.p-abs-center-top {
  position: absolute;
  left: 50%;
  top: 1rem;
  transform: translateX(-50%);
}
/*--width, height--*/
.w-10 {
  width: 10%;
}
.w-20 {
  width: 20%;
}
.w-25 {
  width: 25%;
}
.w-30 {
  width: 30%;
}
.w-40 {
  width: 40%;
}
.w-50 {
  width: 50%;
}
.w-60 {
  width: 60%;
}
.w-70 {
  width: 70%;
}
.w-75 {
  width: 75%;
}
.w-80 {
  width: 80%;
}
.w-100 {
  width: 100%;
}
.w-fit {
  width: fit-content;
}
.w-max {
  width: max-content;
}
.h-10 {
  height: 10%;
}
.h-15 {
  height: 15%;
}
.h-20 {
  height: 20%;
}
.h-25 {
  height: 25%;
}
.h-30 {
  height: 30%;
}
.h-40 {
  height: 40%;
}
.h-50 {
  height: 50%;
}
.h-60 {
  height: 60%;
}
.h-70 {
  height: 70%;
}
.h-80 {
  height: 80%;
}
.h-90 {
  height: 90%;
}
.h-95 {
  height: 95%;
}
.h-100 {
  height: 100%;
}
.h-vh {
  height: 100vh;
}
.h-auto {
  height: auto;
}
.h-max {
  height: max-content;
}
/*--여백--*/
/*----margin----*/
.m-auto {
  margin: 0 auto;
}
.ml-auto {
  margin-left: auto;
}
.mt-16 {
  margin-top: 1rem;
}
.mt-24 {
  margin-top: 1.5rem;
}
.mt-40 {
  margin-top: 2.5rem;
}
.mt-48 {
  margin-top: 3rem;
}
.mt-64 {
  margin-top: 4rem;
}
.mt-88 {
  margin-top: 5.5rem;
}
.mt-con {
  margin-top: 15.5rem;
}
.mt-auto {
  margin-top: auto;
}
.mb-16 {
  margin-bottom: 1rem;
}
.mb-24 {
  margin-bottom: 1.5rem;
}
.mb-40 {
  margin-bottom: 2.5rem;
}
.mb-48 {
  margin-bottom: 3rem;
}
.mb-64 {
  margin-bottom: 4rem;
}
.mb-88 {
  margin-bottom: 5.5rem;
}
.mb-con {
  margin-bottom: 10rem;
}
/*--스타일--*/
.txt-white {
  color: #fff;
}
.txt-primary,
.sub-title {
  color: var(--primary);
}
.txt-primary-dark {
  color: var(--primary-dark);
}
.secondary-txt {
  color: var(--gray-03);
}
.secondary-txt-dark {
  color: var(--gray-05);
}
.sub-txt {
  color: var(--gray-04);
}
.img-light {
  filter: brightness(2000%);
}
/*컴포넌트*/
/*--헤더--*/
#header {
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  background-color: #fff;
  border-bottom: 1px solid var(--gray-05);
  z-index: 100;
}
#header .gnb {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#header .nav-menu-link {
  height: 6.25rem;
  padding: 2rem 1rem;
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  line-height: 150%;
  color: var(--gray-03);
  transition: all 0.3s;
}
#header .nav-menu-link:hover,
#header .nav-menu-link.on {
  color: var(--primary-dark);
  border-bottom: 2px solid var(--primary-dark);
}
#header .nav-menu-link.short-cut {
  height: fit-content;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 1rem;
  font-size: 1rem;
  font-weight: var(--font-weight-reg);
  border-left: 1px solid var(--gray-04);
}
#header .nav-menu-link.short-cut img {
  filter: brightness(300%);
}
#header .nav-menu-link.short-cut:hover {
  color: var(--gray-01);
  border-bottom: 0;
}
#header .nav-menu-link.short-cut:hover img {
  filter: brightness(0);
}
/*--풋터--*/
#footer {
  padding: 2rem 0;
  background-color: #000;
}
#footer .footer-info-list {
  gap: 1rem 2rem;
}
#footer .footer-info-item .h7 {
  width: 5.5rem;
  flex: 0 0 auto;
}
#footer .footer-right-side .kolas-info > * {
  margin-bottom: 0.5rem;
}
#footer .footer-right-side .kolas-info > *:last-child {
  margin-bottom: 0;
}
#footer .btn {
  padding: 0.25rem 1.5rem;
  color: #fff;
  border: 1px solid #fff;
}
