@charset "UTF-8";
.global-menu-toggle {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 70;
  display: grid;
  justify-items: center;
  gap: 3px;
  width: 100px;
  height: 80px;
  padding: 14px 16px 20px;
  border: 0;
  background: var(--color-gold);
  color: #ffffff;
  transition: opacity var(--transition), transform var(--transition);
  cursor: pointer;
}

.global-menu-toggle.is-open {
  opacity: 0;
  pointer-events: none;
}

.global-menu-toggle__bars {
  display: grid;
  gap: 8px;
  width: 45px;
}

.global-menu-toggle__bar {
  height: 2px;
  background: currentColor;
}

.global-menu-toggle__label {
  font-size: 14px;
  letter-spacing: 0.12em;
}

.global-menu {
  position: fixed;
  inset: 0;
  z-index: 60;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.9s ease, visibility 0s linear 0.9s;
}

.global-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.global-menu__panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 100vh;
  background: rgba(255, 255, 255, 0.96);
  transform: translate3d(100%, 0, 0);
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.global-menu.is-open .global-menu__panel {
  transform: translate3d(0, 0, 0);
}

.global-menu__primary-box {
  display: flex;
  align-items: center;
  justify-content: center;
}

.global-menu__primary {
  display: grid;
  align-content: space-between;
  gap: 32px;
  padding: 72px 56px 40px;
}

.global-menu__secondary {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 56px;
  padding: 120px 64px 48px;
  background: #efece5;
}

.global-menu__close {
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 80px;
  border: 0;
  background: var(--color-gold);
  color: #ffffff;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.global-menu__brand-block {
  display: grid;
  justify-items: center;
  gap: 10px;
}

.global-menu__brand-tag {
  padding: 4px 12px;
  background: #efece5;
  font-size: 12px;
  line-height: 1.4;
}

.global-menu__brand-ja {
  max-width: 240px;
  width: 80%;
}

.global-menu__contact-block {
  display: grid;
  gap: 10px;
  justify-items: center;
}

.global-menu__tel {
  font-size: 44px;
  line-height: 1.2;
}

.global-menu__hours,
.global-menu__holiday,
.global-menu__note {
  text-align: center;
}

.global-menu__hours,
.global-menu__holiday,
.global-menu__line-block p,
.global-menu__link p,
.global-menu__shortcut p {
  font-size: 16px;
  line-height: 1.7;
}

.global-menu__cta {
  min-width: 0;
  width: 100%;
  max-width: 240px;
  margin: 0 auto;
  padding: 0px;
  background: rgba(255, 255, 255, 0.88);
  font-size: 20px !important;
  overflow: hidden;
}

.global-menu__cta.btn.outline-button a {
  width: 100%;
}

.global-menu__line-block {
  display: grid;
  gap: 16px;
  text-align: center;
}

.global-menu__note {
  font-size: 12px;
  line-height: 1.7;
}

.global-menu__schedule {
  display: grid;
  gap: 0;
}

.global-menu__schedule-row {
  display: grid;
  grid-template-columns: 1.4fr repeat(7, minmax(0, 1fr));
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.88);
}

.global-menu__schedule-row:first-child {
  border-bottom: 2px solid rgba(17, 17, 17, 0.88);
}

.global-menu__schedule-cell {
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
}

.global-menu__schedule-cell--label {
  text-align: center;
}

.global-menu__schedule-cell--open {
  color: var(--color-navy-soft);
}

.global-menu__links-column {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(2, minmax(0, 248px));
}

