@charset "UTF-8";

.p-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 78px;
  z-index: 100;
}
.p-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #ffffff;
  z-index: -1;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.p-header.is-active::after {
  opacity: 0.92;
}

.p-header__logo {
  position: absolute;
  top: 24px;
  left: 20px;
}
.p-header__logo .text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(15px, 2.0833333333vw, 16px);
  line-height: 1.375;
  letter-spacing: 0.48px;
  font-weight: 500;
  text-align: center;
  background-image: -webkit-gradient(linear, left top, right top, from(#56b2c7), to(#56b2c7)), -webkit-gradient(linear, left top, right top, from(#2c2c2c), to(#2c2c2c));
  background-image: linear-gradient(to right, #56b2c7, #56b2c7), linear-gradient(to right, #2c2c2c, #2c2c2c);
  background-position: 100% 0, 0 0;
  background-size: 0% 100%, 100% 100%;
  background-repeat: no-repeat;
  /* テキストの形で切り抜く */
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-transition: background-size 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: background-size 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
@media (any-hover: hover) {
  .p-header__logo:hover .text {
    background-position: 0 0, 0 0;
    background-size: 100% 100%, 100% 100%;
  }
}
.p-header__menu {
  display: none;
}
@media screen and (min-width:1024px) {
  .p-header__menu {
    position: absolute;
    top: 15px;
    right: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: clamp(32px, 3.3333333333vw, 40px);
  }
}

.p-header__menu-link {
  font-size: 13px;
  line-height: 1.3846153846;
  letter-spacing: 0.39px;
  font-weight: 500;
}

.p-header__btn {
  padding-block: 15px;
  padding-inline: 40px;
  color: #ffffff;
  font-size: 13px;
  line-height: 1.3846153846;
  letter-spacing: 0.78px;
  font-weight: 500;
  border: 1px solid #2C2C2C;
  background: #2C2C2C;
  border-radius: 30px;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .p-header__btn:hover {
    opacity: 1;
    color: #2C2C2C;
    background: #ffffff;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}