/* =========================
   リセット & ベース設定
   ========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #1a1a1a;
  --secondary-color: #D4A5A5;
  --accent-color: #E8B4B8;
  --text-dark: #2c2c2c;
  --text-light: #666;
  --bg-light: #f8f8f8;
  --bg-white: #ffffff;
  --border-color: #e0e0e0;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--bg-white);
  overflow-x: hidden;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =========================
   ナビゲーション
   ========================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.nav-logo .logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--primary-color);
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: "Yu Mincho", "游明朝", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", "Noto Serif JP", serif;
}

.logo-text-link {
  text-decoration: none;
  display: inline-block;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  padding: 5px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.social {
  color: var(--secondary-color);
  font-weight: 600;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--text-dark);
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* =========================
   ヒーローセクション
   ========================= */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
  background: #000;
}

.hero-video::-webkit-media-controls {
  display: none !important;
}

.hero-video::-webkit-media-controls-enclosure {
  display: none !important;
}

.hero-fallback-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  display: none;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.7) 0%,
    rgba(26, 26, 26, 0.5) 50%,
    rgba(212, 165, 165, 0.3) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
  padding: 0 20px;
}

.hero-title {
  margin-bottom: 20px;
}

.title-main {
  display: block;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  letter-spacing: 0.15em;
  margin-bottom: 10px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  background: linear-gradient(135deg, #ffffff, var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: "Yu Mincho", "游明朝", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", "Noto Serif JP", serif;
}

.title-sub {
  display: block;
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 300;
  letter-spacing: 0.2em;
  opacity: 0.9;
}

.hero-description {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  margin-bottom: 40px;
  opacity: 0.95;
  font-weight: 300;
}

.scroll-down {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 60px;
  opacity: 0.8;
  animation: bounce 2s infinite;
}

.scroll-down span {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

.scroll-arrow {
  width: 2px;
  height: 30px;
  background: white;
  position: relative;
}

.scroll-arrow::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -3px;
  width: 8px;
  height: 8px;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(45deg);
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

/* =========================
   ページメイン
   ========================= */
.page-main {
  padding-top: 70px;
  min-height: calc(100vh - 70px);
}

/* =========================
   セクション共通
   ========================= */
.section {
  padding: 100px 0;
  position: relative;
}

.section-title-wrapper {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--primary-color);
  letter-spacing: 0.1em;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  margin-top: 20px;
  font-weight: 300;
}

/* =========================
   EVENTセクション
   ========================= */
.event-section {
  background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.event-card {
  background: var(--bg-white);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.event-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.event-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.event-card-desc {
  font-size: 1.1rem;
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 15px;
}

.event-detail {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid var(--border-color);
}

.event-detail p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* Instagramフィード */
.instagram-feed-container {
  margin-top: 40px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.instagram-card-link {
  display: inline-block;
  text-decoration: none;
  transition: var(--transition);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 100%;
  position: relative;
}

.instagram-card-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2), 0 6px 12px rgba(0, 0, 0, 0.15);
}

.instagram-card-wrapper {
  position: relative;
  display: block;
  width: 100%;
}

.instagram-card-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  transition: var(--transition);
}

.instagram-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 16px;
  transition: var(--transition);
  pointer-events: none;
}

.instagram-text {
  font-size: 3rem;
  font-weight: 800;
  color: white;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.1em;
  opacity: 0.9;
  transition: var(--transition);
}

.instagram-card-link:hover .instagram-overlay {
  background: rgba(0, 0, 0, 0.4);
}

.instagram-card-link:hover .instagram-text {
  opacity: 1;
  transform: scale(1.05);
}

.instagram-card-link:hover .instagram-card-image {
  opacity: 0.8;
}

.instagram-link-section {
  text-align: center;
  margin-top: 50px;
}

.instagram-link-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  color: var(--primary-color);
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}

.instagram-link-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  opacity: 0.9;
}

