/* ============================================
   All Night Recruit Page
   ============================================ */

.btn--entry { background-color: #e53935; color: #fff; }
.btn--entry:hover { background-color: #c62828; }
.btn--entry-cta {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.7em 1.8em; font-size: var(--font-size-sm); font-weight: 700;
  background-color: #e53935; color: #fff; border-radius: var(--border-radius-sm);
  transition: background-color 0.2s;
}
.btn--entry-cta:hover { background-color: #c62828; }
.btn--outline-light {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.7em 1.8em; font-size: var(--font-size-sm); font-weight: 500;
  border: 1px solid rgba(255,255,255,0.5); border-radius: var(--border-radius-sm);
  color: #fff; background: transparent; transition: background-color 0.2s, border-color 0.2s;
}
.btn--outline-light:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

/* Layout */
.anr-layout { padding: 0 0 var(--space-3xl); }

.anr-layout__grid {
  display: grid; grid-template-columns: 1fr;
  gap: var(--space-xl); align-items: start;
}
@media (min-width: 1024px) {
  .anr-layout__grid { grid-template-columns: 1fr 240px; }
}

/* ============================================
   Hero: 深夜ラジオ風
   ============================================ */

.anr-hero {
  position: relative;
  background: linear-gradient(160deg, #1a1a2e 0%, #16213e 40%, #0f3460 100%);
  border-radius: 0 0 var(--border-radius-md) var(--border-radius-md);
  padding: var(--space-3xl) var(--space-2xl);
  overflow: hidden;
  margin-bottom: var(--space-2xl);
}

/* Moon */
.anr-hero__moon {
  position: absolute;
  top: 30px; right: 60px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle, #f5e6ca 0%, #e8d5a8 60%, transparent 100%);
  box-shadow: 0 0 40px rgba(245, 230, 202, 0.3);
}

/* Stars */
.anr-hero__stars span {
  position: absolute;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.5;
  animation: twinkle 3s infinite alternate;
}

.anr-hero__stars span:nth-child(1) { top: 20%; left: 15%; animation-delay: 0s; }
.anr-hero__stars span:nth-child(2) { top: 35%; left: 70%; animation-delay: 0.5s; }
.anr-hero__stars span:nth-child(3) { top: 15%; left: 45%; animation-delay: 1s; opacity: 0.3; }
.anr-hero__stars span:nth-child(4) { top: 50%; left: 85%; animation-delay: 1.5s; }
.anr-hero__stars span:nth-child(5) { top: 60%; left: 25%; animation-delay: 2s; opacity: 0.4; }

@keyframes twinkle {
  0% { opacity: 0.3; }
  100% { opacity: 0.8; }
}

.anr-hero__content {
  position: relative; z-index: 1;
}

.anr-hero__label {
  font-family: 'Inter', sans-serif;
  font-size: var(--font-size-xs); font-weight: 700;
  color: rgba(255,255,255,0.5); letter-spacing: 0.15em;
  margin-bottom: var(--space-md);
}

.anr-hero__title {
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  font-weight: 700; line-height: 1.4;
  color: #fff;
  margin-bottom: var(--space-lg);
}

.anr-hero__tagline {
  font-size: var(--font-size-base);
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  font-style: italic;
}

/* ============================================
   Concept
   ============================================ */

.anr-concept {
  margin-bottom: var(--space-3xl);
  padding: 0 var(--space-sm);
}

.anr-concept__lead {
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  font-weight: 700; line-height: 1.7;
  color: var(--color-primary-dark);
  margin-bottom: var(--space-xl);
}

.anr-concept p {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  line-height: 2.1; margin-bottom: var(--space-lg);
}

.anr-concept p:last-child { margin-bottom: 0; }

/* ============================================
   Episodes
   ============================================ */

.anr-episodes {
  margin-bottom: var(--space-3xl);
}

.anr-episodes__heading {
  font-family: 'Inter', sans-serif;
  font-size: var(--font-size-lg); font-weight: 900;
  letter-spacing: 0.06em; color: var(--color-primary-dark);
  margin-bottom: var(--space-xs);
}

.anr-episodes__sub {
  font-size: var(--font-size-xs); color: var(--color-text-muted);
  margin-bottom: var(--space-2xl);
}

/* Episode Card */
.anr-ep {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-md);
  padding: var(--space-xl);
  box-shadow: var(--shadow-card);
  margin-bottom: var(--space-lg);
  transition: box-shadow 0.2s;
}

.anr-ep:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.anr-ep__header {
  display: flex; align-items: center;
  gap: var(--space-md); margin-bottom: var(--space-md);
}

.anr-ep__number {
  font-family: 'Inter', sans-serif;
  font-size: var(--font-size-sm); font-weight: 900;
  color: var(--color-accent-green); letter-spacing: 0.04em;
}

.anr-ep__tag {
  padding: 2px 10px; border-radius: var(--border-radius-pill);
  font-size: 10px; font-weight: 700;
  background: #e8f5e9; color: var(--color-accent-green);
}
.anr-ep__tag--blue { background: #e3f2fd; color: #1565c0; }
.anr-ep__tag--purple { background: #f3e5f5; color: #7b1fa2; }
.anr-ep__tag--orange { background: #fff3e0; color: #e65100; }

.anr-ep__date {
  font-size: var(--font-size-xs); color: var(--color-text-muted);
  margin-left: auto;
}

.anr-ep__title {
  font-size: var(--font-size-lg); font-weight: 700;
  color: var(--color-primary-dark); line-height: 1.5;
  margin-bottom: var(--space-md);
}

/* Speaker */
.anr-ep__speaker {
  display: flex; align-items: center;
  gap: var(--space-md); margin-bottom: var(--space-md);
}

.anr-ep__avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, #c0c8d0, #dce4ea);
  flex-shrink: 0;
}

.anr-ep__name {
  display: block; font-size: var(--font-size-sm);
  font-weight: 700; color: var(--color-text-primary);
}

.anr-ep__dept {
  display: block; font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

.anr-ep__desc {
  font-size: var(--font-size-sm); color: var(--color-text-secondary);
  line-height: 1.8; margin-bottom: var(--space-lg);
}

/* Player UI */
.anr-player {
  display: flex; align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-light);
  border-radius: var(--border-radius-pill);
}

.anr-player__play {
  flex-shrink: 0; width: 36px; height: 36px;
  border-radius: 50%; border: none;
  background: var(--color-accent-green); color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background-color 0.2s;
}

.anr-player__play:hover { background: var(--color-accent-green-hover); }

.anr-player__play svg { width: 16px; height: 16px; }

.anr-player__bar {
  flex: 1; height: 4px;
  background: var(--color-border);
  border-radius: var(--border-radius-pill);
  overflow: hidden;
}

.anr-player__progress {
  height: 100%;
  background: var(--color-accent-green);
  border-radius: var(--border-radius-pill);
  transition: width 0.3s;
}

.anr-player__time {
  font-size: var(--font-size-xs); font-weight: 500;
  color: var(--color-text-muted); white-space: nowrap;
  min-width: 32px; text-align: right;
}

/* ============================================
   Pagination
   ============================================ */

.anr-pagination {
  display: flex; align-items: center; justify-content: center;
  gap: var(--space-sm); margin-top: var(--space-2xl); flex-wrap: wrap;
}

.anr-pagination__arrow {
  font-size: var(--font-size-sm); color: var(--color-text-secondary);
  padding: var(--space-xs) var(--space-sm); transition: color 0.2s;
}
.anr-pagination__arrow:hover { color: var(--color-accent-green); }

.anr-pagination__list {
  display: flex; align-items: center; gap: var(--space-xs); list-style: none;
}

.anr-pagination__page {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 32px; height: 32px; padding: 0 var(--space-xs);
  border-radius: var(--border-radius-sm); font-size: var(--font-size-sm);
  color: var(--color-text-secondary); border: 1px solid var(--color-border);
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}
.anr-pagination__page:hover {
  background: var(--color-bg-light); border-color: var(--color-accent-green);
  color: var(--color-accent-green);
}
.anr-pagination__page--current {
  background: var(--color-accent-green); border-color: var(--color-accent-green);
  color: #fff; font-weight: 700;
}

.anr-pagination__ellipsis {
  font-size: var(--font-size-sm); color: var(--color-text-muted);
  padding: 0 var(--space-xs);
}

/* ============================================
   How to Listen
   ============================================ */

.anr-how {
  margin-bottom: var(--space-3xl);
  padding: var(--space-2xl);
  background: var(--color-bg-light);
  border-radius: var(--border-radius-md);
}

.anr-how__heading {
  font-size: var(--font-size-lg); font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: var(--space-xl); text-align: center;
}

.anr-how__grid {
  display: grid; grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 640px) {
  .anr-how__grid { grid-template-columns: repeat(3, 1fr); }
}

.anr-how__step {
  text-align: center;
}

.anr-how__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--color-accent-green); color: #fff;
  font-family: 'Inter', sans-serif; font-size: var(--font-size-base);
  font-weight: 700; margin-bottom: var(--space-md);
}

.anr-how__step p {
  font-size: var(--font-size-sm); color: var(--color-text-secondary);
  line-height: 1.7;
}

/* ============================================
   CTA
   ============================================ */

.anr-cta {
  margin-top: var(--space-2xl);
  text-align: center;
}

.anr-cta__catch {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 700; color: var(--color-primary-dark);
  margin-bottom: var(--space-xl); line-height: 1.5;
}

.anr-cta__actions {
  display: flex; gap: var(--space-md);
  justify-content: center;
}

.anr-cta__actions {
  display: flex; gap: var(--space-md);
  justify-content: center;
}

.anr-cta__btn {
  display: flex; align-items: center; justify-content: center;
  flex: 1; max-width: 300px;
  padding: 0.8em 1.6em;
  font-size: var(--font-size-sm); font-weight: 500;
  color: var(--color-text-primary);
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-sm);
  transition: background-color 0.2s, border-color 0.2s;
  text-align: center; white-space: nowrap;
}

.anr-cta__btn--green {
  color: var(--color-accent-green);
  border-color: var(--color-accent-green);
  font-weight: 700;
}

.anr-cta__btn--green:hover {
  background: #f0f8f4;
  border-color: var(--color-accent-green-hover);
}

.anr-cta__btn--red {
  color: #e53935;
  border-color: #e53935;
  font-weight: 700;
}

.anr-cta__btn--red:hover {
  background: #fef0f0;
  border-color: #c62828;
}

/* ============================================
   Sidebar
   ============================================ */

.anr-sidebar {
  display: none; flex-direction: column; gap: var(--space-lg);
}
@media (min-width: 1024px) {
  .anr-sidebar {
    display: flex; position: sticky;
    top: calc(var(--header-height) + var(--space-xl));
  }
}

.anr-sidebar__box {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-md);
  padding: var(--space-lg); box-shadow: var(--shadow-card);
}

.anr-sidebar__heading {
  font-family: 'Inter', sans-serif;
  font-size: var(--font-size-sm); font-weight: 700;
  margin-bottom: var(--space-md); padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--color-accent-green);
}

.anr-sidebar__nav { list-style: none; display: flex; flex-direction: column; }
.anr-sidebar__nav li { border-bottom: 1px solid var(--color-border); }
.anr-sidebar__nav li:last-child { border-bottom: none; }
.anr-sidebar__nav a {
  display: block; padding: var(--space-sm) 0;
  font-size: var(--font-size-xs); color: var(--color-text-secondary);
  transition: color 0.2s;
}
.anr-sidebar__nav a:hover { color: var(--color-accent-green); }

.anr-sidebar__box--cta {
  background: var(--color-accent-green);
  border-color: var(--color-accent-green); text-align: center;
}
.anr-sidebar__cta-text { font-size: var(--font-size-sm); font-weight: 700; color: #fff; margin-bottom: var(--space-md); }
.anr-sidebar__cta-btn { width: 100%; justify-content: center; background: #fff; color: #e53935; font-weight: 700; }
.anr-sidebar__cta-btn:hover { background: #fce4ec; }
