/* ================================================
   After the Rain - Official Site CSS
   STUDIO → WordPress Migration
   ================================================ */

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Zen Old Mincho", "Noto Serif JP", "Tsukushi Mincho", "游明朝", "Yu Mincho", serif;
  color: #313957;
  line-height: 1.8;
  background: linear-gradient(74deg, #deeefa 0%, #e4f1ff 21%, #fbeaf9 100%);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.7;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: #313957;
  opacity: 0.6;
  white-space: nowrap;
}

.global-nav ul {
  display: flex;
  align-items: center;
  gap: 40px;
  height: 100%;
}

.global-nav a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #313957;
  opacity: 0.6;
  transition: opacity 0.3s ease;
  line-height: 1;
  display: flex;
  align-items: center;
  height: 100%;
}

.global-nav a:hover,
.global-nav a.active {
  opacity: 1;
}

.btn-contact {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #313957;
  opacity: 0.6;
  padding: 6px 20px;
  border: 1px solid rgba(49, 57, 87, 0.4);
  border-radius: 30px;
  transition: all 0.3s ease;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-contact:hover {
  opacity: 1;
  border-color: rgba(49, 57, 87, 0.8);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #313957;
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 11px; }
.hamburger span:nth-child(3) { top: 22px; }

/* Hamburger → X animation */
.hamburger.is-active span:nth-child(1) {
  top: 11px;
  transform: rotate(45deg);
}
.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active span:nth-child(3) {
  top: 11px;
  transform: rotate(-45deg);
}

/* Mobile Slide-in Menu Overlay */
.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1050;
}

.menu-overlay.is-open {
  display: block;
}

/* Mobile Slide-in Panel */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1060;
  padding: 80px 30px 40px;
  transition: right 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow-y: auto;
}

.mobile-menu.is-open {
  right: 0;
}

.mobile-menu a {
  display: block;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #313957;
  opacity: 0.8;
  padding: 18px 0;
  border-bottom: 1px solid rgba(49, 57, 87, 0.12);
  transition: opacity 0.3s ease;
}

.mobile-menu a:hover {
  opacity: 1;
}

.mobile-menu a.active {
  opacity: 1;
}

/* ---------- Hero ---------- */
.hero {
  padding-top: 54px; /* header height */
  width: 100%;
}

.hero-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.hero-slide {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  z-index: 0;
}

.hero-slide.is-active {
  opacity: 1;
  position: relative;
  z-index: 1;
}

.hero-slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Slide indicators */
.hero-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.4s ease;
}

.hero-dot.is-active {
  background: rgba(255, 255, 255, 0.95);
  transform: scale(1.3);
}

.hero-dot:hover {
  background: rgba(255, 255, 255, 0.7);
}

/* プレースホルダー: 画像がない場合 */
.hero-slide img[src="image/hero-banner.jpg"] {
  aspect-ratio: 16 / 7;
  background: linear-gradient(135deg, #c8d8e8 0%, #e8d0e4 50%, #d0e8d0 100%);
}

/* ---------- Section Cards ---------- */
.section-card {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.card-inner {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  padding: 60px 80px;
  border-radius: 2px;
  position: relative;
}

.section-title {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #313957;
  margin-bottom: 10px;
}

.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(49, 57, 87, 0.2), transparent);
  margin-bottom: 30px;
}

/* ---------- NEWS List ---------- */
.news-list li {
  border-bottom: 1px solid rgba(49, 57, 87, 0.1);
}

.news-list li:first-child {
  border-top: 1px solid rgba(49, 57, 87, 0.1);
}

.news-list a {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 18px 10px;
  transition: background 0.3s ease;
}

.news-list a:hover {
  background: rgba(49, 57, 87, 0.03);
  opacity: 1;
}

.news-list time {
  font-size: 14px;
  color: #313957;
  opacity: 0.7;
  white-space: nowrap;
  min-width: 120px;
}

.news-title {
  font-size: 15px;
  color: #313957;
}

/* ---------- SCHEDULE List ---------- */
.schedule-list li {
  border-bottom: 1px solid rgba(49, 57, 87, 0.1);
}

.schedule-list li:first-child {
  border-top: 1px solid rgba(49, 57, 87, 0.1);
}

.schedule-list a {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 10px;
  transition: background 0.3s ease;
}

.schedule-list a:hover {
  background: rgba(49, 57, 87, 0.03);
  opacity: 1;
}

.schedule-name {
  font-size: 14px;
  font-weight: 400;
  color: #313957;
  line-height: 1.7;
  letter-spacing: 0.02em;
}

/* ---------- MORE Button ---------- */
.btn-more-wrap {
  text-align: center;
  margin-top: 30px;
}

.btn-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1;
  color: #313957;
  padding: 12px 40px;
  border: 1px solid rgba(49, 57, 87, 0.4);
  border-radius: 30px;
  transition: all 0.3s ease;
}

.btn-more:hover {
  border-color: rgba(49, 57, 87, 0.8);
  opacity: 1;
}

.btn-more .arrow {
  font-size: 10px;
}

/* ---------- DISCOGRAPHY Grid ---------- */
.disco-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 20px;
}

.disco-item a {
  display: block;
  text-align: center;
}

.disco-jacket {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  margin-bottom: 16px;
  border-radius: 6px;
  box-shadow: 0 8px 28px rgba(49, 57, 87, 0.12), 0 2px 8px rgba(49, 57, 87, 0.06);
  transition: box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

.disco-jacket::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  pointer-events: none;
}

.disco-jacket img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.disco-item a:hover .disco-jacket img {
  transform: scale(1.05);
}

/* プレースホルダー */
.disco-jacket img[src^="image/jacket"] {
  background: linear-gradient(135deg, #667 0%, #99a 100%);
}

.disco-category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: 1;
  color: rgba(49, 57, 87, 0.5);
  border: 1px solid rgba(49, 57, 87, 0.15);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 8px;
}

