
/* ==========================================================================
   ★ FONTAWESOME FONT-DISPLAY SWAP (Instant Icon Rendering) ★
   ========================================================================== */
@font-face {
  font-family: 'Font Awesome 6 Free';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/webfonts/fa-solid-900.woff2') format('woff2');
}
@font-face {
  font-family: 'Font Awesome 6 Free';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/webfonts/fa-regular-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Font Awesome 6 Brands';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/webfonts/fa-brands-400.woff2') format('woff2');
}

:root {
  --green-primary: #059669;
  --green-hover: #047857;
  --green-light: #ecfdf5;
  --dark-bar: #2d3748;
  --text-dark: #1a202c;
  --text-gray: #4a5568;
  --bg-light: #ffffff;
  --border-color: #e2e8f0;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--text-dark);
  background-color: #ffffff;
  line-height: 1.6;
}

/* 1. Top Bar (黒バー) */
.top-bar {
  background: var(--dark-bar);
  color: #a0aec0;
  font-size: 0.8rem;
  padding: 6px 0;
}

.top-bar-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-links a {
  color: #cbd5e0;
  text-decoration: none;
}

.top-links a:hover {
  color: #fff;
}

.sep {
  margin: 0 8px;
  opacity: 0.4;
}

.line-badge {
  background: #06c755;
  color: #fff;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: bold;
}

.admin-link {
  color: #06c755 !important;
  font-weight: bold;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  outline: inherit;
  display: inline;
}

/* 2. Main Header (中央飛び出しロゴ) */
.main-header {
  background: #ffffff;
  border-bottom: 1px solid var(--border-color);
  position: relative;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.header-inner {
  max-width: 1140px;
  margin: 0 auto;
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  position: relative;
}

.nav-left, .nav-right {
  display: flex;
  gap: 30px;
}

.nav-left a, .nav-right a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 700;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.nav-left a:hover, .nav-right a:hover {
  color: var(--green-primary);
}

/* 中央丸型エンブレム */
.center-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 5px;
}

.logo-circle {
  width: 95px;
  height: 95px;
  background: var(--green-primary);
  border: 4px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  text-align: center;
}

.logo-sub {
  font-size: 0.6rem;
  letter-spacing: 1px;
  opacity: 0.9;
}

.logo-main {
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.1;
}

.logo-title {
  font-size: 0.65rem;
  font-weight: 700;
}

/* 3. Hero Section (スクショ再現) */
.hero {
  position: relative;
  height: 440px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
}

.hero-bg-wrapper {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.35);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.handwritten-title {
  font-family: 'Caveat', cursive;
  font-size: 4.5rem;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  margin-bottom: 10px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}

.slider-dots .dot {
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
}

.slider-dots .dot.active {
  background: #ffffff;
}

.hero-caption {
  font-size: 1.15rem;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
  line-height: 1.6;
}

/* 右下丸ボタン */
.floating-badge {
  position: absolute;
  right: 40px;
  bottom: 30px;
  width: 90px;
  height: 90px;
  background: var(--green-primary);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
  transition: transform 0.2s;
  z-index: 10;
}

.floating-badge:hover {
  transform: scale(1.08);
}

.badge-text {
  font-size: 0.75rem;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
}

.arrow {
  font-size: 1.2rem;
  font-weight: bold;
}

/* 4. メインレイアウト */
.main-body {
  padding: 50px 0;
  background: #ffffff;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.two-column-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  margin-bottom: 60px;
}