.global-menu__link {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.global-menu__link-line {
  height: 1px;
  background: rgba(17, 17, 17, 0.72);
}

.global-menu__shortcuts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.global-menu__shortcut {
  display: grid;
  justify-items: center;
  gap: 10px;
  width: 160px;
  padding: 16px;
  border: 1px solid rgba(186, 160, 113, 0.9);
}

.global-menu__shortcut-icon {
  position: relative;
  width: 40px;
  height: 40px;
}

.global-menu__social {
  display: flex;
  justify-content: center;
  gap: 28px;
}

.global-menu__social-link {
  position: relative;
  width: 48px;
  height: 48px;
  color: var(--color-gold);
}

.top-page {
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.top-page > * {
  position: relative;
  z-index: 1;
}

.site-header-logo {
  position: absolute;
  top: 40px;
  z-index: 40;
  width: 287px;
  height: 52px;
  text-indent: -99999px;
  background-image: url(/system_panel/uploads/images/header_logo.png);
  background-size: contain;
  background-repeat: no-repeat;
}

html:has(.top-page) .site-header-logo {
  background-image: url(/system_panel/uploads/images/header_logo_w.png);
}

.about-utility-rail {
  position: fixed;
  top: 80px;
  right: 0;
  z-index: 55;
  display: grid;
  justify-items: center;
  width: 100px;
  height: 90px;
  padding: 14px 12px 18px;
  border-radius: 0 0 0 30px;
  background: #efece5;
}

.about-utility-rail__label {
  font-size: 16px;
  line-height: 1.2;
  text-align: center;
}

.about-utility-rail__icon {
  width: 24px;
  height: 26px;
}

.line-consult {
  position: fixed;
  bottom: 20px;
  right: 0;
  z-index: 20;
  display: grid;
  gap: 10px;
  width: 208px;
  padding: 16px;
  border: 1px solid var(--color-gold);
  border-right: 0;
  border-radius: 30px 0 0 30px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 36px rgba(92, 106, 134, 0.08);
  opacity: 1;
  transition: opacity 0.35s ease;
}

.line-consult strong {
  font-family: var(--mincho-font);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25;
  text-align: center;
}

.line-consult__text {
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
}

.line-consult__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  width: 38px;
  height: 38px;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .line-consult {
  opacity: 0;
  pointer-events: none;
}

.line-consult.is-hidden-by-footer {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 767px) {
  .site-header-logo {
    top: 16px;
    left: 16px;
    width: 189px;
    height: 34px;
  }
  .about-utility-rail {
    top: 50px;
    width: 50px;
    padding: 12px 5px 14px 5px;
    border-radius: 0 0 0 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 12px;
  }
  .about-utility-rail__label {
    font-size: 12px;
    margin-bottom: 5px;
  }
  .global-menu-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 50px;
    height: 50px;
    padding: 8px 6px 6px;
    background: linear-gradient(180deg, #c6ad7d 0%, #baa071 100%);
  }
  .global-menu-toggle__bars {
    width: 32px;
    gap: 4px;
  }
  .global-menu-toggle__label {
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0;
  }
  .global-menu__panel {
    grid-template-columns: 1fr;
    min-height: 100vh;
    overflow-y: auto;
  }
  .global-menu__primary {
    display: none;
  }
  .global-menu__secondary {
    min-height: 100vh;
    align-content: center;
    justify-items: center;
    gap: 32px;
    padding: 50px 32px 40px;
    padding-bottom: 40px;
    background: var(--color-beige);
  }
  .global-menu__close {
    width: 50px;
    height: 50px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    line-height: 1.8;
  }
  .global-menu__links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 80%;
  }
  .global-menu__link p {
    width: 60vw;
  }
  .global-menu__link br {
    display: none;
  }
  .global-menu__links-column {
    display: contents;
  }
  .global-menu__link {
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 24px;
    width: 161px;
  }
  .global-menu__link p {
    font-size: 16px;
    line-height: 1.8;
  }
  .global-menu__link-line {
    width: 24px;
    background: rgba(17, 17, 17, 0.92);
  }
  .global-menu__shortcuts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    width: 100%;
    max-width: 311px;
  }
  .global-menu__shortcut {
    width: auto;
    min-height: 66px;
    padding: 8px;
    gap: 8px;
    border-color: var(--color-gold);
    background: transparent;
  }
  .global-menu__shortcut p {
    font-size: 16px;
    line-height: 1.8;
  }
  .global-menu__shortcut-icon {
    width: 25px;
    height: 24px;
  }
  .global-menu__shortcut-icon--voice::before {
    top: 0;
    left: 6px;
    width: 12px;
    height: 12px;
  }
  .global-menu__shortcut-icon--voice::after {
    left: 2px;
    bottom: 0;
    width: 20px;
    height: 11px;
  }
  .global-menu__shortcut-icon--column::before,
  .global-menu__shortcut-icon--column::after {
    top: 1px;
    width: 9px;
    height: 20px;
    border-width: 2px;
  }
  .global-menu__shortcut-icon--column::before {
    left: 2px;
  }
  .global-menu__shortcut-icon--column::after {
    right: 2px;
  }
  .global-menu__social {
    gap: 32px;
  }
  .global-menu__social-link {
    width: 50px;
    height: 50px;
  }
  .global-menu__social-link--facebook {
    border-radius: 8px;
    background: var(--color-gold);
    color: #ffffff;
  }
  .global-menu__social-link--instagram {
    border-width: 4px;
  }
  .global-menu__schedule-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    padding: 14px 0;
  }
  .global-menu__schedule-cell--label {
    grid-column: 1/-1;
    text-align: left;
  }
  .global-menu__brand-block,
  .global-menu__contact-block,
  .global-menu__cta,
  .global-menu__line-block,
  .global-menu__schedule {
    display: none;
  }
  .line-consult {
    top: auto;
    right: 0;
    bottom: 16px;
    align-items: center;
    justify-content: center;
    width: 97px;
    padding: 8px 10px 12px;
    border-radius: 10px 0 0 10px;
  }
  .line-consult::before {
    content: "LINEで相談";
    white-space: pre;
    font-family: var(--base-font);
    font-size: 12px;
    line-height: 1.2;
    text-align: center;
  }
  .line-consult .text-center,
  .line-consult__text {
    display: none;
  }
  .line-consult__icon {
    position: relative;
    width: 26px;
    height: 26px;
  }
}/*# sourceMappingURL=header.css.map */