@charset "utf-8";

.p_info {
  text-decoration: underline;
  text-underline-position: under;
}

.gnbMenu .menuList {
  display: flex;
  /* gap: 20px; */
  margin-right: 50px;
}

.gnbMenu .menuList>li {
  position: relative;
  height: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.gnbMenu .menuList .depth1 {
  display: flex;
  flex-direction: column;
  height: 100%;
  font-size: 1rem;
  font-weight: 700;
  padding: 0 2.0202vw;
  justify-content: center;
  color: #fff;
}

.gnbMenu .menuList>li:hover .depth1 {
  /* color: #000000; */
}

.gnbMenu .menuList .depth2List {
  position: absolute;
  display: flex;
  background-color: #D3D800;
  color: #fff;
  font-size: 0.889rem;
  font-weight: 700;
  padding: 20px 1.8rem;
  text-align: center;
  flex-direction: column;
  margin: 40px -0.889rem 0;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}

.gnbMenu .menuList li:hover .depth2List,
.gnbMenu .menuList li.on .depth2List {
  opacity: 1;
  margin-top: 50px;
  visibility: visible;
  z-index: 1;
}

.gnbMenu .menuList li.on .depth1 {
  color: #2544b1
}

.gnbMenu .menuList .depth2List li {
  line-height: 2.5;
  /* line-height: 3; */
}

.gnbMenu .menuList .depth2List li a {
  position: relative;
  font-size: 0.889rem;
  font-weight: 400;
  padding: 10px 0;
  color: #fff;
}

.gnbMenu .menuList .depth2List li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  background-color: #fff;
  bottom: 0;
  transition-duration: 0.5s;
  right: 0;
}

.gnbMenu .menuList .depth2List li:hover a::after {
  width: 100%;
  left: 0
}

.navbar {
  /* z-index: 1000; */
  /* z-index: 1000; */
  z-index: 30;
  position: fixed;
  bottom: 50%;
  transform: translateY(-50%);
  right: 0;
  /* background: #8d8d8d; */
  border-radius: 10px;
  /* padding: 1rem 0; */
  /* box-shadow: 0 0 40px rgb(175 65 65 / 3%); */
  /* height: calc(100vh - 4rem); */
  /* z-index: 1000; */
}

.navbar__link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3rem;
  width: 3.5rem;
  color: #D3D800;
  transition: 250ms ease all;
  flex-direction: column-reverse;
  flex-wrap: nowrap;
  align-content: flex-end;
}

.navbar__link span {
  position: absolute;
  right: 100%;
  transform: translate(3rem);
  margin-right: 1rem;
  opacity: 0;
  pointer-events: none;
  color: #000000;
  background: #f7f7f7;
  padding: 0.75rem;
  transition: 250ms ease all;
  border-radius: 17.5px;
  width: 100%;
  font-size: .85rem;
  text-align: center;
  /* letter-spacing: -1px; */
}

.navbar__link:hover {
  color: #ffffff;
}

.navbar:not(:hover) .navbar__link:focus span,
.navbar__link:hover span {
  opacity: 1;
  transform: translate(0);
}

.navbar__menu {
  position: relative;
  margin-right: 4px;
}

.navbar__item:last-child:before {
  content: "";
  position: absolute;
  opacity: 0;
  z-index: -1;
  top: 0;
  left: 0rem;
  width: 5.5rem;
  height: 3rem;
  background: #003989;
  ;
  border-radius: 17.5px;
  transition: 250ms cubic-bezier(1, 0.2, 0.1, 1.2) all;
}

.navbar__item:first-child:nth-last-child(1):hover~li:last-child:before,
.navbar__item:first-child:nth-last-child(1)~li:hover~li:last-child:before {
  opacity: 1;
}

.navbar__item:first-child:nth-last-child(1):last-child:hover:before,
.navbar__item:first-child:nth-last-child(1)~li:last-child:hover:before {
  opacity: 1;
}

.navbar__item:first-child:nth-last-child(1):last-child:hover:before,
.navbar__item:first-child:nth-last-child(1)~li:last-child:hover:before {
  top: 0%;
  animation: gooeyEffect-1 250ms 1;
}

@keyframes gooeyEffect-1 {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(0.5, 1.5);
  }

  100% {
    transform: scale(1, 1);
  }
}

.navbar__item:first-child:nth-last-child(2):hover~li:last-child:before,
.navbar__item:first-child:nth-last-child(2)~li:hover~li:last-child:before {
  opacity: 1;
}

.navbar__item:first-child:nth-last-child(2):last-child:hover:before,
.navbar__item:first-child:nth-last-child(2)~li:last-child:hover:before {
  opacity: 1;
}

.navbar__item:first-child:nth-last-child(2):nth-child(1):hover~li:last-child:before,
.navbar__item:first-child:nth-last-child(2)~li:nth-child(1):hover~li:last-child:before {
  top: 0%;
  animation: gooeyEffect-1 250ms 1;
}

@keyframes gooeyEffect-1 {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(0.5, 1.5);
  }

  100% {
    transform: scale(1, 1);
  }
}

.navbar__item:first-child:nth-last-child(2):last-child:hover:before,
.navbar__item:first-child:nth-last-child(2)~li:last-child:hover:before {
  top: 50%;
  animation: gooeyEffect-2 250ms 1;
}

@keyframes gooeyEffect-2 {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(0.5, 1.5);
  }

  100% {
    transform: scale(1, 1);
  }
}

.navbar__item:first-child:nth-last-child(3):hover~li:last-child:before,
.navbar__item:first-child:nth-last-child(3)~li:hover~li:last-child:before {
  opacity: 1;
}

.navbar__item:first-child:nth-last-child(3):last-child:hover:before,
.navbar__item:first-child:nth-last-child(3)~li:last-child:hover:before {
  opacity: 1;
}

.navbar__item:first-child:nth-last-child(3):nth-child(1):hover~li:last-child:before,
.navbar__item:first-child:nth-last-child(3)~li:nth-child(1):hover~li:last-child:before {
  top: 0%;
  animation: gooeyEffect-1 250ms 1;
}

@keyframes gooeyEffect-1 {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(0.5, 1.5);
  }

  100% {
    transform: scale(1, 1);
  }
}

.navbar__item:first-child:nth-last-child(3):nth-child(2):hover~li:last-child:before,
.navbar__item:first-child:nth-last-child(3)~li:nth-child(2):hover~li:last-child:before {
  top: 33.3333333333%;
  animation: gooeyEffect-2 250ms 1;
}

@keyframes gooeyEffect-2 {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(0.5, 1.5);
  }

  100% {
    transform: scale(1, 1);
  }
}

.navbar__item:first-child:nth-last-child(3):last-child:hover:before,
.navbar__item:first-child:nth-last-child(3)~li:last-child:hover:before {
  top: 66.6666666667%;
  animation: gooeyEffect-3 250ms 1;
}

@keyframes gooeyEffect-3 {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(0.5, 1.5);
  }

  100% {
    transform: scale(1, 1);
  }
}

.navbar__item:first-child:nth-last-child(4):hover~li:last-child:before,
.navbar__item:first-child:nth-last-child(4)~li:hover~li:last-child:before {
  opacity: 1;
}

.navbar__item:first-child:nth-last-child(4):last-child:hover:before,
.navbar__item:first-child:nth-last-child(4)~li:last-child:hover:before {
  opacity: 1;
}

.navbar__item:first-child:nth-last-child(4):nth-child(1):hover~li:last-child:before,
.navbar__item:first-child:nth-last-child(4)~li:nth-child(1):hover~li:last-child:before {
  top: 0%;
  animation: gooeyEffect-1 250ms 1;
}

@keyframes gooeyEffect-1 {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(0.5, 1.5);
  }

  100% {
    transform: scale(1, 1);
  }
}

.navbar__item:first-child:nth-last-child(4):nth-child(2):hover~li:last-child:before,
.navbar__item:first-child:nth-last-child(4)~li:nth-child(2):hover~li:last-child:before {
  top: 25%;
  animation: gooeyEffect-2 250ms 1;
}

@keyframes gooeyEffect-2 {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(0.5, 1.5);
  }

  100% {
    transform: scale(1, 1);
  }
}

.navbar__item:first-child:nth-last-child(4):nth-child(3):hover~li:last-child:before,
.navbar__item:first-child:nth-last-child(4)~li:nth-child(3):hover~li:last-child:before {
  top: 50%;
  animation: gooeyEffect-3 250ms 1;
}

@keyframes gooeyEffect-3 {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(0.5, 1.5);
  }

  100% {
    transform: scale(1, 1);
  }
}

.navbar__item:first-child:nth-last-child(4):last-child:hover:before,
.navbar__item:first-child:nth-last-child(4)~li:last-child:hover:before {
  top: 75%;
  animation: gooeyEffect-4 250ms 1;
}

