/* ============================================
   フッター共通
============================================ */
.shop-footer {
  color: #fff;
  padding: 0 20px 0;
  font-family:
    "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans",
    Meiryo, sans-serif;
}
.footer-container {
  max-width: 1030px;
  margin: 0 auto;
  background-color: #8b0000;
  padding: 30px 24px 20px;
}

/* ナビ */
.footer-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  border-bottom: 1px solid #444;
  padding-bottom: 20px;
  margin-bottom: 30px;
}
.footer-nav li {
  margin: 5px 15px;
}
.footer-nav a {
  color: #ffb7c5;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: bold;
  transition: color 0.3s;
}
.footer-nav a:hover {
  color: #fff;
}

/* ロゴ */
.footer-logo-link {
  display: inline-block;
}
.footer-logo {
  height: 120px;
  width: auto;
  display: block;
}
.footer-shop-name {
  font-size: 0.78rem;
  color: #aaa;
  margin: 6px 0 0;
  letter-spacing: 0.05em;
}

/* 店舗情報 */
.footer-content {
  text-align: center;
  margin-bottom: 20px;
}
.time {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: #ffffff;
  line-height: 1.55;
}
.time-label {
  font-weight: bold;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 2px;
}
.time-row {
  white-space: nowrap;
  font-weight: bold;
}
.time-badge {
  display: inline-block;
  background: #fff;
  color: #8b0000;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: bold;
  white-space: nowrap;
}
.shop-details {
  line-height: 1.9;
  font-size: 0.9rem;
  color: #ffffff;
}
.tel {
  font-size: 1.4rem;
  font-weight: bold;
  color: #fff;
  display: inline-block;
  margin-bottom: 4px;
  text-decoration: none;
}

/* コピーライト */
.copyright {
  margin-top: 30px;
  font-size: 0.7rem;
  color: #ffffff;
  text-align: center;
  border-top: 1px solid #ff4d4d;
  padding-top: 16px;
}

/* PC (768px以上) */
@media (min-width: 768px) {
  .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
    gap: 30px;
  }
  .shop-info {
    flex-shrink: 0;
  }
  .shop-details {
    text-align: right;
  }
  .time {
    align-items: flex-end;
  }
  .time-label {
    justify-content: flex-end;
  }
}

/* SP (767px以下) */
@media (max-width: 767px) {
  .shop-footer {
    background-color: #f5f5f5;
    color: #333;
    padding: 28px 16px 20px;
  }
  .footer-container {
    background-color: transparent;
    padding: 0;
  }
  .footer-nav ul {
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
    padding-bottom: 14px;
    gap: 2px 0;
  }
  .footer-nav a {
    color: #8b0000;
    font-size: 0.82rem;
  }
  .footer-nav a:hover {
    color: #c00;
  }
  .footer-logo {
    height: auto;
    width: 70%;
    margin: 0 auto;
    display: block;
  }
  .footer-shop-name {
    color: #888;
    text-align: center;
  }
  .footer-content {
    text-align: center;
  }
  .time {
    color: #555;
    align-items: center;
    font-size: 0.85rem;
  }
  .time-label {
    color: #333;
    justify-content: center;
  }
  .time-badge {
    background: #8b0000;
    color: #fff;
  }
  .shop-details {
    color: #555;
    font-size: 0.85rem;
  }
  .tel {
    color: #8b0000;
    font-size: 1.2rem;
    text-decoration: none;
  }
  .copyright {
    color: #aaa;
    border-top: 1px solid #ddd;
  }
}
