@font-face {
  font-family: 'Noto Sans KR';
  font-style: normal;
  font-weight: 100;
  src: url(../fonts/NotoSansKR/NotoSansKR-Thin.ttf) format('opentype');
}

@font-face {
  font-family: 'Noto Sans KR';
  font-style: normal;
  font-weight: 300;
  src: url(../fonts/NotoSansKR/NotoSansKR-Light.ttf) format('opentype');
}

@font-face {
  font-family: 'Noto Sans KR';
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/NotoSansKR/NotoSansKR-Regular.ttf) format('opentype');
}

@font-face {
  font-family: 'Noto Sans KR';
  font-style: normal;
  font-weight: 500;
  src: url(../fonts/NotoSansKR/NotoSansKR-Medium.ttf) format('opentype');
}

@font-face {
  font-family: 'Noto Sans KR';
  font-style: normal;
  font-weight: 700;
  src: url(../fonts/NotoSansKR/NotoSansKR-Bold.ttf) format('opentype');
}

@font-face {
  font-family: 'Noto Sans KR';
  font-style: normal;
  font-weight: 900;
  src: url(../fonts/NotoSansKR/NotoSansKR-Black.ttf) format('opentype');
}

@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  color: unset;
  text-decoration: unset;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;

  min-width: 1400px;
}

.header {
  display: flex;
  height: 100px;
  padding: 0 73px;
  align-items: center;
  justify-content: space-between;
  align-self: stretch;
  background: white;
  position: fixed;
  z-index: 99;
  width: 100%;
}

.header .logo {
  width: 200px;
  height: 78px;
  aspect-ratio: 100/39;
}

.header .nav-wrap {
  display: flex;
  align-items: center;
  gap: 60px;
}

.header .nav-wrap p {
  flex: 1;
  padding: 20px 0;
  color: #000;
  font-family: "Noto Sans KR";
  font-size: 19px;
  font-weight: 500;
  line-height: 16px;
}

main {
  flex-grow: 1;
  padding-top: 100px;
}

.footer {
  width: 100%;
  height: 204px;
  padding: 50px 73px;
  background: #121212;
}

.footer .footer-inner {
  width: 100%;
  max-width: 1270px;

  display: flex;
  gap: 30px;
}

.footer .footer-inner .logo {
  width: 150px;
  height: 58px;
  flex-shrink: 0;
  aspect-ratio: 75/29;
}

.footer .footer-inner .footer-content-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer .footer-inner .footer-content-wrap .inner-top {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer .footer-inner .footer-content-wrap .inner-top a {
  color: #FFF;
  font-family: "Noto Sans KR";
  font-size: 17px;
  font-weight: 700;
  line-height: 16px;
  display: flex;
  gap: 10px;
}

.footer .footer-inner .footer-content-wrap .inner-top a::after {
  content: '|';
  color: rgba(255, 255, 255, 0.30);
  font-family: "Noto Sans KR";
  font-size: 17px;
  font-weight: 700;
  line-height: 16px;
}

.footer .footer-inner .footer-content-wrap .inner-top a:last-child::after {
  content: unset;
}

.footer .footer-inner .footer-content-wrap .footer-info {
  max-width: 800px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;

  gap: 10px;
}

.footer .footer-inner .footer-content-wrap .footer-info>div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer .footer-inner .footer-content-wrap .footer-info p {
  color: #FFF;
  font-family: "Noto Sans KR";
  font-size: 15px;
  line-height: 16px;
  opacity: 0.6;

  display: flex;
  gap: 10px;
  align-items: center;
}

.footer .footer-inner .footer-content-wrap .footer-info p::after {
  content: '|';
  color: rgba(255, 255, 255, 0.30);

  font-family: "Noto Sans KR";
  font-size: 15px;
  font-weight: 700;
  line-height: 16px;
}

.footer .footer-inner .footer-content-wrap .footer-info p:last-child:after {
  content: unset;
}

/* 서브페이지 */

.sub-title-wrap {
  display: flex;
  padding: 130px 0 64px;
  width: 100%;
  flex-direction: column;
  align-items: center;
  border-bottom: 1px solid #DEDEDE;
}

.sub-title-wrap .nav-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
  width: 1270px;
}

.sub-title-wrap .nav-wrap p {
  color: #333;
  font-family: "Noto Sans KR";
  font-size: 15px;
  font-weight: 500;
  line-height: 15px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.sub-title-wrap .nav-wrap p::after {
  content: '/';
}

.sub-title-wrap .nav-wrap p:last-child::after {
  content: unset;
}

.sub-title-wrap .title {
  color: #000;
  font-family: "Noto Sans KR";
  font-size: 70px;
  font-weight: 700;
  line-height: 70px;
  margin-bottom: 22px;
  width: 1270px;
}

.sub-title-wrap .sub-title {
  color: #777;
  font-family: "Noto Sans KR";
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
  width: 1270px;
}