.pp-header {
  display: flex;
  height: 50px;
  align-items: center;
  border-bottom: 1px solid var(--line-color, #dadada);
}
.pp-header .pp-header-logo {
  flex-grow: 1;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.pp-header .pp-header-action-group {
  position: relative;
}
.pp-header .pp-header-menu {
  position: absolute;
  display: none;
  z-index: 99999;
  top: 50px;
  right: 0;
  min-width: 300px;
  background: rgba(0, 0, 0, 0.85);
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  border-radius: 5px;
}
.pp-header .pp-header-logo a {
  padding: 0 16px;
  height: 100%;
  display: flex;
  align-items: center;
}
.pp-header .pp-header-logo img {
  height: 20px;
}
.pp-header .pp-header-trigger {
  height: auto !important;
  z-index: auto !important;
}
.pp-header .pp-header-trigger a {
  position: relative !important;
  top: unset !important;
  left: unset !important;
  width: 50px !important;
  height: 50px !important;
  transition: all .4s;
  background-image: none;
  background-color: transparent !important;
  padding: 10px;
}
.pp-header .pp-header-trigger a span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 49%;
  height: 2px;
  background-color: #d60d24;
  border-radius: 2px;
  display: inline-block;
  transition: all .4s;
}
.pp-header .pp-header-trigger a span:first-of-type {
  top: 17px;
}
.pp-header .pp-header-trigger a span:nth-of-type(2) {
  top: 25px;
}
.pp-header .pp-header-trigger a span:nth-of-type(3) {
  bottom: 15px;
}
.pp-header .pp-header-menu#box {
  top: 50px;
  left: 0;
  width: 100% !important;
  background-color: #292929;
}
.pp-header .pp-header-menu .nav-item {
  display: block;
  background-image: none;
  height: 45px;
  padding: 0 10px;
  line-height: 45px;
  margin: 0;
  border-top: 1px solid #6a6a6a;
  border-bottom: none;
  text-transform: none;
  font-size: 13px;
  font-weight: 400;
  font-family: 'Lato', sans-serif;
  color: #FFFFFF;
}
.pp-header .pp-header-menu .nav-item i {
  width: 15px;
  margin-right: 0.75em;
}
.pp-header .pp-header-menu .pp-header-pulldown-menu {
  display: none;
  background-color: #5e5e5e;
}
.pp-header .pp-header-menu .pp-header-pulldown-menu .nav-item {
  border-top: 1px solid #595959;
}
.sub-header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sub-header-wrap > .nav-header {
  display: inline;
  margin-left: 16px;
}

.sub-header-wrap > .nav-header > .nav-title {
  display: inline-block;
  font-size: 19px;
  line-height: 19px;
  color: #000000;
  white-space: nowrap;
}

.sub-header-wrap > .nav-btn {
  display: none;
  margin-right: 19px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  margin-right: 19px;
}

.nav-links .order-block {
  display: none !important;
}

.nav-links .menu-icon {
  display: none;
}

.sub-header-wrap > .nav-links .nav-links-item-group {
  padding-left: 22px;
  border-bottom: 1px solid #DADADA;
}
.sub-header-wrap > .nav-links .nav-links-item-group .nav-links-item {
  border-bottom: 1px dashed #DADADA;
}
.sub-header-wrap > .nav-links .nav-links-item-group .nav-links-item.no-border {
  border-bottom: none;
}

.sub-header-wrap > .nav-links .nav-links-item > a {
  display: inline-block;
  padding: 11px 5px;
  text-decoration: none;
  color: #000000;
  font-size: 15px;
  font-weight: bold;
}

.sub-header-wrap > .nav-links > .in-sp {
  display: none;
}

