@charset "UTF-8";

.p-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 100;
}
.p-header::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 15px;
  width: calc(100% - 31px);
  height: 1px;
  background: url("../images/header-line.svg") center/cover repeat;
}
.p-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #0B0B0B;
  z-index: -1;
}

.p-header__logo {
  position: absolute;
  top: 16.75px;
  left: 15px;
  width: 274px;
  height: 36.5px;
}

.p-header__menu {
  display: none;
  margin-top: 23px;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}
@media screen and (min-width:1024px) {
  .p-header__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: 72px;
  }
}
@media screen and (min-width:1200px) {
  .p-header__menu {
    margin-left: 0;
  }
}

.p-header__menu-text {
  font-size: 14px;
  line-height: 1.4285714286;
  letter-spacing: 1.12px;
  font-weight: 600;
}