.disco-date {
  font-size: 11px;
  letter-spacing: 0.05em;
  color: #313957;
  opacity: 0.4;
  margin-bottom: 6px;
}

.disco-name {
  font-size: 14px;
  font-weight: 500;
  color: #313957;
  line-height: 1.6;
  letter-spacing: 0.03em;
  transition: color 0.3s ease;
}

/* ---------- MOVIE Grid ---------- */
.movie-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 20px;
}

.movie-embed {
  width: 100%;
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(49, 57, 87, 0.1);
}

.movie-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ---------- Footer ---------- */
.site-footer,
.footer {
  background: #000;
  text-align: center;
  padding: 16px 20px;
  margin-top: 60px;
}

.site-footer p,
.footer p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.05em;
}

/* ================================================
   Sub-page Header (alias classes)
   ================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: #313957;
  opacity: 0.6;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 40px;
  height: 100%;
}

.nav-link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #313957;
  opacity: 0.6;
  transition: opacity 0.3s ease;
  line-height: 1;
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-link:hover,
.nav-link.active {
  opacity: 1;
}

.contact-btn {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #313957;
  opacity: 0.6;
  padding: 6px 20px;
  border: 1px solid rgba(49, 57, 87, 0.4);
  border-radius: 30px;
  display: flex;
  align-items: center;
  line-height: 1;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  opacity: 1;
  border-color: rgba(49, 57, 87, 0.8);
}

/* ================================================
   Sub-page Layouts
   ================================================ */
.main-content {
  padding-top: 54px;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  min-height: calc(100vh - 130px);
}

.page-title {
  text-align: center;
  padding: 40px 0 10px;
}

.page-title h1 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #313957;
  margin-bottom: 15px;
  transition: opacity 0.3s ease;
}

.page-title h1[style*="cursor"] {
  user-select: none;
}

.page-title h1[style*="cursor"]:hover {
  opacity: 0.6;
}

.title-divider {
  width: 100%;
  max-width: 900px;
  height: 2px;
  background: linear-gradient(90deg, rgba(49,57,87,0.05), rgba(49,57,87,0.3), rgba(49,57,87,0.05));
  margin: 0 auto;
}

/* ---------- Filter Buttons (NEWS / SCHEDULE / DISCOGRAPHY) ---------- */
.filter-buttons,
.year-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 30px 0;
}

.filter-btn {
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  color: #313957;
  background: transparent;
  border: 1px solid rgba(49, 57, 87, 0.3);
  border-radius: 30px;
  padding: 10px 28px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.filter-btn:hover {
  border-color: rgba(49, 57, 87, 0.7);
  background: rgba(49, 57, 87, 0.05);
}

.filter-btn.active {
  border-color: #313957;
  background: rgba(49, 57, 87, 0.08);
}

.year-filter .filter-btn {
  min-width: 80px;
  padding: 6px 20px;
}

/* ---------- NEWS Page ---------- */
.news-container {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 2px;
  overflow: hidden;
}

a.news-item,
.news-item {
  display: block;
  padding: 20px 30px;
  border-bottom: 1px solid rgba(49, 57, 87, 0.1);
  transition: background 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

a.news-item:hover,
.news-item:hover {
  background: rgba(49, 57, 87, 0.03);
  opacity: 1;
}

.news-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 6px;
}

.news-date {
  font-size: 14px;
  color: #313957;
  opacity: 0.7;
}

.news-category {
  font-size: 12px;
  letter-spacing: 0.05em;
  line-height: 1;
  padding: 5px 16px;
  border: 1px solid rgba(49, 57, 87, 0.3);
  border-radius: 20px;
  color: #313957;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.news-container .news-title {
  font-size: 15px;
  font-weight: 400;
  color: #313957;
}

/* ---------- SCHEDULE Page ---------- */
.schedule-container {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 4px 30px rgba(49, 57, 87, 0.06);
}

/* Schedule Sidebar Layout */
.schedule-layout {
  display: flex;
  gap: 0;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 20px;
}

.year-sidebar {
  width: 72px;
  flex-shrink: 0;
  padding-top: 12px;
  position: sticky;
  top: 40px;
  align-self: flex-start;
  height: auto;
}

.year-link {
  display: block;
  padding: 9px 0;
  font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(49, 57, 87, 0.25);
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
}

.year-link:hover {
  color: rgba(49, 57, 87, 0.55);
}

.year-link.active {
  color: #313957;
  font-weight: 600;
}

.year-link.active::before {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 18px;
  background: #313957;
  border-radius: 1px;
}

.schedule-main {
  flex: 1;
  min-width: 0;
  border-left: 1px solid rgba(49, 57, 87, 0.06);
  padding-left: 0;
}

.schedule-main .schedule-container {
  border-radius: 0 20px 20px 0;
}

@media (max-width: 768px) {
  .schedule-layout {
    flex-direction: column;
  }
  .year-sidebar {
    width: 100%;
    position: static;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2px;
    padding: 0 0 16px;
    border-bottom: 1px solid rgba(49, 57, 87, 0.06);
    margin-bottom: 0;
  }
  .year-link {
    padding: 6px 12px;
  }
  .year-link.active::before {
    display: none;
  }
  .schedule-main {
    border-left: none;
  }
  .schedule-main .schedule-container {
    border-radius: 20px;
  }
}

/* Schedule Dates Block (archive) */
.schedule-item .schedule-dates-block {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 2px 8px;
}

.schedule-item .schedule-dates-year {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #313957;
  opacity: 0.45;
}

.schedule-item .schedule-dates-days {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #313957;
  opacity: 0.45;
}

/* Schedule Year Label */
.schedule-year-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: rgba(49, 57, 87, 0.45);
  padding: 28px 32px 10px;
  text-transform: uppercase;
  position: relative;
}

.schedule-year-label::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 32px;
  width: 24px;
  height: 1.5px;
  background: linear-gradient(90deg, rgba(49, 57, 87, 0.3), transparent);
}

.schedule-container .schedule-year-label:first-child {
  padding-top: 28px;
}