@keyframes gooeyEffect-4 {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(0.5, 1.5);
  }

  100% {
    transform: scale(1, 1);
  }
}

.navbar__item:first-child:nth-last-child(5):hover~li:last-child:before,
.navbar__item:first-child:nth-last-child(5)~li:hover~li:last-child:before {
  opacity: 1;
}

.navbar__item:first-child:nth-last-child(5):last-child:hover:before,
.navbar__item:first-child:nth-last-child(5)~li:last-child:hover:before {
  opacity: 1;
}

.navbar__item:first-child:nth-last-child(5):nth-child(1):hover~li:last-child:before,
.navbar__item:first-child:nth-last-child(5)~li:nth-child(1):hover~li:last-child:before {
  top: 0%;
  animation: gooeyEffect-1 250ms 1;
}

@keyframes gooeyEffect-1 {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(0.5, 1.5);
  }

  100% {
    transform: scale(1, 1);
  }
}

.navbar__item:first-child:nth-last-child(5):nth-child(2):hover~li:last-child:before,
.navbar__item:first-child:nth-last-child(5)~li:nth-child(2):hover~li:last-child:before {
  top: 20%;
  animation: gooeyEffect-2 250ms 1;
}

@keyframes gooeyEffect-2 {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(0.5, 1.5);
  }

  100% {
    transform: scale(1, 1);
  }
}

.navbar__item:first-child:nth-last-child(5):nth-child(3):hover~li:last-child:before,
.navbar__item:first-child:nth-last-child(5)~li:nth-child(3):hover~li:last-child:before {
  top: 40%;
  animation: gooeyEffect-3 250ms 1;
}

@keyframes gooeyEffect-3 {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(0.5, 1.5);
  }

  100% {
    transform: scale(1, 1);
  }
}

.navbar__item:first-child:nth-last-child(5):nth-child(4):hover~li:last-child:before,
.navbar__item:first-child:nth-last-child(5)~li:nth-child(4):hover~li:last-child:before {
  top: 60%;
  animation: gooeyEffect-4 250ms 1;
}

@keyframes gooeyEffect-4 {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(0.5, 1.5);
  }

  100% {
    transform: scale(1, 1);
  }
}

.navbar__item:first-child:nth-last-child(5):last-child:hover:before,
.navbar__item:first-child:nth-last-child(5)~li:last-child:hover:before {
  top: 80%;
  animation: gooeyEffect-5 250ms 1;
}

@keyframes gooeyEffect-5 {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(0.5, 1.5);
  }

  100% {
    transform: scale(1, 1);
  }
}

.navbar__item:first-child:nth-last-child(6):hover~li:last-child:before,
.navbar__item:first-child:nth-last-child(6)~li:hover~li:last-child:before {
  opacity: 1;
}

.navbar__item:first-child:nth-last-child(6):last-child:hover:before,
.navbar__item:first-child:nth-last-child(6)~li:last-child:hover:before {
  opacity: 1;
}

.navbar__item:first-child:nth-last-child(6):nth-child(1):hover~li:last-child:before,
.navbar__item:first-child:nth-last-child(6)~li:nth-child(1):hover~li:last-child:before {
  top: 0%;
  animation: gooeyEffect-1 250ms 1;
}

@keyframes gooeyEffect-1 {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(0.5, 1.5);
  }

  100% {
    transform: scale(1, 1);
  }
}

.navbar__item:first-child:nth-last-child(6):nth-child(2):hover~li:last-child:before,
.navbar__item:first-child:nth-last-child(6)~li:nth-child(2):hover~li:last-child:before {
  top: 16.6666666667%;
  animation: gooeyEffect-2 250ms 1;
}

@keyframes gooeyEffect-2 {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(0.5, 1.5);
  }

  100% {
    transform: scale(1, 1);
  }
}

.navbar__item:first-child:nth-last-child(6):nth-child(3):hover~li:last-child:before,
.navbar__item:first-child:nth-last-child(6)~li:nth-child(3):hover~li:last-child:before {
  top: 33.3333333333%;
  animation: gooeyEffect-3 250ms 1;
}

@keyframes gooeyEffect-3 {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(0.5, 1.5);
  }

  100% {
    transform: scale(1, 1);
  }
}

.navbar__item:first-child:nth-last-child(6):nth-child(4):hover~li:last-child:before,
.navbar__item:first-child:nth-last-child(6)~li:nth-child(4):hover~li:last-child:before {
  top: 50%;
  animation: gooeyEffect-4 250ms 1;
}

@keyframes gooeyEffect-4 {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(0.5, 1.5);
  }

  100% {
    transform: scale(1, 1);
  }
}

.navbar__item:first-child:nth-last-child(6):nth-child(5):hover~li:last-child:before,
.navbar__item:first-child:nth-last-child(6)~li:nth-child(5):hover~li:last-child:before {
  top: 66.6666666667%;
  animation: gooeyEffect-5 250ms 1;
}

@keyframes gooeyEffect-5 {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(0.5, 1.5);
  }

  100% {
    transform: scale(1, 1);
  }
}

.navbar__item:first-child:nth-last-child(6):last-child:hover:before,
.navbar__item:first-child:nth-last-child(6)~li:last-child:hover:before {
  top: 83.3333333333%;
  animation: gooeyEffect-6 250ms 1;
}

@keyframes gooeyEffect-6 {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(0.5, 1.5);
  }

  100% {
    transform: scale(1, 1);
  }
}

.navbar__item:first-child:nth-last-child(7):hover~li:last-child:before,
.navbar__item:first-child:nth-last-child(7)~li:hover~li:last-child:before {
  opacity: 1;
}

.navbar__item:first-child:nth-last-child(7):last-child:hover:before,
.navbar__item:first-child:nth-last-child(7)~li:last-child:hover:before {
  opacity: 1;
}

.navbar__item:first-child:nth-last-child(7):nth-child(1):hover~li:last-child:before,
.navbar__item:first-child:nth-last-child(7)~li:nth-child(1):hover~li:last-child:before {
  top: 0%;
  animation: gooeyEffect-1 250ms 1;
}

@keyframes gooeyEffect-1 {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(0.5, 1.5);
  }

  100% {
    transform: scale(1, 1);
  }
}

.navbar__item:first-child:nth-last-child(7):nth-child(2):hover~li:last-child:before,
.navbar__item:first-child:nth-last-child(7)~li:nth-child(2):hover~li:last-child:before {
  top: 14.2857142857%;
  animation: gooeyEffect-2 250ms 1;
}

@keyframes gooeyEffect-2 {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(0.5, 1.5);
  }

  100% {
    transform: scale(1, 1);
  }
}

.navbar__item:first-child:nth-last-child(7):nth-child(3):hover~li:last-child:before,
.navbar__item:first-child:nth-last-child(7)~li:nth-child(3):hover~li:last-child:before {
  top: 28.5714285714%;
  animation: gooeyEffect-3 250ms 1;
}

@keyframes gooeyEffect-3 {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(0.5, 1.5);
  }

  100% {
    transform: scale(1, 1);
  }
}

.navbar__item:first-child:nth-last-child(7):nth-child(4):hover~li:last-child:before,
.navbar__item:first-child:nth-last-child(7)~li:nth-child(4):hover~li:last-child:before {
  top: 42.8571428571%;
  animation: gooeyEffect-4 250ms 1;
}

@keyframes gooeyEffect-4 {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(0.5, 1.5);
  }

  100% {
    transform: scale(1, 1);
  }
}

.navbar__item:first-child:nth-last-child(7):nth-child(5):hover~li:last-child:before,
.navbar__item:first-child:nth-last-child(7)~li:nth-child(5):hover~li:last-child:before {
  top: 57.1428571429%;
  animation: gooeyEffect-5 250ms 1;
}

@keyframes gooeyEffect-5 {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(0.5, 1.5);
  }

  100% {
    transform: scale(1, 1);
  }
}

.navbar__item:first-child:nth-last-child(7):nth-child(6):hover~li:last-child:before,
.navbar__item:first-child:nth-last-child(7)~li:nth-child(6):hover~li:last-child:before {
  top: 71.4285714286%;
  animation: gooeyEffect-6 250ms 1;
}

@keyframes gooeyEffect-6 {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(0.5, 1.5);
  }

  100% {
    transform: scale(1, 1);
  }
}

.navbar__item:first-child:nth-last-child(7):last-child:hover:before,
.navbar__item:first-child:nth-last-child(7)~li:last-child:hover:before {
  top: 85.7142857143%;
  animation: gooeyEffect-7 250ms 1;
}

@keyframes gooeyEffect-7 {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(0.5, 1.5);
  }

  100% {
    transform: scale(1, 1);
  }
}

