/* ============================================
   fix-bottom
   PC（1025px以上）… 既存の円形 RESERVATION を維持
   TB/SP（1024px以下）… 3分割バー＋マイクロコピー
   ============================================ */

/* PCではマイクロコピーを出さない */
.fix-bottom .mc {
  display: none;
}

@media (max-width: 1024px) {

  /* --- ボタン共通：縦組み・等幅 --- */
  .fix-bottom .item {
    position: relative;
    overflow: visible;
  }

  .fix-bottom a {
    width: 100%;
    flex-direction: column;
    gap: 2px;
    line-height: 1.2;
    overflow: visible;
  }

  /* 既存アイコン（人物・PC・電話）を除去 */
  .fix-bottom a:before,
  .fix-bottom .reserve a:before,
  .fix-bottom .tel a:before {
    content: none;
    display: none;
  }

  /* 中央予約ボタンの円形を解除し等幅3分割に */
  .fix-bottom .item.reserve {
    width: calc(100% / 3) !important;
    border: none;
    border-left: 1px solid #fff;
    border-radius: 0 !important;
    padding: 0 !important;
    background: var(--color03);
  }

  .fix-bottom .item.reserve a {
    width: 100% !important;
    aspect-ratio: unset !important;
    border-radius: 0 !important;
    border: none !important;
    background: var(--color03);
    flex-direction: column !important;
  }

  /* --- ボタンラベル --- */
  .fix-bottom .btn-en {
    font-family: var(--ff01);
    font-size: 13px;
    letter-spacing: 0.02em;
  }

  /* .tel はaタグでないため個別指定 */
  .fix-bottom .item.tel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2px;
    line-height: 1.2;
  }

  /* --- マイクロコピー：3つ共通・完全統一 --- */
  .fix-bottom .mc {
    display: block;
    position: absolute;
    z-index: 3;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    min-width: 100px;
    background: var(--color02);
    color: #fff;
    font-family: var(--ff02);
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
    white-space: nowrap;
    padding: 3px 10px;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .25);
    pointer-events: none;
  }
}

@media (max-width: 599px) {
  .fix-bottom .btn-en {
    font-size: 11px;
    letter-spacing: 0;
  }

  .fix-bottom .mc {
    top: -10px;
    min-width: 0;
    font-size: 8px;
    padding: 3px 5px;
    letter-spacing: -0.2px;
  }
}


/* ============================================
   電話ポップアップ（TB/SP で使用）
   ============================================ */
.tel-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
}

.tel-modal.is-open {
  display: block;
}

.tel-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .5);
}

.tel-modal__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 340px;
  background: #fff;
  padding: 30px 24px 24px;
  border-radius: 4px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, .25);
}

.tel-modal__close {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 22px;
  line-height: 1;
  color: #999;
  cursor: pointer;
}

.tel-modal__ttl {
  display: block;
  text-align: center;
  font-family: var(--ff01);
  font-size: 18px;
  font-weight: 600;
  color: var(--color03);
  margin-bottom: 16px;
}

.tel-modal__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--ff02);
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid #e5e5e5;
}

.tel-modal__row dt {
  font-weight: 600;
}

.tel-modal__row.-off dd {
  color: #c0392b;
}

.tel-modal__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  padding: 14px;
  background: var(--color02);
  color: #fff;
  font-family: var(--ff01);
  font-size: 16px;
  letter-spacing: 1px;
  border-radius: 3px;
}

.tel-modal__note {
  display: block;
  margin-top: 10px;
  text-align: center;
  font-family: var(--ff02);
  font-size: 11px;
  color: #888;
  letter-spacing: 0.02em;
}

@media (max-width: 1024px) {
  .tel-modal__inner { padding: 26px 20px 20px; }
  .tel-modal__row { font-size: 13px; }
}

@media (max-width: 599px) {
  .tel-modal__inner { padding: 26px 20px 20px; }
  .tel-modal__ttl { font-size: 16px; }
  .tel-modal__row { font-size: 13px; padding: 7px 0; }
  .tel-modal__btn { font-size: 15px; padding: 13px; }
}