/* Past Events Toggle */
.past-events {
  margin-top: 36px;
}

.past-events-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 28px;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  cursor: pointer;
  font-family: inherit;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: #313957;
  opacity: 0.65;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 2px 16px rgba(49, 57, 87, 0.04);
}

.past-events-toggle:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.65);
  box-shadow: 0 4px 24px rgba(49, 57, 87, 0.08);
  transform: translateY(-1px);
}

.past-events-toggle .accordion-arrow {
  font-size: 9px;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0.5;
}

.past-events.is-open .past-events-toggle {
  opacity: 1;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 4px 24px rgba(49, 57, 87, 0.08);
}

.past-events.is-open .past-events-toggle .accordion-arrow {
  transform: rotate(180deg);
}

.past-events-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  margin-top: 10px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 4px 30px rgba(49, 57, 87, 0.06);
}

.past-events.is-open .past-events-body {
  max-height: 3000px;
}

a.schedule-item,
.schedule-item {
  padding: 20px 32px;
  border-bottom: 1px solid rgba(49, 57, 87, 0.05);
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-decoration: none;
  color: inherit;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

a.schedule-item:hover,
.schedule-item:hover {
  background: rgba(49, 57, 87, 0.025);
  opacity: 1;
  padding-left: 36px;
}

a.schedule-item:last-child,
.schedule-item:last-child {
  border-bottom: none;
}

.schedule-year-badge {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  padding: 5px 16px;
  border: 1px solid rgba(49, 57, 87, 0.3);
  border-radius: 20px;
  color: #313957;
  white-space: nowrap;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.schedule-details {
  flex: 1;
}

.schedule-date {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #313957;
  opacity: 0.4;
}

.schedule-event {
  font-size: 15px;
  font-weight: 400;
  color: #313957;
}

/* ---------- PROFILE Page ---------- */
.profiles-container {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-top: 20px;
}

.profile-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: start;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 4px 30px rgba(49, 57, 87, 0.06);
  padding: 48px;
  text-align: left;
}

.profile-card:nth-child(even) {
  direction: rtl;
}

.profile-card:nth-child(even) > * {
  direction: ltr;
}

.profile-image-wrapper {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(49, 57, 87, 0.15), 0 4px 12px rgba(49, 57, 87, 0.06);
  position: relative;
}

.profile-image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  pointer-events: none;
}

.profile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.profile-card:hover .profile-image {
  transform: scale(1.03);
}

.profile-info {
  padding-top: 4px;
}

.profile-name {
  font-size: 26px;
  font-weight: 700;
  color: #313957;
  margin-bottom: 2px;
  letter-spacing: 0.04em;
}

.profile-romaji {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: rgba(49, 57, 87, 0.35);
  text-transform: uppercase;
  margin-top: 4px;
}

.profile-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 28px;
}

.profile-link {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #313957;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(49, 57, 87, 0.08);
  border-radius: 6px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-decoration: none;
}

.profile-link:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(49, 57, 87, 0.2);
  box-shadow: 0 2px 10px rgba(49, 57, 87, 0.06);
  transform: translateY(-1px);
}

.profile-bio {
  font-size: 13px;
  line-height: 2.2;
  letter-spacing: 0.03em;
  color: #2c3350;
  text-align: left;
  padding-top: 20px;
  border-top: 1px solid rgba(49, 57, 87, 0.06);
}

/* ---------- DISCOGRAPHY Page ---------- */
.discography-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
  padding: 10px 0;
}

a.disco-item,
.discography-item {
  text-align: center;
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

a.disco-item:hover {
  opacity: 1;
  transform: translateY(-6px);
}

a.disco-item:hover .disco-jacket {
  box-shadow: 0 20px 50px rgba(49, 57, 87, 0.2), 0 8px 20px rgba(49, 57, 87, 0.1);
}

a.disco-item:hover .disco-jacket img {
  transform: scale(1.03);
}

a.disco-item:hover .disco-name {
  color: rgba(49, 57, 87, 0.85);
}

.discography-item a {
  display: block;
}

.discography-jacket {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #667 0%, #99a 100%);
}

.discography-jacket img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.discography-item a:hover .discography-jacket img {
  transform: scale(1.05);
}

.discography-category {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  background: #313957;
  padding: 2px 14px;
  border-radius: 2px;
  margin-bottom: 6px;
}

.discography-date {
  font-size: 12px;
  color: #313957;
  opacity: 0.6;
}

.discography-name {
  font-size: 15px;
  font-weight: 700;
  color: #313957;
}

/* ---------- MOVIE Page ---------- */
.movie-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  margin-top: 20px;
}

/* Featured (first) video - full width */
.movie-page-grid .movie-item:first-child {
  grid-column: 1 / -1;
}

.movie-item {
  position: relative;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.movie-item:hover {
  transform: translateY(-4px);
}

/* Video Card */
.video-wrapper {
  width: 100%;
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  background: #0a0a12;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18), 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}

.movie-item:hover .video-wrapper {
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.25), 0 4px 16px rgba(0, 0, 0, 0.12);
}

/* Thumbnail image */
.video-wrapper .video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter 0.4s ease;
}

.movie-item:hover .video-wrapper .video-thumb {
  transform: scale(1.04);
  filter: brightness(0.85);
}

/* Play button overlay */
.video-wrapper .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 2;
  pointer-events: none;
}

.video-wrapper .play-btn::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent #313957;
  margin-left: 3px;
}

.movie-item:hover .video-wrapper .play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 6px 32px rgba(0, 0, 0, 0.35);
}

/* First item larger play button */
.movie-item:first-child .video-wrapper .play-btn {
  width: 80px;
  height: 80px;
}

.movie-item:first-child .video-wrapper .play-btn::after {
  border-width: 13px 0 13px 22px;
  margin-left: 4px;
}