.navbar__item:first-child:nth-last-child(8):hover~li:last-child:before,
.navbar__item:first-child:nth-last-child(8)~li:hover~li:last-child:before {
  opacity: 1;
}

.navbar__item:first-child:nth-last-child(8):last-child:hover:before,
.navbar__item:first-child:nth-last-child(8)~li:last-child:hover:before {
  opacity: 1;
}

.navbar__item:first-child:nth-last-child(8):nth-child(1):hover~li:last-child:before,
.navbar__item:first-child:nth-last-child(8)~li:nth-child(1):hover~li:last-child:before {
  top: 0%;
  animation: gooeyEffect-1 250ms 1;
}

@keyframes gooeyEffect-1 {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(0.5, 1.5);
  }

  100% {
    transform: scale(1, 1);
  }
}

.navbar__item:first-child:nth-last-child(8):nth-child(2):hover~li:last-child:before,
.navbar__item:first-child:nth-last-child(8)~li:nth-child(2):hover~li:last-child:before {
  top: 12.5%;
  animation: gooeyEffect-2 250ms 1;
}

@keyframes gooeyEffect-2 {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(0.5, 1.5);
  }

  100% {
    transform: scale(1, 1);
  }
}

.navbar__item:first-child:nth-last-child(8):nth-child(3):hover~li:last-child:before,
.navbar__item:first-child:nth-last-child(8)~li:nth-child(3):hover~li:last-child:before {
  top: 25%;
  animation: gooeyEffect-3 250ms 1;
}

@keyframes gooeyEffect-3 {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(0.5, 1.5);
  }

  100% {
    transform: scale(1, 1);
  }
}

.navbar__item:first-child:nth-last-child(8):nth-child(4):hover~li:last-child:before,
.navbar__item:first-child:nth-last-child(8)~li:nth-child(4):hover~li:last-child:before {
  top: 37.5%;
  animation: gooeyEffect-4 250ms 1;
}

@keyframes gooeyEffect-4 {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(0.5, 1.5);
  }

  100% {
    transform: scale(1, 1);
  }
}

.navbar__item:first-child:nth-last-child(8):nth-child(5):hover~li:last-child:before,
.navbar__item:first-child:nth-last-child(8)~li:nth-child(5):hover~li:last-child:before {
  top: 50%;
  animation: gooeyEffect-5 250ms 1;
}

@keyframes gooeyEffect-5 {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(0.5, 1.5);
  }

  100% {
    transform: scale(1, 1);
  }
}

.navbar__item:first-child:nth-last-child(8):nth-child(6):hover~li:last-child:before,
.navbar__item:first-child:nth-last-child(8)~li:nth-child(6):hover~li:last-child:before {
  top: 62.5%;
  animation: gooeyEffect-6 250ms 1;
}

@keyframes gooeyEffect-6 {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(0.5, 1.5);
  }

  100% {
    transform: scale(1, 1);
  }
}

.navbar__item:first-child:nth-last-child(8):nth-child(7):hover~li:last-child:before,
.navbar__item:first-child:nth-last-child(8)~li:nth-child(7):hover~li:last-child:before {
  top: 75%;
  animation: gooeyEffect-7 250ms 1;
}

@keyframes gooeyEffect-7 {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(0.5, 1.5);
  }

  100% {
    transform: scale(1, 1);
  }
}

.navbar__item:first-child:nth-last-child(8):last-child:hover:before,
.navbar__item:first-child:nth-last-child(8)~li:last-child:hover:before {
  top: 87.5%;
  animation: gooeyEffect-8 250ms 1;
}

@keyframes gooeyEffect-8 {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(0.5, 1.5);
  }

  100% {
    transform: scale(1, 1);
  }
}

.navbar__item:first-child:nth-last-child(9):hover~li:last-child:before,
.navbar__item:first-child:nth-last-child(9)~li:hover~li:last-child:before {
  opacity: 1;
}

.navbar__item:first-child:nth-last-child(9):last-child:hover:before,
.navbar__item:first-child:nth-last-child(9)~li:last-child:hover:before {
  opacity: 1;
}

.navbar__item:first-child:nth-last-child(9):nth-child(1):hover~li:last-child:before,
.navbar__item:first-child:nth-last-child(9)~li:nth-child(1):hover~li:last-child:before {
  top: 0%;
  animation: gooeyEffect-1 250ms 1;
}

@keyframes gooeyEffect-1 {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(0.5, 1.5);
  }

  100% {
    transform: scale(1, 1);
  }
}

.navbar__item:first-child:nth-last-child(9):nth-child(2):hover~li:last-child:before,
.navbar__item:first-child:nth-last-child(9)~li:nth-child(2):hover~li:last-child:before {
  top: 11.1111111111%;
  animation: gooeyEffect-2 250ms 1;
}

@keyframes gooeyEffect-2 {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(0.5, 1.5);
  }

  100% {
    transform: scale(1, 1);
  }
}

.navbar__item:first-child:nth-last-child(9):nth-child(3):hover~li:last-child:before,
.navbar__item:first-child:nth-last-child(9)~li:nth-child(3):hover~li:last-child:before {
  top: 22.2222222222%;
  animation: gooeyEffect-3 250ms 1;
}

@keyframes gooeyEffect-3 {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(0.5, 1.5);
  }

  100% {
    transform: scale(1, 1);
  }
}

.navbar__item:first-child:nth-last-child(9):nth-child(4):hover~li:last-child:before,
.navbar__item:first-child:nth-last-child(9)~li:nth-child(4):hover~li:last-child:before {
  top: 33.3333333333%;
  animation: gooeyEffect-4 250ms 1;
}

@keyframes gooeyEffect-4 {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(0.5, 1.5);
  }

  100% {
    transform: scale(1, 1);
  }
}

.navbar__item:first-child:nth-last-child(9):nth-child(5):hover~li:last-child:before,
.navbar__item:first-child:nth-last-child(9)~li:nth-child(5):hover~li:last-child:before {
  top: 44.4444444444%;
  animation: gooeyEffect-5 250ms 1;
}

@keyframes gooeyEffect-5 {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(0.5, 1.5);
  }

  100% {
    transform: scale(1, 1);
  }
}

.navbar__item:first-child:nth-last-child(9):nth-child(6):hover~li:last-child:before,
.navbar__item:first-child:nth-last-child(9)~li:nth-child(6):hover~li:last-child:before {
  top: 55.5555555556%;
  animation: gooeyEffect-6 250ms 1;
}

@keyframes gooeyEffect-6 {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(0.5, 1.5);
  }

  100% {
    transform: scale(1, 1);
  }
}

.navbar__item:first-child:nth-last-child(9):nth-child(7):hover~li:last-child:before,
.navbar__item:first-child:nth-last-child(9)~li:nth-child(7):hover~li:last-child:before {
  top: 66.6666666667%;
  animation: gooeyEffect-7 250ms 1;
}

@keyframes gooeyEffect-7 {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(0.5, 1.5);
  }

  100% {
    transform: scale(1, 1);
  }
}

.navbar__item:first-child:nth-last-child(9):nth-child(8):hover~li:last-child:before,
.navbar__item:first-child:nth-last-child(9)~li:nth-child(8):hover~li:last-child:before {
  top: 77.7777777778%;
  animation: gooeyEffect-8 250ms 1;
}

@keyframes gooeyEffect-8 {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(0.5, 1.5);
  }

  100% {
    transform: scale(1, 1);
  }
}

.navbar__item:first-child:nth-last-child(9):last-child:hover:before,
.navbar__item:first-child:nth-last-child(9)~li:last-child:hover:before {
  top: 88.8888888889%;
  animation: gooeyEffect-9 250ms 1;
}

@keyframes gooeyEffect-9 {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(0.5, 1.5);
  }

  100% {
    transform: scale(1, 1);
  }
}

.navbar__item:first-child:nth-last-child(10):hover~li:last-child:before,
.navbar__item:first-child:nth-last-child(10)~li:hover~li:last-child:before {
  opacity: 1;
}

.navbar__item:first-child:nth-last-child(10):last-child:hover:before,
.navbar__item:first-child:nth-last-child(10)~li:last-child:hover:before {
  opacity: 1;
}

.navbar__item:first-child:nth-last-child(10):nth-child(1):hover~li:last-child:before,
.navbar__item:first-child:nth-last-child(10)~li:nth-child(1):hover~li:last-child:before {
  top: 0%;
  animation: gooeyEffect-1 250ms 1;
}

@keyframes gooeyEffect-1 {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(0.5, 1.5);
  }

  100% {
    transform: scale(1, 1);
  }
}

.navbar__item:first-child:nth-last-child(10):nth-child(2):hover~li:last-child:before,
.navbar__item:first-child:nth-last-child(10)~li:nth-child(2):hover~li:last-child:before {
  top: 10%;
  animation: gooeyEffect-2 250ms 1;
}

