/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #111111;
  --pink-light: #f4a7b9;
  --pink-dark: #c0526a;
  --white: #ffffff;
  --gray-100: #f8f8f8;
  --gray-200: #eeeeee;
  --gray-400: #aaaaaa;
  --gray-600: #666666;
  --green: #4caf7d;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 2px 16px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 32px rgba(0,0,0,0.12);
  --transition: 0.25s ease;
  --nav-h: 60px;
  --font: 'Noto Sans JP', sans-serif;
  --font-en: 'Playfair Display', serif;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--black);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== UTILITIES ===== */
.container { max-width: 1080px; margin: 0 auto; padding: 0 20px; }
.accent { color: var(--pink-dark); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: var(--black);
  box-shadow: 0 1px 0 rgba(255,255,255,0.08);
  transition: background var(--transition);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; padding: 0 20px; max-width: 1080px; margin: 0 auto;
}
.nav-logo { display: flex; align-items: center; gap: 8px; }
/* ナビロゴ：黒丸ロゴを黒背景に馴染ませるため border-radius:50% でクリップ */
.nav-logo-img {
  height: 32px;
  width: auto;
  object-fit: contain;
  border-radius: 50%;   /* 白背景の角を隠し、円形のみ表示 */
  display: block;
}
.nav-toggle {
  display: flex; flex-direction: column; gap: 5px; padding: 4px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-menu {
  display: none; position: absolute; top: var(--nav-h); left: 0; right: 0;
  background: var(--black); padding: 16px 20px 24px; flex-direction: column; gap: 4px;
}
.nav-menu.open { display: flex; }
.nav-menu li a {
  display: block; padding: 12px 8px; color: rgba(255,255,255,0.8); font-size: 0.95rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition);
}
.nav-menu li a:hover { color: var(--pink-light); }
.nav-menu li:last-child a { border-bottom: none; }
.nav-cta {
  display: inline-block !important;
  margin-top: 8px;
  background: var(--pink-dark) !important;
  color: var(--white) !important;
  border-radius: var(--radius-sm) !important;
  text-align: center;
  font-weight: 500;
  border-bottom: none !important;
}
.nav-cta:hover { background: #a84460 !important; }

@media (min-width: 768px) {
  .nav-toggle { display: none; }
  .nav-menu {
    display: flex !important; position: static;
    flex-direction: row; align-items: center; gap: 4px;
    padding: 0; background: none;
  }
  .nav-menu li a {
    padding: 8px 12px; border-bottom: none; font-size: 0.85rem;
    border-radius: var(--radius-sm);
  }
  .nav-cta { margin-top: 0 !important; padding: 8px 16px !important; }
}

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100svh; min-height: 100vh;
  display: flex; align-items: flex-start; justify-content: center;
  padding-top: calc(var(--nav-h) + 24px); overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(17,17,17,0.18) 0%,
    rgba(17,17,17,0.12) 40%,
    rgba(17,17,17,0.40) 100%
  );
}
.hero-content {
  position: relative; z-index: 1; text-align: center;
  color: var(--white); padding: 24px 24px 0; max-width: 640px;
}
.hero-eyebrow {
  font-size: 0.8rem; letter-spacing: 0.1em; color: rgba(255,255,255,0.92);
  margin-bottom: 16px; font-weight: 500;
  text-shadow: 0 1px 6px rgba(0,0,0,0.7);
}
/* ヒーローロゴ：スマホは小さく、PCは大きく */
.hero-logo-img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  border-radius: 50%;
  margin: 8px auto 0;
  display: block;
}
@media (min-width: 768px) {
  .hero-logo-img {
    width: 200px;
    height: 200px;
  }
}