/* Dim overlay on thumbnail */
.video-wrapper .video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* Playing state - hide thumb/overlay, show iframe */
.video-wrapper.is-playing .video-thumb,
.video-wrapper.is-playing .play-btn,
.video-wrapper.is-playing .video-overlay {
  display: none;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Title */
.movie-title {
  margin-top: 12px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #313957;
  line-height: 1.6;
}

.movie-item:first-child .movie-title {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

/* ---------- CONTACT Page ---------- */
.contact-form-wrapper {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  padding: 50px 60px;
  margin-top: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.form-group {
  margin-bottom: 30px;
}

.form-group label {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: #313957;
  margin-bottom: 8px;
}

.required-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  background: #e8848f;
  padding: 4px 10px;
  border-radius: 20px;
  margin-left: 8px;
  vertical-align: middle;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  color: #313957;
  padding: 12px 16px;
  border: 1px solid rgba(49, 57, 87, 0.25);
  border-radius: 2px;
  background: #fff;
  transition: border-color 0.3s ease;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(49, 57, 87, 0.6);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #313957;
  cursor: pointer;
}

.radio-label input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: #313957;
}

.checkbox-group {
  margin-top: 10px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #313957;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #313957;
}

.submit-btn {
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  color: #313957;
  background: transparent;
  border: 1px solid rgba(49, 57, 87, 0.4);
  border-radius: 2px;
  padding: 14px 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  border-color: #313957;
  background: rgba(49, 57, 87, 0.05);
}

/* ---------- CF7 Form Overrides ---------- */
.wpcf7-form .form-group p {
  margin: 0;
}

.wpcf7-form .form-group {
  margin-bottom: 24px;
}

.wpcf7-form .form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #313957;
  letter-spacing: 0.03em;
  margin-bottom: 8px;
}

.wpcf7-form .form-group .optional {
  font-size: 12px;
  color: rgba(49, 57, 87, 0.5);
  font-weight: 400;
  margin-left: 6px;
}

.wpcf7-form .wpcf7-form-control-wrap {
  display: block;
}

.wpcf7-form input.wpcf7-text,
.wpcf7-form input.wpcf7-email,
.wpcf7-form textarea.wpcf7-textarea {
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  color: #313957;
  padding: 12px 16px;
  border: 1px solid rgba(49, 57, 87, 0.2);
  border-radius: 4px;
  background: #fff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
  box-sizing: border-box;
}

.wpcf7-form input.wpcf7-text:focus,
.wpcf7-form input.wpcf7-email:focus,
.wpcf7-form textarea.wpcf7-textarea:focus {
  border-color: rgba(49, 57, 87, 0.5);
  box-shadow: 0 0 0 3px rgba(49, 57, 87, 0.06);
}

.wpcf7-form textarea.wpcf7-textarea {
  resize: vertical;
  min-height: 160px;
}

.wpcf7-form .wpcf7-radio {
  display: flex;
  gap: 24px;
  margin-top: 4px;
}

.wpcf7-form .wpcf7-radio .wpcf7-list-item {
  margin: 0;
}

.wpcf7-form .wpcf7-radio .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  margin-bottom: 0;
}

.wpcf7-form .wpcf7-radio input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: #313957;
  margin: 0;
}

.wpcf7-form .checkbox-group .wpcf7-acceptance {
  display: block;
}

.wpcf7-form .wpcf7-acceptance .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 400;
  color: #313957;
  cursor: pointer;
  margin-bottom: 0;
}

.wpcf7-form .wpcf7-acceptance input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #313957;
  margin: 0;
  flex-shrink: 0;
}

.wpcf7-form .form-submit p {
  margin: 0;
  text-align: center;
}

.wpcf7-form input.wpcf7-submit {
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  color: #313957;
  background: transparent;
  border: 1px solid rgba(49, 57, 87, 0.35);
  border-radius: 4px;
  padding: 14px 56px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.05em;
  margin-top: 16px;
}

.wpcf7-form input.wpcf7-submit:hover {
  border-color: #313957;
  background: rgba(49, 57, 87, 0.05);
}

.wpcf7-form input.wpcf7-submit:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.wpcf7-form .wpcf7-spinner {
  display: none;
}

.wpcf7-form .wpcf7-response-output {
  margin: 20px 0 0;
  padding: 12px 16px;
  border-radius: 4px;
  font-size: 14px;
  text-align: center;
}

.wpcf7-form.sent .wpcf7-response-output {
  border-color: #46b450;
  color: #46b450;
}

.wpcf7-form.invalid .wpcf7-response-output {
  border-color: #e8848f;
  color: #c0392b;
}

.grecaptcha-badge {
  visibility: hidden !important;
}

/* ================================================
   Responsive
   ================================================ */
@media (max-width: 1200px) {
  .global-nav ul,
  .nav {
    gap: 20px;
  }

  .global-nav a,
  .nav-link {
    font-size: 13px;
    letter-spacing: 0.1em;
  }

  .btn-contact,
  .contact-btn {
    font-size: 13px;
    padding: 6px 18px;
  }

  .site-logo,
  .logo {
    font-size: 22px;
  }
}