@keyframes gooeyEffect-2 {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(0.5, 1.5);
  }

  100% {
    transform: scale(1, 1);
  }
}

.navbar__item:first-child:nth-last-child(10):nth-child(3):hover~li:last-child:before,
.navbar__item:first-child:nth-last-child(10)~li:nth-child(3):hover~li:last-child:before {
  top: 20%;
  animation: gooeyEffect-3 250ms 1;
}

@keyframes gooeyEffect-3 {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(0.5, 1.5);
  }

  100% {
    transform: scale(1, 1);
  }
}

.navbar__item:first-child:nth-last-child(10):nth-child(4):hover~li:last-child:before,
.navbar__item:first-child:nth-last-child(10)~li:nth-child(4):hover~li:last-child:before {
  top: 30%;
  animation: gooeyEffect-4 250ms 1;
}

@keyframes gooeyEffect-4 {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(0.5, 1.5);
  }

  100% {
    transform: scale(1, 1);
  }
}

.navbar__item:first-child:nth-last-child(10):nth-child(5):hover~li:last-child:before,
.navbar__item:first-child:nth-last-child(10)~li:nth-child(5):hover~li:last-child:before {
  top: 40%;
  animation: gooeyEffect-5 250ms 1;
}

@keyframes gooeyEffect-5 {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(0.5, 1.5);
  }

  100% {
    transform: scale(1, 1);
  }
}

.navbar__item:first-child:nth-last-child(10):nth-child(6):hover~li:last-child:before,
.navbar__item:first-child:nth-last-child(10)~li:nth-child(6):hover~li:last-child:before {
  top: 50%;
  animation: gooeyEffect-6 250ms 1;
}

@keyframes gooeyEffect-6 {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(0.5, 1.5);
  }

  100% {
    transform: scale(1, 1);
  }
}

.navbar__item:first-child:nth-last-child(10):nth-child(7):hover~li:last-child:before,
.navbar__item:first-child:nth-last-child(10)~li:nth-child(7):hover~li:last-child:before {
  top: 60%;
  animation: gooeyEffect-7 250ms 1;
}

@keyframes gooeyEffect-7 {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(0.5, 1.5);
  }

  100% {
    transform: scale(1, 1);
  }
}

.navbar__item:first-child:nth-last-child(10):nth-child(8):hover~li:last-child:before,
.navbar__item:first-child:nth-last-child(10)~li:nth-child(8):hover~li:last-child:before {
  top: 70%;
  animation: gooeyEffect-8 250ms 1;
}

@keyframes gooeyEffect-8 {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(0.5, 1.5);
  }

  100% {
    transform: scale(1, 1);
  }
}

.navbar__item:first-child:nth-last-child(10):nth-child(9):hover~li:last-child:before,
.navbar__item:first-child:nth-last-child(10)~li:nth-child(9):hover~li:last-child:before {
  top: 80%;
  animation: gooeyEffect-9 250ms 1;
}

@keyframes gooeyEffect-9 {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(0.5, 1.5);
  }

  100% {
    transform: scale(1, 1);
  }
}

.navbar__item:first-child:nth-last-child(10):last-child:hover:before,
.navbar__item:first-child:nth-last-child(10)~li:last-child:hover:before {
  top: 90%;
  animation: gooeyEffect-10 250ms 1;
}

@keyframes gooeyEffect-10 {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(0.5, 1.5);
  }

  100% {
    transform: scale(1, 1);
  }
}

.navbar__item:first-child:nth-last-child(11):hover~li:last-child:before,
.navbar__item:first-child:nth-last-child(11)~li:hover~li:last-child:before {
  opacity: 1;
}

.navbar__item:first-child:nth-last-child(11):last-child:hover:before,
.navbar__item:first-child:nth-last-child(11)~li:last-child:hover:before {
  opacity: 1;
}

.navbar__item:first-child:nth-last-child(11):nth-child(1):hover~li:last-child:before,
.navbar__item:first-child:nth-last-child(11)~li:nth-child(1):hover~li:last-child:before {
  top: 0%;
  animation: gooeyEffect-1 250ms 1;
}

@keyframes gooeyEffect-1 {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(0.5, 1.5);
  }

  100% {
    transform: scale(1, 1);
  }
}

.navbar__item:first-child:nth-last-child(11):nth-child(2):hover~li:last-child:before,
.navbar__item:first-child:nth-last-child(11)~li:nth-child(2):hover~li:last-child:before {
  top: 9.0909090909%;
  animation: gooeyEffect-2 250ms 1;
}

@keyframes gooeyEffect-2 {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(0.5, 1.5);
  }

  100% {
    transform: scale(1, 1);
  }
}

.navbar__item:first-child:nth-last-child(11):nth-child(3):hover~li:last-child:before,
.navbar__item:first-child:nth-last-child(11)~li:nth-child(3):hover~li:last-child:before {
  top: 18.1818181818%;
  animation: gooeyEffect-3 250ms 1;
}

@keyframes gooeyEffect-3 {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(0.5, 1.5);
  }

  100% {
    transform: scale(1, 1);
  }
}

.navbar__item:first-child:nth-last-child(11):nth-child(4):hover~li:last-child:before,
.navbar__item:first-child:nth-last-child(11)~li:nth-child(4):hover~li:last-child:before {
  top: 27.2727272727%;
  animation: gooeyEffect-4 250ms 1;
}

@keyframes gooeyEffect-4 {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(0.5, 1.5);
  }

  100% {
    transform: scale(1, 1);
  }
}

.navbar__item:first-child:nth-last-child(11):nth-child(5):hover~li:last-child:before,
.navbar__item:first-child:nth-last-child(11)~li:nth-child(5):hover~li:last-child:before {
  top: 36.3636363636%;
  animation: gooeyEffect-5 250ms 1;
}

@keyframes gooeyEffect-5 {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(0.5, 1.5);
  }

  100% {
    transform: scale(1, 1);
  }
}

.navbar__item:first-child:nth-last-child(11):nth-child(6):hover~li:last-child:before,
.navbar__item:first-child:nth-last-child(11)~li:nth-child(6):hover~li:last-child:before {
  top: 45.4545454545%;
  animation: gooeyEffect-6 250ms 1;
}

@keyframes gooeyEffect-6 {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(0.5, 1.5);
  }

  100% {
    transform: scale(1, 1);
  }
}

.navbar__item:first-child:nth-last-child(11):nth-child(7):hover~li:last-child:before,
.navbar__item:first-child:nth-last-child(11)~li:nth-child(7):hover~li:last-child:before {
  top: 54.5454545455%;
  animation: gooeyEffect-7 250ms 1;
}

@keyframes gooeyEffect-7 {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(0.5, 1.5);
  }

  100% {
    transform: scale(1, 1);
  }
}

.navbar__item:first-child:nth-last-child(11):nth-child(8):hover~li:last-child:before,
.navbar__item:first-child:nth-last-child(11)~li:nth-child(8):hover~li:last-child:before {
  top: 63.6363636364%;
  animation: gooeyEffect-8 250ms 1;
}

@keyframes gooeyEffect-8 {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(0.5, 1.5);
  }

  100% {
    transform: scale(1, 1);
  }
}

.navbar__item:first-child:nth-last-child(11):nth-child(9):hover~li:last-child:before,
.navbar__item:first-child:nth-last-child(11)~li:nth-child(9):hover~li:last-child:before {
  top: 72.7272727273%;
  animation: gooeyEffect-9 250ms 1;
}

@keyframes gooeyEffect-9 {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(0.5, 1.5);
  }

  100% {
    transform: scale(1, 1);
  }
}

.navbar__item:first-child:nth-last-child(11):nth-child(10):hover~li:last-child:before,
.navbar__item:first-child:nth-last-child(11)~li:nth-child(10):hover~li:last-child:before {
  top: 81.8181818182%;
  animation: gooeyEffect-10 250ms 1;
}

@keyframes gooeyEffect-10 {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(0.5, 1.5);
  }

  100% {
    transform: scale(1, 1);
  }
}

.navbar__item:first-child:nth-last-child(11):last-child:hover:before,
.navbar__item:first-child:nth-last-child(11)~li:last-child:hover:before {
  top: 90.9090909091%;
  animation: gooeyEffect-11 250ms 1;
}

@keyframes gooeyEffect-11 {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(0.5, 1.5);
  }

  100% {
    transform: scale(1, 1);
  }
}