/* 左カラム: お知らせ */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 2px solid var(--text-dark);
  padding-bottom: 8px;
  margin-bottom: 20px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-admin-add {
  background: var(--green-primary);
  color: #ffffff;
  border: none;
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-admin-add:hover {
  background: var(--green-hover);
}

.section-title-text {
  font-size: 1.4rem;
  font-weight: 900;
}

.en-sub {
  font-size: 0.85rem;
  color: #047857;
  font-weight: bold;
  margin-left: 6px;
}

.btn-more {
  background: #4a5568;
  color: #fff;
  text-decoration: none;
  font-size: 0.8rem;
  padding: 4px 12px;
  border-radius: 4px;
}

.news-list {
  list-style: none;
  margin-bottom: 30px;
}

.news-item {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.news-date {
  color: var(--text-gray);
  font-size: 0.85rem;
  white-space: nowrap;
}

.tag-new {
  background: var(--green-primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 3px;
  white-space: nowrap;
}

.news-text {
  flex-grow: 1;
}

.btn-delete-item {
  background: #ef4444;
  color: #fff;
  border: none;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  cursor: pointer;
  white-space: nowrap;
}

.btn-delete-item:hover {
  background: #dc2626;
}

.quick-info-box {
  background: var(--green-light);
  border: 1px solid #a7f3d0;
  padding: 20px;
  border-radius: 8px;
}

.quick-info-box h3 {
  font-size: 1.1rem;
  color: var(--green-primary);
  margin-bottom: 10px;
}

.quick-info-box ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* 5. 活動記録掲示板のスタイル */
.activity-section {
  margin-bottom: 60px;
}

.section-desc {
  font-size: 0.95rem;
  color: var(--text-gray);
  margin-bottom: 24px;
}

.btn-primary-small {
  background: var(--green-primary);
  color: #ffffff;
  border: none;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.85rem;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}

.btn-primary-small:hover {
  background: var(--green-hover);
  transform: translateY(-2px);
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.activity-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s;
}

.activity-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.activity-media-container {
  width: 100%;
  height: 200px;
  background: #f1f5f9;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.activity-media-container img,
.activity-media-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.activity-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.activity-header-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-gray);
  margin-bottom: 8px;
}

.activity-title {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.activity-text {
  font-size: 0.9rem;
  color: var(--text-dark);
  line-height: 1.5;
  margin-bottom: 12px;
  flex-grow: 1;
}

.activity-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px dashed var(--border-color);
  padding-top: 8px;
  margin-top: auto;
}

.badge-tag {
  background: #e2e8f0;
  color: var(--text-dark);
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: bold;
}

.media-preview {
  margin-top: 12px;
  max-height: 180px;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid var(--border-color);
}

.media-preview img, .media-preview video {
  width: 100%;
  max-height: 180px;
  object-fit: contain;
}

/* 右カラム: チラシフレーム */
.poster-frame {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.poster-img {
  width: 100%;
  border-radius: 4px;
  display: block;
}

/* テーブル & CTA */
.block-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  padding-left: 12px;
  border-left: 5px solid var(--green-primary);
}

.info-table-wrapper {
  margin-bottom: 50px;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
}

.info-table th {
  width: 180px;
  background: #f7fafc;
  padding: 16px;
  border: 1px solid var(--border-color);
  text-align: left;
  font-weight: bold;
}

.info-table td {
  padding: 16px;
  border: 1px solid var(--border-color);
}

.price-highlight {
  font-size: 1.3rem;
  color: #e53e3e;
  font-weight: bold;
}

.cta-banner {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  color: #fff;
  text-align: center;
  padding: 40px;
  border-radius: 12px;
}

.cta-banner h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.cta-button {
  background: #ffffff;
  color: var(--green-primary);
  font-size: 1.1rem;
  font-weight: bold;
  padding: 14px 36px;
  border: none;
  border-radius: 30px;
  margin-top: 20px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.2s;
}

.cta-button:hover {
  transform: scale(1.05);
}

.site-footer {
  background: var(--dark-bar);
  color: #a0aec0;
  text-align: center;
  padding: 24px;
  font-size: 0.85rem;
}

/* モーダルオーバーレイ */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-card {
  background: #ffffff;
  width: 90%;
  max-width: 480px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  overflow: hidden;
  animation: modalFadeIn 0.2s ease-out;
}

@keyframes modalFadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.modal-header {
  background: var(--dark-bar);
  color: #ffffff;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  font-size: 1.1rem;
  font-weight: bold;
}

.close-btn {
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0.8;
}

.close-btn:hover {
  opacity: 1;
}

.modal-body {
  padding: 24px;
}

.modal-desc {
  font-size: 0.85rem;
  color: var(--text-gray);
  margin-bottom: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: bold;
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: inherit;
}

.form-control:focus {
  outline: none;
  border-color: var(--green-primary);
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.15);
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.error-msg {
  color: #ef4444;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.btn-submit {
  width: 100%;
  background: var(--green-primary);
  color: #ffffff;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-submit:hover {
  background: var(--green-hover);
}

@media (max-width: 900px) {
  .two-column-layout {
    grid-template-columns: 1fr;
  }
  .nav-left, .nav-right {
    display: none;
  }
  .handwritten-title {
    font-size: 3rem;
  }
}

/* 拡大詳細表示モーダル CSS追記 */
.lightbox-card {
  max-width: 650px;
  width: 92%;
}

.lightbox-media-container {
  width: 100%;
  max-height: 400px;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
}

.lightbox-media-container img,
.lightbox-media-container video {
  max-width: 100%;
  max-height: 400px;
  object-fit: contain;
}

.lightbox-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
  color: #4a5568;
  font-size: 0.95rem;
}

.lightbox-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #2d3748;
  white-space: pre-wrap;
}

