@charset "UTF-8";
:root {
  --inner-scale: 1;
  --vw-base: calc(1440 / var(--inner-scale));
  --inner: 880;
  --fz-ratio: 1;
}
@media screen and (max-width: 999px) {
  :root {
    --fz-ratio: 1.2;
  }
}
@media screen and (max-width: 767px) {
  :root {
    --fz-ratio: 1.0;
    --vw-base: 375;
    --inner-scale: 1;
    --inner: 297;
  }
}

/*------------------------------
header
------------------------------*/
/* トップページのヘッターのみ
------------------------------*/
header {
  position: absolute;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  padding: clamp(0px, calc(30 * 100vw / var(--vw-base)), 30/var(--vw-base) * 1440px) 0;
}

@media (max-width: 767px) {
  header {
    padding: clamp(0px, calc(20 * 100vw / var(--vw-base)), 20/var(--vw-base) * 1440px) 0;
  }
}
.header__inner {
  width: 100%;
  padding: 0 clamp(0px, calc(40 * 100vw / var(--vw-base)), 40/var(--vw-base) * 1440px);
}
@media (max-width: 767px) {
  .header__inner {
    padding: 0 clamp(0px, calc(20 * 100vw / var(--vw-base)), 20/var(--vw-base) * 1440px);
  }
}

.header__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  font-weight: 400;
  line-height: normal;
  width: clamp(0px, calc(150 * 100vw / var(--vw-base)), 150/var(--vw-base) * 1440px);
}
.header__logo a {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .header__logo {
    font-size: clamp(0px, calc(15 * 100vw / var(--vw-base) * var(--fz-ratio)), 15/var(--vw-base) * 1440px);
  }
}

.header__menu {
  display: flex;
}
.header__menu li a {
  display: inline-block;
}

.drawer-icon {
  z-index: 300;
  transition: transform 0.5s ease 0s;
  cursor: pointer;
}
.drawer-icon.is-active .drawer-icon__bar1 {
  transform: rotate(-30deg);
  top: 8px;
  background: #000;
}
.drawer-icon.is-active .drawer-icon__bar2 {
  display: none;
}
.drawer-icon.is-active .drawer-icon__bar3 {
  transform: rotate(30deg);
  top: 8px;
  background: #000;
}

.drawer-icon__bars {
  width: 22px;
  height: 20px;
  display: block;
  position: relative;
  z-index: 400;
}

.drawer-icon__bar1,
.drawer-icon__bar2,
.drawer-icon__bar3 {
  position: absolute;
  width: 22px;
  height: 4px;
  background: #2D2D2D;
  top: 0;
  left: 0;
}

.drawer-icon__bar1 {
  top: 0;
  transition: transform 0.3s;
}

.drawer-icon__bar2 {
  top: 8px;
}

.drawer-icon__bar3 {
  top: 16px;
  transition: transform 0.3s;
}

.drawer {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  background: #668589;
  padding: clamp(0px, calc(30 * 100vw / var(--vw-base)), 30/var(--vw-base) * 1440px) clamp(0px, calc(40 * 100vw / var(--vw-base)), 40/var(--vw-base) * 1440px);
  z-index: 299;
  transform: translateX(105%);
  transition: transform 0.5s ease 0s;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain; /* scroll伝番防止 */
}
.drawer.is-active {
  transform: translateX(0);
}
@media (max-width: 767px) {
  .drawer {
    padding: clamp(0px, calc(20 * 100vw / var(--vw-base)), 20/var(--vw-base) * 1440px);
  }
}

.drawer__logo {
  font-weight: 400;
  line-height: normal;
  width: clamp(0px, calc(150 * 100vw / var(--vw-base)), 150/var(--vw-base) * 1440px);
}
@media (max-width: 767px) {
  .drawer__logo {
    font-size: clamp(0px, calc(15 * 100vw / var(--vw-base) * var(--fz-ratio)), 15/var(--vw-base) * 1440px);
  }
}

.drawer__menu {
  margin-top: clamp(0px, calc(160 * 100vw / var(--vw-base)), 160/var(--vw-base) * 1440px);
}
.drawer__menu li:nth-child(n+2) {
  margin-top: clamp(0px, calc(24 * 100vw / var(--vw-base)), 24/var(--vw-base) * 1440px);
}
.drawer__menu li a {
  display: block;
  font-size: clamp(0px, calc(60 * 100vw / var(--vw-base) * var(--fz-ratio)), 60/var(--vw-base) * 1440px);
  font-weight: 400;
  line-height: normal;
  font-family: "Cormorant Garamond", serif;
  color: #fff;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .drawer__menu {
    margin-top: clamp(0px, calc(90 * 100vw / var(--vw-base)), 90/var(--vw-base) * 1440px);
  }
  .drawer__menu li:nth-child(n+2) {
    margin-top: clamp(0px, calc(30 * 100vw / var(--vw-base)), 30/var(--vw-base) * 1440px);
  }
  .drawer__menu li a {
    font-size: clamp(0px, calc(20 * 100vw / var(--vw-base) * var(--fz-ratio)), 20/var(--vw-base) * 1440px);
  }
}

.drawer__nav {
  margin-top: clamp(0px, calc(285 * 100vw / var(--vw-base)), 285/var(--vw-base) * 1440px);
  display: flex;
  justify-content: center;
  padding-right: clamp(0px, calc(30 * 100vw / var(--vw-base)), 30/var(--vw-base) * 1440px);
}
@media (max-width: 767px) {
  .drawer__nav {
    margin-top: clamp(0px, calc(150 * 100vw / var(--vw-base)), 150/var(--vw-base) * 1440px);
  }
}

.drawer__sns {
  display: flex;
}
.drawer__sns li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: clamp(0px, calc(90 * 100vw / var(--vw-base)), 90/var(--vw-base) * 1440px);
}
.drawer__sns li a {
  display: inline-block;
  width: clamp(0px, calc(25 * 100vw / var(--vw-base)), 25/var(--vw-base) * 1440px);
}
.drawer__sns li:first-child {
  padding-left: 0;
}
.drawer__sns li:nth-child(n+2) {
  position: relative;
}
.drawer__sns li:nth-child(n+2)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: #fff;
  width: 1px;
  height: clamp(0px, calc(20 * 100vw / var(--vw-base)), 20/var(--vw-base) * 1440px);
}
@media (max-width: 767px) {
  .drawer__sns li {
    width: clamp(0px, calc(60 * 100vw / var(--vw-base)), 60/var(--vw-base) * 1440px);
  }
  .drawer__sns li a {
    width: clamp(0px, calc(20 * 100vw / var(--vw-base)), 20/var(--vw-base) * 1440px);
  }
}

.drawer__contact {
  padding-left: clamp(0px, calc(30 * 100vw / var(--vw-base)), 30/var(--vw-base) * 1440px);
  position: relative;
}
.drawer__contact::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: #fff;
  width: 1px;
  height: clamp(0px, calc(20 * 100vw / var(--vw-base)), 20/var(--vw-base) * 1440px);
}
.drawer__contact a {
  display: inline-block;
  width: clamp(0px, calc(31 * 100vw / var(--vw-base)), 31/var(--vw-base) * 1440px);
}
@media (max-width: 767px) {
  .drawer__contact a {
    width: clamp(0px, calc(20 * 100vw / var(--vw-base)), 20/var(--vw-base) * 1440px);
  }
}
/*# sourceMappingURL=header.css.map */