@charset "UTF-8";
:root {
  --color-black: #575758;
  --color-white: #ffffff;
  --color-grey: #F9F8F8;
  --color-pk: #FF7460;
  --color-org: #FFB34B;
  --color-ylw: #EDC43B;
  --color-bl: #5E83AE;
  --color-bl2: #7CB7F2;
  --color-grn: #52DDAD;
  --color-none: transparent;
  --hover-duration:0.4s;
}

.l-header {
  padding: 0;
  margin: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 11;
  transition: 1s cubic-bezier(0.22, 1, 0.68, 1.01);
}
@media screen and (max-width: 767px) {
  .l-header {
    z-index: 100;
    width: 100%;
    height: auto;
    padding: 0;
    position: fixed;
    flex-wrap: wrap;
    transition: none;
    background-color: var(--color-white);
  }
}
.l-header-cover {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 75px;
  transition: height 0.5s ease, background 0.5s ease;
  height: 75px;
  display: block;
  flex-wrap: wrap;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .l-header-cover {
    height: 50px;
  }
}
.l-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 40px;
  height: 75px;
}
@media screen and (max-width: 767px) {
  .l-header-inner {
    height: 50px;
    padding: 0 5%;
  }
}
.l-header.load {
  transform: translateY(0px);
}
.l-header-logo {
  position: relative;
  z-index: 5;
  width: 360px;
  background: url(../img/common/logo-bk.svg) no-repeat left center;
  background-size: contain;
  aspect-ratio: 372/25;
}
@media screen and (max-width: 767px) {
  .l-header-logo {
    width: 60%;
  }
}
.l-header-logo a {
  display: flex;
  height: 100%;
  display: block;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
}
.l-header-logo svg {
  transition: 0.3s;
  width: 160px;
}
@media screen and (max-width: 767px) {
  .l-header-logo svg {
    width: 140px;
  }
}
.l-header-ham {
  position: fixed;
  right: 40px;
  top: 40px;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 0 0 0 auto;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .l-header-ham {
    top: auto;
    bottom: 0;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 767px) {
  .l-header-ham p {
    display: none;
  }
}
.l-header-ham p a {
  background-color: var(--color-white);
  padding-inline: 20px;
  width: fit-content;
  height: 43px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.1rem, 1.06rem + 0.125vw, 1.3rem);
  letter-spacing: 0em;
  box-shadow: 1px 1px 12px rgba(0, 0, 0, 0.1);
  min-width: 135px;
}
.l-header-ham p a.active, .l-header-ham p a:hover {
  opacity: 1;
  color: var(--color-white);
  background-color: var(--color-bl);
  border-color: var(--color-bl);
}
.l-header-ham p a.request-btn.active, .l-header-ham p a.request-btn:hover {
  background-color: #c96883;
}
.l-header-ham p a.reserve-btn.active, .l-header-ham p a.reserve-btn:hover {
  background-color: #f0b700;
}
.l-header-menu {
  transition: 0.5s;
  width: auto;
  min-width: 420px;
  height: 93dvh;
  padding: 13px;
  display: flex;
  transition: 0.3s;
  right: 0;
  top: 0;
  position: fixed;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  pointer-events: none;
  transition: -webkit-clip-path 100ms cubic-bezier(0.66, 0.17, 0.89, 0.63);
  transition: clip-path 100ms cubic-bezier(0.66, 0.17, 0.89, 0.63);
  transition: clip-path 100ms cubic-bezier(0.66, 0.17, 0.89, 0.63), -webkit-clip-path 100ms cubic-bezier(0.66, 0.17, 0.89, 0.63);
}
@media screen and (min-width: 768px) {
  .l-header-menu {
    top: 0;
    right: 0;
    width: 641px;
    padding: 6% 5% 1% 5%;
  }
}
@media screen and (max-width: 767px) {
  .l-header-menu {
    display: block;
    min-width: auto;
    width: 100%;
    height: 100%;
  }
}
.l-header-menu .navBg {
  z-index: -1;
  position: absolute;
  bottom: 0;
  left: 0;
  overflow: hidden;
  transform-origin: 100% 0;
  opacity: 0.95;
  pointer-events: none;
  transition: transform 1.5s cubic-bezier(0.23, 1, 0.32, 1);
}
@media screen and (min-width: 768px) {
  .l-header-menu .navBg {
    top: 0;
    right: 0;
  }
}
@media screen and (max-width: 767px) {
  .l-header-menu .navBg {
    top: 0;
    right: 0;
  }
}
.l-header-menu .navBg:after {
  position: absolute;
  inset: 0;
  background-color: var(--color-white);
  border-radius: 0 0 0 63px;
  content: "";
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .l-header-menu .navBg:after {
    transform: translate(0px, 0) rotate(0deg) scale(1, 0);
    transform-origin: 100% 0;
    transition: transform 1.5s cubic-bezier(0.23, 1, 0.32, 1);
  }
}
@media screen and (max-width: 767px) {
  .l-header-menu .navBg:after {
    transform: translate(0px, 0) rotate(0deg) scale(1, 0);
    transform-origin: 100% 0;
    transition: transform 1.25s cubic-bezier(0.23, 1, 0.32, 1);
  }
}
.l-header .l-header-nav {
  overflow: auto;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateY(0.25em) scale(0.95);
  opacity: 0;
  transition: transform 0.75s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.4s cubic-bezier(0.23, 1, 0.32, 1), color 0.5s;
  transition-delay: 0s;
  will-change: transform;
  gap: 1.4rem;
}
@media screen and (max-width: 1000px) {
  .l-header .l-header-nav {
    padding: 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .l-header .l-header-nav {
    gap: 1rem;
  }
}
.l-header .l-header-nav dt {
  font-family: "din-2014", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(2rem, 1.88rem + 0.375vw, 2.6rem);
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--color-black);
  width: 100%;
  border-bottom: 1px solid var(--color-black);
  padding-block-end: 10px;
}
.l-header .l-header-nav dd {
  width: 100%;
}
.l-header .l-header-nav dd:nth-of-type(1) li {
  margin-block: 16px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .l-header .l-header-nav dd:nth-of-type(1) li {
    margin-block: 5px;
  }
}
.l-header .l-header-nav dd:nth-of-type(1) li a {
  font-family: "MFW-KoburinaGoStdN-W6";
  font-size: clamp(1.4rem, 1.4rem + 0vw, 1.4rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--color-black);
  position: relative;
  font-size: clamp(1.2rem, 1.16rem + 0.125vw, 1.4rem);
  text-align: center;
}
.l-header .l-header-nav dd:nth-of-type(1) li a.active, .l-header .l-header-nav dd:nth-of-type(1) li a:hover {
  opacity: 1;
  color: var(--color-bl);
}
@media screen and (max-width: 767px) {
  .l-header .l-header-nav dd:nth-of-type(1) li a {
    font-size: 1.4rem;
    letter-spacing: 0.15em;
    display: block;
  }
}
.l-header .l-header-nav dd:nth-of-type(1) li a.update {
  position: relative;
}
.l-header .l-header-nav dd:nth-of-type(1) li a.update::after {
  content: "● UPDATE！";
  margin-left: 4px;
  padding: 6px 10px;
  display: inline-grid;
  place-items: center;
  color: #df5e81;
  border-radius: 30px;
  font-size: 12px;
  line-height: 12px;
}
@media screen and (max-width: 767px) {
  .l-header .l-header-nav dd:nth-of-type(1) li a.update::after {
    font-size: 10px;
    line-height: 10px;
    letter-spacing: 0.1rem;
  }
}
.l-header .l-header-nav dd:nth-of-type(2) ul {
  display: flex;
  gap: 15px;
}
@media screen and (max-width: 767px) {
  .l-header .l-header-nav dd:nth-of-type(2) ul {
    flex-direction: column;
  }
}
.l-header .l-header-nav dd:nth-of-type(2) ul li {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .l-header .l-header-nav dd:nth-of-type(2) ul li {
    width: 100%;
  }
}
.l-header .l-header-nav dd:nth-of-type(2) ul li a {
  font-size: clamp(1.2rem, 1.16rem + 0.125vw, 1.4rem);
  color: var(--color-black);
  border: 1px solid var(--color-black);
  width: 100%;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .l-header .l-header-nav dd:nth-of-type(2) ul li a {
    font-size: 1.4rem;
  }
}
.l-header .l-header-nav dd:nth-of-type(2) ul li a.active, .l-header .l-header-nav dd:nth-of-type(2) ul li a:hover {
  opacity: 1;
  color: var(--color-white);
  background-color: var(--color-bl);
  border-color: var(--color-bl);
}
.l-header .hamburger {
  padding-bottom: 14px;
  width: 50px;
  height: 50px;
  z-index: 5;
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  background-color: var(--color-white);
  border-radius: 50%;
  box-shadow: 1px 1px 12px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  position: relative;
}
.l-header .hamburger::before {
  content: "MENU";
  position: absolute;
  bottom: 8px;
  color: var(--color-black);
  font-size: 10px;
  letter-spacing: 0.03rem;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .l-header .hamburger {
    padding-block: 16px 0;
    width: 20vw;
    height: 60px;
    gap: 7px;
    background-color: var(--color-bl);
    border-radius: 0;
    box-shadow: none;
  }
  .l-header .hamburger::before {
    content: "MENU";
    position: absolute;
    top: 10px;
    bottom: auto;
    color: var(--color-white);
    letter-spacing: 0.1rem;
  }
}
.l-header .hamburger span {
  display: block;
  width: 20px;
  height: 1px;
  background-color: var(--color-black);
  margin: 0;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .l-header .hamburger span {
    width: 30px;
    height: 2px;
    background-color: var(--color-white);
  }
}
.l-header .hamburger span:nth-of-type(1) {
  top: 0;
  position: relative;
}
.l-header .hamburger span:nth-of-type(2) {
  top: 0px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-header .hamburger.active, .l-header .hamburger:hover {
    opacity: 1;
    background-color: var(--color-bl);
  }
  .l-header .hamburger.active::before, .l-header .hamburger:hover::before {
    color: var(--color-white);
  }
  .l-header .hamburger.active span, .l-header .hamburger:hover span {
    background-color: var(--color-white);
  }
}
.l-header.is-menu-open {
  background: transparent;
}
.l-header.is-menu-open .l-header-cover {
  height: 100svh;
  color: #fff;
}
.l-header.is-menu-open .l-header-menu {
  pointer-events: auto;
}
.l-header.is-menu-open .l-header-menu .navBg {
  pointer-events: auto;
}
.l-header.is-menu-open .l-header-menu .navBg:after {
  transform: translateX(0) rotate(0) scale(1, 1);
}
@media screen and (max-width: 767px) {
  .l-header.is-menu-open .l-header-menu .navBg:after {
    transform: translateX(0) rotate(0) scale(1.5, 1);
    transition: transform 1.7s cubic-bezier(0.23, 1, 0.32, 1);
  }
}
.l-header.is-menu-open .l-header-nav {
  transform: none;
  opacity: 1;
  transition: transform 1.1s cubic-bezier(0.23, 1, 0.32, 1), opacity 1.3s cubic-bezier(0.23, 1, 0.32, 1), color 0.5s;
  transition-delay: 0.295s;
}
.l-header.is-menu-open .l-header-ham p a {
  background-color: var(--color-bl);
  color: var(--color-white);
}
.l-header.is-menu-open .l-header-ham p a.request-btn {
  background-color: #c96883;
}
.l-header.is-menu-open .l-header-ham p a.reserve-btn {
  background-color: #f0b700;
}
.l-header.is-menu-open .hamburger {
  background-color: var(--color-bl);
}
@media screen and (max-width: 767px) {
  .l-header.is-menu-open .hamburger {
    width: 60px;
    border-radius: 50%;
  }
}
.l-header.is-menu-open .hamburger::before {
  color: var(--color-white);
  content: "CLOSE";
}
.l-header.is-menu-open .hamburger span {
  background-color: var(--color-white);
}
.l-header.is-menu-open .hamburger span:nth-of-type(1) {
  transform: translateY(4px) rotate(-315deg);
}
@media screen and (max-width: 767px) {
  .l-header.is-menu-open .hamburger span:nth-of-type(1) {
    transform: translateY(5px) rotate(-315deg);
  }
}
.l-header.is-menu-open .hamburger span:nth-of-type(2) {
  display: none;
  opacity: 0;
}
.l-header.is-menu-open .hamburger span:nth-of-type(3) {
  transform: translateY(-3px) rotate(315deg);
}
@media screen and (max-width: 767px) {
  .l-header.is-menu-open .hamburger span:nth-of-type(3) {
    transform: translateY(-4px) rotate(315deg);
  }
}
.l-header.-wh .l-header-logo svg {
  fill: #fff;
}
.l-header.-wh .hamburger span {
  background-color: var(--color-white);
}/*# sourceMappingURL=header.css.map */