:root {
  --color-main: #0068B7;
  --color-sub: #00A9EB;
  --color-white: #FFFFFF;
  --color-black: #000000;
  --font-Notosans: "Noto Sans KR", sans-serif;
  --font-Mulish: "Mulish", sans-serif;
  --font-Titillium: "Titillium Web", sans-serif;
}

.font42 {
  --fontsize: 4.2rem;
  font-size: var(--fontsize);
}

.font50 {
  --fontsize: 5.0rem;
  font-size: var(--fontsize);
}

.font60 {
  --fontsize: 6.0rem;
  font-size: var(--fontsize);
}

.font64 {
  --fontsize: 6.4rem;
  font-size: var(--fontsize);
}

.font72 {
  --fontsize: 7.2rem;
  font-size: var(--fontsize);
}

.font75 {
  --fontsize: 7.5rem;
  font-size: var(--fontsize);
}

* {
  line-height: 1.3;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
html.scrollX,
body.scrollX {
  overflow: hidden;
}

#wrap {
  width: 100%;
  max-width: 100%;
  font-size: 1.6rem;
  overflow: hidden;
}

.w1740 {
  width: 100%;
  height: 100%;
  max-width: 1740px;
  margin: 0 auto;
}

.w1620 {
  width: 100%;
  height: 100%;
  max-width: 1620px;
  margin: 0 auto;
}

.flexBox {
  display: flex;
}
.flexBox.column {
  flex-direction: column;
}

.colorM {
  color: var(--color-main);
}

.pBox {
  display: flex;
  flex-direction: column;
}
.pBox.gap10 {
  gap: 10px 0;
}
.pBox.gap20 {
  gap: 20px 0;
}
.pBox.gap30 {
  gap: 30px 0;
}

.tabContents > div {
  display: none;
}
.tabContents > div.on {
  display: block;
}

.animation {
  transition: all 0.6s;
}
.animation.down {
  transform: translateY(-80px);
}
.animation.up {
  transform: translateY(80px);
}
.animation.left {
  transform: translateX(80px);
}
.animation.right {
  transform: translateX(-80px);
}
.animation.opacity {
  opacity: 0;
}
.animation.on.down, .animation.on.up {
  transform: translateY(0);
}
.animation.on.left, .animation.on.right {
  transform: translateX(0);
}
.animation.on.opacity {
  opacity: 1;
}

.logo.color .logoRect,
.logo.color .logoTextB {
  fill: #0068B7;
}
.logo.color .logoUnesco {
  fill: var(--color-white);
}

