/* ========================================
   KaigaiQ - Modern Design System
   ======================================== */

:root {
  --primary: #c8a45c;
  --primary-light: #e6c97a;
  --primary-dark: #a8863a;
  --bg: #0a0a0f;
  --bg-card: #14141f;
  --bg-card-hover: #1a1a2e;
  --bg-section-alt: #0e0e18;
  --text: #f0f0f5;
  --text-muted: #8888a0;
  --text-dim: #55556a;
  --border: #22223a;
  --border-light: #2a2a45;
  --gradient-gold: linear-gradient(135deg, #c8a45c 0%, #e6c97a 50%, #c8a45c 100%);
  --gradient-hero: linear-gradient(135deg, #0a0a1a 0%, #1a0a2e 30%, #0a1a2e 60%, #0a0a1a 100%);
  --shadow: 0 4px 30px rgba(0,0,0,0.4);
  --shadow-lg: 0 10px 60px rgba(0,0,0,0.6);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Noto Sans JP', 'Inter', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

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

.sp-only { display: none; }

@media (max-width: 768px) {
  .sp-only { display: inline; }
}

/* ========================================
   Header
   ======================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.header.scrolled {
  border-bottom-color: var(--border);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.3rem;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--gradient-gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  color: #0a0a0f;
}

.logo-text {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
}

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

.nav-link:hover {
  color: var(--text);
}

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

.header-cta {
  padding: 8px 20px;
  background: var(--gradient-gold);
  color: #0a0a0f;
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 8px;
  transition: var(--transition);
}

.header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(200, 164, 92, 0.3);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 24px;
  position: relative;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  position: absolute;
  left: 0;
  transition: var(--transition);
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 11px; }
.hamburger span:nth-child(3) { top: 22px; }

.hamburger.active span:nth-child(1) { top: 11px; transform: rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { top: 11px; transform: rotate(-45deg); }

@media (max-width: 960px) {
  .nav, .header-cta { display: none; }
  .hamburger { display: block; }
}

/* Mobile Nav */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 15, 0.97);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.mobile-nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.mobile-nav-link {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
}

.mobile-nav-link:hover {
  color: var(--primary);
}

.mobile-nav-link.cta {
  margin-top: 16px;
  padding: 12px 32px;
  background: var(--gradient-gold);
  color: #0a0a0f;
  border-radius: 10px;
  font-weight: 700;
}

/* ========================================
   Hero
   ======================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
}

.hero-gradient::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(200, 164, 92, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 70% 30%, rgba(100, 80, 200, 0.06) 0%, transparent 50%);
  animation: heroFloat 20s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-5%, 3%); }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
}

.hero-label {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(200, 164, 92, 0.12);
  border: 1px solid rgba(200, 164, 92, 0.25);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--primary-light);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 40px;
}

.hero-search {
  max-width: 560px;
  margin: 0 auto 48px;
  position: relative;
}

.search-box {
  display: flex;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 6px 6px 6px 18px;
  transition: var(--transition);
}

.search-box:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(200, 164, 92, 0.15);
}

.search-icon {
  width: 20px;
  height: 20px;
  color: var(--text-dim);
  flex-shrink: 0;
}

.search-box input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--text);
  font-size: 0.95rem;
  padding: 12px;
  font-family: inherit;
}

.search-box input::placeholder {
  color: var(--text-dim);
}

.search-btn {
  padding: 10px 24px;
  background: var(--gradient-gold);
  color: #0a0a0f;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}

.search-btn:hover {
  box-shadow: 0 4px 20px rgba(200, 164, 92, 0.3);
}

.search-suggestions {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: none;
  z-index: 10;
}

.search-suggestions.active {
  display: block;
}

.search-suggestion {
  padding: 12px 18px;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.9rem;
}

.search-suggestion:hover {
  background: var(--bg-card-hover);
  color: var(--primary);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-num {
  font-size: 2.5rem;
  font-weight: 900;
  font-family: 'Inter', sans-serif;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-top: 4px;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--primary), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; height: 40px; }
  50% { opacity: 1; height: 60px; }
}

/* ========================================
   Sections
   ======================================== */

.section {
  padding: 100px 0;
}

.section-dark {
  background: var(--bg-section-alt);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--primary);
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.section-sub {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ========================================
   Area Cards
   ======================================== */

.area-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.area-tab {
  padding: 8px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}

.area-tab:hover {
  border-color: var(--primary);
  color: var(--text);
}

.area-tab.active {
  background: var(--gradient-gold);
  border-color: transparent;
  color: #0a0a0f;
  font-weight: 600;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.area-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}

.area-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.area-card.hidden {
  display: none;
}

.area-card-img {
  height: 140px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.area-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,15,0.6), transparent);
}

.area-card-img::before {
  content: '店舗を見る →';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(200,164,92,0.85);
  color: #0a0a0f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  font-weight: 700;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.area-card:hover .area-card-img::before {
  opacity: 1;
}

.area-card-body {
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.area-card-flag {
  font-size: 1.5rem;
}

.area-card-body h3 {
  font-size: 0.95rem;
  font-weight: 600;
  flex: 1;
}

.area-card-count {
  font-size: 0.78rem;
  color: var(--primary);
  font-weight: 500;
}

/* ========================================
   Job Cards
   ======================================== */

.job-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 24px;
}

.job-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.job-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200, 164, 92, 0.3);
}