.instagram-post-item {
  background: var(--bg-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.instagram-post-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.instagram-post-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.instagram-post-media {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bg-light);
}

.instagram-media-content {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.instagram-post-caption {
  padding: 20px;
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.6;
  margin: 0;
}

.instagram-post-date {
  padding: 0 20px 20px;
  font-size: 0.85rem;
  color: var(--text-light);
}

.instagram-loading,
.instagram-error,
.instagram-empty,
.instagram-fallback {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-light);
}

.instagram-link-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  color: var(--primary-color);
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.instagram-link-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.instagram-note {
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* =========================
   CASTセクション
   ========================= */
.cast-section {
  background: var(--bg-white);
}

.cast-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.cast-card {
  background: var(--bg-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid var(--border-color);
}

.cast-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.cast-image-wrapper {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--bg-light);
}

.cast-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.cast-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* 目のアイコンを非表示にするため、オーバーレイ自体を無効化 */
  display: none;
  background: transparent;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.cast-card:hover .cast-overlay {
  opacity: 1;
}

.cast-card:hover .cast-image {
  transform: scale(1.1);
}

.view-icon {
  font-size: 2.5rem;
  color: white;
}

.cast-info {
  padding: 25px 20px;
  text-align: center;
}

.cast-name {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--primary-color);
}

.cast-name-en {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 8px;
  letter-spacing: 0.1em;
}

.cast-shop {
  font-size: 0.85rem;
  color: var(--secondary-color);
  font-weight: 600;
}

/* =========================
   SYSTEMセクション
   ========================= */
.system-section {
  background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
}

.system-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.system-card {
  background: var(--bg-white);
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.system-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.system-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary-color);
  border-bottom: 2px solid var(--secondary-color);
  padding-bottom: 10px;
}

.system-description {
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 25px;
}

.price-table {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.price-table-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: var(--bg-light);
  border-radius: 8px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.price-table-row:hover {
  background: rgba(212, 165, 165, 0.1);
  border-color: var(--secondary-color);
}

.price-label {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 1rem;
}

.price-value {
  font-weight: 700;
  color: var(--secondary-color);
  font-size: 1.2rem;
}

.system-note {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-top: 15px;
}

/* =========================
   SHOPセクション
   ========================= */
.shop-section {
  background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.shop-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.gallery-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.play-icon {
  font-size: 3rem;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.shop-info-card {
  background: var(--bg-white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  border: 1px solid var(--border-color);
}

.shop-name {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--primary-color);
  letter-spacing: 0.1em;
}

.shop-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.shop-detail-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.detail-label {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.detail-value {
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.6;
}

.detail-value a {
  color: var(--secondary-color);
  font-weight: 600;
}

.detail-value a:hover {
  opacity: 0.8;
}

.shop-map {
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  min-height: 300px;
  box-shadow: var(--shadow-sm);
}

/* =========================
   HOW TO ENJOYセクション
   ========================= */
.howto-section {
  background: var(--bg-white);
}

.howto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.howto-card {
  background: var(--bg-white);
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  position: relative;
}

.howto-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.howto-number {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  opacity: 0.2;
  position: absolute;
  top: 20px;
  right: 30px;
  line-height: 1;
}

.howto-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--primary-color);
  line-height: 1.5;
}

.howto-text {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* =========================
   RECRUITセクション
   ========================= */
.recruit-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #2a2a2a 100%);
  color: white;
}

.recruit-section .section-title,
.recruit-section .section-subtitle {
  color: white;
}

.recruit-section .section-title::after {
  background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
}

.recruit-image-container {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.recruit-image-link {
  display: inline-block;
  text-decoration: none;
  transition: var(--transition);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 4px 8px rgba(0, 0, 0, 0.2);
  max-width: 100%;
  position: relative;
}

.recruit-image-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 6px 12px rgba(0, 0, 0, 0.3);
}

.recruit-section-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  transition: var(--transition);
}

.recruit-image-link:hover .recruit-section-image {
  opacity: 0.9;
}

.recruit-content-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 50px 40px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.recruit-text {
  font-size: 1.05rem;
  line-height: 2;
  margin-bottom: 30px;
  opacity: 0.95;
}

.recruit-cta {
  margin-top: 30px;
}

.cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  color: var(--primary-color);
  font-weight: 700;
  border-radius: 50px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  font-size: 1.1rem;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* RECRUITページ用スタイル */
.recruit-page-section {
  background: var(--bg-white);
}

.recruit-page-section .section-title,
.recruit-page-section .section-subtitle {
  color: var(--primary-color);
}

.recruit-main-image {
  margin: 40px 0 50px;
  text-align: center;
}

.recruit-hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  display: block;
  margin: 0 auto;
}

