#header .inner {
  position: fixed;
  top: 0;
  left: 0;
  width: 254px;
  height: 100vh;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  background: #212121;
}

#header::after {
  content: "";
  display: block;
  width: 254px;
  height: 100vh;
  background: #212121;
  position: absolute;
  left: 0;
  top: 0;
}

.h-logo-wrap {
  width: 100%;
  height: 80px;
  border-bottom: 1px solid #383838;
}

.h-logo-wrap a {
  width: 100%;
  height: 100%;
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 30px;
}

.h-logo-wrap a mark {
  font-size: 26px;
  font-weight: 400;
  color: #ffffff;
  margin-left: 8px;
}

.h-button-wrap button {
  width: 175px;
  height: 100%;
  background: #000000;
  font-size: 16px;
  font-weight: 700;
  color: #747474;
}

.h-title-wrap {
  display: flex;
  align-items: center;
  padding: 18px 30px;
}

.h-title-wrap span {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.h-title-wrap h2::after {
  content: "";
  background: #fff;
  width: 4px;
  height: 4px;
  display: inline-block;
  margin-left: 8px;
  border-radius: 50%;
}

.h-menu-wrap {
  display: flex;
  flex-direction: column;
  margin-bottom: auto;
}

.h-menu-wrap a {
  word-wrap: 100%;
  height: 65px;
}

.h-menu-wrap a button {
  font-size: 18px;
  font-weight: 700;
  color: #484848;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0 30px;
}

.h-menu-wrap a button::after {
  content: "";
  background: #363636;
  width: 4px;
  height: 4px;
  display: inline-block;
  margin-left: auto;
  margin-top: 4px;
  border-radius: 50%;
}

.app .h-menu-wrap a:nth-child(1) button {
  color: #fff;
}
.app .h-menu-wrap a:nth-child(1) button::after {
  background: #3988ff;
}
.web .h-menu-wrap a:nth-child(2) button {
  color: #fff;
}
.web .h-menu-wrap a:nth-child(2) button::after {
  background: #3988ff;
}
.brand .h-menu-wrap a:nth-child(3) button {
  color: #fff;
}
.brand .h-menu-wrap a:nth-child(3) button::after {
  background: #3988ff;
}
.interaction .h-menu-wrap a:nth-child(4) button {
  color: #fff;
}
.interaction .h-menu-wrap a:nth-child(4) button::after {
  background: #3988ff;
}

.h-button-wrap {
  margin-bottom: 20px;
}

.h-button-wrap a {
  width: calc(100% - 40px);
  margin: 0 auto;
  display: block;
  pointer-events: none;
}

.h-button-wrap a button::after {
  content: "Coming Soon!";
  font-size: 11px;
  font-weight: 700;
  color: #f25d64;
  height: 30px;
  width: fit-content;
  background: #2b2b2b;
  position: absolute;
  border-radius: 500px;
  display: flex;
  padding: 0 13px;
  align-items: center;
  justify-content: center;
  top: -15px;
  right: -10px;
  z-index: 11;
}

.h-button-wrap a button::before {
  content: "";
  background: #080808;
  width: 100%;
  height: 178px;
  border-radius: 10px;
  opacity: 0.4;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

.h-button-wrap a button {
  width: 100%;
  padding: 17px 26px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 10px;
  position: relative;
}

.h-button-wrap a button p {
  font-size: 28px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 50px;
  text-align: left;
  width: 100%;
  display: flex;
  align-items: flex-start;
}

.h-button-wrap a button p::after {
  content: "";
  display: flex;
  width: 16px;
  height: 16px;
  background-image: url(../images/icon/link.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: auto;
  margin-top: 8px;
}

.h-button-wrap a button span {
  font-size: 16px;
  font-weight: 800;
  color: #5d5d5d;
}

.h-button-wrap a button span br {
  display: none;
}

@media (max-width: 1400px) {
  #header .inner {
    width: 184px;
  }
  #header::after {
    width: 184px;
  }

  .h-logo-wrap {
    height: 95px;
  }

  .h-logo-wrap a {
    flex-direction: column;
  }

  .h-logo-wrap a mark {
    margin: 0;
  }

  .h-button-wrap {
    margin-bottom: 10px;
  }
  .h-button-wrap a {
    width: calc(100% - 20px);
  }

  .h-button-wrap a button {
    padding: 15px 20px 20px;
    position: relative;
  }

  .h-button-wrap a button p::after {
    position: absolute;
    right: 15px;
    top: 15px;
    width: 12px;
    height: 12px;
    margin: 0;
  }

  .h-button-wrap a button p {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
  }

  .h-button-wrap a button span {
    font-size: 14px;
    line-height: 1.3;
    text-align: left;
  }

  .h-button-wrap a button span br {
    display: block;
  }
}
@media (max-width: 1200px) {
  #header .inner {
    left: -185px;
  }
}