@media (max-width: 1024px) {
  .global-nav ul,
  .nav {
    gap: 16px;
  }

  .global-nav a,
  .nav-link {
    font-size: 12px;
    letter-spacing: 0.08em;
  }

  .btn-contact,
  .contact-btn {
    font-size: 12px;
    padding: 6px 14px;
  }

  .site-logo,
  .logo {
    font-size: 18px;
  }

  .header-inner,
  .header-container {
    padding: 0 20px;
  }

  .card-inner {
    padding: 50px 40px;
  }

  .contact-form-wrapper {
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {
  .header-inner,
  .header-container {
    height: 48px;
    padding: 0 16px;
  }

  .site-logo,
  .logo {
    font-size: 18px;
  }

  .global-nav,
  .nav {
    display: none;
  }

  .btn-contact,
  .contact-btn {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .hero {
    padding-top: 48px;
  }

  .main-content {
    padding-top: 48px;
  }

  .section-card {
    margin: 20px auto;
    padding: 0 10px;
  }

  .card-inner {
    padding: 40px 20px;
    border-radius: 2px;
  }

  .section-title {
    font-size: 20px;
  }

  .news-list a,
  .schedule-list a {
    flex-direction: column;
    gap: 4px;
    padding: 14px 8px;
  }

  .news-list time {
    font-size: 12px;
  }

  .schedule-dates-block {
    font-size: 11px;
  }

  .disco-grid,
  .discography-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 20px;
  }

  .movie-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .movie-page-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .movie-page-grid .movie-item:first-child {
    grid-column: 1;
  }

  .video-wrapper {
    border-radius: 8px;
  }

  .video-wrapper .play-btn {
    width: 52px;
    height: 52px;
  }

  .video-wrapper .play-btn::after {
    border-width: 8px 0 8px 14px;
    margin-left: 2px;
  }

  .movie-item:first-child .video-wrapper .play-btn {
    width: 60px;
    height: 60px;
  }

  .movie-item:first-child .video-wrapper .play-btn::after {
    border-width: 10px 0 10px 17px;
    margin-left: 3px;
  }

  .movie-title {
    font-size: 12px;
    margin-top: 8px;
  }

  .movie-item:first-child .movie-title {
    font-size: 13px;
  }

  .profiles-container {
    gap: 40px;
  }

  .profile-card {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    text-align: center;
    border-radius: 12px;
  }

  .profile-card:nth-child(even) {
    direction: ltr;
  }

  .profile-image-wrapper {
    max-width: 260px;
    margin: 0 auto;
    border-radius: 8px;
  }

  .profile-image-wrapper::after {
    border-radius: 8px;
  }

  .profile-info {
    padding-top: 0;
  }

  .profile-links {
    justify-content: center;
  }

  .profile-bio {
    text-align: left;
  }

  .schedule-item {
    padding: 16px 20px;
    gap: 4px;
  }

  .schedule-item:hover {
    padding-left: 24px;
  }

  .schedule-year-label {
    font-size: 10px;
    padding: 22px 20px 8px;
    letter-spacing: 0.2em;
  }

  .schedule-year-label::after {
    left: 20px;
    width: 20px;
  }

  .schedule-container {
    border-radius: 12px;
  }

  .past-events-toggle {
    font-size: 11px;
    padding: 15px 20px;
    border-radius: 10px;
  }

  .past-events-body {
    border-radius: 12px;
  }

  .news-item {
    padding: 16px 20px;
  }

  .contact-form-wrapper {
    padding: 30px 20px;
  }

  .filter-buttons,
  .year-filter {
    gap: 8px;
    padding: 20px 0;
  }

  .filter-btn {
    padding: 6px 18px;
    font-size: 13px;
    min-width: auto;
  }

  .discography-grid {
    gap: 28px 16px;
  }

  .disco-name {
    font-size: 13px;
  }
}

/* ---------- Detail Page (NEWS / SCHEDULE / DISCOGRAPHY) ---------- */
.detail-content {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 4px 30px rgba(49, 57, 87, 0.06);
  padding: 50px 60px;
  margin-top: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.detail-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.detail-date {
  font-size: 12px;
  letter-spacing: 0.05em;
  color: #313957;
  opacity: 0.45;
}

.detail-category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: 1;
  padding: 4px 12px;
  border: 1px solid rgba(49, 57, 87, 0.15);
  border-radius: 20px;
  color: rgba(49, 57, 87, 0.5);
}

.detail-title {
  font-size: 22px;
  font-weight: 700;
  color: #313957;
  margin-bottom: 30px;
  line-height: 1.6;
}

.detail-body {
  font-size: 15px;
  line-height: 2;
  color: #313957;
  margin-bottom: 8px;
}

.detail-body p {
  margin-bottom: 1.5em;
}

.detail-body p:last-child {
  margin-bottom: 0;
}

/* ---- NEWS Magazine Style ---- */

/* Eyecatch header area */
.news-detail-eyecatch {
  position: relative;
  margin: -50px -60px 0;
  padding: 48px 60px 36px;
  border-bottom: 1px solid rgba(49, 57, 87, 0.06);
}

.news-detail-eyecatch .detail-meta {
  margin-bottom: 16px;
  gap: 12px;
}

.news-detail-eyecatch .detail-category {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 4px 14px 3px;
  background: #313957;
  color: #fff;
  border: none;
  border-radius: 3px;
}

.news-detail-eyecatch .detail-date {
  font-size: 12px;
  letter-spacing: 0.08em;
  opacity: 0.5;
}

.news-detail-eyecatch .detail-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.04em;
  margin-bottom: 0;
}

/* Body - readable */
.detail-body.magazine-body {
  font-size: 15px;
  line-height: 2.2;
  letter-spacing: 0.04em;
  color: #2c3350;
  padding: 36px 0 0;
  max-width: 640px;
}

.detail-body.magazine-body p {
  margin-bottom: 1.6em;
}

.detail-body.magazine-body strong {
  font-weight: 700;
  color: #313957;
}

/* Info box for event details etc */
.news-info-box {
  margin: 24px 0 28px;
  padding: 22px 24px;
  background: rgba(49, 57, 87, 0.03);
  border-radius: 10px;
  border: 1px solid rgba(49, 57, 87, 0.06);
}

.news-info-box p {
  margin-bottom: 0.6em !important;
  font-size: 14px;
  line-height: 2;
}

.news-info-box p:last-child {
  margin-bottom: 0 !important;
}

.news-info-box strong {
  background: none !important;
  font-weight: 700;
  color: #313957;
}

/* Article footer / sign-off */
.news-article-footer {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(49, 57, 87, 0.06);
  text-align: right;
}

.news-article-footer p {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(49, 57, 87, 0.4);
  margin-bottom: 0;
}

/* Discography detail specific */
.disco-detail-header {
  display: flex;
  gap: 48px;
  margin-bottom: 40px;
}

.disco-detail-jacket {
  width: 320px;
  flex-shrink: 0;
}

.disco-detail-jacket img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(49, 57, 87, 0.18), 0 4px 12px rgba(49, 57, 87, 0.08);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.disco-detail-jacket img:hover {
  transform: scale(1.02) translateY(-4px);
  box-shadow: 0 20px 56px rgba(49, 57, 87, 0.22), 0 8px 20px rgba(49, 57, 87, 0.1);
}

.disco-detail-info {
  flex: 1;
  padding-top: 8px;
}

.disco-detail-info .detail-category {
  display: inline-block;
  margin-bottom: 16px;
}

.disco-detail-info .detail-title {
  font-size: 24px;
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}

.disco-detail-info .detail-date {
  margin-bottom: 28px;
  display: block;
}

.disco-detail-tracklist {
  margin-top: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(49, 57, 87, 0.06);
}

.disco-detail-tracklist h3 {
  font-size: 10px;
  font-weight: 700;
  color: rgba(49, 57, 87, 0.4);
  margin-bottom: 16px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.disco-detail-tracklist ol {
  list-style: none;
  padding-left: 0;
  counter-reset: track;
}

.disco-detail-tracklist li {
  font-size: 14px;
  color: #313957;
  line-height: 1.6;
  padding: 8px 0;
  border-bottom: 1px solid rgba(49, 57, 87, 0.04);
  counter-increment: track;
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.disco-detail-tracklist li::before {
  content: counter(track, decimal-leading-zero);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: rgba(49, 57, 87, 0.25);
  flex-shrink: 0;
  min-width: 20px;
}

.disco-detail-tracklist li:last-child {
  border-bottom: none;
}

/* Shop Links */
.disco-detail-links {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(49, 57, 87, 0.06);
}

.disco-detail-links h3 {
  font-size: 10px;
  font-weight: 700;
  color: rgba(49, 57, 87, 0.4);
  margin-bottom: 14px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.shop-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.shop-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #313957;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(49, 57, 87, 0.1);
  border-radius: 8px;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-decoration: none;
}

.shop-link:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(49, 57, 87, 0.25);
  box-shadow: 0 4px 16px rgba(49, 57, 87, 0.08);
  transform: translateY(-2px);
}

.shop-link .shop-icon {
  font-size: 14px;
  opacity: 0.6;
}

/* Special Site Link */
.disco-special-site {
  margin-top: 24px;
}

.schedule-special-site {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(49, 57, 87, 0.1);
  text-align: center;
}

.special-site-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 280px;
  padding: 18px 48px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #fff;
  background: linear-gradient(135deg, #313957 0%, #4a5580 100%);
  border: none;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 20px rgba(49, 57, 87, 0.2);
  position: relative;
  overflow: hidden;
}

.special-site-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.special-site-link:hover {
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(49, 57, 87, 0.3);
}

.special-site-link .link-arrow {
  font-size: 10px;
  opacity: 0.7;
  transition: transform 0.3s ease;
}

.special-site-link:hover .link-arrow {
  transform: translateX(4px);
}

/* Schedule detail specific */
.schedule-detail-info {
  margin-bottom: 30px;
  padding: 24px 0;
  border-top: 1px solid rgba(49, 57, 87, 0.08);
  border-bottom: 1px solid rgba(49, 57, 87, 0.08);
}

.schedule-detail-info dl {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px 24px;
  align-items: baseline;
}

.schedule-detail-info dt {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #313957;
  opacity: 0.6;
}

.schedule-detail-info dd {
  font-size: 14px;
  line-height: 1.9;
  color: #313957;
}

.schedule-date-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 16px;
}

.schedule-date-list li {
  position: relative;
  padding-left: 12px;
  font-size: 14px;
  line-height: 1.8;
}

.schedule-date-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(49, 57, 87, 0.25);
}

