.header_inner {
  position: relative;
  z-index: 1001;
  background-color: #fff;
  border-bottom: 1px solid #f3f3f5;
}

.header_inner.fixed {
  position: fixed;
  top: 0;
  width: 100%;
}

.header_top {
  padding: 0 16px;
  position: relative;
  height: 64px;
}

.logo {
  height: 17px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.logo a {
  display: block;
  cursor: pointer;
}

.btn_aside {
  width: 36px;
  height: 36px;
  background: url("../images/common/ico_aside.svg") no-repeat 0 0/100% 100%;
}

.btn_alarm {
  width: 36px;
  height: 36px;
  background: url("../images/common/ico_alarm.svg") no-repeat 0 0/100% 100%;
}

.header_top_mobile {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header_typeA .gnb_mobile {
  display: none;
}

.gnb_mobile {
  border-top: 1px solid #f3f3f5;
  border-bottom: 1px solid #f3f3f5;
}

.gnb_mobile_list {
  padding: 0 16px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  gap: 10px;
}

.gnb_mobile_list li {
  height: 100%;
  position: relative;
}

.gnb_mobile_list a {
  display: flex;
  align-items: center;
  padding: 0 5px;
  height: 100%;
  font-size: 16px;
  color: #cbcbd2;
  font-weight: 500;
}

.gnb_mobile_list .active:after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #0a0a0c;
}

.gnb_mobile_list .active a {
  font-weight: 700;
  color: #0a0a0c;
}

.aside_menu {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background: rgba(10, 10, 12, 0.64);
}

.aside_inner {
  padding: 32px 16px 0;
  width: 80%;
  height: 100vh;
  background-color: #fff;
  overflow-y: auto;
}

.aside_inner > div:first-child {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-end;
}

.mo_mypage {
  display: flex;
  align-items: center;
  gap: 8px;
}

.profile_img {
  width: 32px;
  height: 32px;
  border: 1px solid #e6e6ea;
  border-radius: 100%;
  overflow: hidden;
}

.profile_name {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 700;
  color: #0a0a0c;
}

.profile_name:after {
  content: "";
  width: 16px;
  height: 16px;
  background: url("../images/common/ico_arrow_next.svg") no-repeat 0 0/100% 100%;
}

.aside_menu .gnb {
  margin-top: 24px;
  padding-bottom: 60px;
}

.aside_menu .gnb_dep1 {
  overflow-y: auto;
}

.aside_menu .gnb_dep1 > li > a {
  display: block;
  width: 100%;
  height: 56px;
  line-height: 56px;
  font-size: 16px;
  font-weight: 700;
  color: #0a0a0c;
  padding-left: 40px;
}
.aside_menu .gnb_dep1 .menu_icon {
  position: relative;
  font-size: 19px;
  font-weight: 800;
}

.aside_menu .gnb_dep1 .menu_icon::before {
  content: "";
  display: inline-block;
  background-image: url(../images/common/big_icon2.svg);
  width: 25px;
  height: 25px;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  left: 0px;
}

.aside_menu .gnb_dep1 li:first-child a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.aside_menu .gnb_dep1 li:first-child a img {
  width: 27px;
}

.aside_menu .gnb_dep1 li:first-child .menu_icon::before {
  background-image: url(../images/common/big_icon1.svg);
  width: 20px;
  /* height: 20px; */
}

.aside_menu .gnb_dep1 .gnb_dep2_list > li:last-child a,
.aside_menu .gnb_dep1 .gnb_dep2_list > li > a::after {
  display: block;
}

.aside_menu .gnb_dep1 .gnb_dep2_list > li > a:last-child:after {
  display: none;
}

.aside_menu .gnb_dep1 .gnb_dep2_list > li:first-child {
  flex-wrap: wrap;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #0a0a0c !important;
  width: 100%;
}

.aside_menu .gnb_dep1 > li:nth-child(2) > a,
.aside_menu .gnb_dep1 .gnb_dep2_list > li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #efeff2;
  color: #0a0a0c !important;
  padding-left: 40px;
}

