.l-header {
  position: fixed;
  background: #FCF2E7;
  min-height: 80px;
  width: 100%;
  z-index: 5;
}
.l-header__inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 2em;
}
@media screen and (max-width:960px) {
  .l-header {
    min-height: 64px;
  }
  .l-header__inner {
    width: 100%;
  }
}
@media print {
  .l-header {
    position: absolute;
    top: 0;
  }
}

.p-header__logo {
  height: 80px;
}
.p-header__logo a {
  display: block;
}
.p-header__btns {
  display: flex;
  width: 192px;
  height: 80px;
}
.p-header__btn {
  width: 50%;
}
.p-header__btn.twitter {
  background: #CCBEA6;
}
.p-header__btn.contact {
  background: #7d5a3a;
}
.p-header__link {
  display: flex;
  color: #FEFEFE;
  flex-direction: column;
  font-size: calc(12 / 16 * 1rem);
  font-weight: 500;
  gap: 10px;
  height: 100%;
  justify-content: center;
  letter-spacing: 0.05em;
  text-align: center;
}
.p-header__link i {
  font-size: calc(28 / 16 * 1rem);
}
@media screen and (max-width:960px) {
  .p-header__logo {
    height: 64px;
  }
  .p-header__logo svg {
    width: 160px;
    height: 64px;
  }
  .p-header__nav {
    display: none;
  }
  .p-header__btns {
    display: none;
  }
}
@media screen and (max-width:520px) {
  .p-header__nav {
    display: none;
  }
}

.p-nav {
  height: 100%;
}
.p-nav__list {
  display: flex;
  height: 80px;
  align-items: center;
  flex-wrap: wrap;
  font-size: calc(16 / 16 * 1rem);
}
.p-nav__list a {
  line-height: 2;
  display: block;
}
.p-nav__list > .menu-item {
  height: 100%;
  display: grid;
  place-items: center;
}
.p-nav__list > .menu-item > a {
  line-height: 1;
  letter-spacing: 0.1em;
  padding: 0.5rem 0.75rem;
  position: relative;
}
.p-nav__list > .menu-item > a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - (100% - 1.5rem) / 2);
  width: 0;
  height: 1px;
  transition: width 0.3s ease-out;
  background-color: #7d5a3a;
}
.p-nav__list > .menu-item > a:hover:before {
  width: calc(100% - 1.5rem);
}
.p-nav__list > .menu-item:not(:last-child) > a::after {
  position: absolute;
  content: "";
  height: calc(10 / 16 * 1rem);
  width: 1px;
  background: #CCBEA6;
  right: 0;
  display: block;
  top: calc(50% - 5px);
}
.p-nav__hover-handler {
  visibility: hidden;
  opacity: 0;
  top: 80px;
  background-color: #E8E4DF;
  width: 100%;
  padding: 2rem 0;
  transition: all 0.6s ease-out;
  z-index: 10;
  max-width: 1280px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 0 100vmax #E8E4DF;
  -webkit-clip-path: inset(0 -100vmax);
          clip-path: inset(0 -100vmax);
}
.p-nav .menu-item:hover > .p-nav__hover-handler {
  opacity: 1;
  visibility: visible;
}
.p-nav__submenu {
  display: flex;
  justify-content: flex-start;
  gap: 1em;
  flex-wrap: wrap;
  padding-right: 2rem;
  padding-left: 2rem;
}
.p-nav__submenu a {
  padding: 0.5em 1em;
  background: #FEFEFE;
  border-radius: 2.4em;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  line-height: 1;
}

.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;
}
.c-header-button.u-tb {
  display: none;
}
@media screen and (max-width:960px) {
  .c-header-button.u-tb {
    display: inline-block;
  }
}

.p-hamburger {
  position: relative;
  z-index: 999;
  width: 32px;
  height: 32px;
  outline: none;
  transition: all 0.3s ease-in-out;
  padding: 1em;
  right: 1rem;
}
.p-hamburger__line {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 18px;
  height: 2px;
  background-color: #7d5a3a;
  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: -5px;
}
.p-hamburger__line::after {
  top: 5px;
}

.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: #7d5a3a;
}
.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: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  margin: -1px;
}

