html {
  scroll-padding-top: calc(12.5rem + 10rem) !important;
}
.header-normal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 12.5rem;
  padding: 0 10.2rem;
  z-index: 9999;
  background-color: #fff;
}
.header-normal__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.header-normal__logo {
  width: 35.7rem;
}
.header-normal__nav {
  margin-right: 42rem;
}
.header-normal__ul {
  display: flex;
  gap: 7rem;
}
.header-normal__link {
  font-size: 2.4rem;
  color: var(--accent);
}
.header-normal__float {
  position: absolute;
  top: 1.8rem;
  right: 2.57rem;
  transform: translate(0);
  width: 38.533rem;
  /* height: 36.688rem; */
  height: auto;
}
.header-normal__hamburger {
  display: none;
}

/* sp */
#wpadminbar {
  display: none;
}
@media screen and (max-width: 768px) {
  .header-normal__nav {
    display: none;
  }
  .header-normal {
    height: 60px;
    padding: 0 8px;
  }
  .header-normal__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
  }
  .header-normal__logo {
    width: 180px;
  }
  .header-normal__hamburger {
    display: block;
    width: 24px;
    height: 18px;
    position: relative;
    cursor: pointer;
  }
  .header-normal__hamburger span {
    position: absolute;
    height: 3px;
    width: 100%;
    background-color: var(--accent);
    border-radius: 2px;
    left: 0;
    transition: 0.3s;
  }
  .header-normal__hamburger span:nth-child(1) {
    top: 0;
  }
  .header-normal__hamburger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
  }
  .header-normal__hamburger span:nth-child(3) {
    bottom: 0;
  }
  .header-normal__hamburger.is-active span:nth-child(1) {
    transform: rotate(45deg);
    top: 50%;
  }
  .header-normal__hamburger.is-active span:nth-child(2) {
    opacity: 0;
  }
  .header-normal__hamburger.is-active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 50%;
  }
  .header-normal__nav.is-active {
    display: block;
  }
  .header-normal__nav {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background-color: var(--color-white);
    padding: 40px 24px 77px;
    margin-right: 0;
    overflow: hidden;
    z-index: 9999;
  }
  .header-normal__nav::after {
    content: "";
    position: absolute;
    bottom: -36.2px;
    right: -57px;
    width: 225px;
    height: 214.22px;
    background-image: url(../images/bg_tomato.svg);
    background-size: contain;
    background-repeat: no-repeat;
  }
  .header-normal__ul {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }
  .header-normal__li {
    border-bottom: 1px solid #dc5e5f;
  }
  .header-normal__link {
    display: block;
    position: relative;
    padding-left: 14px;
    font-size: 14px;
    color: var(--accent);
  }
  .header-normal__link::after {
    content: ">";
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: var(--accent);
  }
  .header-normal__float {
    top: 64px;
    right: 2.57rem;
    z-index: 999;
    width: 90px;
    height: auto;
  }
}