.aside_menu .gnb_dep1 > li:nth-child(2) > a:after,
.aside_menu .gnb_dep1 .gnb_dep2_list > li > a::after {
  content: "";
  width: 20px;
  height: 20px;
  background: url("../images/common/ico_arrow_down.svg") no-repeat 0 0/100% 100%;
}

.aside_menu .gnb_dep1 > li.active > a:after,
.aside_menu .gnb_dep1 .gnb_dep2_list li.active2 > a:after {
  transform: rotate(180deg);
}

.aside_menu .gnb_dep1 > li.active .gnb_dep2 {
  display: block;
}

.aside_menu .gnb_dep1 > li > .gnb_dep2 .active2 .gnb_dep3 {
  display: block;
}

.header_inner .mark {
  margin-left: 8px;
  display: inline-block;
  width: 48px;
  height: 22px;
  line-height: 22px;
  background: #edebff;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  color: #7064fe;
  text-align: center;
}

.aside_menu .gnb_dep1 .dot_line {
  display: flex;
  align-items: center;
}

.aside_menu .gnb_dep1 .dot {
  margin-bottom: 20px;
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: #f65858;
  border-radius: 100%;
}

.aside_menu .gnb_dep2 {
  display: none;
}

.aside_menu .gnb_dep2 li {
  width: 100%;
  height: auto;
}

.aside_menu .gnb_dep2 a {
  display: block;
  width: 100%;
  height: 46px;
  line-height: 46px;
  font-size: 16px;
  font-weight: 700;
  color: #0c0c0c;
}

.aside_menu .gnb_dep3 {
  display: none;
}

.aside_menu .gnb_dep3 li {
  width: 100%;
  height: 36px;
}

.aside_menu .gnb_dep3 a {
  display: block;
  width: 100%;
  height: 36px;
  line-height: 36px;
  font-size: 14px;
  font-weight: 300;
  color: #68687a;
  padding-left: 40px;
}

.gnb li a.gnb_active {
  color: #7064fe;
  font-weight: 700 !important;
}

.aside_menu .aside_btm {
  padding: 0 16px;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 80%;
  height: 58px;
  background-color: #fff;
}

.aside_btm_inner {
  width: 100%;
  height: 100%;
  border-top: 1px solid #efeff2;
}

.aside_btm_inner .btn_txt {
  font-size: 12px;
  color: #41414c;
  text-align: right;
}

.aise_btm_box {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}

.aise_btm_box1 {
  justify-content: flex-end;
}

.aise_btm_box2 {
  justify-content: space-between;
}

.aise_btm_box2 span {
  font-size: 12px;
  color: #8b8b9b;
}

.aise_btm_box2 .btn_join {
  width: 58px;
  height: 26px;
  line-height: 26px;
  background-color: #0a0a0c;
  border-radius: 8px;
  color: #fff;
  font-size: 12px;
}

.big_menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.big_menu {
  display: flex;
  gap: 10px;
}

.big_menu a {
  font-size: 18px;
  font-weight: 700;
  color: #0a0a0c;
  transition: 0.3s;
}

