/* ==========================================
   推しカノ - Style Sheet
   カジュアル・ポップなデザイン
   ========================================== */

/* --- リセット & ベース --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
}

body {
  font-family: 'Zen Maru Gothic', sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.8;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.8;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

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

/* --- カラー変数 --- */
:root {
  --pink: #ff6b9d;
  --pink-light: #ff8fb8;
  --pink-pale: #fff0f5;
  --purple: #c084fc;
  --yellow: #fbbf24;
  --white: #ffffff;
  --gray-light: #f8f9fa;
  --gray: #6b7280;
  --dark: #1f2937;
  --gradient: linear-gradient(135deg, var(--pink) 0%, var(--purple) 100%);
  --shadow: 0 4px 20px rgba(255, 107, 157, 0.15);
  --shadow-lg: 0 8px 40px rgba(255, 107, 157, 0.2);
}

/* --- ヘッダー --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: background 0.3s;
}

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

.logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
}

.logo span {
  color: var(--pink);
}

/* ハンバーガーメニュー */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

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

/* ナビゲーション */
.nav-list {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-list a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark);
  position: relative;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--pink);
  transition: width 0.3s;
}

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

.nav-reserve {
  background: var(--gradient);
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: 50px;
}

.nav-reserve::after {
  display: none !important;
}

.nav-reserve:hover {
  opacity: 0.9;
}

/* --- ヒーロー --- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--gradient);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="3" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="70" r="1.5" fill="rgba(255,255,255,0.12)"/><circle cx="60" cy="10" r="2.5" fill="rgba(255,255,255,0.06)"/><circle cx="10" cy="90" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="80" r="2" fill="rgba(255,255,255,0.08)"/></svg>') repeat;
  background-size: 200px;
  animation: float 20s linear infinite;
}

@keyframes float {
  from { transform: translateY(0); }
  to { transform: translateY(-200px); }
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  padding: 0 20px;
}

.hero-sub {
  font-size: 1.1rem;
  letter-spacing: 3px;
  margin-bottom: 10px;
  opacity: 0.9;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
}

.hero-title span {
  display: block;
  font-size: 4.5rem;
  background: linear-gradient(to right, #fff, #ffd6e7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-catch {
  font-size: 1.2rem;
  margin-bottom: 12px;
  opacity: 0.95;
  letter-spacing: 1px;
}

.hero-domain {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
  letter-spacing: 0.8px;
}

.hero-domain a {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: underline;
}

/* --- ボタン --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Zen Maru Gothic', sans-serif;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn:hover {
  transform: translateY(-2px);
  opacity: 1;
}

.btn-primary {
  background: var(--white);
  color: var(--pink);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.btn-line {
  background: #06c755;
  color: var(--white);
  font-size: 1.1rem;
  padding: 16px 44px;
  box-shadow: 0 4px 15px rgba(6, 199, 85, 0.3);
}

.btn-line:hover {
  box-shadow: 0 6px 25px rgba(6, 199, 85, 0.4);
}

.line-icon {
  flex-shrink: 0;
}

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

.section:nth-child(even) {
  background: var(--pink-pale);
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 15px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gradient);
  margin: 15px auto 0;
  border-radius: 3px;
}

.section-desc {
  text-align: center;
  color: var(--gray);
  margin-bottom: 50px;
  font-size: 1rem;
}

/* --- コンセプト --- */
.concept-content {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 50px;
}

.concept-text {
  flex: 1;
}

.concept-text p {
  margin-bottom: 20px;
  font-size: 1.05rem;
  line-height: 2;
}

.concept-image {
  flex: 1;
}

.placeholder-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--pink-pale) 0%, #e8d5f5 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 1.2rem;
  font-weight: 500;
  border: 2px dashed #ddd;
}

.placeholder-image.circle {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  aspect-ratio: auto;
  margin: 0 auto;
}

/* --- 料金システム --- */
.system-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 30px;
}

.system-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

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

.system-card.popular {
  border: 3px solid var(--pink);
  transform: scale(1.05);
}

.system-card.popular:hover {
  transform: scale(1.05) translateY(-5px);
}

.system-card-badge {
  position: absolute;
  top: -1px;
  right: 20px;
  background: var(--gradient);
  color: var(--white);
  padding: 4px 16px;
  border-radius: 0 0 10px 10px;
  font-size: 0.8rem;
  font-weight: 700;
}

.system-card-header {
  background: var(--gradient);
  color: var(--white);
  padding: 25px 20px;
  text-align: center;
}

.system-card-header h3 {
  font-size: 1.4rem;
  margin-bottom: 5px;
}