.job-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px 0;
}

.job-badge {
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.job-badge.hot {
  background: rgba(255, 80, 80, 0.15);
  color: #ff6b6b;
  border: 1px solid rgba(255, 80, 80, 0.3);
}

.job-badge.new {
  background: rgba(80, 180, 255, 0.15);
  color: #50b4ff;
  border: 1px solid rgba(80, 180, 255, 0.3);
}

.job-area {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.job-card-img {
  height: 160px;
  margin: 14px 14px 0;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
}

.job-card-body {
  padding: 18px;
}

.job-name {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.job-type {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.job-details {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}

.job-detail {
  flex: 1;
  background: rgba(200, 164, 92, 0.06);
  border-radius: 8px;
  padding: 8px 10px;
  text-align: center;
}

.job-detail-label {
  display: block;
  font-size: 0.7rem;
  color: var(--text-dim);
  margin-bottom: 2px;
}

.job-detail-value {
  font-size: 0.8rem;
  font-weight: 600;
}

.job-detail-value.highlight {
  color: var(--primary-light);
}

.job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.job-tag {
  padding: 3px 10px;
  background: rgba(200, 164, 92, 0.1);
  border: 1px solid rgba(200, 164, 92, 0.2);
  border-radius: 6px;
  font-size: 0.72rem;
  color: var(--primary-light);
}

.job-btn {
  display: block;
  text-align: center;
  padding: 10px;
  background: var(--gradient-gold);
  color: #0a0a0f;
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 10px;
  transition: var(--transition);
}

.job-btn:hover {
  box-shadow: 0 4px 20px rgba(200, 164, 92, 0.3);
}

/* ========================================
   News
   ======================================== */

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 24px;
}

.news-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.news-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--border-light);
}

.news-card-img {
  height: 160px;
  background-size: cover;
  background-position: center;
}

.news-card-body {
  padding: 20px;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.news-date {
  font-size: 0.78rem;
  color: var(--text-dim);
  font-family: 'Inter', sans-serif;
}

.news-category {
  font-size: 0.72rem;
  padding: 2px 8px;
  background: rgba(200, 164, 92, 0.12);
  color: var(--primary-light);
  border-radius: 4px;
  font-weight: 500;
}

.news-card-body h3 {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 8px;
}

.news-card-body p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ========================================
   New Shops
   ======================================== */

.new-shop-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.new-shop-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  transition: var(--transition);
}

.new-shop-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.new-shop-rank {
  font-size: 1.8rem;
  font-weight: 900;
  font-family: 'Inter', sans-serif;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  min-width: 44px;
}

.new-shop-img {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.new-shop-info {
  flex: 1;
}

.new-shop-info h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.new-shop-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.new-shop-date {
  font-size: 0.72rem;
  color: var(--text-dim);
}

.new-shop-btn {
  padding: 6px 16px;
  border: 1px solid var(--primary);
  border-radius: 8px;
  font-size: 0.8rem;
  color: var(--primary);
  transition: var(--transition);
  font-weight: 500;
}

.new-shop-btn:hover {
  background: var(--primary);
  color: #0a0a0f;
}

/* ========================================
   FAQ
   ======================================== */

.faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: rgba(200, 164, 92, 0.3);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: var(--bg-card);
  border: none;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  gap: 16px;
}

.faq-arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--text-dim);
  transition: var(--transition);
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding: 0 20px 18px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ========================================
   CTA Section
   ======================================== */

.section-cta {
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.section-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(200, 164, 92, 0.08) 0%, transparent 60%);
}