header {
  width: 100%;
  height: 90px;
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
header .headerBox {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
}
header .headerBox > * {
  height: 100%;
}
header .headerBox > *:not(nav) {
  flex-shrink: 0;
}
header .headerBox * {
  color: var(--color-white);
}
header .logo {
  width: 108px;
  height: 54px;
}
header .logo a {
  display: block;
  width: 100%;
  height: 100%;
}
header nav,
header .depth1,
header .depth1 > li {
  height: 100%;
}
header .depth1,
header .depth1 > li {
  display: flex;
  flex-direction: row;
  align-items: center;
}
header nav {
  margin: 0 0 0 auto;
}
header nav a {
  transition: all 0.6s;
}
header nav .depth1 > li {
  padding: 0 40px;
  position: relative;
}
header nav .depth1 > li > a {
  font-size: 1.9rem;
  font-weight: 600;
  position: relative;
}
header nav .depth1 > li > a::after {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  position: absolute;
  top: -4px;
  left: -24px;
  opacity: 0;
  transition: all 0.6s;
}
header nav .depth1 > li:hover > a::after, header nav .depth1 > li.on > a::after {
  opacity: 1;
  left: calc(100% + 24px);
}
header nav .depth2 {
  min-width: 100%;
  background: var(--color-white);
  border-radius: 10px;
  text-align: center;
  padding: 12.5px 20px;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  display: none;
}
header nav .depth2 > li > a {
  display: block;
  color: #818181;
  font-size: 1.7rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 7.5px 0;
}
header nav .depth2 > li:hover > a {
  color: #222;
}
header nav .depth3 {
  display: none;
}
header .langBox {
  margin: 0 30px 0 20px;
  position: relative;
}
header .langBox button {
  height: 100%;
  gap: 0 5px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
header .langBox button span {
  font-size: 1.6rem;
  font-weight: 600;
}
header .langBox ul {
  width: 130px;
  background: var(--color-white);
  border-radius: 10px;
  text-align: center;
  padding: 12.5px 0;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  display: none;
}
header .langBox ul li a {
  display: block;
  color: #666;
  font-size: 1.7rem;
  font-weight: 500;
  padding: 7.5px 0;
  transition: all 0.4s;
}
header .langBox ul li.on a {
  color: #222;
  font-weight: 700;
}
header .langBox ul li:hover a {
  color: var(--color-main);
  font-weight: 700;
}
header .menuButton {
  width: 25px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
header .menuButton span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-white);
  transition: all 0.6s;
}
header .menuButton:hover, header .menuButton.on {
  display: flex;
  align-items: center;
  justify-content: center;
}
header .menuButton:hover span:first-child, header .menuButton.on span:first-child {
  transform: translate(0, 2px) rotate(-45deg);
}
header .menuButton:hover span:last-child, header .menuButton.on span:last-child {
  transform: translate(0, -2px) rotate(45deg);
}
header.sub {
  background: rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}
header.menu {
  background: transparent;
  border-bottom: none;
  backdrop-filter: inherit;
  z-index: 4;
}
header.menu nav,
header.menu .langBox {
  display: none;
}
header.menu .menuButton {
  margin: 0 0 0 auto;
}

.siteMap {
  height: 100vh;
  background: var(--color-black);
  padding: 110px 60px;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: none;
}
.siteMap .cover {
  width: 100vw;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  backdrop-filter: blur(2px);
}
.siteMap .inner {
  height: 100%;
  display: inline-block;
}
.siteMap .depth1 {
  display: flex;
  flex-direction: column;
  gap: 50px 0;
}
.siteMap .depth1 * {
  color: var(--color-white);
}
.siteMap .depth1 br:not(.block) {
  display: none;
}
.siteMap .depth1 > li {
  opacity: 0;
  transform: translateY(80px);
  transition: all 0.6s;
}
.siteMap .depth1 > li > a {
  font-size: 5.5rem;
  font-weight: 700;
}
.siteMap .depth2,
.siteMap .depth3 {
  display: flex;
  flex-wrap: wrap;
}
.siteMap .depth2 > li > a,
.siteMap .depth3 > li > a {
  line-height: 1.5;
  opacity: 0.8;
  transition: all 0.4s;
}
.siteMap .depth2 > li:hover > a, .siteMap .depth2 > li.on > a,
.siteMap .depth3 > li:hover > a,
.siteMap .depth3 > li.on > a {
  color: #0091ff;
  opacity: 1;
}
.siteMap .depth2 {
  gap: 10px 40px;
  padding: 25px 0 0;
  position: relative;
  transition: all 0.4s;
}
.siteMap .depth2 > li.dot > a {
  position: relative;
}
.siteMap .depth2 > li.dot > a::after {
  content: "";
  display: block;
  width: 2px;
  height: 2px;
  background: var(--color-white);
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: calc(100% + 5px);
  transition: all 0.4s;
}
.siteMap .depth2 > li:hover > a::after, .siteMap .depth2 > li.on > a::after {
  background: #0091ff;
}
.siteMap .depth3 {
  min-width: 100%;
  gap: 10px 50px;
  padding: 50px 0 0;
  position: absolute;
  top: 100%;
  left: 0;
  visibility: hidden;
}
.siteMap .depth3::before {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  position: absolute;
  top: 25px;
  left: 0;
  right: 0;
  transition: all 0.6s;
}
.siteMap .depth3 > li {
  overflow: hidden;
}
.siteMap .depth3 > li > a {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
}
.siteMap .depth3.on::before {
  width: 100%;
}
.siteMap .depth3.on > li > a {
  opacity: 0.8;
  transform: translateY(0);
  transition-delay: 0.4s;
}
.siteMap .depth3.none {
  display: none !important;
}
.siteMap.on .depth1 > li {
  opacity: 1;
  transform: translateY(0);
}
.siteMap.on .depth1 > li:nth-child(1) {
  transition-delay: 0.1s;
}
.siteMap.on .depth1 > li:nth-child(2) {
  transition-delay: 0.2s;
}
.siteMap.on .depth1 > li:nth-child(3) {
  transition-delay: 0.3s;
}
.siteMap.on .depth1 > li:nth-child(4) {
  transition-delay: 0.4s;
}

footer {
  background: #111;
  border-radius: 50px 50px 0px 0px;
  margin: -50px 0 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
footer .footerBox {
  padding: 80px 0;
}
footer .logo {
  display: block;
  width: 200px;
  height: 95px;
}
footer .bottom {
  align-items: flex-end;
  justify-content: space-between;
  margin: 60px 0 0;
}
footer .dlBox {
  display: flex;
  gap: 0 45px;
}
footer .dlBox dl * {
  color: var(--color-white);
}
footer .dlBox dl dt {
  font-size: 1.5rem;
  font-family: var(--font-Mulish);
  margin: 0 0 10px;
  opacity: 0.5;
}
footer .dlBox dl dd {
  font-size: 1.7rem;
}
footer .familyBox {
  width: 245px;
  flex-shrink: 0;
  position: relative;
}
footer .familyBox button,
footer .familyBox ul > li > a {
  font-size: 1.6rem;
  padding: 20px 25px;
}
footer .familyBox button {
  width: 100%;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  transition: all 0.4s 0.4s;
  display: flex;
  flex-direction: row;
  align-items: center;
}
footer .familyBox button * {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.4s;
}
footer .familyBox button span {
  font-size: 1.6rem;
}
footer .familyBox ul {
  min-width: 100%;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px 6px 0px 0px;
  border-bottom: none;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  z-index: 1;
  display: none;
}
footer .familyBox ul > li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
footer .familyBox ul > li > a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
}
footer .familyBox.on button {
  border-radius: 0px 0px 6px 6px;
  transition: all 0.4s;
}
footer .familyBox.on button i {
  transform: rotateX(180deg);
}
footer .copy {
  width: 100%;
  height: 50px;
  justify-content: flex-end;
  color: #acacac;
  font-size: 1.4rem;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
}
footer .copy::before {
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background: #1b1b1b;
  z-index: -1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}