/* DARKMODE */
.dark_on {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(5%, #1e1e20), color-stop(38%, #1e1f21));
  background-image: -o-linear-gradient(top, #1e1e20 5%, #1e1f21 38%);
  background-image: linear-gradient(to bottom, #1e1e20 5%, #1e1f21 38%);
}

.dark_on .container .depth__fill {
  color: #fff;
}

.dark_on .navbar__link {
  color: #f5f5f5;
}

.dark_on .slidemenu li a>.con,
.dark_on .cont03 .wrap .swiper .swiper-container .swiper-slide .text,
.dark_on .cont03 .swiper-pagination-bullet,
.dark_on .sub_head .breadcrumb li,
.dark_on .sub_head .breadcrumb li.selected {
  color: #fff;
}

.dark_on .swiper-pagination-bullet {
  background: #fff;
}

.dark_on .cont03 .swiper-pagination-bullet-active {
  color: #ffef10;
}

.dark_on .cont03 .swiper-pagination-bullet-active::after {
  background-color: #ffef10;
}

.dark_on .swiper-btnWrap .swiper-button-prev,
.dark_on .swiper-btnWrap .swiper-button-next {
  color: #fff;
  border: 1px solid #fff;
}

.dark_on .swiper-btnWrap .swiper-button-prev:hover,
.dark_on .swiper-btnWrap .swiper-button-next:hover {
  color: #ffef10;
  border: 1px solid #ffef10;
}

.dark_on .footer .f_text li p {
  color: inherit;
}

.dark_on .gnb .menu2 {
  background: #D3D800;
}

.dark_on .sub_head .breadcrumb li+li::before {
  color: #ff6939;
}

.dark_on #btn_top i {
  color: #000000;
  /* border: 1px solid #898989; */
  opacity: 1;
  background-color: #ffffff;
}

/* main */
.dark_on .cont00,
.dark_on .cont01,
.dark_on .cont02 {
  background: inherit;
}

.dark_on .cont01,
.dark_on .cont03,
.dark_on .cont04,
.dark_on .sub_footwrap {
  background-color: #414141;
}

/* Sub */
.dark_on p {
  color: #fff;
}

.dark_on .point {
  color: #fff;
}

.dark_on .caption {
  color: #e7e7e7;
}

.dark_on .contwrap h3 {
  color: #fff;
}

.dark_on .row blockquote {
  color: #fff;
}

.dark_on .contwrap h3::after {
  background-color: #878787;
}

.dark_on .swiper-button-next,
.dark_on .swiper-button-prev {
  border: 1px solid #fff;
  color: #fff;
}

.dark_on .swiper-button-next:hover,
.dark_on .swiper-button-prev:hover {
  border: 1px solid #2ca6df;
  color: #2ca6df;
}

.dark_on .sub_foot .relation .rel_tit,
.dark_on .sub_foot .relation .rel_tit::after {
  background-color: #ff6939;
}

.dark_on .contents .row.bg1 h2 {
  color: #fff;
}

.dark_on .contents h2 div span.q:nth-child(1) {
  -webkit-text-stroke: 3px #fff;
}

.dark_on .contents h2 div span.q:nth-child(2) {
  color: #fff;
}

.dark_on h3,
.dark_on .flex_mod h4,
.dark_on .flex_mod h5 {
  color: #fff;
}

.dark_on .sub_foot .relation .rel_tit {
  color: #fff;
}

.dark_on .sub_foot .relation .rel_tit::before {
  filter: invert(1);
}

.dark_on .sub_foot .relation li p {
  color: #fff;
}

.dark_on .sub_foot .relation .swiper-slide p {
  color: #fff;
}

.dark_on .source {
  background: transparent;
  border: 1px solid #fff;
}

.dark_on .source strong {
  color: #ff6939;
}

.dark_on .sub_con.sub2 .row h3 {
  color: #fff;
}

.dark_on .dialog_box {
  border: 4px solid #fff;
  color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(5%, #1e1e20), color-stop(38%, #1e1f21));
  background-image: -o-linear-gradient(top, #1e1e20 5%, #1e1f21 38%);
  background-image: linear-gradient(to bottom, #1e1e20 5%, #1e1f21 38%);
}

.dark_on .dialog_box.bottom:before {
  border-color: #fff transparent transparent transparent;
}

.dark_on .dialog_box.bottom:after {
  border-color: #000 transparent transparent transparent;
}

.dark_on .dialog_box span {
  background: #fff;
  color: #000;
}

.dark_on .magazine .row h3 {
  box-shadow: #ff6939 0px -14px 0px inset;
}

.dark_on .sub_con .event_txt p {
  color: #fff;
}

.dark_on .row.event_info p {
  color: #fff;
}

.dark_on .row.event_info h3 {
  color: #73c4db;
  border-bottom: 2px solid #73c4db;
}

.dark_on .sub_con .row .roundbox {
  background: #73c4db;
}

.dark_on .quizwrap h3 {
  background: #f4b2bb;
}

.dark_on .list_wrap .inner .list h3,
.dark_on .list_wrap .inner .list ul li span {
  color: #fff;
}

.dark_on .list_wrap .inner .list h3 {
  border-bottom: 15px solid rgb(255 105 57);
}

.dark_on .sub_full.event {
  filter: invert(1);
}

.dark_on .sub_full h3 {
  color: #000;
}

.dark_on .row.event_bg .fwb {
  color: #000;
}

.dark_on .row.event_bg p {
  color: #000;
}

.dark_on .interview h4 {
  color: #bacfff;
}

.dark_on .interview h4 span {
  color: #fff;
}

.dark_on .sub_con .row h3 {
  color: #e6bcbe;
}

.dark_on .interview p .tit {
  color: #c9c380;
}

.dark_on .interview p {
  border: 1px solid #bacfdb;
}

.dark_on .interview p .tit::after {
  filter: invert(1);
}

.dark_on .interview p .tit::before {
  filter: invert(1);
}



.dark_on .sub_txt i {
  filter: invert(1);
}

/* ZOOMMODE */
.zoom .contents {
  zoom: 110%;
}

.zoom .contents img {
  zoom: 100% !important;
}

.zoom .cont03 .wrap .swiper {
  padding-left: 75px;
}

* {
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}

#wrap {
  position: relative;
  overflow-x: hidden;
}

/* 본문바로가기 */
#skip_menu a {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
  z-index: 10000;
}

#skip_menu a:focus,
#skip_menu a:active {
  height: auto;
  background-color: #000;
  font-size: 1rem;
  color: #fff;
  font-weight: 500;
  text-align: center;
  line-height: 2rem;
}

.not_scroll {
  position: fixed;
  overflow: hidden;
  width: 100%;
  height: 100%
}

.mo_bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 1);
  z-index: 120;
}

.container {
  position: relative;
  max-width: 1280px;
  height: 100%;
  margin: 0 auto;
  padding: 0 30px;
}

.container:after {
  content: '';
  clear: both;
  display: block;
}

.container2 {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

/* header */
.headmenu {
  position: fixed;
  left: 0;
  top: 0;
  padding:20px 0;
  z-index: 400;
  width: 100%;
  background: transparent;
  transition: all 0.3s ease;
}

.headmenu.sticky {
  background: rgba(0, 0, 0, 0.6); /* 검정 투명 */
  backdrop-filter: blur(10px); /* 블러 효과 */
  -webkit-backdrop-filter: blur(10px); /* 사파리 대응 */

  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); /* 살짝 떠보이게 */
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: 0 auto;
  position: relative;
  z-index: 100;
}

.header .vol {
  border-left: 1px solid #fff;
  padding-left: 15px;
}

.header .vol p {
  /* border-top: 1px solid #fff; */
  font-size: 14px;
  color: #fff;
  margin-top: 10px;
}

.header .vol p span {
  color: #BFD307;
  font-weight: 700;
}