.schedule-year-prefix {
  font-weight: 700;
  font-size: 13px;
  color: #313957;
  opacity: 0.55;
  margin-right: 6px;
}

.schedule-year-group {
  margin-bottom: 4px;
}

.schedule-year-group:last-child {
  margin-bottom: 0;
}

.schedule-keyvisual {
  margin-bottom: 24px;
  border-radius: 8px;
  overflow: hidden;
}

.schedule-keyvisual img {
  width: 100%;
  height: auto;
  display: block;
}

/* Back button */
.btn-back-wrap {
  text-align: center;
  margin-top: 48px;
}

.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #313957;
  padding: 14px 36px;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(49, 57, 87, 0.04);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0.65;
}

.btn-back:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.65);
  box-shadow: 0 4px 24px rgba(49, 57, 87, 0.08);
  transform: translateY(-1px);
}

.btn-back .arrow {
  font-size: 9px;
  opacity: 0.5;
}

@media (max-width: 768px) {
  .detail-content {
    padding: 32px 24px;
    border-radius: 12px;
  }

  .news-detail-eyecatch {
    margin: -32px -24px 0;
    padding: 28px 24px 24px;
  }

  .news-detail-eyecatch .detail-title {
    font-size: 20px;
    line-height: 1.7;
  }

  .detail-body.magazine-body {
    padding-top: 28px;
  }

  .news-info-box {
    padding: 18px 18px;
    margin: 20px 0;
  }

  .detail-title {
    font-size: 18px;
  }

  .disco-detail-header {
    flex-direction: column;
    gap: 28px;
    align-items: center;
  }

  .disco-detail-jacket {
    width: 100%;
    max-width: 260px;
  }

  .disco-detail-info {
    padding-top: 0;
    text-align: center;
  }

  .disco-detail-info .detail-title {
    font-size: 20px;
  }

  .disco-detail-tracklist {
    text-align: left;
  }

  .shop-links {
    justify-content: center;
  }

  .shop-link {
    padding: 8px 16px;
    font-size: 11px;
  }

  .special-site-link {
    font-size: 11px;
    padding: 14px 20px;
  }

  .schedule-detail-info dl {
    grid-template-columns: 60px 1fr;
    gap: 8px 12px;
  }

  .schedule-date-list {
    flex-direction: column;
    gap: 2px;
  }

  .btn-back {
    padding: 12px 28px;
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .profile-card {
    padding: 24px 16px;
    gap: 24px;
  }

  .profile-image-wrapper {
    max-width: 200px;
  }

  .profile-name {
    font-size: 22px;
  }

  .profile-bio {
    font-size: 12px;
    line-height: 2.1;
  }

  .profile-link {
    font-size: 10px;
    padding: 5px 12px;
  }

  .disco-grid,
  .discography-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 14px;
  }

  .disco-jacket {
    margin-bottom: 12px;
  }

  /* Detail page - small screen */
  .detail-content {
    padding: 24px 16px;
    border-radius: 10px;
  }

  .disco-detail-header {
    gap: 20px;
  }

  .disco-detail-jacket {
    max-width: 220px;
  }

  .disco-detail-info .detail-title {
    font-size: 17px;
  }

  .disco-detail-tracklist li {
    font-size: 13px;
    padding: 6px 0;
    gap: 12px;
  }

  .disco-detail-tracklist li::before {
    font-size: 10px;
  }

  .disco-detail-links {
    padding-top: 18px;
    margin-top: 20px;
  }

  .shop-links {
    gap: 8px;
  }

  .shop-link {
    padding: 8px 14px;
    font-size: 10px;
    border-radius: 6px;
  }

  .special-site-link {
    font-size: 10px;
    padding: 12px 16px;
    border-radius: 8px;
  }

  .news-detail-eyecatch {
    margin: -24px -16px 0;
    padding: 20px 16px 18px;
  }

  .news-detail-eyecatch .detail-title {
    font-size: 17px;
    line-height: 1.7;
  }

  .detail-body.magazine-body {
    font-size: 14px;
    line-height: 2.1;
    padding-top: 24px;
  }

  .news-info-box {
    padding: 16px 14px;
    margin: 16px 0;
    border-radius: 8px;
  }

  .news-info-box p {
    font-size: 13px;
  }

  .btn-back-wrap {
    margin-top: 32px;
  }

  .btn-back {
    padding: 10px 24px;
    font-size: 9px;
    border-radius: 8px;
  }
}

