@charset "UTF-8";

.p-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 100;
}
.p-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #F1EEE6;
  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: 20px;
  left: 20px;
  width: 169px;
  aspect-ratio: 169/40;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.p-header__menu {
  display: none;
}
@media screen and (min-width:1024px) {
  .p-header__menu {
    position: absolute;
    top: 20px;
    right: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: clamp(24px, 2.3426061493vw, 32px);
  }
}

.p-header__link {
  height: 100%;
  -ms-flex-line-pack: center;
      align-content: center;
  font-size: 14px;
  line-height: 1.4285714286;
  font-weight: 500;
}
.p-header__btn {
  padding: 9px 27px;
  border-radius: 5px;
  border: 1px solid #643934;
  background: #643934;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.4285714286;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .p-header__btn:hover {
    opacity: 1;
    color: #643934;
    background: #ffffff;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}
