header {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  z-index: 99;
  width: 100%;
  height: 6.5rem;
  position: fixed;
  top: 0;
  left: 0;
}
header .logo_wrap {
  width: 9.5rem;
}
header .logo_wrap a {
  display: block;
}
header .logo_wrap a img {
  width: 100%;
}
header .menu {
  width: 5rem;
  height: 100%;
  background: url("../img/allmenu.png") no-repeat center center / 2rem;
  position: absolute;
  top: 0;
  left: 0;
  text-indent: -9999px;
}
header .btn_wrap {
  display: flex;
  align-items: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1rem;
  gap: .2rem;
}
header .btn_wrap .compete {
  display: block;
  font-size: 1.4rem;
  background: #12ad75;
  padding: .7rem;
  color: #fff;
  border-radius: .4rem;
  letter-spacing: -.07rem;
}
header .btn_wrap .map {
  width: 3rem;
  height: 3rem;
  background: url("../img/map.png") no-repeat center center / 1.7rem;
  text-indent: -9999px;
  position: relative;
  top: -1px;
}
header > h1 {
  font-size: 2rem;
  font-weight: 600;
}
header > .back {
  text-indent: -9999px;
  position: absolute;
  top: 0;
  left: 0;
  width: 5rem;
  height: 100%;
  background: url("../img/prev.png") no-repeat center / 1.2rem;
}

nav {
  position: fixed;
  top: 6.5rem;
  width: 100%;
  padding: 1rem 1.5rem 0;
  background: #fff;
  z-index: 99;
}
nav ul {
  display: flex;
  justify-content: space-between;
}
nav ul li {
  text-align: center;
}
nav ul li a {
  display: block;
  font-size: 1.9rem;
  font-weight: 600;
  padding: 0 .5rem .7rem .5rem;
  color: #999;
}
nav ul li.active a {
  font-weight: 800;
  border-bottom: 3px solid #333;
  color: #333;
}

main {
  margin-top: 6.5rem;
}

/* HAMBURGER MENU BAR */
#menubar {
  width: 80%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: -100%;
  background: #fff;
  z-index: 999;
  transition: left 0.5s;
}
.bg {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 990;
}
#menubar header {
  width: 100%;
  height: 6.5rem;
  background: linear-gradient(to right, #228c9f, #44a788);
  position: relative;
}
#menubar header .close {
  width: 6rem;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background: url("../img/close.png") no-repeat center / 2rem;
  text-indent: -9999px;
}
#menubar .list_wrap {
  display: flex;
  padding: 3rem 2rem;
}
#menubar .list_wrap .gnb > li {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 5rem;
}
#menubar .list_wrap .gnb > li > a {
  font-size: inherit;
  font-weight: inherit;
  display: flex;
  align-items: center;
}
#menubar .list_wrap .gnb > li > a img {
  width: 2.8rem;
  margin-left: 1.3rem;
}
#menubar .list_wrap .gnb .lnb {
  margin-top: 2rem;
}
#menubar .list_wrap .gnb .lnb li:not(:last-child) {
  margin-bottom: 1.2rem;
}
#menubar .list_wrap .gnb .lnb li a {
  font-size: 2rem;
  color: #777;
}

/* MOVE TOP */
#top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 4.5rem;
  height: 4.5rem;
  background: url("../img/top.png") no-repeat center / contain;
  opacity: 0;
  z-index: 99;
  transition: all 0.5s;
}