.header__tit a {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.header__tit .header__tit-txt {
  /* float: left; */
}

.header__tit .header__tit-txt img {
  width: 134px;
  /* filter: invert(1); */
  vertical-align: inherit;
}

.header__tit .logo__txt {
  font-size: 17px;
  /* float: left; */
  /* margin: 0 0 0 15px; */
  color: #fff;
  font-weight: 500;
  /* border-bottom: 2px solid #fff; */
  /* padding-left: 15px; */
  line-height: 1;
}

.header__tit .logo__txt span {
  font-weight: 300;
  display: block;
}

.header__util {
  margin-right: 50px;
}

.header__util:after {
  display: block;
  clear: both;
  content: "";
}

.header__util>a {
  color: #fff;
  border: 2px solid #fff;
  padding: 6px 12px;
  border-radius: 18px;
  font-size: 16px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  font-weight: 200;
}

.header__util>a:hover,
.header__util>a.active {
  color: #000;
  background: #fff;
  font-weight: 400;
}

.header__util>a.dark:hover,
.header__util>a.dark.active {
  background: none;
  filter: invert(1);
}

.header__util>a.size:hover,
.header__util>a.size.active {
  background: none;
  filter: invert(1);
}

.header__util>a+a {
  margin-left: 0.3rem;
}

.headmenu .nav_btn {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 500;
  z-index: 300;
  background: transparent;
  width: 80px;
  height: 80px;
}

.headmenu.active .nav_btn {
  /* color: #000; */
}

.headmenu.active.sticky .nav_btn {
  color: #fff;
}

.headmenu.sticky .nav_btn {
  background: none;
}

.header__util .dark,
.header__util .size {
  border: none;
  width: 40px;
  display: inline-block;
  padding: 0;
}

.headmenu.active {
  position: fixed;
}

.headmenu.active .gnbMenu {
  display: none;
}

.headmenu.active .header__tit .logo__txt {
  /* color: #000; */
  /* border-left: 2px solid #000; */
}

.headmenu.active .header__tit .header__tit-txt img {
  /* filter: invert(1); */
}

.headmenu.active .header__util .last_view {
  color: #000;
  border: 2px solid #000;
}

.headmenu.active .header__util>a.dark,
.headmenu.active .header__util>a.size {
  filter: invert(1);
}

.headmenu.active .header__util>a.dark:hover,
.headmenu.active .header__util>a.dark.active,
.headmenu.active .header__util>a.size:hover,
.headmenu.active .header__util>a.size.active {
  filter: drop-shadow(1px 1px 1px black);
}

.headmenu.sticky .link {
  display: block;
}

.banner_pc {
  display: block;
}

.banner_mo {
  display: none;
}

#gnb.active {
  /* transform: translateY(0); */
  opacity: 1;
  visibility: visible;
  clip-path: circle(100%);
}

.gnb .menu2 {
  display: none;
}

.gnb .menu {
  margin: 0 auto;
  max-width: 1280px;
  /* text-align: center; */
}

@media screen and (max-width: 768px) {
  .gnb .menu {
    margin: unset;
  }

}

.gnb .menu h2 {
  font-size: 2rem;
  margin-bottom: 6rem;
  color: #fff;
  text-align: center;
}

.gnb .menu .gnb__list {
  display: flex;
  justify-content: center;
  text-align: center;
  gap: 60px;
}

.gnb .menu .gnb__list>li {
  /* border-right: 1px solid #c9c9c9; */
  /* padding-right: 100px; */
  /* width: 100%; */
}

.gnb .menu .gnb__list>li:last-child {
  border: none;
}

.gnb .menu .gnb__list .gnb__depth-item {
  margin-top: 20px;
}

.gnb .menu .gnb__list .gnb__depth-item a {
  display: inline-block;
  font-size: 21px;
  color: #fff;
}

.gnb .menu .gnb__list .gnb__depth-item:hover a {
  text-decoration: underline;
  text-underline-position: under;
}

.gnb__item {
  width: 240px;
}

.gnb__link {
  text-align: center !important;
}


.gnb__sub li {
  float: left;
  margin-right: 10px;
  margin-top: unset !important;
}

@media (max-width: 768px) {
  .gnb__sub li:first-child {
    margin-top: 20px !important;
  }
  .gnb__sub li {
     float: unset;
     margin-right: 0px;
     margin: 12px 0;
  }
}

.gnb__sub li:last-child {
  margin-right: 0px !important;
}

.gnb__list .gnb__item>a {
  font-size: 32px;
  font-weight: 800;
  /* padding: 45px 0 20px; */
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* color: #fff; */
}

.gnb__item .tab1 {
  background: linear-gradient(90deg, rgb(255 255 255) 0%, rgb(255 255 255) 100%);
}

.gnb__item .tab2 {
  background: linear-gradient(90deg, rgb(255 255 255) 0%, rgb(255 255 255) 100%);
}

.gnb__item .tab3 {
  background: linear-gradient(90deg, rgb(255 255 255) 0%, rgb(255 255 255) 100%);
}

.gnb__item .tab4 {
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 100%);
}

.pc_gnb {
  overflow: hidden;
  padding: 24px 0;
  margin-right: 15px;
}

.pc_gnb>ul {
  width: 760px;
  float: left;
  background: rgb(255 255 255 / 80%);
}

.navigation a.last_view {
  font-size: 15px;
  float: right;
  margin-top: 3px;
}

.vol_wrap .gnb_close {
  display: none;
  position: absolute;
  left: 0;
  padding: 5px 10px;
  background: #fff;
  top: -5px;
}

.vol_wrap .gnb_close.active {
  display: block;
}

#gnb {
  width: 100%;
  position: fixed;
  padding: 140px 0 50px;
  background: #003989;
  /* overflow: hidden; */
  z-index: 50;
  top: 0;
  /* transform: translateY(-100%); */
  opacity: 0;
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
  height: 100%;
  /* display: block; */
  position: fixed;
  top: 0;
  left: 0;
  content: "";
  width: 100vw;
  height: 100vh;
  background: rgb(2 39 90 / 97%);
  transition: all 500ms ease-in-out;
  /* clip-path: circle(30px at calc(100% - 65px) 65px); */
  visibility: hidden;
}

#gnb::before {
  /* display: block; */
  /* position: fixed; */
  /* top: 0; */
  /* left: 0; */
  /* content: ""; */
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  transition: all 500ms ease-in-out;
  clip-path: circle(30px at calc(100% - 65px) 65px);
  visibility: hidden;
}

#gnb.active::before {
  visibility: visible;
  clip-path: circle(100%);
}

.top_util .btn_search {
  text-indent: -9999px;
  display: inline-block;
  width: 19px;
  height: 19px;
  overflow: hidden;
  background: url() no-repeat 50% 50%;
}

.pc_gnb>ul>li {
  float: left;
  /* padding-left: 15px; */
  text-align: center;
  width: 20%;
}

.pc_gnb>ul>li>a {
  font-size: 20px;
}

.pc_gnb>ul>li .submenu {
  padding-top: 30px;
  display: none;
}

.pc_gnb>ul>li .submenu ul li {
  padding-bottom: 15px;
  line-height: 1.5;
  letter-spacing: -1px;
}

.pc_gnb ul li>a {
  font-weight: 500;
}

.pc_gnb ul li a>.fwb {
  color: #d22144;
}

.submenu ul li>a {
  font-weight: 500;
  /* color: #7d7d7d; */
}

.submenu li a:hover {
  border-bottom: 4px solid #d22144;
}

.m_gnb {
  display: none;
}

.m_gnb {
  margin: 45px 10px 0;
}

.m_gnb li a {
  color: #fff;
}

.m_gnb>li>a {
  color: #fff;
  font-size: 20px;
}

.m_submenu {
  display: none;
  margin: 0 30px;
}

.m_submenu li {
  margin-bottom: 15px;
}

.m_gnb .vol_wrap .date {
  color: #fff;
}

.m_vol_wrap {
  z-index: 200;
  width: 100%;
  background: #353682;
  bottom: 0;
  clear: both;
  overflow: hidden;
  position: fixed;
  text-align: center;
  padding: 7px 0;
  display: none;
  font-size: 14px;
}

.m_vol_wrap .date,
.m_vol_wrap .last_view {
  color: #fff;
}

.m_vol_wrap .date {
  float: left;
  margin-left: 15px;
}

.m_vol_wrap .last_view {
  float: right;
  margin-right: 15px;
}




.header .btm .navigation>ul>li>a.last_view {
  font-size: 15px;
  padding: 22px 19px;
}

.header .btm .navigation>ul>li>a:after {
  content: "";
  display: block;
}

.header .btm .navigation>ul>li>a.last_view:after {
  display: none;
}

/* .header .btm .navigation > ul > li a:focus:after {position: absolute;left: 0;bottom: -11px;width: 100%;height: 7px;background-color: red;} */
.header .btm .navigation>ul>li>a:hover:after {
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 7px;
  background-color: red;
}

.header .btm .navigation>ul>li>a.last_view:hover:after {
  display: none;
}

.header .btm .navigation>ul>li>a.special {
  padding: 30px 15px 30px 15px;
  margin-left: 90px
}

.header .btm .navigation>ul>li>a.special span {
  display: inline-block;
  padding: 8px 30px;
  background-color: #5870a9;
  font-size: 17px;
  font-weight: bold;
  border-radius: 30px;
  line-height: 20px;
  color: #dcffff;
}

.header .btm .navigation>ul>li>a.special .c_fff {
  color: #fff;
}

/* .header .btm .navigation > ul > li > a.special:after {bottom: 0;} */

.spe-ul {
  margin-left: 90px
}

.header .btm .navigation .service {
  position: absolute;
  top: 30px;
  right: -190px;
  color: #fff;
  font-size: 0;
  line-height: 22px;
  padding-left: 10px;
}

.header .btm .navigation .service:after {
  bottom: 0px;
  left: 10px;
}