@media all and (min-width: 765px) {
  .top_banner {
    width: 100%;
    height: 52px;
    line-height: 52px;
    background-color: #343441;
  }

  .ql-editor.banner_data {
    padding: 0;
  }

  .ql-editor.banner_data img {
    width: 100%;
  }
  .logo {
    position: relative;
    height: 18px;
    top: 0;
    left: 0;
    transform: translate(0);
  }

  .onlyW {
    display: block !important;
  }

  .onlyM {
    display: none !important;
  }

  .header_top {
    padding: 0;
    height: 76px;
  }

  .header_top_inner {
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .header_left {
    display: flex;
    align-items: center;
    gap: 34px;
  }

  .gnb_pc ul {
    display: flex;
    align-items: center;
    gap: 24px;
  }

  .gnb_pc ul div {
    display: flex;
    gap: 10px;
  }

  .gnb_pc ul span {
    font-size: 15px;
    font-weight: bold;
    color: #000000;
  }

  .gnb_pc ul .gnb_dep1_wrap {
    font-size: 18px;
    font-weight: 700;
    color: #0a0a0c;
    transition: 0.3s;
  }

  .header_inner .mark {
    margin-left: 4px;
  }

  .gnb_pc .gnb_dep1_right {
    font-size: 14px;
    color: #41414c;
  }

  .gnb_pc .active a {
    color: #7064fe;
    font-weight: 700;
  }

  .gnb_pc a:hover {
    color: #7064fe;
  }

  .header_right {
    position: relative;
    display: flex !important;
    align-items: center;
    gap: 10px;
  }

  .header_right > a {
    margin-left: 14px;
  }

  .header_right > a:first-child {
    margin-left: 0;
  }

  .header_right .gnb_dep1_right {
    font-size: 14px;
    font-weight: 400;
    color: #000000;
  }

  .header_right .gnb_dep1_right.chceklist_menu {
    background: #ffe924;
    color: #000000;
    font-weight: 700;
    font-size: 12px;
    padding: 2px 10px;
    border-radius: 5px;
    font-size: 14px;
  }

  .header_right .chceklist_menu {
    background: #ffe924;
    color: #000000;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 12px;
    border-radius: 5px;
  }

  .btn_profile .btn {
    width: 42px;
    height: 42px;
    border-radius: 100%;
    overflow: hidden;
    border: none;
  }

  .btn_profile.active .profile_menu {
    display: block;
  }

  .profile_menu {
    display: none;
    padding: 8px 4px;
    position: absolute;
    right: 0;
    top: 42px;
    width: 150px;
    border: 1px solid #f3f3f3;
    border-radius: 8px;
    background-color: #fff;
  }

  .profile_menu li {
    height: 36px;
  }

  .profile_menu li a {
    display: block;
    padding: 8px;
    height: 100%;
    font-size: 14px;
    color: #0a0a0c;
  }
  .gnb_pc_depth2.depth1 .gnb_pc_depth2_inner ul:first-child {
    display: flex;
  }

  .gnb_pc_depth2.depth2 .gnb_pc_depth2_inner ul:last-child {
    display: flex;
  }

  .gnb_pc_depth2_inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
  }

  .gnb_pc_depth2 .gnb_dep2_list {
    display: none;
    align-items: center;
    gap: 14px;
    height: 56px;
  }

  .gnb_pc_depth2 .gnb_dep2_list li {
    height: 100%;
    position: relative;
  }

  .gnb_pc_depth2 .gnb_dep2_list .active:after {
    content: "";
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: #0a0a0c;
  }

  .gnb_pc_depth2 .gnb_dep2_list .active a,
  .gnb_pc_depth2 .gnb_dep2_list a:hover {
    color: #0a0a0c;
    font-weight: 700;
  }

  .gnb_pc_depth2 .gnb_dep2_list a {
    display: flex;
    align-items: center;
    padding: 0 12px;
    height: 100%;
    font-size: 16px;
    color: #cbcbd2;
    font-weight: 500;
    transition: 0.3s;
  }
}

@media (max-width: 820px) {
  .header_left {
    gap: 20px;
  }
  .gnb_pc ul {
    gap: 15px;
  }
  .gnb_pc ul div {
    gap: 5px;
  }

  .gnb_pc ul .gnb_dep1_wrap {
    font-size: 1rem;
  }
}

@media (max-width: 765px) {
  .logo {
    left: 40px;
    top: 50%;
    transform: translateY(-50%) scale(0.8);
    letter-spacing: -1.7px !important;
  }

  .logo a,
  .logo img {
    letter-spacing: -1.7px !important;
  }
  .big_menu {
    display: inline-flex;
    position: absolute;
    top: 50%;
    left: 150px;
    transform: translateY(-50%);
    gap: 5px;
  }
  .big_menu a {
    font-size: 0.85rem;
    white-space: nowrap;
  }
  .chceklist_menu {
    padding: 4px 8px !important;
    border-radius: 4px;
  }
}

@media (max-width: 575px) {
  .gnb_mobile_list a {
    font-size: 0.9rem;
  }
}

@media (max-width: 300px) {
  .logo {
    left: 90px;
  }
  .big_menu {
    right: 3%;
  }
  .big_menu a {
    font-size: 0.8rem;
  }
}

@media (max-width: 380px) {
  .btn_alarm {
    display: none;
  }
}