.clickable-card {
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.clickable-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.click-hint {
  font-size: 0.8rem;
  color: #00875a;
  font-weight: 500;
}

/* SNS風 いいね！ ＆ コメント交流スタイル */
.activity-footer-sns {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-color);
  padding-top: 10px;
  margin-top: auto;
}

.btn-like {
  background: #fff0f5;
  color: #e53e3e;
  border: 1px solid #fed7d7;
  padding: 4px 12px;
  border-radius: 16px;
  font-weight: bold;
  font-size: 0.85rem;
  cursor: pointer;
  transition: transform 0.15s, background 0.15s;
}

.btn-like:hover {
  background: #feb2b2;
  transform: scale(1.08);
}

.btn-comment-indicator {
  font-size: 0.8rem;
  color: var(--green-primary);
  font-weight: bold;
}

.comments-section {
  margin-top: 20px;
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
}

.comments-section h4 {
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.comments-list {
  max-height: 160px;
  overflow-y: auto;
  background: #f8fafc;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 12px;
}

.no-comment-text {
  font-size: 0.85rem;
  color: var(--text-gray);
  text-align: center;
}

.comment-item {
  font-size: 0.85rem;
  margin-bottom: 8px;
  border-bottom: 1px dashed #e2e8f0;
  padding-bottom: 6px;
}

.comment-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.comment-input-form {
  display: flex;
  gap: 8px;
}

.comment-inp-small {
  width: 110px !important;
}

/* ==========================================
   新機能①②⑤⑥ スタイル定義
   ========================================== */

/* ① 練習日程カレンダー */
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.schedule-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  border-left: 5px solid #22c55e;
  position: relative;
}
.schedule-date {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 8px;
}
.schedule-time, .schedule-place {
  font-size: 0.95rem;
  color: #64748b;
  margin-bottom: 6px;
}
.schedule-status {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 10px;
}
.status-open { background: #dcfce7; color: #166534; }
.status-few { background: #fef9c3; color: #854d0e; }
.status-full { background: #fee2e2; color: #991b1b; }

/* ② FAQ アコーディオン */
.faq-list {
  max-width: 800px;
  margin: 20px auto 0;
}
.faq-item {
  background: #ffffff;
  border-radius: 10px;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  overflow: hidden;
}
.faq-question {
  padding: 18px 20px;
  font-weight: 700;
  color: #1e293b;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}
.faq-question::after {
  content: '＋';
  font-size: 1.2rem;
  color: #22c55e;
  transition: transform 0.2s ease;
}
.faq-item.active .faq-question::after {
  content: '−';
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 20px;
  background: #f8fafc;
  color: #475569;
  line-height: 1.6;
}
.faq-item.active .faq-answer {
  max-height: 600px;
  padding: 15px 20px;
}

/* ⑤ 生の声・レビュー */
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.review-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  border: 1px solid #e2e8f0;
}
.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.review-avatar {
  width: 44px;
  height: 44px;
  background: #e0e7ff;
  color: #4338ca;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.review-meta h3, .review-meta h4 { font-size: 1rem; color: #1e293b; margin: 0; }
.review-stars { color: #f59e0b; font-size: 0.9rem; margin-top: 2px; }
.review-text { font-size: 0.95rem; color: #475569; line-height: 1.6; }

/* ⑥ アクセスガイド */
.access-box {
  background: #ffffff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}
@media (max-width: 768px) {
  .access-box { grid-template-columns: 1fr; }
}
.access-info h3 { font-size: 1.2rem; color: #1e293b; margin-bottom: 15px; }
.access-info p { margin-bottom: 10px; color: #475569; font-size: 0.95rem; }

/* 公式サークルマークロゴ用スタイル */
.center-logo-img {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  object-fit: cover;
  background: #ffffff;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  border: 2px solid #e2e8f0;
  transition: transform 0.3s ease;
  display: block;
}

.center-logo-img:hover {
  transform: scale(1.08) rotate(3deg);
  border-color: #d4af37;
}

/* おすすめギア紹介セクション用スタイル */
.gear-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.gear-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gear-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
  border-color: #d4af37;
}

.gear-badge {
  display: inline-block;
  background: #fff5f5;
  color: #e53e3e;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.gear-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 10px;
}

.gear-desc {
  font-size: 0.9rem;
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 20px;
}

.btn-amazon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #ff9900 0%, #e67e22 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 20px;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(255, 153, 0, 0.3);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn-amazon:hover {
  opacity: 0.92;
  transform: scale(1.03);
}

/* 動的月めくりカレンダー用スタイル */
.calendar-wrapper {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
  margin-top: 20px;
}

.calendar-header-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.calendar-month-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #1a202c;
}

.btn-cal-nav {
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  color: #334155;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.btn-cal-nav:hover {
  background: #d4af37;
  color: #ffffff;
  border-color: #d4af37;
}

.calendar-grid-table {
  width: 100%;
  border-collapse: collapse;
}

.calendar-grid-table th {
  padding: 10px 0;
  font-weight: bold;
  color: #64748b;
  text-align: center;
  border-bottom: 2px solid #e2e8f0;
}

.calendar-grid-table td {
  height: 70px;
  vertical-align: top;
  padding: 6px;
  border: 1px solid #f1f5f9;
  font-size: 0.9rem;
}

.calendar-grid-table td.sat { color: #2563eb; }
.calendar-grid-table td.sun { color: #dc2626; }
.calendar-grid-table td.today { background: #fefce8; font-weight: bold; }

.event-badge-item {
  display: block;
  background: #dcfce7;
  color: #15803d;
  font-size: 0.72rem;
  font-weight: bold;
  padding: 3px 6px;
  border-radius: 6px;
  margin-top: 4px;
  text-align: center;
}

/* 駐車場注意点・再現カード用スタイル */
.parking-notice-card {
  background: #fffdf5;
  border: 2px solid #f59e0b;
  border-radius: 16px;
  padding: 24px;
  margin-top: 25px;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.12);
}

.parking-notice-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #92400e;
  border-bottom: 2px dashed #fcd34d;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.parking-rules-box {
  background: #ffffff;
  border-radius: 12px;
  padding: 18px;
  border: 1px solid #fef3c7;
  margin-bottom: 20px;
}

.rule-item-title {
  font-weight: 700;
  font-size: 1.05rem;
  color: #1e293b;
  margin-bottom: 6px;
}

.rule-tag-ok {
  background: #dcfce7;
  color: #166534;
  font-weight: bold;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 0.85rem;
}

.rule-tag-ng {
  background: #fee2e2;
  color: #991b1b;
  font-weight: bold;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 0.85rem;
}

.map-layout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

@media (max-width: 768px) {
  .map-layout-grid {
    grid-template-columns: 1fr;
  }
}

/* ユーザーご提示SVG配置図専用アニメーション */
.building-group { transition: all 0.25s ease-in-out; }
.building-shape { transition: all 0.25s ease-in-out; }

.group-school:hover .building-shape { fill: #dbeafe; filter: drop-shadow(0 8px 16px rgba(37, 99, 235, 0.25)); }
.group-admin:hover .building-shape { fill: #d1fae5; filter: drop-shadow(0 8px 16px rgba(16, 185, 129, 0.25)); }
.group-gym:hover .building-shape { fill: #ffedd5; filter: drop-shadow(0 8px 16px rgba(249, 115, 22, 0.25)); }
.group-east:hover .building-shape { fill: #f3e8ff; filter: drop-shadow(0 8px 16px rgba(168, 85, 247, 0.25)); }
.group-parking-a:hover text { fill: #0d9488; }
.group-parking-b:hover text { fill: #4f46e5; }
.group-gate:hover text { fill: #e11d48; }

/* アニメーション動的点線 */
@keyframes dashAnimation {
  to {
    stroke-dashoffset: -40;
  }
}
.animated-route-overlay {
  stroke-dasharray: 8, 8;
  animation: dashAnimation 1.5s linear infinite;
  will-change: stroke-dashoffset;
}

/* === モバイルレスポンシブ補強 ＆ 表示改善 === */
@media (max-width: 768px) {
  .top-bar-inner {
    flex-direction: column;
    gap: 4px;
    padding: 6px 12px;
  }
  .top-links {
    font-size: 0.75rem;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .top-info {
    font-size: 0.72rem;
  }
  .top-info .sep:first-of-type,
  .top-info span:first-child {
    display: none;
  }
}

@media (max-width: 640px) {
  .info-table, 
  .info-table tbody, 
  .info-table tr, 
  .info-table th, 
  .info-table td {
    display: block;
    width: 100% !important;
    box-sizing: border-box;
  }
  .info-table th {
    border-bottom: none;
    padding: 8px 12px 2px 12px;
    background-color: #f1f5f9;
    color: #0f172a;
    font-size: 0.88rem;
  }
  .info-table td {
    padding: 4px 12px 12px 12px;
    border-top: none;
    font-size: 0.9rem;
  }
  .info-table tr {
    margin-bottom: 10px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
  }
}

/* ==========================================
   アニメーション演出（追加分）
   ========================================== */

/* 1. ピックルボールのバウンドアニメーション */
.bouncing-ball {
  display: inline-block;
  font-size: 2rem;
  animation: ballBounce 1.4s ease-in-out infinite;
  margin-left: 10px;
  vertical-align: middle;
}

@keyframes ballBounce {
  0%, 100% { transform: translateY(0) scale(1, 1); }
  50% { transform: translateY(-18px) scale(0.95, 1.05); }
  75% { transform: translateY(0) scale(1.1, 0.9); }
}

/* 2. 画面右下のフローティングマスコット（ボタンのすぐ上に配置） */
.floating-mascot-wrapper {
  position: fixed;
  left: 12px;
  top: 90px;
  bottom: auto;
  right: auto;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  pointer-events: none;
}

.floating-mascot-inner {
  position: relative;
  pointer-events: auto;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
  animation: mascotFloat 3s ease-in-out infinite;
}

.floating-mascot-inner:active {
  cursor: grabbing;
}

.floating-mascot-img {
  width: 85px;
  height: auto;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.25));
  transition: transform 0.2s;
}

.floating-mascot-inner:hover .floating-mascot-img {
  transform: scale(1.1) rotate(5deg);
}

.mascot-bubble {
  background: #ffffff;
  color: #059669;
  font-weight: bold;
  font-size: 0.75rem;
  padding: 5px 10px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  border: 2px solid #059669;
  margin-bottom: 4px;
  position: relative;
  white-space: nowrap;
  animation: bubblePulse 2s infinite;
}

.mascot-bubble::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 22px;
  border-width: 6px 6px 0;
  border-style: solid;
  border-color: #059669 transparent;
  display: block;
  width: 0;
}

@keyframes mascotFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes bubblePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* 3. 8体スタンプパレード（無限ループMarquee） */
.sticker-parade-section {
  padding: 30px 0;
  background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%);
  overflow: hidden;
  border-top: 1px dashed #cbd5e1;
  border-bottom: 1px dashed #cbd5e1;
  margin: 40px 0;
}

.parade-title {
  text-align: center;
  font-size: 1.1rem;
  font-weight: bold;
  color: #059669;
  margin-bottom: 16px;
}

.parade-track {
  display: flex;
  width: max-content;
  animation: paradeScroll 25s linear infinite;
}

.parade-track:hover {
  animation-play-state: paused;
}

.parade-item {
  flex-shrink: 0;
  padding: 0 15px;
  text-align: center;
}

.parade-item img {
  width: 85px;
  height: 85px;
  object-fit: contain;
  transition: transform 0.2s;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}

.parade-item:hover img {
  transform: translateY(-8px) scale(1.15);
}

@keyframes paradeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 600px) {
  .floating-mascot-wrapper {
    top: 85px;
    left: 10px;
    bottom: auto;
    right: auto;
  }
  .floating-mascot-img { width: 75px; }
  .parade-item img { width: 70px; height: 70px; }
}

/* ==========================================
   公式LINEスタンプ特設ショーケース（バエるリッチ演出）
   ========================================== */
.sticker-showcase-card {
  background: linear-gradient(145deg, #ffffff 0%, #f0fdf4 50%, #dcfce7 100%);
  border: 2px solid #86efac;
  border-radius: 28px;
  padding: 36px 24px 32px;
  text-align: center;
  box-shadow: 0 12px 35px rgba(16, 185, 129, 0.18);
  position: relative;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

.sticker-highlight-badge {
  display: inline-block;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 6px 18px;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.35);
  margin-bottom: 12px;
}

.sticker-showcase-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
}

.sticker-title-accent {
  background: linear-gradient(135deg, #059669 0%, #0284c7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sticker-showcase-desc {
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 24px;
}

.sticker-duo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.sticker-duo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sticker-duo-img {
  width: 105px;
  height: auto;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.18));
  transition: transform 0.2s;
}

.boy-bounce { animation: duoBounce 2.6s ease-in-out infinite; }
.girl-bounce { animation: duoBounce 2.6s ease-in-out infinite 1.3s; }

@keyframes duoBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.sticker-duo-label {
  font-size: 0.78rem;
  font-weight: 800;
  color: #059669;
  background: #ffffff;
  border: 1.5px solid #86efac;
  padding: 2px 10px;
  border-radius: 12px;
  margin-top: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.sticker-duo-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.sticker-heart-icon { font-size: 1.6rem; animation: heartBeat 1.4s infinite; }

@keyframes heartBeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.25); }
}

.sticker-count-badge {
  background: #fef08a;
  color: #854d0e;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 10px;
}

.parade-track-wrapper {
  overflow: hidden;
  padding: 10px 0;
  margin: 15px 0 25px;
  border-top: 1px dashed rgba(16, 185, 129, 0.25);
  border-bottom: 1px dashed rgba(16, 185, 129, 0.25);
}

.parade-tag {
  display: block;
  font-size: 0.72rem;
  font-weight: bold;
  color: #059669;
  margin-top: 4px;
}

.sticker-cta-box {
  margin-top: 10px;
}

.btn-line-sticker-shine {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: linear-gradient(135deg, #06c755 0%, #05a044 100%);
  color: #ffffff;
  padding: 14px 34px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(6, 199, 85, 0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-line-sticker-shine:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 30px rgba(6, 199, 85, 0.6);
  color: #ffffff;
}

.btn-line-label-group {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.btn-line-subtext {
  font-size: 0.72rem;
  opacity: 0.92;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.btn-line-maintext {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}

@media (max-width: 600px) {
  .sticker-showcase-card {
    padding: 28px 16px 24px;
    border-radius: 22px;
  }
  .sticker-showcase-title { font-size: 1.35rem; }
  .sticker-duo-img { width: 85px; }
  .btn-line-sticker-shine {
    padding: 12px 24px;
    width: 92%;
    max-width: 320px;
  }
  .btn-line-maintext { font-size: 0.95rem; }
}










/* ==========================================================================
   ★ STATIC TAILWIND REPLACEMENT (Zero JavaScript CPU Overhead) ★
   ========================================================================== */

/* Layout & Flex & Grid */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.shrink-0 { flex-shrink: 0; }
.flex-wrap { flex-wrap: wrap; }
.relative { position: relative; }
.absolute { position: absolute; }
.overflow-hidden { overflow: hidden; }

/* Sizing */
.w-full { width: 100%; }
.w-2 { width: 0.5rem; }
.w-3 { width: 0.75rem; }
.w-5 { width: 1.25rem; }
.w-24 { width: 6rem; }
.h-full { height: 100%; }
.h-auto { height: auto; }
.h-2 { height: 0.5rem; }
.h-3 { height: 0.75rem; }
.h-5 { height: 1.25rem; }
.h-24 { height: 6rem; }
.aspect-\[9\/16\] { aspect-ratio: 9 / 16; }
.object-cover { object-fit: cover; }

/* Padding & Margin */
.p-1\.5 { padding: 0.375rem; }
.p-2\.5 { padding: 0.625rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.px-1 { padding-left: 0.25rem; padding-right: 0.25rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-2\.5 { padding-left: 0.625rem; padding-right: 0.625rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mt-2 { margin-top: 0.5rem; }
.pt-0\.5 { padding-top: 0.125rem; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }

/* Borders & Radius */
.border { border-width: 1px; border-style: solid; }
.border-2 { border-width: 2px; border-style: solid; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-b-2 { border-bottom-width: 2px; border-bottom-style: solid; }
.border-l-2 { border-left-width: 2px; border-left-style: solid; }
.border-l-4 { border-left-width: 4px; border-left-style: solid; }
.rounded { border-radius: 0.25rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }

/* Colors - Background */
.bg-white { background-color: #ffffff; }
.bg-white\/90 { background-color: rgba(255, 255, 255, 0.9); }
.bg-black { background-color: #000000; }
.bg-slate-50 { background-color: #f8fafc; }
.bg-slate-900 { background-color: #0f172a; }
.bg-emerald-50 { background-color: #ecfdf5; }
.bg-emerald-50\/50 { background-color: rgba(236, 253, 245, 0.5); }
.bg-emerald-100 { background-color: #d1fae5; }
.bg-amber-50\/60 { background-color: rgba(254, 243, 199, 0.6); }
.bg-amber-400 { background-color: #fbbf24; }
.bg-amber-500 { background-color: #f59e0b; }
.bg-rose-50 { background-color: #fff1f2; }
.bg-rose-100 { background-color: #ffe4e6; }
.bg-rose-500 { background-color: #f43f5e; }

/* Colors - Border */
.border-slate-100 { border-color: #f1f5f9; }
.border-slate-200 { border-color: #e2e8f0; }
.border-slate-200\/80 { border-color: rgba(226, 232, 240, 0.8); }
.border-slate-700 { border-color: #334155; }
.border-emerald-100 { border-color: #d1fae5; }
.border-emerald-100\/80 { border-color: rgba(209, 250, 229, 0.8); }
.border-emerald-200 { border-color: #a7f3d0; }
.border-emerald-200\/80 { border-color: rgba(167, 243, 208, 0.8); }
.border-emerald-400 { border-color: #34d399; }
.border-emerald-500 { border-color: #10b981; }
.border-l-emerald-500 { border-left-color: #10b981; }
.border-amber-200 { border-color: #fde68a; }
.border-amber-200\/80 { border-color: rgba(253, 230, 138, 0.8); }
.border-rose-200 { border-color: #fecdd3; }

/* Typography & Text Colors */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-\[11px\] { font-size: 11px; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.font-bold { font-weight: 700; }
.font-medium { font-weight: 500; }
.text-center { text-align: center; }
.text-white { color: #ffffff; }
.text-slate-500 { color: #64748b; }
.text-slate-600 { color: #475569; }
.text-slate-700 { color: #334155; }
.text-slate-800 { color: #1e293b; }
.text-emerald-600 { color: #059669; }
.text-emerald-700 { color: #047857; }
.text-emerald-800 { color: #065f46; }
.text-emerald-900 { color: #064e3b; }
.text-emerald-950 { color: #022c22; }
.text-amber-300 { color: #fcd34d; }
.text-amber-500 { color: #f59e0b; }
.text-amber-600 { color: #d97706; }
.text-amber-800 { color: #92400e; }
.text-amber-900\/80 { color: rgba(120, 53, 15, 0.8); }
.text-rose-500 { color: #f43f5e; }
.text-rose-600 { color: #e11d48; }
.text-rose-700 { color: #be123c; }

/* Shadows */
.shadow-xs { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
.shadow-sm { box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1); }
.shadow-inner { box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); }
.animate-ping { animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; }
@keyframes ping {
  75%, 100% { transform: scale(2); opacity: 0; }
}

/* Responsive (sm / md) */
@media (min-width: 640px) {
  .sm\:inline { display: inline; }
  .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .sm\:w-28 { width: 7rem; }
  .sm\:h-28 { height: 7rem; }
  .sm\:p-4 { padding: 1rem; }
  .sm\:p-6 { padding: 1.5rem; }
  .sm\:p-8 { padding: 2rem; }
  .sm\:text-xs { font-size: 0.75rem; }
  .sm\:text-sm { font-size: 0.875rem; }
  .sm\:text-base { font-size: 1rem; }
  .sm\:text-lg { font-size: 1.125rem; }
  .sm\:text-xl { font-size: 1.25rem; }
  .sm\:text-2xl { font-size: 1.5rem; }
}
@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
