/*==============================================================================
  予約フロー共通 — 店舗情報エリア
  共通スタイルは mens/common/css/grstyle.css の .reserveSummaryCard / .shopInfo ブロックに定義。
  このファイルは .shopNotice アコーディオンのみ担当。
==============================================================================*/

/* ─── Reservation Notes アコーディオン ─────────────────────────────────────── */

.shopNotice {
  margin-top: 6px;
  margin-bottom: 10px;
  border: none;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  padding: 0 14px;
}

.shopNotice summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 2px;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.shopNotice summary::-webkit-details-marker {
  display: none;
}

.shopNotice summary::after {
  content: "+";
  font-size: 18px;
  font-weight: 300;
  color: var(--ka-ink);
  flex-shrink: 0;
  line-height: 1;
}

.shopNotice[open] summary::after {
  content: "−";
  transform: none;
}

.shopNotice-label {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.shopNotice-en {
  font-family: 'Cormorant SC', serif;
  font-size: clamp(11px, 0.75vw, 14px);
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--ka-gold);
  text-transform: uppercase;
}

.shopNotice-ja {
  font-size: 10px;
  color: var(--ka-ink);
  letter-spacing: 0.04em;
}

.shopNotice .shopData {
  padding: 8px 2px 12px;
  color: #4A5C60;
  font-size: 13px;
  line-height: 1.8;
  border-top: 1px solid rgba(100, 130, 150, 0.10);
  margin: 0;
}
