/*
Theme Name: Nightwork Store Luxury
Theme URI: https://example.com/
Author: Custom Store Design
Description: 風俗店・ナイトワーク店舗向けに特化した高級感のあるレスポンシブWordPressテーマパッケージです。
Version: 1.0.0
*/

:root {
  --primary-color: #d4af37;
  --bg-color: #111111;
  --card-bg: #1a1a1a;
  --text-color: #ffffff;
  --text-muted: #aaaaaa;
  --accent-red: #e53e3e;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  line-height: 1.6;
}

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

header {
  background: #000000;
  border-bottom: 2px solid var(--primary-color);
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-title {
  font-size: 22px;
  font-weight: bold;
  color: var(--primary-color);
  margin: 0;
  letter-spacing: 2px;
}

.header-cta {
  display: flex;
  gap: 10px;
}

.btn-tel, .btn-line {
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 13px;
  display: inline-block;
}

.btn-tel {
  background: var(--primary-color);
  color: #000;
}

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

.hero-banner {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.85)), url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
  text-align: center;
  padding: 80px 20px;
  border-bottom: 1px solid #333;
}

.hero-banner h1 {
  font-size: 32px;
  color: var(--primary-color);
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.hero-banner p {
  color: #ddd;
  font-size: 15px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 15px;
}

.section-title {
  font-size: 24px;
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 30px;
  position: relative;
  letter-spacing: 2px;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--primary-color);
  margin: 12px auto 0;
}

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

.cast-card {
  background: var(--card-bg);
  border: 1px solid #333;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s, border-color 0.3s;
}

.cast-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
}

.cast-thumb {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.cast-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--accent-red);
  color: #fff;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 12px;
  font-weight: bold;
}

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

.cast-name {
  font-size: 17px;
  font-weight: bold;
  margin: 0 0 6px 0;
}

.cast-name a {
  color: #fff;
}

.cast-time {
  color: var(--primary-color);
  font-size: 13px;
  font-weight: bold;
  margin: 4px 0;
}

.cast-sizes {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
}

.system-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card-bg);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 20px;
}

.system-table th, .system-table td {
  padding: 15px 20px;
  border-bottom: 1px solid #2a2a2a;
  text-align: left;
}

.system-table th {
  background: #222;
  color: var(--primary-color);
  width: 35%;
  font-size: 15px;
}

footer {
  background: #050505;
  border-top: 1px solid #222;
  text-align: center;
  padding: 40px 20px;
  color: var(--text-muted);
  font-size: 13px;
  margin-top: 60px;
}