.cta-content {
  position: relative;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-content > p {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 0.95rem;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}

.cta-btn-line {
  background: #06c755;
  color: #fff;
}

.cta-btn-line:hover {
  background: #05b34c;
  box-shadow: 0 4px 20px rgba(6, 199, 85, 0.3);
}

.cta-btn-secondary {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text);
}

.cta-btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.cta-note {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* ========================================
   Footer
   ======================================== */

.footer {
  background: #06060a;
  padding: 60px 0 30px;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  font-size: 0.83rem;
  color: var(--text-muted);
  margin-top: 16px;
  line-height: 1.7;
}

.footer-links h4 {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text);
}

.footer-links a {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-dim);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-brand {
    grid-column: span 1;
  }
}

/* ========================================
   Back to Top
   ======================================== */

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 100;
  color: var(--text);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* ========================================
   All Shops Grid
   ======================================== */

.all-shops-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.all-shop-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
}

.all-shop-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.all-shop-img {
  height: 120px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.all-shop-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,15,0.5), transparent);
}

.all-shop-body {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
}

.all-shop-flag {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.all-shop-info h4 {
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.all-shop-info p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ========================================
   Responsive
   ======================================== */

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .hero-stats { gap: 32px; }
  .stat-num { font-size: 2rem; }
  .area-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
  .area-card-img { height: 100px; }
  .job-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .new-shop-item { flex-wrap: wrap; gap: 12px; }
  .new-shop-rank { min-width: auto; font-size: 1.4rem; }
  .hero-scroll-hint { display: none; }
}

/* ========================================
   Animations
   ======================================== */

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === 認定バッジ === */
.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.cert-badge.safe {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #6ee7b7;
}
.cert-badge.income {
  background: rgba(200, 164, 92, 0.15);
  border: 1px solid rgba(200, 164, 92, 0.4);
  color: #e6c97a;
}
.cert-badge.comfort {
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.4);
  color: #c4b5fd;
}

/* === 掲載ティアバッジ === */
.tier-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  z-index: 2;
}
.tier-badge.premium {
  background: linear-gradient(135deg, #c8a45c, #f0d080);
  color: #1a1208;
}
.tier-badge.standard {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
}
.tier-badge.free {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.5);
}

/* === 給与シミュレーターセクション === */
.simulator-section {
  background: linear-gradient(180deg, #0d0d14 0%, #0a0a0f 100%);
  padding: 80px 0;
  border-top: 1px solid rgba(200,164,92,0.15);
  border-bottom: 1px solid rgba(200,164,92,0.15);
}
.simulator-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(200,164,92,0.2);
  border-radius: 16px;
  padding: 40px;
  max-width: 680px;
  margin: 0 auto;
}
.sim-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
}
@media (max-width: 600px) {
  .sim-form { grid-template-columns: 1fr; }
}
.sim-field label {
  display: block;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}
.sim-field select {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  color: #fff;
  padding: 10px 14px;
  font-size: 0.9rem;
  font-family: inherit;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23c8a45c' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}
.sim-field select option {
  background: #1a1a2e;
  color: #fff;
}
.sim-field select:focus {
  outline: none;
  border-color: rgba(200,164,92,0.5);
}
.sim-field input[type="range"] {
  width: 100%;
  padding: 6px 0;
  background: transparent;
  border: none;
  accent-color: #c8a45c;
  cursor: pointer;
}
.sim-range-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}
.sim-result {
  background: rgba(200,164,92,0.08);
  border: 1px solid rgba(200,164,92,0.25);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}
.sim-result-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.sim-result-amount {
  font-size: 2.4rem;
  font-weight: 700;
  color: #e6c97a;
  letter-spacing: -0.02em;
}
.sim-result-range {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-top: 6px;
}
.sim-note {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  margin-top: 16px;
  text-align: center;
  line-height: 1.6;
}
.sim-cta {
  display: block;
  width: 100%;
  margin-top: 20px;
  padding: 14px;
  background: rgba(200,164,92,0.15);
  border: 1px solid rgba(200,164,92,0.4);
  border-radius: 8px;
  color: #e6c97a;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s;
}
.sim-cta:hover {
  background: rgba(200,164,92,0.25);
}

/* === キャスト向けガイドセクション === */
.cast-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .cast-guide-grid { grid-template-columns: 1fr; }
}
.cast-guide-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 28px 24px;
  transition: border-color 0.25s;
}
.cast-guide-card:hover {
  border-color: rgba(200,164,92,0.3);
}
.cast-guide-icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
}
.cast-guide-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}
.cast-guide-card p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}
.cast-guide-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.8rem;
  color: #c8a45c;
  text-decoration: none;
}
.cast-guide-link:hover { text-decoration: underline; }

