@charset "utf-8";
.p-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  background: transparent;
  padding-block: 0.75rem;
}

@media (min-width: 768px) {
  .p-header {
    padding-block: 1.25rem;
  }
}

.p-header__inner {
  width: 100%;
  max-width: 100%;
  padding: 0 1.25rem;
  margin-inline: auto;
  height: inherit;
}

@media (min-width: 768px) {
  .p-header__inner {
    width: 100%;
    max-width: 85.375rem;
    padding: 0 0.9375rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.p-header__logo {
  width: 8.125rem;
  aspect-ratio: 165/60;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

@media (min-width: 768px) {
  .p-header__logo {
    width: 10.3125rem;
  }
}

@media (any-hover: hover) {
  .p-header__logo:hover {
    opacity: 0.8;
  }
}

@media (min-width: 768px) {
  .p-header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-column-gap: 0.625rem;
    -moz-column-gap: 0.625rem;
    column-gap: 0.625rem;
  }
}

.p-header__list {
  border-radius: 0.3125rem;
  border: 1px solid #e4e6ea;
  background-color: #ffffff;
  padding: 1.25rem 1.5625rem;
}

@media (min-width: 768px) {
  .p-header__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 1.5rem;
    -moz-column-gap: 1.5rem;
    column-gap: 1.5rem;
  }
}

.p-header__list a {
  font-size: 0.875rem;
  color: #2e3957;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

@media (any-hover: hover) {
  .p-header__list a:hover {
    opacity: 0.7;
  }
}

.p-header__link--company {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 0.3125rem;
  -moz-column-gap: 0.3125rem;
  column-gap: 0.3125rem;
}

.p-header__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #173491;
  color: #ffffff;
  font-size: 0.875rem;
  padding: 1.25rem;
  border-radius: 0.3125rem;
}

.p-header__contact .icon-mail {
  -webkit-margin-end: 0.3125rem;
  margin-inline-end: 0.3125rem;
}

.p-header__contact .icon-newtab {
  -webkit-margin-start: 2.5rem;
  margin-inline-start: 2.5rem;
}

.p-drawer__icon {
  position: fixed;
  z-index: 102;
  display: grid;
  place-items: center;
  background-color: #173491;
  top: 1.125rem;
  right: 1.25rem;
  width: 2.1875rem;
  height: 2.1875rem;
}
@media (min-width: 768px) {
  .p-drawer__icon {
    display: none;
  }
}

.p-drawer__icon--bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 0.3125rem;
}

.p-drawer__icon--bar1 {
  height: 1px;
  width: 1.25rem;
  background: #ffffff;
  border-radius: 100vmax;
}
@media (min-width: 768px) {
  .p-drawer__icon--bar1 {
    width: 1.625rem;
  }
}

.p-drawer__icon--bar2 {
  height: 1px;
  width: 1.25rem;
  background: #ffffff;
  border-radius: 100vmax;
}
@media (min-width: 768px) {
  .p-drawer__icon--bar2 {
    width: 1.625rem;
  }
}

.p-drawer__icon--bar3 {
  height: 1px;
  width: 1.25rem;
  background: #ffffff;
  border-radius: 100vmax;
}
@media (min-width: 768px) {
  .p-drawer__icon--bar3 {
    width: 1.625rem;
  }
}

.p-drawer__text {
  text-transform: uppercase;
  color: #ffffff;
  font-size: 0.625rem;
  line-height: 0.75rem;
}
@media (min-width: 768px) {
  .p-drawer__text {
    font-size: 0.75rem;
    line-height: 1.0625rem;
  }
}

.p-drawer__icon.js-show .p-drawer__icon--bar1 {
  rotate: 45deg;
  translate: 0 3px;
}
.p-drawer__icon.js-show .p-drawer__icon--bar2 {
  display: none;
}
.p-drawer__icon.js-show .p-drawer__icon--bar3 {
  rotate: -45deg;
  translate: 0 -3px;
}

.p-drawer {
  position: fixed;
  z-index: 101;
  overflow-y: scroll;
  top: 0;
  right: 0;
  width: 80vw;
  max-width: 26.25rem;
  height: 100svh;
  background: #f0f8fe;
  padding: 5rem 3.75rem;
}
@media (min-width: 768px) {
  .p-drawer {
    padding: 7.5rem 3.75rem;
  }
}

.p-drawer__icon--bar1,
.p-drawer__icon--bar2,
.p-drawer__icon--bar3 {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.p-drawer {
  translate: 101%;
  -webkit-transition: translate 0.5s ease;
  transition: translate 0.5s ease;
}
.p-drawer.js-show {
  translate: 0;
}

.p-drawer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .p-drawer__list {
    margin-bottom: 2.5rem;
  }
}

.p-drawer__link {
  text-align: center;
  width: 100%;
  font-size: 1rem;
  border-bottom: 1px solid #aaa9a9;
  padding-block: 0.9375rem;
}
@media (min-width: 768px) {
  .p-drawer__link {
    font-size: 1.25rem;
    padding-block: 1.875rem;
  }
}
@media (any-hover: hover) {
  .p-drawer__link:hover p {
    opacity: 0.7;
  }
}
.p-drawer__link p {
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
