/* ============================================================
   HamburgerMenu – 2026 Modern Drawer
   Glassmorphism · Magnetic CTA · Staggered Motion
   Scoped under .pcu95front
   ============================================================ */

/*
 * globals.css（body line-height:1.75 / letter-spacing）・styleguide（--radius-sm 等）の
 * 意図しない継承を切る。ドロワーは React portal で document.body 直下に描画（HamburgerMenu.jsx）。
 * ※祖先に backdrop-filter があると position:fixed の包含ブロックがずれるため portal が必須。
 */
.pcu95front .hmenu img {
  max-width: none;
}
.pcu95front .hmenu a.hmenu__sns-btn,
.pcu95front .hmenu a.hmenu__tel,
.pcu95front .hmenu a.hmenu__line {
  letter-spacing: inherit;
}
.pcu95front .hmenu .hmenu__sns-btn-text {
  letter-spacing: 0.02em;
}

/* -----------------------------------------------------------
   TRIGGER BUTTON
   ----------------------------------------------------------- */
.pcu95front .hmenu-trigger {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
  position: relative;
  z-index: 1201;
  -webkit-tap-highlight-color: transparent;
}
.pcu95front .hmenu-trigger:focus-visible {
  outline: 2px solid var(--accent, #e8919f);
  outline-offset: 4px;
  border-radius: 4px;
}

.pcu95front .hmenu-trigger__bars {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 22px;
  height: 16px;
  position: relative;
}

.pcu95front .hmenu-trigger__bar {
  display: block;
  height: 1.5px;
  background: currentColor;
  border-radius: 2px;
  transform-origin: center;
  transition:
    transform 0.32s cubic-bezier(0.68, -0.6, 0.32, 1.6),
    opacity 0.18s ease,
    width 0.28s ease;
}
.pcu95front .hmenu-trigger__bar:nth-child(1) { width: 100%; }
.pcu95front .hmenu-trigger__bar:nth-child(2) { width: 66%; transition-delay: 0.03s; }
.pcu95front .hmenu-trigger__bar:nth-child(3) { width: 100%; }

/* Morph → X */
.pcu95front .hmenu-trigger.is-open .hmenu-trigger__bar:nth-child(1) {
  width: 100%;
  transform: translateY(6.5px) rotate(45deg);
}
.pcu95front .hmenu-trigger.is-open .hmenu-trigger__bar:nth-child(2) {
  width: 100%;
  opacity: 0;
  transform: scaleX(0);
}
.pcu95front .hmenu-trigger.is-open .hmenu-trigger__bar:nth-child(3) {
  width: 100%;
  transform: translateY(-6.5px) rotate(-45deg);
}

.pcu95front .hmenu-trigger__label {
  font-family: var(--font-family-inter), sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: currentColor;
  transition: letter-spacing 0.3s ease;
}
.pcu95front .hmenu-trigger.is-open .hmenu-trigger__label {
  letter-spacing: 0.22em;
}

/* -----------------------------------------------------------
   OVERLAY CONTAINER
   ----------------------------------------------------------- */
.pcu95front .hmenu {
  position: fixed;
  inset: 0;
  z-index: 1200;
  pointer-events: none;
  visibility: hidden;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: normal;
  text-align: left;
  color: var(--text-primary, #111827);
}
.pcu95front .hmenu.is-open {
  pointer-events: auto;
  visibility: visible;
}

/* -----------------------------------------------------------
   BACKDROP – blur + dark tint
   ----------------------------------------------------------- */
.pcu95front .hmenu__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 12, 0.28);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  opacity: 0;
  transition: opacity 0.26s ease;
}
@supports not (backdrop-filter: blur(1px)) {
  .pcu95front .hmenu__backdrop {
    background: rgba(8, 8, 12, 0.6);
  }
}
.pcu95front .hmenu.is-open .hmenu__backdrop {
  opacity: 1;
}

/* -----------------------------------------------------------
   PANEL – glassmorphism drawer
   ----------------------------------------------------------- */
