@charset "UTF-8";

.p-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 86px;
  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: 17px;
  left: 25px;
  width: 189px;
  height: 54px;
}

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

.p-header__link {
  color: #0084AA;
  font-size: 14px;
  line-height: 1.4285714286;
  letter-spacing: 0.56px;
  font-weight: 700;
}
.p-header__link .text {
  color: #0084AA;
}
.header__item--menu {
  display: inline-block;
  position: relative;
  cursor: pointer;
}

.header__sublist-wrap {
  position: absolute;
  top: calc(100% - 5px);
  left: 50%;
  translate: -50%;
  padding-top: 15px;
  display: none;
}

.header__sublist {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  background: #0084AA;
  padding: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 10px;
}
.header__sublist .p-header__link .text {
  color: #ffffff;
}
.header__sublist a {
  white-space: nowrap;
}
.header__sublist::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  translate: -50%;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  border-bottom: 11px solid #0084AA;
  border-top: 0;
}

.p-header__btn {
  padding: 6px 19px;
  font-size: 14px;
  line-height: 1.4285714286;
  letter-spacing: 0.56px;
  font-weight: 700;
  color: #ffffff;
  border: 1px solid #0084AA;
  background: #0084AA;
  border-radius: 17px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media (any-hover: hover) {
  .p-header__btn:hover {
    opacity: 1;
    color: #0084AA;
    background: #ffffff;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}