.l-header {
  position: fixed;
  width: 100%;
  background: rgba(252, 253, 255, 0.95);
  border-top: #1a4d8d solid 4px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.16);
  z-index: 100;
  display: flex;
}
.l-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

@media screen and (max-width: 1024px) {
  .l-header__inner {
    padding: 19px 0 15px 0;
  }
}
@media screen and (max-width: 1024px) {
  .l-header {
    height: 102px;
  }
}
@media screen and (max-width: 960px) {
  .l-header {
    height: 80px;
  }
}
@media screen and (max-width: 480px) {
  .l-header {
    height: 64px;
  }
}
.p-header__logo {
  max-width: 300px;
}

.p-header__logo path,
.p-header__logo rect {
  fill: #0e6cd9;
}
.p-header__nav {
  padding-bottom: 12px;
}
@media screen and (max-width: 1024px) {
  .p-header__logo {
    max-width: 300px;
  }
  .p-header__nav {
    display: none;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  .l-header {
    height: 80px;
  }
  .p-header__logo {
    max-width: 280px;
  }
}
@media screen and (max-width: 480px) {
  .p-header__logo {
    max-width: 220px;
  }
}
.p-nav__list {
  display: flex;
  justify-content: flex-end;
  gap: calc(16 / 16 * 1rem);
  flex-wrap: nowrap;
  font-size: calc(13 / 16 * 1rem);
  white-space: nowrap;
}
.p-nav__list a {
  line-height: 2;
  display: block;
}
.p-nav__list > .menu-item > a {
  position: relative;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.075em;
  line-height: 1.625;
}
.p-nav__list > .menu-item > a:before {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 4px;
  border-radius: 5px;
  transition: width 0.3s ease-out;
  background-color: #eb6100;
  margin-top: 10px;
}
.p-nav__list > .menu-item > a:hover:before {
  width: 100%;
}
.p-nav .menu-item:hover > .p-nav__hover-handler {
  opacity: 1;
  visibility: visible;
  top: 64px;
}
.p-nav__hover-handler {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  left: 0;
  top: calc(64px + 0.5rem);
  background-color: #f2f2f2;
  width: 100%;
  padding: 3em 0;
  transition: all 0.2s ease-out;
  z-index: 10;
}
.p-nav__submenu {
  display: flex;
  justify-content: flex-start;
  gap: 1em 3em;
  flex-wrap: wrap;
}

.c-header-button {
  position: relative;
  display: inline-block;
  text-decoration: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background-color: transparent;
  cursor: pointer;
}
.p-hamburger {
  display: none;
}
@media screen and (max-width: 1024px) {
  .p-hamburger {
    display: block;
    position: relative;
    z-index: 999;
    width: 24px;
    height: 24px;
    padding: 0.75em;
    outline: none;
    transition: all 0.3s ease-in-out;
  }
  .p-hamburger__line {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 24px;
    height: 2px;
    background-color: #1a4d8d;
    transition: inherit;
  }
  .p-hamburger__line::before,
  .p-hamburger__line::after {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background-color: inherit;
    content: "";
    transition: inherit;
  }
  .p-hamburger__line::before {
    top: -8px;
  }
  .p-hamburger__line::after {
    top: 8px;
  }

  .p-hamburger[aria-expanded="true"] .p-hamburger__line {
    background-color: transparent;
  }
  .p-hamburger[aria-expanded="true"] .p-hamburger__line::before,
  .p-hamburger[aria-expanded="true"] .p-hamburger__line::after {
    top: 0;
    background-color: #c7c7c0;
  }
  .p-hamburger[aria-expanded="true"] .p-hamburger__line::before {
    transform: rotate(45deg);
  }
  .p-hamburger[aria-expanded="true"] .p-hamburger__line::after {
    transform: rotate(-45deg);
  }
}
.u-visuallyHidden {
  position: absolute;
  white-space: nowrap;
  width: 40px;
  height: 40px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  margin: -1px;
  top: -18px;
  right: -7px;
}

.p-sp-header {
  transition: all 0.2s ease-out;
  opacity: 0;
  visibility: hidden;
  position: fixed;
  left: 0;
  top: 64px;
  width: 100vw;
  padding: 0 0 4rem;
  height: 100vh;
  overflow-x: hidden;
  z-index: 998;
}
.p-sp-header::before {
  position: fixed;
  top: 0;
  left: 0;
  content: "";
  background-color: #f4f6fa;
  width: 100vw;
  height: 100vh;
  z-index: -1;
}
.p-sp-header__inner {
  max-width: 1024px;
  width: 88%;
  margin: auto;
}
.p-sp-header__nav {
  margin-top: 16px;
}
.p-sp-header__nav-list .menu-item {
  position: relative;
  border-bottom: 1px dashed #cbd0d8;
}
.p-sp-header__nav-list .menu-item a {
  display: block;
  padding: 20px 0;
  font-weight: bold;
  font-size: calc(18 / 16 * 1rem);
}

@media screen and (max-width: 767px) {
  .p-sp-header {
    top: 64px;
  }
  .p-sp-header__logo {
    top: 64px;
  }
}
@media screen and (max-width: 480px) {
  .p-sp-header {
    top: 64px;
  }
  .p-sp-header__logo {
    top: 64px;
  }
}

.p-sp-nav__submenuBtn {
  position: absolute;
  top: 1em;
  right: 0;
  display: inline-block;
  width: 2em;
  height: 2em;
}
.p-sp-nav__submenuBtn::after {
  position: absolute;
  top: 50%;
  right: 0.5em;
  content: "";
  width: 0.5em;
  height: 0.5em;
  border-top: 2px solid #cbd0d8;
  border-right: 2px solid #cbd0d8;
  transform: rotate(45deg);
}
.p-sp-nav__submenuBtn:has(+ .p-sp-nav__submenu):hover {
  cursor: pointer;
}
.p-sp-nav__submenuBtn:has(+ .p-sp-nav__submenu)::after {
  transform: rotate(135deg);
  transition: all 0.2s ease-out;
}
.p-sp-nav__submenuBtn:has(+ .p-sp-nav__submenu).-open::after {
  transform: rotate(315deg);
}
.p-sp-nav__submenu {
  border-top: 1px dashed;
}
.p-sp-nav__submenu .menu-item {
  margin-bottom: 0;
}
.p-sp-nav__submenu .menu-item:last-child {
  border-bottom: none;
}

body.is-drawerActive {
  position: relative;
}
body.is-drawerActive .l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
}
body.is-drawerActive .l-header__logo {
  position: relative;
  z-index: 999;
}
body.is-drawerActive .p-sp-header {
  opacity: 1;
  visibility: visible;
  overflow-y: auto;
}
body.is-drawerActive .p-header__logo path,
body.is-drawerActive .p-header__logo rect {
  fill: #fff;
} /*# sourceMappingURL=header.css.map */
.p-header__nav-item {
  margin-bottom: calc(12 / 16 * 1rem);
}
.p-header__nav__item {
  padding-bottom: 12px;
}
.p-header__nav__item ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.p-header__nav__tel {
  font-size: calc(24 / 16 * 1rem);
  margin-right: 16px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.75;
  position: relative;
  color: #283841;
  margin-left: 32px;
}
.p-header__nav__tel::before {
  content: "";
  display: block;
  width: 26px;
  height: 18px;
  background: url(../img/free-dial.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 14px;
  left: -32px;
}

.p-header__nav__time {
  margin-right: 24px;
  margin-top: 4px;
  font-size: calc(11 / 16 * 1rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.5;
  background: #e4effa;
  color: #283841;
  border-radius: 50px;
  padding: 0 14px;
}

.p-header__nav__time--holiday {
  margin-left: 12px;
}
.p-sp-header__content {
  margin-top: 24px;
  gap: 32px;
  display: flex;
}
.p-header__nav__contact a {
  background: #eb6100;
  color: #fff;
  font-size: calc(15 / 16 * 1rem);
  padding: 12px 32px;
  border-radius: 0 0 4px 4px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.p-header__nav__contact a::before {
  content: "";
  display: block;
  width: 20px;
  height: 16px;
  background: url(../img/sidebar__icon-mail.png) no-repeat center / contain;
  flex-shrink: 0;
}
.p-sp-header__contact a {
  background: #eb6100;
  padding: 18px 0;
  border-radius: 4px;
  color: #fff;
  font-weight: 500;
  font-size: calc(20 / 16 * 1rem);
  text-align: center;
  border-radius: 50px;
  width: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.p-sp-header__contact a::before {
  content: "";
  display: block;
  width: 24px;
  height: 19px;
  background: url(../img/sidebar__icon-mail.png) no-repeat center / contain;
  flex-shrink: 0;
}
.p-sp-header__info__tel a {
  font-size: calc(20 / 16 * 1rem);
  letter-spacing: 0.05em;
  font-weight: bold;
}
.p-sp-header__info__tel a .fa-solid.fa-phone::before {
  color: #1a4d8d;
  margin-right: 8px;
  font-size: calc(16 / 16 * 1rem);
}
.p-sp-header__info__time {
  margin-top: 4px;
  font-size: calc(13 / 16 * 1rem);
}
@media screen and (max-width: 960px) {
  .p-sp-header__contact a {
    margin: 0 auto;
    width: 100%;
  }
  .p-sp-header__content {
    display: block;
  }
  .p-sp-header__info {
    margin-top: 16px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
  }
}
@media screen and (max-width: 480px) {
  .p-sp-header__info {
    display: flex;
    gap: 18px;
    justify-content: center;
    margin-bottom: 32px;
  }
}