.pcu95front .hmenu__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(420px, 90vw);
  max-height: 100vh;
  max-height: 100dvh;
  height: 100%;
  /* globals.css の line-height / letter-spacing がパネル内タイポに波及しないよう固定 */
  line-height: 1.6;
  letter-spacing: 0;
  font-size: 16px;
  color: var(--text-primary, #111827);
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(
      168deg,
      rgba(255, 255, 255, 0.92) 0%,
      rgba(252, 250, 251, 0.84) 100%
    );
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  border-left: 1px solid rgba(255, 255, 255, 0.45);
  /* styleguide の --shadow-* 変更の影響を受けないよう固定値 */
  box-shadow:
    -20px 0 60px rgba(0, 0, 0, 0.07),
    -3px 0 10px rgba(0, 0, 0, 0.03);
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}
@supports not (backdrop-filter: blur(1px)) {
  .pcu95front .hmenu__panel {
    background: rgba(255, 255, 255, 0.98);
  }
}
.pcu95front .hmenu.is-open .hmenu__panel {
  transform: translateX(0);
}

/* -----------------------------------------------------------
   HEADER – logo + close
   ----------------------------------------------------------- */
.pcu95front .hmenu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pcu95front .hmenu__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

/* ロゴ画像は CMS 設定値を img の src で受け取る（背景画像で固定しない）。
   CMS に登録された画像の色をそのまま出す。filter / mask で単色化しないこと
   （旧実装は div + background-image だったため、テーマ側で
   filter: brightness(0) を掛けて単色ロゴを作っていた）。 */
.pcu95front .hmenu__logo {
  display: block;
  width: clamp(100px, 16vw, 150px);
  height: clamp(24px, 3.8vw, 36px);
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
  background: transparent;
  filter: none;
  mask: none;
  -webkit-mask: none;
  mix-blend-mode: normal;
  flex-shrink: 0;
}