.p-sp-header {
  transition: all 0.2s ease-out;
  opacity: 0;
  visibility: hidden;
  position: fixed;
  left: 0;
  top: 80px;
  width: 100vw;
  color: #252B2D;
  padding: 0 0 4rem;
  height: 100dvh;
  overflow-x: hidden;
  z-index: 998;
}
.p-sp-header::before {
  position: fixed;
  top: 0;
  left: 0;
  content: "";
  background-color: #FEFEFE;
  width: 100vw;
  height: 100vh;
  z-index: -1;
}
.p-sp-header__inner {
  max-width: 1088px;
  width: 88%;
  padding: 1rem 0 5rem;
  margin-inline: auto;
}
.p-sp-header__btns {
  display: flex;
  position: fixed;
  bottom: 0svh;
  width: 100%;
  z-index: 2;
  left: 0;
}
.p-sp-header__btn {
  width: 50%;
  color: #FEFEFE;
}
.p-sp-header__btn.twitter {
  background: #CCBEA6;
}
.p-sp-header__btn.contact {
  background: #7d5a3a;
}
.p-sp-header__btn-link {
  padding: 1rem;
  display: block;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.p-sp-header__btn-link i {
  margin-right: 0.5em;
}
.p-sp-header__nav {
  margin-top: 0 0 calc(48 / 16 * 1rem);
}
.p-sp-header__nav-list > .menu-item {
  border-bottom: 1px solid #7d5a3a;
  position: relative;
}
.p-sp-header__nav-list > .menu-item a {
  display: flex;
  letter-spacing: 0.075em;
  padding-bottom: 1em;
  padding-top: 2em;
  align-items: center;
  color: #7d5a3a;
  font-weight: 500;
}
.p-sp-header__nav-list > .menu-item_service > a::after, .p-sp-header__nav-list > .menu-item_facility > a::after, .p-sp-header__nav-list > .menu-item_information > a::after, .p-sp-header__nav-list > .menu-item_news > a::after, .p-sp-header__nav-list > .menu-item_recruit > a::after {
  font-size: calc(11 / 16 * 1rem);
  color: #CCBEA6;
  margin-left: 1em;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 500;
}
.p-sp-header__nav-list > .menu-item_service > a::after {
  content: "- service";
}
.p-sp-header__nav-list > .menu-item_facility > a::after {
  content: "- facility";
}
.p-sp-header__nav-list > .menu-item_information > a::after {
  content: "- information";
}
.p-sp-header__nav-list > .menu-item_news > a::after {
  content: "- news";
}
.p-sp-header__nav-list > .menu-item_recruit > a::after {
  content: "- recruit";
}
@media screen and (max-width:520px) {
  .p-sp-header {
    top: 64px;
  }
  .p-sp-header__logo {
    top: 64px;
  }
}
@media screen and (max-width:520px) {
  .p-sp-header {
    top: 64px;
  }
  .p-sp-header__logo {
    top: 64px;
  }
}

.p-sp-nav__submenuBtn {
  position: absolute;
  top: 1.5em;
  right: 0;
  display: inline-block;
  width: 2em;
  height: 2em;
}
.p-sp-nav__submenuBtn:has(+ .p-sp-nav__submenu):hover {
  cursor: pointer;
}
.p-sp-nav__submenuBtn:has(+ .p-sp-nav__submenu)::after {
  content: "\f13a";
  position: absolute;
  top: calc(50% - 0.5em);
  right: 0.5em;
  font-family: "Font awesome 5 free";
  font-weight: 600;
  color: #7d5a3a;
  transition: all 0.6s ease-out;
}
.p-sp-nav__submenuBtn:has(+ .p-sp-nav__submenu).-open::after {
  content: "\f139";
}
.p-sp-nav__submenu {
  padding: 0 1em 1em;
}
.p-sp-nav__submenu .menu-item {
  margin-bottom: 0;
}
.p-sp-nav__submenu .menu-item:last-child {
  border-bottom: none;
}
.p-sp-nav__submenu .menu-item a {
  font-size: calc(14 / 16 * 1rem);
  padding: 1em 0;
}
.p-sp-nav__submenu .menu-item a::before {
  content: "-";
  margin-right: 0.5em;
  color: #E8E4DF;
}

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-hamburger[aria-expanded=true] .p-hamburger__line::before,
body.is-drawerActive .p-hamburger[aria-expanded=true] .p-hamburger__line::after {
  background-color: #7d5a3a;
}
/*# sourceMappingURL=header.css.map */