/* Page title h1 link */
.page-title h1 a {
  color: inherit;
  text-decoration: none;
}
.page-title h1 a:hover {
  opacity: 0.6;
}

.schedule-dates-block {
  display: flex;
  flex-wrap: wrap;
  gap: 0 14px;
  font-size: 12px;
  color: #313957;
  opacity: 0.55;
  line-height: 1.7;
}

.schedule-dates-year {
  font-weight: 600;
  margin-right: 4px;
}

.schedule-dates-days {
  letter-spacing: 0.02em;
}

/* ================================================
   Enhanced Mobile Responsive - Smartphone Optimization
   ================================================ */

/* --- Hero Slider Stability --- */
.hero-slider {
  position: relative;
}
.hero-slide {
  backface-visibility: hidden;
}
.hero-slide img {
  aspect-ratio: 16 / 7;
  object-fit: cover;
  background: linear-gradient(135deg, #c8d8e8 0%, #e8d0e4 50%, #d0e8d0 100%);
}

/* --- Tablet (max-width: 768px) Enhancements --- */
@media (max-width: 768px) {
  /* Smooth touch scrolling */
  html {
    -webkit-text-size-adjust: 100%;
  }

  /* Hero adjustments */
  .hero-slide img {
    aspect-ratio: 16 / 9;
  }
  .hero-indicators {
    bottom: 12px;
    gap: 8px;
  }
  .hero-dot {
    width: 7px;
    height: 7px;
  }

  /* Section spacing */
  .section-card {
    margin: 16px auto;
  }

  /* Section title */
  .section-title {
    font-size: 18px;
    letter-spacing: 0.15em;
    margin-bottom: 8px;
  }

  /* Section divider */
  .section-divider {
    margin-bottom: 20px;
  }

  /* News list touch targets */
  .news-list a {
    padding: 16px 8px;
    min-height: 44px;
  }
  .news-list time {
    font-size: 11px;
    min-width: auto;
  }
  .news-title {
    font-size: 14px;
    line-height: 1.7;
  }

  /* Schedule list touch targets */
  .schedule-list a {
    padding: 16px 8px;
    min-height: 44px;
  }
  .schedule-name {
    font-size: 13px;
    line-height: 1.6;
  }

  /* Disco grid mobile */
  .disco-grid {
    gap: 20px 16px;
  }
  .disco-jacket {
    margin-bottom: 10px;
    border-radius: 4px;
    box-shadow: 0 4px 16px rgba(49, 57, 87, 0.1), 0 1px 4px rgba(49, 57, 87, 0.05);
  }
  .disco-category {
    font-size: 8px;
    padding: 3px 10px;
    margin-bottom: 4px;
  }
  .disco-date {
    font-size: 10px;
    margin-bottom: 4px;
  }
  .disco-name {
    font-size: 12px;
    line-height: 1.5;
  }

  /* Movie section mobile */
  .movie-embed {
    border-radius: 6px;
    border: none;
  }

  /* More button mobile */
  .btn-more-wrap {
    margin-top: 24px;
  }
  .btn-more {
    font-size: 12px;
    padding: 10px 32px;
    min-height: 44px;
  }

  /* Footer */
  .site-footer, .footer {
    margin-top: 40px;
    padding: 14px 16px;
  }
  .site-footer p, .footer p {
    font-size: 11px;
  }

  /* Sub-page layouts */
  .page-title {
    padding: 28px 0 8px;
  }
  .page-title h1 {
    font-size: 22px;
    letter-spacing: 0.15em;
  }
  .title-divider {
    height: 1px;
  }

  /* Filter buttons mobile */
  .filter-buttons, .year-filter {
    gap: 6px;
    padding: 16px 0;
  }
  .filter-btn {
    padding: 8px 16px;
    font-size: 12px;
    min-width: auto;
    min-height: 36px;
  }

  /* News page items */
  .news-item, a.news-item {
    padding: 14px 16px;
  }
  .news-header {
    gap: 10px;
    margin-bottom: 4px;
  }
  .news-date {
    font-size: 12px;
  }
  .news-category {
    font-size: 10px;
    padding: 3px 12px;
  }
  .news-container .news-title {
    font-size: 14px;
    line-height: 1.7;
  }

  /* Discography archive grid */
  .discography-grid {
    gap: 24px 14px;
  }
  .discography-name {
    font-size: 13px;
  }
  .discography-date {
    font-size: 11px;
  }

  /* Movie page grid */
  .movie-title {
    font-size: 12px;
    line-height: 1.5;
  }
  .movie-item:first-child .movie-title {
    font-size: 14px;
  }

  /* Profile page */
  .profile-card {
    gap: 28px;
  }
  .profile-name {
    font-size: 22px;
  }
  .profile-romaji {
    font-size: 10px;
  }
  .profile-links {
    margin: 14px 0 20px;
  }
  .profile-bio {
    font-size: 13px;
    line-height: 2;
    padding-top: 16px;
  }

  /* Contact form */
  .contact-form-wrapper {
    margin-top: 16px;
  }
  .form-group {
    margin-bottom: 20px;
  }
  .form-group label {
    font-size: 14px;
  }
  .form-group input[type="text"],
  .form-group input[type="email"],
  .form-group textarea {
    font-size: 16px;
    padding: 10px 14px;
  }
  .submit-btn {
    width: 100%;
    padding: 14px;
    font-size: 14px;
    min-height: 48px;
  }

  /* Back button */
  .btn-back-wrap {
    margin-top: 36px;
  }

  /* Schedule detail */
  .schedule-detail-info dl {
    grid-template-columns: 70px 1fr;
    gap: 10px 16px;
  }
  .schedule-detail-info dt {
    font-size: 12px;
  }
  .schedule-detail-info dd {
    font-size: 13px;
  }

  /* Special site link mobile */
  .special-site-link {
    min-width: 0;
    width: 100%;
    padding: 16px 24px;
    font-size: 12px;
    border-radius: 8px;
  }
  .schedule-special-site {
    margin-top: 28px;
    padding-top: 24px;
  }
}

/* --- Small phones (max-width: 400px) --- */
@media (max-width: 400px) {
  .header-inner, .header-container {
    padding: 0 12px;
  }
  .site-logo, .logo {
    font-size: 16px;
  }

  .card-inner {
    padding: 28px 14px;
  }

  /* Disco grid: keep 2 columns but tighter */
  .disco-grid, .discography-grid {
    gap: 16px 10px;
  }
  .disco-name, .discography-name {
    font-size: 11px;
  }
  .disco-category {
    font-size: 7px;
    padding: 2px 8px;
  }

  /* Section title */
  .section-title {
    font-size: 16px;
  }

  /* Page title */
  .page-title h1 {
    font-size: 20px;
    letter-spacing: 0.1em;
  }

  /* Profile */
  .profile-card {
    padding: 20px 14px;
  }
  .profile-image-wrapper {
    max-width: 180px;
  }
  .profile-name {
    font-size: 20px;
  }
  .profile-bio {
    font-size: 12px;
    line-height: 2;
  }

  /* News */
  .news-item, a.news-item {
    padding: 12px 12px;
  }

  /* Detail content */
  .detail-content {
    padding: 20px 14px;
    border-radius: 8px;
  }
  .news-detail-eyecatch {
    margin: -20px -14px 0;
    padding: 18px 14px 16px;
  }
  .news-detail-eyecatch .detail-title {
    font-size: 16px;
  }
  .detail-body.magazine-body {
    font-size: 13px;
    line-height: 2;
  }

  /* Disco detail */
  .disco-detail-jacket {
    max-width: 200px;
  }
  .disco-detail-info .detail-title {
    font-size: 16px;
  }
  .disco-detail-tracklist li {
    font-size: 12px;
    gap: 10px;
  }

  /* Contact form - prevent zoom on iOS */
  .form-group input[type="text"],
  .form-group input[type="email"],
  .form-group textarea {
    font-size: 16px;
  }

  /* Footer */
  .site-footer p, .footer p {
    font-size: 10px;
  }
}

/* --- Prevent horizontal scroll globally --- */
html, body {
  overflow-x: hidden;
}

/* --- iOS safe area support --- */
@supports (padding: env(safe-area-inset-bottom)) {
  .site-footer, .footer {
    padding-bottom: calc(16px + env(safe-area-inset-bottom));
  }
  .site-header, .header {
    padding-top: env(safe-area-inset-top);
  }
}

/* --- Touch-friendly tap targets --- */
@media (pointer: coarse) {
  .news-list a,
  .schedule-list a,
  a.news-item,
  a.schedule-item,
  a.disco-item,
  .movie-item,
  .filter-btn,
  .btn-more,
  .btn-back,
  .profile-link,
  .shop-link {
    min-height: 44px;
  }
}


/* --- CF7 Form Fixes: br removal + Thank You Page --- */
.wpcf7-form .form-group p > br {
  display: none;
}

/* Thank You / Sent Confirmation */
.contact-thankyou {
  text-align: center;
  padding: 80px 20px;
  max-width: 560px;
  margin: 0 auto;
}
.contact-thankyou .thankyou-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(49, 57, 87, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.contact-thankyou .thankyou-icon svg {
  width: 28px;
  height: 28px;
  stroke: #313957;
}
.contact-thankyou h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: #313957;
  margin-bottom: 16px;
}
.contact-thankyou p {
  font-size: 14px;
  color: #313957;
  opacity: 0.7;
  line-height: 1.8;
  margin-bottom: 8px;
}
.contact-thankyou .btn-back-top {
  display: inline-block;
  margin-top: 32px;
  padding: 12px 48px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #313957;
  border: 1px solid rgba(49, 57, 87, 0.3);
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.contact-thankyou .btn-back-top:hover {
  background: #313957;
  color: #fff;
  border-color: #313957;
}