.system-time {
  font-size: 1rem;
  opacity: 0.9;
}

.system-card-body {
  padding: 25px 20px;
  text-align: center;
}

.system-price {
  font-size: 1rem;
  margin-bottom: 20px;
  color: var(--dark);
}

.system-price span {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--pink);
}

.system-card-body ul {
  text-align: left;
}

.system-card-body li {
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
  font-size: 0.95rem;
  color: var(--gray);
}

.system-card-body li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 14px;
  height: 14px;
  background: var(--pink-pale);
  border-radius: 50%;
  border: 2px solid var(--pink-light);
}

.system-note {
  text-align: center;
  color: var(--gray);
  font-size: 0.85rem;
}

/* --- スタッフ --- */
.staff-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.staff-card {
  text-align: center;
  background: var(--white);
  border-radius: 20px;
  padding: 40px 25px;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.staff-image {
  margin-bottom: 20px;
}

.staff-card h3 {
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 5px;
}

.staff-role {
  color: var(--pink);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.staff-comment {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --- アクセス --- */
.access-content {
  display: flex;
  gap: 40px;
  margin-top: 50px;
}

.access-info {
  flex: 1;
}

.access-table {
  width: 100%;
  border-collapse: collapse;
}

.access-table tr {
  border-bottom: 1px solid #eee;
}

.access-table th,
.access-table td {
  padding: 15px 10px;
  text-align: left;
  vertical-align: top;
}

.access-table th {
  width: 100px;
  color: var(--pink);
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
}

.access-table td {
  color: var(--dark);
  font-size: 0.95rem;
}

.access-table td a {
  color: var(--pink);
  font-weight: 500;
}

.access-map {
  flex: 1;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  min-height: 300px;
  background: var(--gray-light);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 1rem;
  text-align: center;
  line-height: 1.8;
  border: 2px dashed #ddd;
}

/* --- LINE予約セクション --- */
.reserve {
  background: var(--gradient) !important;
  text-align: center;
  padding: 80px 0;
}

.reserve-content h2 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 15px;
}

.reserve-content p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  font-size: 1.05rem;
}

.reserve-tel {
  margin-top: 20px;
  font-size: 0.9rem;
}

.reserve-tel a {
  color: var(--white);
  font-weight: 700;
  text-decoration: underline;
}

/* --- フッター --- */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 40px 0 25px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}

.footer-logo {
  font-size: 1.2rem;
  font-weight: 700;
}

.footer-domain {
  margin-top: 6px;
  font-size: 0.95rem;
}

.footer-domain a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.footer-domain a:hover {
  text-decoration: underline;
}

.footer-logo span {
  color: var(--pink);
}

.footer-sns {
  display: flex;
  gap: 15px;
}

.footer-sns a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.3s;
}

.footer-sns a:hover {
  background: var(--pink);
  opacity: 1;
}

.footer-copy {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

/* --- モバイル固定予約バー --- */
.fixed-reserve {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 10px 15px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.fixed-reserve-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  background: #06c755;
  color: var(--white);
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
}

/* --- ページヒーロー（サブページ用） --- */
.page-hero {
  padding: 140px 0 60px;
  text-align: center;
  background: var(--gradient);
  color: var(--white);
}

.page-hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.page-hero p {
  font-size: 1rem;
  opacity: 0.9;
}

/* ナビのcurrentリンク */
.nav-list a.current {
  color: var(--pink);
}

.nav-list a.current::after {
  width: 100%;
}

/* --- キャスト一覧ページ --- */
.cast-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.cast-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.cast-image {
  display: flex;
  justify-content: center;
  padding-top: 30px;
}

.cast-image img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
}

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

.cast-info h3 {
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 5px;
}

.cast-role {
  display: inline-block;
  background: var(--pink-pale);
  color: var(--pink);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 50px;
  margin-bottom: 15px;
}

.cast-details {
  text-align: left;
  margin-bottom: 15px;
  padding: 12px 15px;
  background: var(--gray-light);
  border-radius: 10px;
  font-size: 0.9rem;
  color: var(--gray);
}

.cast-details p {
  margin-bottom: 4px;
}

.cast-details p:last-child {
  margin-bottom: 0;
}

.cast-comment {
  color: var(--pink);
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 12px;
}

.cast-sns {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.cast-sns a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gray-light);
  color: var(--gray);
  transition: background 0.3s, color 0.3s;
}

.cast-sns a:hover {
  background: var(--pink);
  color: var(--white);
  opacity: 1;
}

.cast-loading {
  text-align: center;
  color: var(--gray);
  padding: 40px 0;
}