.header .btm .navigation .service span {
  display: inline-block;
  padding: 8px 30px;
  background-color: #323b50;
  font-size: 17px;
  font-weight: bold;
  border-radius: 30px;
  line-height: 20px;
}

.header .btm .navigation>ul>li .depth2 {
  display: none;
  visibility: visible;
  position: absolute;
  left: 0;
  top: 72px;
  width: 210px;
  background-color: rgba(0, 0, 0, .8);
  padding: 15px 20px;
  z-index: 100;
}

/* depth2 */
.header .btm .navigation>ul>li .depth2>li>a {
  display: block;
  position: relative;
  width: 100%;
  padding: 7px 0;
  font-size: 17px;
  color: #fff;
  transition: all .4s;
}

/* depth2 */
.header .btm .navigation>ul>li .depth2 a:before {
  content: "";
  display: none;
  position: absolute;
  left: 0;
  top: 50%;
  width: 10px;
  height: 2px;
  background-color: #ed6364;
  transform: translateY(-50%);
}

.header .btm .navigation>ul>li .depth2>li>a:hover,
.header .btm .navigation>ul>li .depth2>li>a:focus {
  color: #f76869;
}

.header .btm .navigation>ul>li:hover>a,
.header .btm .navigation>ul>li:focus>a {
  color: #cd1719;
}

.header .btm .navigation>ul>li:hover .depth2,
.header .btm .navigation>ul>li:focus .depth2 {
  display: block;
}

.header .btm .navigation>ul>li .depth2>li:hover a,
.header .btm .navigation>ul>li .depth2>li:focus a {
  padding-left: 18px;
}

.header .btm .navigation>ul>li .depth2>li:hover a:before,
.header .btm .navigation>ul>li .depth2>li:focus a:before {
  display: inline-block;
}

.header .btm .navigation>ul>li:hover>a:after,
.header .btm .navigation>ul>li:focus>a:after {
  display: block;
}

.header .btm .mo_btn {
  display: none;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.header .btm .mo_btn:after {
  content: "\e91c";
  display: inline-block;
  font-family: xeicon;
  font-size: 40px;
}


.header .btm .navigation>ul>li:hover>a:after,
.header .btm .navigation>ul>li:focus>a:after {
  display: block;
}

.header .btm .mo_btn {
  display: none;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.header .btm .mo_btn:after {
  content: "\e91c";
  display: inline-block;
  font-family: xeicon;
  font-size: 40px;
}

.header .date {
  font-weight: 600;
  font-size: 14px;
  border-left: 2px solid #000;
  padding-left: 12px;
  color: #030000;
}

.header .vol_wrap {
  float: left;
  padding: 16px 0;
}

.search_wrap {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.search_wrap .ico {
  display: block;
  cursor: pointer;
}

.search_wrap .ico:after {
  content: "\e97a";
  display: inline-block;
  font-family: xeicon;
  font-size: 35px;
}

.search2::before {
  content: "\e97a";
  display: inline-block;
  font-family: xeicon;
  font-size: 20px;
  margin-right: 5px;
  color: #243350
}

.search_inner {
  background-color: #fff;
  border-radius: 30px;
  height: 30px
}

/* footer */
.footer {
  position: relative;
  padding: 80px 0;
  background-color: #f4f4f4;
  z-index: 20;
}

.dark_on .footer {
  background-color: unset;
}

.footer>* {
  font-size: 14px;
  color: #222;
  line-height: 1.4;
}

.footer h2 {
  position: absolute;
  left: 0;
  top: 0;
  width: 200px;
  height: 59px;
  background: url('../images/common/f_logo.png') no-repeat;
  background-size: 100%;
}

.footer h2>a {
  display: block;
  width: 100%;
  height: 100%;
}

.footer .f_text {
  padding-left: 300px;
}

.footer .f_text ul {
  position: relative;
}

.footer .f_text ul li {
  margin-bottom: 5px;
  font-size: 15px;
}

.footer .f_text li span {
  display: inline-block;
  font-weight: 600;
}

.footer .f_text li span:after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 10px;
  margin: 0 10px;
  background-color: #b0b0b0;
}

.footer .f_text li p {
  display: inline-block;
  vertical-align: top;
}

.footer .f_text .copyright {
  margin-top: 10px;
  font-size: 15px;
  color: #838383;
  line-height: 1.3;
}

.footer .f_sns {
  position: absolute;
  right: 0;
  top: 0;
}

.footer .f_sns ul {
  font-size: 0;
}

.footer .f_sns li {
  display: inline-block;
  width: 54px;
  height: 54px;
  margin-left: 15px;
}

.footer .f_sns li:first-child {
  margin-left: 0;
}

.footer .f_sns li a {
  display: block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
}

.footer .f_sns li.f_sns01 a {
  background-image: url('../images/common/f_sns01.png');
}

.footer .f_sns li.f_sns02 a {
  background-image: url('../images/common/f_sns02.png');
}

.footer .f_sns li.f_sns03 a {
  background-image: url('../images/common/f_sns03.png');
}

.footer .f_sns li.f_sns04 a {
  background-image: url('../images/common/f_sns04.png');
}

.footer .f_sns li.f_sns05 a {
  background-image: url('../images/common/f_sns05.png');
}

.dark_on .footer .f_sns li.f_sns01 a {
  background-image: url('../images/common/f_sns01_w.png');
}
.dark_on .footer .f_sns li.f_sns02 a {
  background-image: url('../images/common/f_sns02_w.png');
}
.dark_on .footer .f_sns li.f_sns03 a {
  background-image: url('../images/common/f_sns03_w.png');
}
.dark_on .footer .f_sns li.f_sns04 a {
  background-image: url('../images/common/f_sns04_w.png');
}
.dark_on .footer .f_sns li.f_sns05 a {
  background-image: url('../images/common/f_sns05_w.png');
}

.footnote {
  font-size: 14px
}

.wMain .quickMenu {
  margin-top: 980px;
}

.wSub .quickMenu {
  margin-top: 355px;
}

.img_tit {
  font-size: 18px;
  font-weight: bold;
  text-align: left
}

/* quickMenu */
.quickMenu {
  position: absolute;
  top: 28px;
  right: 50%;
  width: 105px;
  margin-right: -750px;
  z-index: 101;
}

.quickMenu.fixed {
  position: fixed;
  top: 158px;
  margin-top: 15px;
}

.quickMenu ul {
  padding: 10px 0 20px;
  border: 1px solid #c2c2c2;
  border-radius: 50px;
  background-color: #fff;
}

.quickMenu ul li {
  width: 80%;
  margin: 0 auto !important;
  text-align: center;
}

.quickMenu ul li a {
  display: inline-block;
  width: 100%;
  margin: 10px 0;
  padding-top: 54px;
  background-repeat: no-repeat;
  background-position: top center;

  font-size: 14px;
  text-align: center;
  color: #333;
  line-height: 1.2;
}

.quickMenu ul li.q1 a {
  background-image: url('../image/common/quick_1.png');
  background-size: 39px 39px;
}

.quickMenu ul li.q2 a {
  background-image: url('../image/common/quick_2.png');
  background-size: 48px 39px;
}

.quickMenu ul li.q3 a {
  background-image: url('../image/common/quick_3.png');
  background-size: 29px 39px;
}

.quickMenu ul li.q4 a {
  background-image: url('../image/common/quick_4.png');
  background-size: 27px 40px;
}

.quickMenu .top_btn {
  display: block;
  width: 34px;
  height: 34px;
  margin: -17px auto 0;
  background-image: url('../image/common/quick_top.png');
  text-indent: -9999px;
  text-align: center;
}

.mo_links {
  display: none;
}

.mo_util {
  opacity: 0;
  display: none;
}

/* common */
.mhid {
  display: block;
}

.visual_mhid {
  display: inline-block;
}

.mshow {
  display: none;
}

.visual_mshow {
  display: none;
}

.mhid_960 {
  display: block;
}

.mshow_960 {
  display: none;
}

#btn_top {
  visibility: hidden;
  position: fixed;
  bottom: 66px;
  right: 15px;
  z-index: 200;
  cursor: pointer;
  visibility: visible;
  opacity: 0;
  transition: visibility 0s linear 0s, opacity 300ms;
}

#btn_top.btn_top_visible {
  visibility: visible;
  opacity: 1;
  transition: visibility 0s linear 0s, opacity 300ms;
}

#btn_top i {
  overflow: hidden;
  position: fixed;
  right: .5rem;
  bottom: 0px;
  z-index: 1000;
  width: 48px;
  height: 48px;
  background-color: #333;
  font-size: 24px;
  line-height: 48px;
  color: #fff;
  text-align: center;
  opacity: 0.6;
  filter: alpha(opacity=80);
}

#btn_top i:hover {
  background-color: #BFD307;
  color: #fff;
  text-decoration: none;
  opacity: 1;
  filter: alpha(opacity=100);
}