/* === 待遇フィルター === */
.benefits-filter {
  margin-bottom: 32px;
}
.benefits-filter-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.benefits-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.benefit-tag {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.55);
  font-family: inherit;
}
.benefit-tag:hover {
  border-color: rgba(200,164,92,0.4);
  color: rgba(255,255,255,0.85);
}
.benefit-tag.active {
  background: rgba(200,164,92,0.15);
  border-color: rgba(200,164,92,0.5);
  color: #e6c97a;
}
.benefits-filter-count {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}
.benefits-filter-count span {
  color: #c8a45c;
  font-weight: 600;
}
.all-shop-card.hidden {
  display: none;
}
.all-shop-card {
  transition: opacity 0.2s;
}

/* === フッター運営情報 === */
.footer-legal {
  text-align: center;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 16px;
}
.footer-legal p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  margin: 4px 0;
}
.footer-legal a {
  color: rgba(200,164,92,0.6);
  text-decoration: none;
}

/* === モバイル強化 === */

/* タップターゲットサイズの確保（最低44px） */
.benefit-tag,
.area-tab,
.job-btn,
.plan-btn,
.nav-link,
.cta-btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* フォントサイズの最小値確保（16px未満はiOSで自動ズーム） */
.sim-field select,
.sim-field input,
.form-field input,
.form-field select,
.form-field textarea,
.search-box input {
  font-size: 16px !important;
}

/* 横スクロール防止 */
body {
  overflow-x: hidden;
}

/* モバイルでのテーブル対応 */
@media (max-width: 600px) {
  table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .price-table th,
  .price-table td {
    white-space: nowrap;
    font-size: 0.78rem;
    padding: 8px 10px;
  }
}

/* モバイルでのボタン幅確保 */
@media (max-width: 480px) {
  .cta-buttons {
    flex-direction: column;
  }
  .cta-btn {
    width: 100%;
    text-align: center;
  }
  .job-btn {
    width: 100%;
  }
  .apply-submit-btn {
    font-size: 1rem;
    padding: 18px;
  }
}

/* モバイルでのフォームレイアウト */
@media (max-width: 600px) {
  .sim-form {
    grid-template-columns: 1fr;
  }
  .plans-grid {
    grid-template-columns: 1fr;
  }
  .cast-guide-grid {
    grid-template-columns: 1fr;
  }
}

/* iOSのボタンスタイルリセット */
button,
input[type="submit"],
input[type="button"] {
  -webkit-appearance: none;
  border-radius: 0;
}

/* セーフエリア対応（iPhoneのノッチ・ホームバー） */
.header {
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}
footer {
  padding-bottom: calc(16px + env(safe-area-inset-bottom));
}

/* === E-E-A-T 信頼性セクション === */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
@media (max-width: 768px) {
  .trust-grid { grid-template-columns: 1fr; }
}
.trust-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 24px;
}
.trust-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.trust-item h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}
.trust-item p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}

/* === 404ページ === */
.error-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
}
.error-content {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.error-code {
  font-size: clamp(6rem, 20vw, 10rem);
  font-weight: 900;
  color: rgba(200,164,92,0.2);
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: -0.04em;
}
.error-title {
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
.error-message {
  color: rgba(255,255,255,0.5);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 32px;
}
.error-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.error-links p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  margin-bottom: 12px;
  letter-spacing: 0.08em;
}
.error-links ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.error-links a {
  font-size: 0.82rem;
  color: rgba(200,164,92,0.7);
  text-decoration: none;
  padding: 6px 14px;
  border: 1px solid rgba(200,164,92,0.2);
  border-radius: 20px;
  transition: all 0.2s;
}
.error-links a:hover {
  color: #e6c97a;
  border-color: rgba(200,164,92,0.5);
}

/* === パンくずリスト === */
.breadcrumb-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
  font-size: 0.75rem;
}
.breadcrumb-list li {
  display: flex;
  align-items: center;
  color: rgba(255,255,255,0.35);
}
.breadcrumb-list li + li::before {
  content: '\203A';
  margin-right: 4px;
  color: rgba(255,255,255,0.2);
}
.breadcrumb-list a {
  color: rgba(200,164,92,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb-list a:hover {
  color: #c8a45c;
}
.breadcrumb-list [aria-current="page"] {
  color: rgba(255,255,255,0.5);
}