/* --- 出勤スケジュールページ --- */
.schedule-wrapper {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: var(--shadow);
  margin-bottom: 60px;
}

.schedule-week {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.schedule-note {
  text-align: center;
  color: var(--gray);
  font-size: 0.85rem;
  margin-bottom: 25px;
}

.schedule-table-wrap {
  overflow-x: auto;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 500px;
}

.schedule-table th,
.schedule-table td {
  padding: 14px 10px;
  text-align: center;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.95rem;
}

.schedule-table thead th {
  background: var(--pink-pale);
  color: var(--dark);
  font-weight: 700;
  font-size: 0.9rem;
}

.schedule-name-col {
  text-align: left !important;
  font-weight: 700;
  color: var(--dark);
  min-width: 80px;
}

.today-col {
  background: rgba(255, 107, 157, 0.08);
  font-weight: 700;
  color: var(--pink);
}

.today-working {
  background: rgba(255, 107, 157, 0.15);
  color: var(--pink);
  font-weight: 700;
  font-size: 1.1rem;
}

.schedule-update {
  text-align: center;
  color: var(--gray);
  font-size: 0.8rem;
  margin-top: 20px;
  line-height: 1.8;
}

/* 今日の出勤 */
.today-cast {
  text-align: center;
}

.today-cast-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 30px;
}

.today-cast-card {
  text-align: center;
}

.today-cast-image img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}

.placeholder-image.circle.small {
  width: 100px;
  height: 100px;
  font-size: 0.7rem;
}

.today-cast-name {
  margin-top: 10px;
  font-weight: 700;
  color: var(--dark);
  font-size: 1rem;
}

.no-cast {
  color: var(--gray);
  font-size: 1rem;
  padding: 20px 0;
}

/* --- イベントページ --- */
.events-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 800px;
  margin: 0 auto;
}

.event-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.event-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.event-body {
  padding: 25px 30px;
}

.event-badge {
  display: inline-block;
  background: var(--gradient);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 10px;
}

.event-card h3 {
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.event-date {
  color: var(--pink);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.event-desc {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* --- CTA セクション --- */
.cta-section {
  background: transparent !important;
  padding: 0 0 80px;
}

.cta-box {
  background: var(--gradient);
  border-radius: 24px;
  padding: 50px 30px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.cta-box h2 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 25px;
  line-height: 1.6;
}

/* --- フェードインアニメーション --- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ==========================================
   レスポンシブ
   ========================================== */

/* タブレット */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background: var(--white);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.3s;
    padding-top: 80px;
  }

  .nav.open {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    gap: 0;
  }

  .nav-list li {
    width: 100%;
  }

  .nav-list a {
    display: block;
    padding: 15px 30px;
    font-size: 1rem;
    border-bottom: 1px solid #f0f0f0;
  }

  .nav-list a::after {
    display: none;
  }

  .nav-reserve {
    margin: 20px 30px;
    text-align: center;
    display: block;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-title span {
    font-size: 3rem;
  }

  .section {
    padding: 70px 0;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .concept-content {
    flex-direction: column;
    gap: 30px;
  }

  .system-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto 30px;
  }

  .system-card.popular {
    transform: none;
  }

  .system-card.popular:hover {
    transform: translateY(-5px);
  }

  .staff-cards {
    grid-template-columns: 1fr;
    max-width: 350px;
    margin: 0 auto;
  }

  .access-content {
    flex-direction: column;
  }

  /* サブページ */
  .page-hero {
    padding: 110px 0 40px;
  }

  .page-hero h1 {
    font-size: 2rem;
  }

  .cast-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .schedule-wrapper {
    padding: 25px 15px;
  }

  .events-list {
    gap: 20px;
  }

  .event-body {
    padding: 20px;
  }

  .cta-box {
    padding: 35px 20px;
  }

  .cta-box h2 {
    font-size: 1.2rem;
  }

  .footer-inner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  /* モバイル固定予約バー表示 */
  .fixed-reserve {
    display: block;
  }

  .footer {
    padding-bottom: 80px;
  }

  .reserve {
    padding-bottom: 100px;
  }
}

/* スマートフォン */
@media (max-width: 480px) {
  .hero {
    min-height: 500px;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-title span {
    font-size: 2.4rem;
  }

  .hero-catch {
    font-size: 1rem;
  }

  .btn {
    padding: 12px 28px;
    font-size: 0.9rem;
  }

  .section {
    padding: 50px 0;
  }

  .concept-text br {
    display: none;
  }

  .placeholder-image.circle {
    width: 140px;
    height: 140px;
  }
}