/* 看板の下に配置する説明文ブロック */
.hero-desc-wrap {
  position: absolute;
  top: 58%;
  left: 0; right: 0;
  z-index: 1;
  text-align: center;   /* inline-block の desc を中央に */
  padding: 0 24px;
}
.hero-subtitle {
  font-family: var(--font-en); font-size: clamp(0.75rem, 2.5vw, 1rem);
  letter-spacing: 0.25em; color: var(--pink-light);
  margin-bottom: 20px; text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(0,0,0,0.7);
}
.hero-desc {
  font-size: 0.95rem; line-height: 1.9;
  color: rgba(255,255,255,0.95);
  background: rgba(17,17,17,0.45);
  padding: 12px 20px; border-radius: var(--radius-sm);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: inline-block;   /* テキスト幅にぴったり合わせる */
}
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: center; margin-bottom: 32px;
}
.hero-badge {
  background: rgba(244,167,185,0.18); border: 1px solid rgba(244,167,185,0.4);
  color: var(--pink-light); padding: 6px 14px; border-radius: 100px;
  font-size: 0.8rem; letter-spacing: 0.04em;
}
.hero-scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 1; color: rgba(255,255,255,0.5);
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  animation: bounce 2s infinite;
}
.hero-scroll-label {
  font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); font-family: var(--font-en);
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 28px; border-radius: var(--radius-sm);
  font-size: 0.9rem; font-weight: 500; letter-spacing: 0.04em;
  transition: all var(--transition); cursor: pointer;
}
.btn-primary {
  background: var(--pink-dark); color: var(--white);
  box-shadow: 0 4px 16px rgba(192,82,106,0.35);
}
.btn-primary:hover { background: #a84460; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(192,82,106,0.45); }
.btn-outline {
  background: transparent; color: var(--pink-dark);
  border: 1.5px solid var(--pink-dark);
}
.btn-outline:hover { background: var(--pink-dark); color: var(--white); }
.btn-lg { padding: 16px 40px; font-size: 1rem; border-radius: var(--radius); }
.btn-full { width: 100%; }

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
.section-dark { background: var(--gray-100); }
.section-header { text-align: center; margin-bottom: 56px; }
.section-label {
  font-size: 0.7rem; letter-spacing: 0.25em; font-weight: 700;
  color: var(--pink-dark); text-transform: uppercase; margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.5rem, 4vw, 2.2rem); font-weight: 700;
  margin-bottom: 16px; line-height: 1.3;
}
.section-desc { font-size: 0.9rem; color: var(--gray-600); line-height: 1.8; }

/* ===== CONCEPT（シーンカード） ===== */
.scene-grid {
  display: flex; flex-direction: column; gap: 16px;
  max-width: 390px; margin: 0 auto;
}
.scene-card {
  border: 0.5px solid #eee; border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  background: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.scene-card:hover { transform: translateY(-4px); box-shadow: 0 6px 20px rgba(0,0,0,0.1); }
.scene-img-wrap {
  height: 200px; overflow: hidden; position: relative;
  background: var(--gray-200);
  border-radius: 10px 10px 0 0;
}
.scene-img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.4s ease;
}
.scene-card:hover .scene-img { transform: scale(1.03); }
.scene-img-placeholder::after {
  content: "📷 写真準備中";
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: var(--gray-400);
}
.scene-body { padding: 16px; }
.scene-title {
  font-size: 16px; font-weight: 500; margin-bottom: 0;
  display: flex; align-items: center; gap: 8px; color: var(--black);
}
.scene-icon { font-size: 18px; color: var(--pink-dark); flex-shrink: 0; }
.scene-desc {
  font-size: 13px; color: #555; line-height: 1.7; margin-top: 6px;
}

@media (min-width: 768px) {
  .scene-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
  }
}

/* セクション上部バナー画像（専門職・イベントセクション） */
.section-img-banner {
  width: 100%; height: 180px; object-fit: cover;
  border-radius: 10px; margin-bottom: 32px;
  display: block;
}

/* ===== SPACE ===== */
.space-grid {
  display: grid; gap: 20px;
}
.space-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.space-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.space-img-wrap { position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--gray-200); }
.space-img { width: 100%; height: 100%; object-fit: cover; object-position: center bottom; transition: transform 0.4s ease; }
.space-card:hover .space-img { transform: scale(1.04); }
.img-placeholder::after {
  content: "📷 写真準備中";
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  color: var(--gray-400); font-size: 0.85rem;
}
.space-body { padding: 20px 24px; }
.space-badge {
  display: inline-block; background: var(--pink-dark); color: var(--white);
  font-size: 0.7rem; padding: 3px 10px; border-radius: 100px;
  margin-bottom: 10px; font-weight: 500;
}
.space-body h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.space-body p { font-size: 0.85rem; color: var(--gray-600); }

