@charset "utf-8";

/* ===== ハンバーガーボタン（SPフッター固定バー内） ===== */
.c-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3px;
  width: 60px;
  height: 60px;
  padding: 0;
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
}
.c-menu-btn__lines {
  position: relative;
  width: 28px;
  height: 18px;
}
.c-menu-btn__lines span,
.c-menu-btn__lines::before,
.c-menu-btn__lines::after {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 28px;
  height: 2px;
  background-color: #fff;
  border-radius: 1px;
}
.c-menu-btn__lines span {
  top: 8px;
  transition: opacity 0.2s;
}
.c-menu-btn__lines::before {
  content: "";
  top: 0;
  transition: transform 0.3s;
}
.c-menu-btn__lines::after {
  content: "";
  top: 16px;
  transition: transform 0.3s;
}
.c-menu-btn.is-active .c-menu-btn__lines span {
  opacity: 0;
}
.c-menu-btn.is-active .c-menu-btn__lines::before {
  transform: translateY(8px) rotate(45deg);
}
.c-menu-btn.is-active .c-menu-btn__lines::after {
  transform: translateY(-8px) rotate(-45deg);
}
.c-menu-btn__text {
  margin-top: 3px;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.08em;
}

/* ===== ドロワー（SPナビ） ===== */
.c-drawer {
  position: fixed;
  inset: 0;
  z-index: 700;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.4em;
  background: #553124;
  transform: translateX(100%);
  visibility: hidden;
  transition:
    transform 0.35s ease,
    visibility 0.35s;
}
.c-drawer.is-active {
  transform: translateX(0);
  visibility: visible;
}
/* ドロワー内ではナビを中央寄せの通常フローに */
.c-drawer .c-gnav {
  position: static;
  inset: auto;
  align-items: center;
  gap: 1.6em;
}
.c-drawer .c-gnav__list {
  align-items: center;
  gap: 1.4em;
}
.c-drawer__contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2em;
}
.c-drawer__tel {
  color: #fff;
  font-family: "EB Garamond", serif;
  font-size: 28px;
}

body.is-drawer-open {
  overflow: hidden;
}

/* PCではドロワー／ハンバーガーは不要（ナビはヒーロー内に表示） */
@media screen and (min-width: 681px) {
  .c-drawer {
    display: none;
  }
}

/* SP固定バー（TEL / Instagram / ハンバーガーの3分割） */
@media screen and (max-width: 680px) {
  .c-footer-icons {
    z-index: 701;
    height: 65px;
    justify-content: flex-start;
    align-items: stretch;
    background: #290d07;
  }
  .c-footer-icons__tel,
  .c-footer-icons__sns {
    border-right: 1px solid #fff;
  }
  .c-footer-icons__tel {
    flex: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    padding-left: 12px;
    padding-right: 5px;
    color: #fff;
  }
  .c-footer-icons__tel-label {
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.04em;
  }
  .c-footer-icons__tel-num {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: "EB Garamond", serif;
    font-size: 20px;
    line-height: 1;
  }
  .c-footer-icons__tel-num svg {
    flex-shrink: 0;
    width: 13px;
    height: auto;
  }
  .c-footer-icons__sns {
    flex: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
  }
  .c-footer-icons__sns img {
    width: 30px;
    height: auto;
  }
  .c-footer-icons .c-menu-btn {
    flex: 1;
    width: auto;
    height: auto;
  }
}