/* aside {
	visibility: hidden;
	opacity: 0;
	transition: visibility 0s linear 0s, opacity 300ms;
} */
aside.on {
  visibility: visible;
  opacity: 1;
  transition: visibility 0s linear 0s, opacity 300ms;
}




@media screen and (max-width: 1280px) {

  /*     .container {padding: 0 2%; } */
  .search_wrap {
    right: 20px;
  }

  .footer {
    padding: 40px 20px 40px;
  }

  .header .btm .navigation>ul>li>a {
    margin: 0 5px;
  }

  .header .btm .navigation>ul>li .depth2 {
    left: 5px;
  }

  .header .btm .navigation>ul>li.service span {
    font-size: 16px;
  }

  .header .btm .navigation>ul>li.service>a:after {
    bottom: 2px;
    left: 0;
  }
}

@media screen and (max-width: 1182px) {
  .container {
    padding: 0 40px;
  }

  .quickMenu {
    display: none;
  }

  /* 모바일 퀵메뉴 링크 */
  .mo_links {
    display: block;
    margin: 20px 0;
    font-size: 0;
  }

  .mo_links a {
    display: inline-block;
    width: 33.3333%;
    margin: 10px 0;
    padding-top: 70px;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 60px 60px;
    font-size: 14px;
    text-align: center;
    color: #333;
    line-height: 1.2;
  }

  .mo_links .link1 {
    background-image: url('../image/common/quick_1.png');
  }

  .mo_links .link2 {
    background-image: url('../image/common/quick_2.png');
  }

  .mo_links .link3 {
    background-image: url('../image/common/quick_3.png');
  }

  .mo_links .link4 {
    background-image: url('../image/common/quick_4.png');
  }
}

@media screen and (max-width: 1024px) {
  .header__tit .logo_stxt {
    display: none;
  }

  .headmenu .header__util {
    /* display: none; */
    opacity: 0;
  }

  .container {
    width: 100%;
  }

  .gnb__list .gnb__item>a {
    font-size: 25px;
  }

  .gnb .menu .gnb__list .gnb__depth-item a {
    font-size: 18px;
  }

  .gnb .menu .gnb__list .gnb__depth-item {
    margin-top: 0px;
    padding: 20px;
    border-bottom: rgba(255, 255, 255, .5) 1px solid;
  }

  .header .btm .navigation>ul>li>a.special {
    margin-left: 5px
  }

  .header .btm .navigation {
    /* display: none; */
    left: 0;
    right: auto;
    width: 100%;
  }

  .submenu ul li>a {
    color: #fff;
  }

  .header .btm h1 {
    width: 116px;
    /* height: 40px; */
    margin: 0 auto;
    background-size: 100% auto;
    float: none;
  }

  .header .btm .mo_btn {
    display: block;
  }

  .pc_gnb>ul>li {
    float: none;
    text-align: left;
    width: 100%;
  }

  .pc_gnb>ul>li>a {
    color: #fff;
    float: none;
  }

  .mobile .header .btm .mo_btn:after {
    content: "\e921";
  }

  .mobile .pc_gnb>ul>li {
    display: block;
    width: 100%;
    float: none;
    text-align: left;
  }

  .mobile .header .btm .navigation>ul>li>a {
    padding: 10px;
    color: #fff;
  }

  .mobile .header .btm .navigation>ul>li.service>a {
    padding: 10px;
    margin: 0 5px;
    color: #fff;
  }

  .mobile .header .btm .navigation>ul>li.service span {
    display: block;
    padding: 0;
    background-color: transparent;
    border-radius: 0;
    font-size: 20px;
  }

  .mobile .header .btm .navigation>ul>li:hover .depth2 {
    display: block;
  }

  .mobile .header .btm .navigation>ul>li {
    float: none;
    width: 100%;
  }

  .mobile .header .btm .navigation>ul>li:hover>a {
    color: #f93b3d;
  }

  .mobile .header .btm .navigation>ul>li:hover>a:after,
  .mobile .header .btm .navigation>ul>li:focus>a:after {
    display: none;
  }

  .mobile .header .btm .navigation>ul>li .depth2 {
    display: none;
    position: relative;
    left: 20px;
    right: 20px;
    top: 0;
    width: auto;
    background-color: transparent;
    padding: 5px 20px;
  }

  /* depth2 */
  .mobile .header .btm .navigation>ul>li:hover .depth2 {
    display: none;
  }

  /* depth2 */
  .mobile .header .btm .navigation>ul>li .depth2>li>a {
    display: block;
    position: relative;
    width: 100%;
    padding: 7px 0 7px 20px;
    font-size: 17px;
    color: #fff;
  }

  /* depth2 */
  .mobile .header .btm .navigation>ul>li .depth2 a:before {
    display: block;
    background-color: #fff;
  }

  .mobile .header .btm .navigation>ul>li .depth2 li:hover a:before {
    background-color: #f76869;
  }

  .mobile .header .btm .navigation>ul>li .depth2>li>a:hover,
  .mobile .header .btm .navigation>ul>li .depth2>li>a:focus {
    color: #f76869;
  }


  .header .btm .navigation .service {
    display: block;
    position: static;
    top: 20px;
    right: auto;
    padding: 10px 10px 30px;
    margin: 0 5px;

  }

  .header .btm .navigation>ul>li>a.special span,
  .header .btm .navigation .service span {
    display: block;
    padding: 0;
    background-color: transparent;
    border-radius: 0;
    font-size: 20px;
    line-height: 100%;
  }

  .header .btm {
    padding: 15px 0;
  }

  .header .vol_wrap {
    display: none;
  }

  .navigation .vol_wrap {
    display: block;
  }

  .pc_gnb {
    float: none;
    width: 100%;
    margin-right: 0;
    background: none;
    display: none;
  }
}

@media screen and (max-width: 960px) {

  main {
    padding-top: 17.6vw;
  }

  .footer h2 {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 45px;
    background-size: 180px 45px;
  }

  .footer .f_text {
    padding-left: 0;
    text-align: center;
    padding-top: 100px;
  }

  .footer .f_sns {
    width: 100%;
    left: 50%;
    top: 80px;
    transform: translateX(-50%);
    text-align: center;
  }

  .mhid_960 {
    display: none;
  }

  .mshow_960 {
    display: block;
  }
}

@media screen and (max-width: 768px) {

  .banner_pc {
    display: none;
  }

  .banner_mo {
    display: block;
  }

  .mhid {
    display: none;
  }

  .visual_mhid {
    display: none;
  }

  .mshow {
    display: block;
  }

  .visual_mshow {
    display: inline-block;
  }

  .headmenu.active .mo_util {
    opacity: 1;
  }

  .mo_util .logo__txt {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 500;
  }

  .headmenu.active .mo_util .header__util {
    display: block;
  }

  .headmenu.active .mo_util .header__util {
    opacity: 1;
    position: fixed;
    bottom: 2%;
    width: 100%;
    text-align: center;
    z-index: 100;
    transition: transform .5s;
    transition: opacity 1s ease-in-out;
  }

  .gnb__list .gnb__item {
    width: 90%;
    margin: 0 auto;
  }

  .gnb .menu .gnb__list {
    display: block;
    gap: 25px;
    margin-bottom: 100px;
  }

  #btn_top {
    display: none;
  }

  #gnb {
    padding: 100px 0 35px;
  }

  .header__util .size {
    display: none;
  }

}

@media screen and (max-width: 640px) {
  .header .btm h1 {
    width: 90px;
    height: 30px;
  }

  .header .btm .mo_btn {
    left: 10px;
  }

  .header .btm .mo_btn:after,
  .search_wrap .ico:after {
    font-size: 28px;
  }

  .search_wrap {
    right: 10px;
  }

  .footer .f_text li span:after {
    margin: 0 5px;
  }
}

@media screen and (max-width: 475px) {
  .header__tit .header__tit-txt img {
    width: auto;
    height: 40px;
    vertical-align: top;
  }

  .headmenu .nav_btn {
    right: 0px;
    width: 70px;
    height: 70px;
  }

  .footer>* {
    font-size: 12px;
  }

  .header {
    align-items: baseline;
  }
}

@media screen and (max-width: 320px) {

  #gnb {
    padding: 70px 0 0;
  }

  .gnb__list .gnb__item>a {
    font-size: 20px;
  }

  .gnb .menu .gnb__list .gnb__depth-item {
    margin-top: 7px;
  }

  .gnb .menu .gnb__list .gnb__depth-item a {
    font-size: 16px;
  }

  .header__util>a {
    font-size: 14px;
    padding: 3px 6px;
  }

  .mo_util span img {
    height: 29px;
  }

  .header__util>a+a {
    margin-left: 0;
  }
}