@media (min-width: 767px) {
  .sub-header-wrap > .nav-links .nav-links-item {
      position: relative;
  }

  .sub-header-wrap > .nav-links > .nav-links-item-active a {
      color: #D60D24;
  }

  .sub-header-wrap > .nav-links .nav-links-item::after {
      content: '';
      height: 60%;
      width: 1px;
      position: absolute;
      left: 0;
      top: 10px;
      background-color: #D5D5D5;
  }

  .sub-header-wrap > .nav-links > .nav-links-item.no-border::after {
      width: 0;
  }
}

.sub-header-wrap > #header-nav-check {
  display: none;
}

@media (max-width: 767px) {
  .sub-header-wrap > .nav-btn {
      display: inline-block;
      /*position: absolute;*/
      right: 0;
      top: 0;
  }
  .sub-header-wrap > .nav-btn > label {
      display: inline-block;
      width: 50px;
      height: 50px;
      padding: 13px;
  }
  .sub-header-wrap > .nav-btn > label:hover, .nav #header-nav-check:checked ~ .nav-btn > label {
      background-color: rgba(0, 0, 0, 0.3);
  }
  .sub-header-wrap > .nav-btn > label > span {
      display: block;
      width: 25px;
      height: 10px;
      border-top: 2px solid #eee;
  }
  .sub-header-wrap > .nav-links {
      /*display: flex;*/
      float: right;
      font-size: 18px;
      z-index: 999999;
      position: absolute;
      display: block;
      width: 100%;
      background-color: #FFFFFF;
      height: 0;
      transition: all 0.3s ease-in;
      overflow-y: hidden;
      top: 60px;
      left: 0;
      padding-left: 17px;
      padding-right: 17px;

      .menu-icon {
          display: block;
      }
  }

  .sub-header-wrap > .nav-links .order-block {
      display: flex !important;
  }

  .sub-header-wrap > .nav-links .menu-icon {
      display: block !important;
  }

  .sub-header-wrap .order-block {
      margin: 11px 0;
  }

  .sub-header-wrap > .nav-links .nav-links-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid #DADADA;
      padding: 5px 0 5px 0;
  }

  .sub-header-wrap > .nav-links .nav-links-item > img {
      width: 16px;
  }
  .sub-header-wrap > .nav-links .nav-links-item > a {
      display: block;
      width: 100%;
      color: #000;
      font-size: 16px;
      font-style: normal;
      font-weight: 500;
      line-height: normal;
  }
  .sub-header-wrap > #header-nav-check:not(:checked) ~ .nav-links {
      height: 0;
  }
  .sub-header-wrap > #header-nav-check:checked ~ .nav-links {
      height: calc(100vh - 110px);
      overflow-y: auto;
  }
}
.group-icon {
  display: flex;
  align-items: center;
  gap: 9px;
}

.group-icon .item {
  text-align: center;
  font-size: 11px;
}

.group-icon .item label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  font-size: 9px;
  line-height: 12px;
}
.group-icon .item label img {
  width: 19px;
  height: 19px;
}

.group-icon .item a, .group-icon .item a:hover, .group-icon .item a:active, .group-icon .item a:visited {
  text-decoration: none;
  color: #000000;
}

.pp-header-action-group {
  position: unset;
  display: flex;
  gap: 1px;
  justify-content: center;
  align-items: center;
  height: 100%;
  margin-right: 19px;
}
.pp-header-action-group .action-btn {
  border: none;
  cursor: pointer;
  padding: 0 4px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  background-color: transparent;
  font-size: 13px;
  line-height: 13px;
}
.pp-header-action-group a.action-btn {
  color: #292929;
  text-decoration: none;
}

.sp-f-none {
  display: flex !important;
}
.sp-none {
  display: block !important;
}
.pc-f-none {
  display: none !important;
}
.pc-none {
  display: none !important;
}

@media screen and (max-width: 767px) {
  .sp-f-none {
    display: none !important;
  }
  .sp-none {
    display: none !important;
  }
  .pc-f-none {
    display: flex !important;
  }
  .pc-none {
    display: block !important;
  }
}
