/* parts-libraryページ ~ */
.header-content-wrapper {
  display: flex;
  width: 100%;
}

.header-content-wrapper::before {
  content: '';
  width: 280px;
  flex-shrink: 0;
}

.header-content-wrapper .second-nav {
  flex-grow: 1;
  padding: 20px 30px;
}

.page-parts-library .p-header__logo {
  display: none;
}

/* parts-libraryページ */
.p-header {
  position: absolute;
  top: 15px;
  background-color: transparent;
  width: 100%;
  opacity: 1;
  z-index: 100;
}

/* index.phpに記載 */
.header-inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 6px 35px;
}

/* SEO対策目的 header.phpに記載 */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* 一番上のロゴ */
.p-header__logo {
  position: absolute;
  left: 35px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.p-header__logo a {
  display: inline-block;
  line-height: 0;
}

.p-header__logo img {
  width: clamp(85px, 6vw, 120px);
  height: auto;
  display: block;
}


@media screen and (max-width: 1024px) {
  .p-header {
    top: 35px;
  }
}

@media screen and (max-width: 480px) {
  .p-header {
    top: 25px;
  }

  .header-inner {
    padding: 4px 25px;
  }
}