.pcu95front .hmenu__close {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  color: var(--text-primary, #111827);
  font-size: 18px;
  cursor: pointer;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}
.pcu95front .hmenu__close:focus-visible {
  outline: 2px solid var(--accent, #e8919f);
  outline-offset: 2px;
}

/* スマホ用コンパクトUI（PCでは非表示） */
.pcu95front .hmenu__cta-row,
.pcu95front .hmenu__sns--compact {
  display: none;
}

.pcu95front .hmenu__footer-desktop {
  display: block;
}

.pcu95front .hmenu__sns--desktop {
  display: block;
}

/* PC：フッター内のCTA→受付時間の順序を整える */
@media (min-width: 901px) {
  .pcu95front .hmenu__footer {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .pcu95front .hmenu__footer-desktop {
    order: 1;
  }

  .pcu95front .hmenu__hours {
    order: 2;
    margin-top: 12px;
  }

  .pcu95front .hmenu__cta-row,
  .pcu95front .hmenu__sns--compact {
    display: none !important;
  }

  .pcu95front .hmenu__sns--desktop {
    display: block;
    flex-shrink: 0;
  }

  .pcu95front .hmenu__footer-desktop {
    display: block;
  }

  .pcu95front .hmenu__nav {
    flex: 1 1 auto;
    min-height: 0;
  }
}

/* -----------------------------------------------------------
   NAVIGATION
   ----------------------------------------------------------- */
.pcu95front .hmenu__nav {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior-y: contain;
  -webkit-overflow-scrolling: touch;
  padding: 12px 0;
}

.pcu95front .hmenu__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Staggered entrance */
.pcu95front .hmenu__item {
  opacity: 0;
  transform: translateX(20px);
  animation: hmenuSlideIn 0.38s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  animation-delay: calc(var(--i, 0) * 35ms + 60ms);
}
.pcu95front .hmenu:not(.is-open) .hmenu__item {
  animation: none;
  opacity: 1;
  transform: none;
}
@keyframes hmenuSlideIn {
  to { opacity: 1; transform: none; }
}

/* Link row */
.pcu95front .hmenu__link {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 54px;
  padding: 0 24px;
  text-decoration: none;
  color: var(--text-primary, #1a1a1a);
  font-size: clamp(14px, 3.6vw, 15px);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.4;
  position: relative;
  transition:
    color 0.18s ease,
    padding-left 0.28s cubic-bezier(0.25, 1, 0.5, 1);
  -webkit-tap-highlight-color: transparent;
}

/* Glow accent line (left edge) */
.pcu95front .hmenu__link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 3px;
  height: 0;
  border-radius: 0 3px 3px 0;
  background: var(--accent, #e8919f);
  box-shadow: 0 0 10px rgba(232, 145, 159, 0.4);
  transform: translateY(-50%);
  transition: height 0.26s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Bottom separator */
.pcu95front .hmenu__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 24px;
  right: 24px;
  height: 1px;
  background: rgba(0, 0, 0, 0.04);
}

.pcu95front .hmenu__link:hover,
.pcu95front .hmenu__link:focus-visible {
  color: var(--accent, #e8919f);
  padding-left: 30px;
}
.pcu95front .hmenu__link:hover::before,
.pcu95front .hmenu__link:focus-visible::before {
  height: 22px;
}
.pcu95front .hmenu__link:focus-visible {
  outline: 2px solid var(--accent, #e8919f);
  outline-offset: -2px;
  border-radius: 6px;
}
.pcu95front .hmenu__link:active {
  background: rgba(232, 145, 159, 0.05);
}

/* Number label */
.pcu95front .hmenu__link-num {
  font-family: var(--font-family-inter), sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-muted, #c0c0c0);
  min-width: 18px;
  transition: color 0.18s ease;
}
.pcu95front .hmenu__link:hover .hmenu__link-num {
  color: var(--accent, #e8919f);
}

.pcu95front .hmenu__link-text {
  flex: 1;
  min-width: 0;
}

.pcu95front .hmenu__link-ext {
  font-size: 10px;
  color: var(--text-muted, #b0b0b0);
  transition: color 0.18s ease;
}

.pcu95front .hmenu__link-arrow {
  display: flex;
  align-items: center;
  color: var(--text-muted, #c8c8c8);
  transition:
    transform 0.28s cubic-bezier(0.25, 1, 0.5, 1),
    color 0.18s ease;
}
.pcu95front .hmenu__link:hover .hmenu__link-arrow {
  transform: translateX(4px);
  color: var(--accent, #e8919f);
}

/* -----------------------------------------------------------
   FOOTER CTA
   ----------------------------------------------------------- */
.pcu95front .hmenu__footer {
  flex-shrink: 0;
  padding: 20px 24px;
  padding-bottom: max(20px, env(safe-area-inset-bottom, 20px));
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  background: rgba(245, 244, 246, 0.45);
}

/* Magnetic hover wrapper */
.pcu95front .hmenu__tel-wrap {
  position: relative;
  padding: 6px;
  margin: -6px;
}

/* Phone button */
.pcu95front .hmenu__tel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 14px 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent, #e8919f) 0%, #d07086 100%);
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  box-shadow:
    0 6px 20px rgba(232, 145, 159, 0.3),
    0 2px 5px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  transition:
    box-shadow 0.2s ease,
    transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
  will-change: transform;
}

/* Pulsing glow ring */
.pcu95front .hmenu__tel-ring {
  position: absolute;
  inset: -3px;
  border-radius: 17px;
  border: 2px solid rgba(232, 145, 159, 0.25);
  animation: hmenuPulse 2.8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes hmenuPulse {
  0%, 100% { opacity: 0; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.015); }
}

.pcu95front .hmenu__tel:hover {
  box-shadow:
    0 8px 28px rgba(232, 145, 159, 0.45),
    0 3px 8px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.pcu95front .hmenu__tel:active {
  transform: scale(0.97) !important;
  box-shadow:
    0 2px 10px rgba(232, 145, 159, 0.2),
    0 1px 3px rgba(0, 0, 0, 0.04),
    inset 0 2px 4px rgba(0, 0, 0, 0.1);
  transition-duration: 0.08s;
}
.pcu95front .hmenu__tel:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
  box-shadow:
    0 6px 20px rgba(232, 145, 159, 0.3),
    0 0 0 5px rgba(232, 145, 159, 0.25);
}

.pcu95front .hmenu__tel-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  flex-shrink: 0;
  font-size: 17px;
}

.pcu95front .hmenu__tel-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.pcu95front .hmenu__tel-cta {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
}

.pcu95front .hmenu__tel-number {
  font-family: var(--font-family-inter), sans-serif;
  font-size: clamp(17px, 4.8vw, 21px);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.1;
}

/* Reception hours */
.pcu95front .hmenu__hours {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 12px 0 0;
  padding: 0;
  font-size: 12px;
  color: var(--text-muted, #9ca3af);
}
.pcu95front .hmenu__hours i {
  font-size: 11px;
}

/* -----------------------------------------------------------
   公式SNS（写メ日記・SNS設定）
   ----------------------------------------------------------- */
.pcu95front .hmenu__sns {
  flex-shrink: 0;
  padding: 16px 20px 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.35);
}
.pcu95front .hmenu__sns-head {
  margin: 0 0 12px;
  padding: 0 4px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pcu95front .hmenu__sns-head-en {
  font-family: var(--font-family-inter), sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--text-muted, #9ca3af);
}
.pcu95front .hmenu__sns-head-jp {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary, #1a1a1a);
  letter-spacing: 0.04em;
}
.pcu95front .hmenu__sns-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
}
.pcu95front .hmenu__sns-item {
  flex: 0 0 auto;
  opacity: 0;
  transform: translateY(8px);
  animation: hmenuSnsIn 0.35s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  animation-delay: calc(80ms + var(--si, 0) * 45ms);
}
.pcu95front .hmenu:not(.is-open) .hmenu__sns-item {
  animation: none;
  opacity: 1;
  transform: none;
}
@keyframes hmenuSnsIn {
  to { opacity: 1; transform: none; }
}
.pcu95front .hmenu__sns-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 76px;
  padding: 12px 10px 10px;
  border-radius: 14px;
  text-decoration: none;
  color: var(--text-primary, #374151);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}
.pcu95front .hmenu__sns-btn:hover,
.pcu95front .hmenu__sns-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  outline: none;
}
.pcu95front .hmenu__sns-btn:focus-visible {
  outline: 2px solid var(--accent, #e8919f);
  outline-offset: 2px;
}
.pcu95front .hmenu__sns-btn:active {
  transform: translateY(0);
}
.pcu95front .hmenu__sns-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 18px;
  transition: background 0.2s ease, color 0.2s ease;
}
.pcu95front .hmenu__sns-btn-text {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: center;
  line-height: 1.2;
  max-width: 72px;
}
.pcu95front .hmenu__sns-btn--x .hmenu__sns-btn-icon {
  background: rgba(15, 20, 25, 0.08);
  color: #0f1419;
}
.pcu95front .hmenu__sns-btn--x:hover .hmenu__sns-btn-icon,
.pcu95front .hmenu__sns-btn--x:focus-visible .hmenu__sns-btn-icon {
  background: #0f1419;
  color: #fff;
}
.pcu95front .hmenu__sns-btn--ig .hmenu__sns-btn-icon {
  background: linear-gradient(145deg, rgba(225, 48, 108, 0.12), rgba(253, 29, 29, 0.08), rgba(245, 133, 41, 0.1));
  color: #e4405f;
}
.pcu95front .hmenu__sns-btn--ig:hover .hmenu__sns-btn-icon,
.pcu95front .hmenu__sns-btn--ig:focus-visible .hmenu__sns-btn-icon {
  background: linear-gradient(145deg, #833ab4, #fd1d1d, #fcb045);
  color: #fff;
}
.pcu95front .hmenu__sns-btn--tt .hmenu__sns-btn-icon {
  background: rgba(0, 0, 0, 0.06);
  color: #000;
}
.pcu95front .hmenu__sns-btn--tt:hover .hmenu__sns-btn-icon,
.pcu95front .hmenu__sns-btn--tt:focus-visible .hmenu__sns-btn-icon {
  background: #000;
  color: #fff;
  box-shadow: 0 0 0 2px #25f4ee, 0 0 0 4px #fe2c55;
}
.pcu95front .hmenu__sns-btn--bs .hmenu__sns-btn-icon {
  background: rgba(18, 133, 254, 0.12);
  color: #1185fe;
}
.pcu95front .hmenu__sns-btn--bs:hover .hmenu__sns-btn-icon,
.pcu95front .hmenu__sns-btn--bs:focus-visible .hmenu__sns-btn-icon {
  background: #1185fe;
  color: #fff;
}

/* LINE でお問い合わせ */
.pcu95front .hmenu__line {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  margin-top: 12px;
  padding: 14px 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, #06c755 0%, #00b900 50%, #059669 100%);
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  box-shadow:
    0 6px 20px rgba(6, 199, 85, 0.28),
    0 2px 5px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}
.pcu95front .hmenu__line:hover {
  box-shadow:
    0 8px 26px rgba(6, 199, 85, 0.38),
    0 3px 8px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.pcu95front .hmenu__line:active {
  transform: scale(0.98);
}
.pcu95front .hmenu__line:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(6, 199, 85, 0.35);
}
.pcu95front .hmenu__line-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  flex-shrink: 0;
  font-size: 22px;
}
.pcu95front .hmenu__line-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
  flex: 1;
}
.pcu95front .hmenu__line-cta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.pcu95front .hmenu__line-sub {
  font-size: 11px;
  opacity: 0.88;
  line-height: 1.35;
}
.pcu95front .hmenu__line-arrow {
  flex-shrink: 0;
  font-size: 11px;
  opacity: 0.75;
}

/* -----------------------------------------------------------
   REDUCED MOTION
   ----------------------------------------------------------- */
/* スマホ：ドロワー幅・コンパクトフッター・メニュー優先レイアウト */
@media (max-width: 900px) {
  .pcu95front .hmenu__panel {
    width: min(100%, 100vw);
    max-width: 100%;
    border-left: none;
  }

  .pcu95front .hmenu__close {
    display: inline-flex;
  }

  .pcu95front .hmenu__header {
    padding: 12px 16px;
  }

  .pcu95front .hmenu__link {
    min-height: 48px;
    padding: 0 16px;
    font-size: 14px;
  }

  .pcu95front .hmenu__link::after {
    left: 16px;
    right: 16px;
  }

  .pcu95front .hmenu__nav {
    padding: 8px 0 4px;
  }

  .pcu95front .hmenu__footer {
    padding: 12px 16px;
    padding-bottom: max(12px, env(safe-area-inset-bottom, 12px));
    background: rgba(245, 244, 246, 0.72);
  }

  .pcu95front .hmenu__footer-desktop {
    display: none;
  }

  .pcu95front .hmenu__sns--desktop {
    display: none;
  }

  .pcu95front .hmenu__cta-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 10px;
  }

  .pcu95front .hmenu__sns--compact {
    display: block;
  }

  .pcu95front .hmenu__cta-row:has(.hmenu__cta:only-child) {
    grid-template-columns: 1fr;
  }

  .pcu95front .hmenu__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 12px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    -webkit-tap-highlight-color: transparent;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
  }

  .pcu95front .hmenu__cta:active {
    transform: scale(0.98);
  }

  .pcu95front .hmenu__cta--tel {
    background: linear-gradient(135deg, var(--accent, #e8919f) 0%, #d07086 100%);
    color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }

  .pcu95front .hmenu__cta--line {
    background: linear-gradient(135deg, #06c755 0%, #00b900 100%);
    color: #fff;
    box-shadow: 0 2px 8px rgba(6, 199, 85, 0.2);
  }

  .pcu95front .hmenu__cta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    font-size: 14px;
    flex-shrink: 0;
  }

  .pcu95front .hmenu__cta-label {
    line-height: 1;
  }

  .pcu95front .hmenu__sns.hmenu__sns--compact {
    padding: 0;
    margin: 0 0 8px;
    border-top: none;
    background: transparent;
  }

  .pcu95front .hmenu__sns--compact .hmenu__sns-list {
    justify-content: center;
    flex-wrap: nowrap;
    gap: 8px;
  }

  .pcu95front .hmenu__sns--compact .hmenu__sns-btn {
    min-width: 0;
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 50%;
    gap: 0;
    box-shadow: none;
  }

  .pcu95front .hmenu__sns--compact .hmenu__sns-btn-text {
    display: none;
  }

  .pcu95front .hmenu__sns--compact .hmenu__sns-btn-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .pcu95front .hmenu__hours {
    margin: 0;
    font-size: 11px;
    gap: 6px;
  }

  .pcu95front .hmenu-trigger {
    min-width: var(--touch-min, 44px);
    min-height: var(--touch-min, 44px);
    align-items: center;
    justify-content: center;
    padding: 10px;
  }
}

/* スマホ：ドロワー幅・ハンバーガー押しやすさ（レガシー480px） */
@media (max-width: 480px) {
  .pcu95front .hmenu__panel {
    width: min(100%, 100vw);
    max-width: 100%;
    border-left: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pcu95front .hmenu-trigger__bar,
  .pcu95front .hmenu-trigger__label {
    transition: none;
  }
  .pcu95front .hmenu__backdrop,
  .pcu95front .hmenu__panel {
    transition: none;
  }
  .pcu95front .hmenu__item {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .pcu95front .hmenu__link,
  .pcu95front .hmenu__link::before,
  .pcu95front .hmenu__link-arrow,
  .pcu95front .hmenu__link-num,
  .pcu95front .hmenu__tel {
    transition: none;
  }
  .pcu95front .hmenu__tel-ring {
    animation: none;
  }
  .pcu95front .hmenu__sns-item {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .pcu95front .hmenu__sns-btn,
  .pcu95front .hmenu__line {
    transition: none;
  }
}