@media (min-width: 768px) {
  .space-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ===== 利用ルール（PDFリンク帯） ===== */
.rules-band { padding: 32px 0; background: var(--gray-100); }
.rules-card {
  display: flex; flex-direction: column; gap: 16px;
  align-items: center; text-align: center;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 24px 28px;
}
.rules-text h3 { font-size: 1.05rem; font-weight: 700; color: var(--black); margin-bottom: 6px; }
.rules-text p { font-size: 0.85rem; color: var(--gray-600); line-height: 1.7; }
.rules-emphasis { color: var(--black); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.rules-btn {
  flex-shrink: 0; display: inline-block; white-space: nowrap;
  background: var(--pink-dark); color: var(--white);
  font-size: 0.9rem; font-weight: 700; text-decoration: none;
  padding: 13px 26px; border-radius: var(--radius-sm);
  transition: background 0.2s ease;
}
.rules-btn:hover { background: #a84460; }

@media (min-width: 768px) {
  .rules-card { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ===== CALENDAR ===== */
.calendar-wrap {
  max-width: 480px; margin: 0 auto;
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden;
}
.calendar-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; background: var(--black); color: var(--white);
}
.cal-btn {
  color: var(--white); padding: 6px; border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.cal-btn:hover { background: rgba(255,255,255,0.12); }
.cal-month-label { font-size: 1rem; font-weight: 500; letter-spacing: 0.04em; }
.calendar-grid {
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: 1px; background: var(--gray-200); padding: 0;
}
.cal-day-header {
  background: var(--gray-100); text-align: center; padding: 10px 4px;
  font-size: 0.72rem; font-weight: 700; color: var(--gray-600);
}
.cal-day-header.cal-fri { color: var(--pink-dark); }
.cal-day {
  background: var(--white); text-align: center;
  padding: 10px 4px; font-size: 0.85rem; min-height: 44px;
  display: flex; align-items: center; justify-content: center;
  position: relative; cursor: default;
}
.cal-day.cal-empty { background: var(--gray-100); }
.cal-day.cal-today { font-weight: 700; }
.cal-day.cal-today::after {
  content: ''; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 4px; border-radius: 50%; background: var(--black);
}
.cal-day.cal-open {
  background: rgba(244,167,185,0.15);
  color: var(--pink-dark); font-weight: 700; cursor: pointer;
}
.cal-day.cal-open::before {
  content: ''; position: absolute; top: 4px; left: 50%; transform: translateX(-50%);
  width: 6px; height: 6px; border-radius: 50%; background: var(--pink-dark);
}
.cal-day.cal-open:hover { background: rgba(192,82,106,0.15); }
.cal-day.cal-past { color: var(--gray-400); }
.calendar-legend {
  display: flex; gap: 16px; padding: 12px 20px;
  font-size: 0.75rem; color: var(--gray-600); border-top: 1px solid var(--gray-200);
}
.legend-open { color: var(--pink-dark); font-weight: 500; }

/* カレンダー：専門職の在中表示 */
.cal-staff {
  font-size: 9px;
  color: #555;
  display: block;
  margin-top: 1px;
  line-height: 1.2;
  white-space: nowrap;
  font-weight: 400;
}
/* 専門職ラベルが入る開館日はテキスト折返しを許可 */
.cal-day.cal-open { white-space: normal; }

/* カレンダー下部の固定注記 */
.calendar-note {
  font-size: 12px;
  color: #888;
  margin-top: 8px;
  line-height: 1.6;
}

/* ===== EVENTS ===== */
/* 受付終了（過去日程）イベント */
.event-item.event-past { opacity: 0.55; background: var(--gray-100); }
.event-item.event-past .event-title { color: var(--gray-600); }
.event-closed-badge {
  display: inline-block; background: var(--gray-400); color: var(--white);
  font-size: 0.68rem; font-weight: 700; padding: 2px 10px; border-radius: 100px;
}

/* イベントタブ */
.events-tabs {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 24px;
}
.events-tab {
  padding: 8px 16px; border-radius: 100px;
  font-size: 0.82rem; font-weight: 500; font-family: var(--font);
  border: 1.5px solid var(--gray-200); background: var(--white);
  color: var(--gray-600); cursor: pointer;
  transition: all var(--transition);
}
.events-tab:hover { border-color: var(--pink-dark); color: var(--pink-dark); }
.events-tab.active {
  background: var(--pink-dark); border-color: var(--pink-dark);
  color: var(--white);
}

.events-list { display: flex; flex-direction: column; gap: 12px; }

/* タブ切り替えアニメーション */
.event-item {
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.event-item.hidden {
  display: none;
}
.event-item.fade-in {
  animation: fadeSlideIn 0.25s ease forwards;
}
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.events-loading { text-align: center; padding: 40px 0; color: var(--gray-400); }
.events-error {
  text-align: center; padding: 40px 20px;
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow);
}
.events-error p { font-size: 0.9rem; font-weight: 600; margin-bottom: 8px; }
.events-error-sub { font-size: 0.82rem; color: var(--gray-600); font-weight: 400 !important; }
.events-error-sub a { color: var(--pink-dark); text-decoration: underline; }
.events-empty { text-align: center; padding: 40px 0; color: var(--gray-400); font-size: 0.9rem; }
.spinner {
  width: 32px; height: 32px; border: 3px solid var(--gray-200);
  border-top-color: var(--pink-dark); border-radius: 50%;
  animation: spin 0.8s linear infinite; margin: 0 auto 12px;
}
@keyframes spin { to { transform: rotate(360deg); } }
.spin { animation: spin 0.8s linear infinite; }

.event-item {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
}
.event-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px; cursor: pointer; gap: 12px;
  transition: background var(--transition);
}
.event-header:hover { background: var(--gray-100); }
.event-header-left { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.event-title { font-size: 0.95rem; font-weight: 700; }
.event-meta-row { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.event-type-badge {
  font-size: 0.68rem; padding: 2px 8px; border-radius: 100px;
  font-weight: 600;
}
.badge-event  { background: rgba(244,167,185,0.2);  color: var(--pink-dark); }
.badge-youth  { background: rgba(100,160,255,0.15); color: #2a52a8; }
.badge-consult{ background: rgba(255,200,50,0.2);   color: #a07000; }
.event-date-text { font-size: 0.78rem; color: var(--gray-600); }
.event-capacity-bar-wrap { display: flex; align-items: center; gap: 8px; flex: 1; max-width: 140px; }
.event-capacity-bar {
  flex: 1; height: 6px; background: var(--gray-200); border-radius: 3px; overflow: hidden;
}
.event-capacity-fill {
  height: 100%; border-radius: 3px; background: var(--pink-dark);
  transition: width 0.5s ease;
}
.event-capacity-fill.full { background: var(--gray-400); }
.event-seats { font-size: 0.72rem; white-space: nowrap; }
.seats-available { color: var(--pink-dark); font-weight: 700; }
.seats-full { color: var(--gray-400); }
.event-chevron { color: var(--gray-400); transition: transform var(--transition); flex-shrink: 0; }
.event-item.open .event-chevron { transform: rotate(180deg); }
.event-body {
  display: none; padding: 0 20px 20px; border-top: 1px solid var(--gray-200);
}
.event-item.open .event-body { display: block; }
.event-staff {
  font-size: 0.8rem; color: var(--gray-600);
  padding-top: 14px; margin-bottom: 6px;
  display: flex; align-items: center; gap: 6px;
}
.event-staff-label {
  background: var(--gray-200); color: var(--gray-600);
  font-size: 0.68rem; padding: 2px 7px; border-radius: 4px;
  font-weight: 600; flex-shrink: 0;
}
.event-desc { font-size: 0.85rem; color: var(--gray-600); margin-bottom: 16px; line-height: 1.8; white-space: pre-line; }
.event-reserve-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--pink-dark); color: var(--white);
  padding: 10px 20px; border-radius: var(--radius-sm);
  font-size: 0.85rem; font-weight: 500;
  transition: all var(--transition);
}
.event-reserve-btn:hover { background: #a84460; transform: translateY(-1px); }
.event-reserve-btn.full-btn {
  background: var(--gray-200); color: var(--gray-400); cursor: default;
}
.event-reserve-btn.full-btn:hover { transform: none; background: var(--gray-200); }

/* ===== STAFF ===== */
.staff-grid { display: grid; gap: 20px; margin-bottom: 24px; }
.staff-card {
  background: var(--gray-100); border-radius: var(--radius);
  padding: 28px 24px; display: flex; gap: 20px;
}
.staff-icon { font-size: 2.4rem; flex-shrink: 0; }
.staff-badge {
  display: inline-block; background: var(--pink-dark); color: var(--white);
  font-size: 0.7rem; padding: 3px 10px; border-radius: 100px;
  margin-bottom: 10px; font-weight: 500;
}
.staff-badge-green { background: var(--green); }
.staff-body h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.staff-body p { font-size: 0.85rem; color: var(--gray-600); line-height: 1.8; margin-bottom: 12px; }
.staff-list { font-size: 0.82rem; color: var(--gray-600); display: flex; flex-direction: column; gap: 4px; }
.staff-list li::before { content: "・"; }
.btn-staff {
  display: inline-block; margin-top: 16px;
  padding: 10px 20px; border-radius: var(--radius-sm);
  background: var(--pink-dark); color: var(--white);
  font-size: 0.85rem; font-weight: 500;
  transition: all var(--transition);
}
.btn-staff:hover { background: #a84460; transform: translateY(-1px); }
.btn-staff-green { background: var(--green); }
.btn-staff-green:hover { background: #3a9467; }
.staff-body p.staff-card-note { font-size: 0.78rem; color: var(--gray-400); line-height: 1.7; margin-top: 4px; margin-bottom: 12px; }
.staff-note { font-size: 0.78rem; color: var(--gray-400); text-align: center; }

@media (min-width: 768px) {
  .staff-grid { grid-template-columns: 1fr 1fr; }
}

/* ===== FORM ===== */
.form-wrap {
  max-width: 560px; margin: 0 auto;
  background: var(--gray-100); border-radius: var(--radius);
  padding: 36px 28px; box-shadow: var(--shadow);
}
.form-group { margin-bottom: 20px; }
.form-label {
  display: block; font-size: 0.88rem; font-weight: 600;
  margin-bottom: 8px; color: var(--black);
}
.form-required {
  display: inline-block; background: var(--pink-dark); color: var(--white);
  font-size: 0.65rem; padding: 1px 6px; border-radius: 4px;
  margin-left: 6px; font-weight: 700; vertical-align: middle;
}
.form-optional {
  font-size: 0.72rem; color: var(--gray-400); font-weight: 400; margin-left: 4px;
}
.form-input, .form-select {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm); font-family: var(--font); font-size: 0.9rem;
  background: var(--white); color: var(--black);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
.form-input:focus, .form-select:focus {
  outline: none; border-color: var(--pink-dark);
  box-shadow: 0 0 0 3px rgba(192,82,106,0.12);
}
.form-input::placeholder { color: var(--gray-400); }
.form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23aaa' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }
.form-error { font-size: 0.78rem; color: var(--pink-dark); margin-top: 6px; min-height: 20px; }
.form-input.invalid, .form-select.invalid { border-color: var(--pink-dark); }
.consult-onsite-notice {
  font-size: 0.8rem; color: var(--black); line-height: 1.6;
  background: var(--gray-100); border-radius: var(--radius-sm);
  padding: 10px 12px; margin-top: 8px;
}

/* ===== 通知バナー（alert代替） ===== */
.form-banner {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 14px 16px; margin-bottom: 20px; border-radius: var(--radius-sm);
  font-size: 0.86rem; font-weight: 600; line-height: 1.5;
  color: var(--white); background: var(--pink-dark);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  animation: bannerSlide 0.32s cubic-bezier(0.16, 1, 0.3, 1);
}
.form-banner.fade-out { animation: bannerFade 0.4s ease forwards; }
.form-banner-text { flex: 1; }
.form-banner-close {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
  color: var(--white); font-size: 1.1rem; line-height: 1;
  background: rgba(255,255,255,0.18); transition: background var(--transition);
}
.form-banner-close:hover { background: rgba(255,255,255,0.32); }

/* タイプ別カラー */
.form-banner.banner-validation { background: #e0883a; }
.form-banner.banner-error      { background: var(--pink-dark); }
.form-banner.banner-full       { background: #c0526a; }
.form-banner.banner-duplicate  { background: #9c5fb5; }
.form-banner.banner-network    { background: #555; }

@keyframes bannerSlide {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bannerFade {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(-10px); }
}

/* ===== 日程ロック表示（イベントカードから予約） ===== */
.locked-schedule {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 14px 16px; border-radius: var(--radius-sm);
  background: var(--white); border: 1.5px solid var(--pink-dark);
}
.locked-schedule-text { font-size: 0.9rem; font-weight: 600; color: var(--black); line-height: 1.5; }
.locked-schedule-clear {
  flex-shrink: 0; font-size: 0.78rem; font-weight: 600; color: var(--pink-dark);
  text-decoration: underline; white-space: nowrap;
}
.locked-schedule-clear:hover { color: #a84460; }

/* ===== 予約完了モーダル ===== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(17, 17, 17, 0.72);
  display: flex; align-items: center; justify-content: center; padding: 20px;
  animation: modalFadeIn 0.25s ease;
}
.modal-card {
  background: var(--white); border-radius: var(--radius);
  padding: 36px 28px 28px; max-width: 440px; width: 100%;
  text-align: center; box-shadow: 0 12px 48px rgba(0,0,0,0.4);
  animation: modalPop 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 90vh; overflow-y: auto;
}
.modal-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--pink-dark); color: var(--white);
  font-size: 2rem; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.modal-title { font-size: 1.2rem; color: var(--black); margin-bottom: 16px; }
.modal-receipt {
  display: inline-flex; flex-direction: column; gap: 2px;
  background: var(--black); color: var(--white);
  padding: 10px 24px; border-radius: var(--radius-sm); margin-bottom: 16px;
}
.modal-receipt-label { font-size: 0.68rem; letter-spacing: 0.08em; opacity: 0.8; }
.modal-receipt-no { font-size: 1.05rem; font-weight: 700; letter-spacing: 0.02em; }
.modal-detail {
  text-align: left; background: var(--gray-100); border-radius: var(--radius-sm);
  padding: 14px 16px; margin-bottom: 16px; font-size: 0.85rem;
}
.modal-detail dt { font-weight: 700; color: var(--gray-600); font-size: 0.74rem; margin-bottom: 2px; }
.modal-detail dd { color: var(--black); margin-bottom: 10px; line-height: 1.5; }
.modal-detail dd:last-child { margin-bottom: 0; }
.modal-msg { font-size: 0.88rem; color: var(--gray-600); margin-bottom: 8px; line-height: 1.6; }
.modal-note { font-size: 0.76rem; color: var(--gray-400); margin-bottom: 22px; }
.modal-card .btn { margin-top: 0; }

@keyframes modalFadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ===== 予約フォームモーダル ===== */
.reserve-modal-card {
  max-width: 560px; width: 100%; text-align: left;
  padding: 40px 32px 32px; position: relative;
}
.reserve-modal-card .section-header { text-align: left; margin-bottom: 24px; }
.reserve-modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px; border-radius: 50%;
  border: none; background: var(--gray-100); color: var(--gray-600);
  font-size: 1.2rem; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.reserve-modal-close:hover { background: var(--gray-200); color: var(--black); }
@keyframes modalPop {
  from { opacity: 0; transform: scale(0.92) translateY(12px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.form-full-banner {
  background: rgba(192,82,106,0.08); border: 1.5px solid rgba(192,82,106,0.25);
  border-radius: var(--radius-sm); padding: 16px 20px; margin-bottom: 20px;
  display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center;
}
.form-full-banner p { font-size: 0.88rem; color: var(--pink-dark); font-weight: 600; }

.waitlist-banner {
  background: rgba(244,167,185,0.12); border-left: 3px solid var(--pink-dark);
  padding: 12px 16px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 20px;
}
.waitlist-banner p { font-size: 0.88rem; font-weight: 600; color: var(--pink-dark); }

.form-success {
  text-align: center; padding: 32px 16px;
}
.success-icon {
  width: 60px; height: 60px; border-radius: 50%; background: var(--pink-dark);
  color: var(--white); font-size: 1.8rem; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.form-success h3 { font-size: 1.1rem; margin-bottom: 10px; }
.form-success p { font-size: 0.88rem; color: var(--gray-600); }
.success-note { font-size: 0.78rem; color: var(--gray-400); margin-top: 8px; }

/* ===== ACCESS ===== */
.access-wrap { display: grid; gap: 24px; }
.access-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.access-info { display: flex; flex-direction: column; gap: 20px; }
.access-item { display: flex; gap: 14px; align-items: flex-start; }
.access-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.access-label { font-size: 0.72rem; font-weight: 700; color: var(--pink-dark); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.06em; }
.access-info p { font-size: 0.88rem; line-height: 1.7; }

@media (min-width: 768px) {
  .access-wrap { grid-template-columns: 1fr 1fr; }
}

/* ===== CONTACT ===== */
.contact-grid { display: grid; gap: 16px; margin-bottom: 32px; }
.contact-card {
  position: relative;
  background: var(--gray-100); border-radius: var(--radius);
  padding: 28px 20px; text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  display: block;
}
.contact-card:hover:not(.contact-card-disabled) { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.contact-card-disabled { opacity: 0.55; cursor: default; }
.contact-icon { font-size: 1.8rem; margin-bottom: 10px; }
.contact-label { font-size: 0.72rem; font-weight: 700; color: var(--gray-400); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.08em; }
.contact-value { font-size: 0.9rem; font-weight: 600; }
.contact-note { font-size: 0.75rem; color: var(--gray-400); margin-top: 4px; }
.copy-toast {
  position: absolute; left: 50%; bottom: 10px; transform: translateX(-50%) translateY(6px);
  background: var(--black); color: var(--white);
  font-size: 0.72rem; font-weight: 700; padding: 5px 14px; border-radius: 100px;
  opacity: 0; pointer-events: none; transition: opacity 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}
.copy-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.contact-org { text-align: center; font-size: 0.8rem; color: var(--gray-400); }

@media (min-width: 480px) {
  .contact-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ===== FOOTER ===== */
.footer { background: var(--black); color: var(--white); padding: 48px 0 24px; }
.footer-inner {
  display: flex; flex-direction: column; gap: 32px;
  padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand { display: flex; flex-direction: column; gap: 6px; }
/* フッターロゴ：白背景に黒丸なのでそのまま表示 */
.footer-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
}
.footer-brand p { font-size: 0.78rem; color: rgba(255,255,255,0.45); letter-spacing: 0.1em; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 8px 16px; }
.footer-nav a { font-size: 0.82rem; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-nav a:hover { color: var(--pink-light); }
.footer-bottom { padding-top: 24px; display: flex; flex-direction: column; gap: 6px; }
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.35); }
.footer-address { font-size: 0.72rem !important; }

@media (min-width: 768px) {
  .footer-inner { flex-direction: row; justify-content: space-between; align-items: flex-start; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 390px) {
  .section { padding: 60px 0; }
  .form-wrap { padding: 24px 16px; }
  .concept-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .concept-card { padding: 20px 14px; }
}