.recruit-info-box {
  background: var(--bg-white);
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  margin-bottom: 30px;
}

.recruit-box-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--primary-color);
  border-bottom: 2px solid var(--secondary-color);
  padding-bottom: 10px;
}

.recruit-table {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.recruit-table-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: var(--bg-light);
  border-radius: 8px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.recruit-table-row:hover {
  background: rgba(212, 165, 165, 0.1);
  border-color: var(--secondary-color);
}

.recruit-table-row.highlight {
  background: linear-gradient(135deg, rgba(212, 165, 165, 0.2), rgba(232, 180, 184, 0.2));
  border-color: var(--secondary-color);
}

.recruit-table-label {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 1rem;
}

.recruit-table-value {
  font-weight: 700;
  color: var(--secondary-color);
  font-size: 1.2rem;
}

.required-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-bottom: 20px;
}

.required-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
  background: var(--bg-light);
  border-radius: 8px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.required-item:hover {
  background: rgba(212, 165, 165, 0.1);
  border-color: var(--secondary-color);
}

.item-icon {
  color: var(--secondary-color);
  font-weight: 800;
  font-size: 1.2rem;
}

.required-note {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-top: 15px;
  text-align: center;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 25px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--secondary-color);
}

.faq-question {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--primary-color);
  font-weight: 700;
}

.faq-answer {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
  margin: 0;
}

.job-tasks {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.job-tasks li {
  padding: 10px 0;
  color: var(--text-dark);
  line-height: 1.8;
  font-size: 1rem;
}

.job-note {
  color: var(--secondary-color);
  font-weight: 600;
  margin: 20px 0;
  font-size: 1.1rem;
}

.recruit-content {
  color: var(--text-dark);
  line-height: 1.8;
}

.recruit-content p {
  margin-bottom: 15px;
}

.recruit-content strong {
  color: var(--primary-color);
  font-weight: 700;
}

.recruit-cta-box {
  text-align: center;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.recruit-cta-box .cta-button {
  min-width: 200px;
}

.cta-button-secondary {
  background: transparent !important;
  border: 2px solid var(--secondary-color);
  color: var(--secondary-color) !important;
}

.cta-button-secondary:hover {
  background: var(--secondary-color) !important;
  color: var(--primary-color) !important;
  border-color: var(--secondary-color);
}

/* =========================
   フッター
   ========================= */
.footer {
  background: var(--primary-color);
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.footer-description {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  padding: 8px 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  font-size: 0.9rem;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--primary-color);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  opacity: 0.8;
  transition: var(--transition);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--secondary-color);
}

.footer-info {
  list-style: none;
  font-size: 0.9rem;
  line-height: 2;
  opacity: 0.8;
}

.footer-info a {
  color: var(--secondary-color);
}

.footer-info a:hover {
  opacity: 0.8;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
  font-size: 0.85rem;
  opacity: 0.6;
}

/* =========================
   モーダル
   ========================= */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  color: white;
  font-size: 40px;
  font-weight: 300;
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: var(--transition);
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

#modalMedia {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* =========================
   レスポンシブ
   ========================= */
@media (max-width: 968px) {
  .shop-info-card {
    grid-template-columns: 1fr;
  }

  .shop-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 50px;
    gap: 20px;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-link {
    font-size: 1.1rem;
    padding: 15px 20px;
  }

  .section {
    padding: 60px 0;
  }

  .event-grid,
  .cast-grid,
  .howto-grid,
  .system-content {
    grid-template-columns: 1fr;
  }

  .required-items {
    grid-template-columns: 1fr;
  }

  .instagram-text {
    font-size: 2rem;
  }

  .shop-gallery-grid {
    grid-template-columns: 1fr;
  }

  .shop-info-card {
    padding: 30px 20px;
  }

  .title-main {
    font-size: 3rem;
  }

  .hero {
    min-height: 500px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .section {
    padding: 40px 0;
  }

  .event-card,
  .howto-card {
    padding: 30px 20px;
  }

  .instagram-text {
    font-size: 1.5rem;
  }

  .recruit-content-card,
  .recruit-info-box {
    padding: 30px 20px;
  }

  .recruit-main-image {
    margin: 30px 0 40px;
  }

  .recruit-table-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* =========================
   アニメーション無効化
   ========================= */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
