/*
Theme Name: Roundex Record
Author: Roundex Record
Version: 1.0
Text Domain: roundex
*/

/* ================================
   Reset & Base
================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: #0a0a0a;
  color: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

/* ================================
   Container
================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-artists .container {
  margin-bottom: 24px;
}

/* ================================
   Section 共通
================================ */
.section {
  padding: 80px 0;
}

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 40px;
}

.section-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: #3b82f6;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-title {
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.view-all {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #888;
  border-bottom: 1px solid #888;
  transition: color 0.2s;
}
.view-all:hover { color: #fff; border-color: #fff; }

/* ================================
   Hero
================================ */
.section-hero {
  position: relative;
  height: 65vh;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://roundexrecord.com/wp-content/uploads/2026/04/hero2026_rdx.jpg');
  background-size: cover;
  background-position: 40% center;
  background-repeat: no-repeat;
  filter: grayscale(100%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-sub {
  font-size: 12px;
  letter-spacing: 0.3em;
  color: #aaa;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-title {
  font-size: clamp(32px, 6vw, 72px);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.1;
}

/* ================================
   About
================================ */
.section-about {
  padding: 80px 0;
}

.about-text {
  font-size: clamp(22px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.about-highlight {
  color: #3b82f6;
}

.about-link {
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #aaa;
  border-bottom: 1px solid #444;
  transition: color 0.2s, border-color 0.2s;
}

.about-link:hover {
  color: #fff;
  border-color: #fff;
}

/* ================================
   Releases
================================ */
.section-releases { padding: 80px 0; }

.releases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.release-card {}

/* PC: 4枚目を非表示 */
.releases-grid .release-card:nth-child(4) { display: none; }

.release-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: #1a1a1a;
}

.release-info {
  padding: 12px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.release-text {
  flex: 1;
  min-width: 0;
}

.release-action {
  flex: 0 0 auto;
}

.release-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #888;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.release-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.release-artist {
  display: block;
  font-size: 12px;
  color: #aaa;
  margin-bottom: 4px;
}

.release-card time {
  display: block;
  font-size: 11px;
  color: #666;
  margin-top: 4px;
}

.btn-listen {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid #fff;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn-listen:hover {
  background: #fff;
  color: #000;
}

/* ================================
   Events
================================ */
.section-events {
  padding: 80px 0;
  background: #050505;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.event-card {
  border: 1px solid #222;
  display: flex;
  flex-direction: column;
}

.event-card img {
  width: 100%;
  height: auto;
  display: block;
}

.event-info {
  padding: 16px;
  flex: 1;
}

.event-card time {
  font-size: 11px;
  color: #888;
  letter-spacing: 0.1em;
}

.event-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 6px 0 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.event-venue {
  font-size: 12px;
  color: #888;
  margin-bottom: 4px;
}

.event-artists {
  font-size: 12px;
  color: #aaa;
}

.event-fee {
  display: inline-block;
  margin-top: 10px;
  font-size: 12px;
  color: #888;
}

/* ================================
   Artists
================================ */
.section-title-wrap {
  padding: 0 24px;
  margin-bottom: 24px;
}

.section-artists {
  padding: 80px 0;
}

.artists-scroll-wrapper {
  width: 100%;
  overflow-x: scroll;
  overscroll-behavior-x: none;
  cursor: grab;
  user-select: none;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.artists-scroll-wrapper::-webkit-scrollbar {
  display: none;
}

.artists-outer-container {
  position: relative;
  overflow: hidden;
}

.artists-scroll-container {
  position: relative;
}

/* スクロール領域はコンテナの外に広げる */
.artists-scroll-wrapper {
  margin: 0 -24px;
  width: calc(100% + 48px);
}

.artists-arrow {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid #333;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  pointer-events: none;
  transition: opacity 0.3s;
}

.artists-arrow--prev {
  left: 0;
  opacity: 0;
}

.artists-arrow--next {
  right: 0;
  opacity: 1;
}

.artists-track {
  display: flex;
  gap: 16px;
  width: max-content;
  padding-left: 24px;
}

.artist-card {
  flex: 0 0 160px;
}

/* Archive: Artists grid */
.artists-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.artists-grid .artist-card {
  flex: none;
}



.artist-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: grayscale(20%);
  transition: filter 0.3s;
}
.artist-card:hover img { filter: grayscale(0%); }

.artist-card h3 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: none;
  margin: 10px 0 8px;
}

.artist-card h3 a {
  color: #fff;
  transition: color 0.2s;
}

.artist-card h3 a:hover {
  color: #3b82f6;
}

.artist-sns {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.artist-sns a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: #888;
  transition: color 0.2s;
}
.artist-sns a:hover { color: #fff; }

.crew-badge {
  display: block;
  width: 100%;
  font-size: 6px;
  letter-spacing: 0.15em;
  color: #3b82f6;
  text-transform: uppercase;
  margin-top: 4px;
  line-height: 1;
}

/* ================================
   Responsive
================================ */
@media (max-width: 1024px) {
  .artists-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }

  /* Hero: モバイルやや左寄り・植栽+階段 */
  .hero-bg {
    background-position: 35% center;
  }

  .section-releases,
  .section-events,
  .section-artists { padding: 60px 0; }

  .releases-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* モバイル: 4枚目を表示 */
  .releases-grid .release-card:nth-child(4) { display: block; }

  .release-title {
    font-size: 13px;
  }

  .release-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .events-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    width: 100%;
  }

  .event-card {
    width: 100%;
  }

  .artists-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-header {
    flex-direction: column;
    gap: 8px;
  }
}
/* ================================
   Header
================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #1a1a1a;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.site-logo {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.nav-list {
  display: flex;
  gap: 20px;
  flex-wrap: nowrap;
}

.nav-list a {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #aaa;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-list a:hover { color: #fff; }

/* ハンバーガー */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: #fff;
  transition: transform 0.3s, opacity 0.3s;
}

/* モバイルメニュー */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100vh;
  background: #0a0a0a;
  border-left: 1px solid #222;
  z-index: 200;
  padding: 80px 32px 32px;
  transition: right 0.3s ease;
}
.mobile-menu.is-open { right: 0; }

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.mobile-nav-list a {
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #aaa;
  display: block;
  padding: 8px 0;
  pointer-events: auto;
}
.mobile-nav-list a:hover { color: #fff; }

.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 150;
}
.mobile-menu-overlay.is-open { display: block; }

@media (max-width: 768px) {
  .nav-desktop { display: none; }
  .hamburger { display: flex; }
}

/* header分のスペース確保 */
main { padding-top: 64px; }

/* ================================
   News & Columns
================================ */
.section-news {
  padding: 80px 0;
  border-top: 1px solid #1a1a1a;
}

.news-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.news-col-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding-bottom: 16px;
  border-left: 2px solid #3b82f6;
  padding-left: 12px;
  margin-bottom: 32px;
}

.col-label {
  font-size: 10px;
  color: #888;
  letter-spacing: 0.1em;
  margin-left: 8px;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.news-item {
  display: flex;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid #1a1a1a;
}

.news-info {
  flex: 1;
  min-width: 0;
}

.news-thumb {
  flex: 0 0 100px;
}

.news-thumb img {
  width: 100px;
  height: auto !important;
  display: block;
}

.news-info time {
  font-size: 11px;
  color: #888;
  letter-spacing: 0.1em;
}

.news-info h3 {
  font-size: 14px;
  font-weight: 600;
  margin: 6px 0 4px;
  line-height: 1.4;
}

.news-info h3 a {
  color: #fff;
  transition: color 0.2s;
}

.news-info h3 a:hover {
  color: #3b82f6;
}

.news-info p {
  font-size: 12px;
  color: #888;
  line-height: 1.6;
}

.col-author-wrap {
  display: flex;
  justify-content: flex-end;
  margin-top: 6px;
}

.col-author {
  display: inline-block;
  font-size: 11px;
  color: #888;
  border: 1px solid #333;
  padding: 2px 8px;
  border-radius: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.col-author:hover {
  color: #fff;
  border-color: #666;
}

@media (max-width: 768px) {
  .news-columns {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}


/* ================================
   Services & Fees
================================ */
.section-services {
  padding: 80px 0;
  border-top: 1px solid #1a1a1a;
}

.section-services .section-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: #3b82f6;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-services .section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.services-divider {
  border: none;
  border-top: 1px solid #222;
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.service-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 0;
  border-bottom: 1px solid #1a1a1a;
}

.service-item:nth-child(odd) {
  padding-right: 60px;
  border-right: 1px solid #1a1a1a;
}

.service-item:nth-child(even) {
  padding-left: 60px;
}

.service-name {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.service-sub {
  font-size: 12px;
  color: #888;
}

.service-price {
  font-size: 13px;
  color: #aaa;
  letter-spacing: 0.05em;
  white-space: nowrap;
  text-align: right;
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-item:nth-child(odd) {
    padding-right: 0;
    border-right: none;
  }

  .service-item:nth-child(even) {
    padding-left: 0;
  }
}

/* ================================
   Archive pages
================================ */
.archive-page {
  padding-top: 80px;
}

.archive-pagination {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

.archive-pagination .nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
}

.archive-pagination a,
.archive-pagination span {
  display: inline-block;
  padding: 6px 12px;
  font-size: 12px;
  letter-spacing: 0.1em;
  border: 1px solid #333;
  color: #888;
}

.archive-pagination a:hover,
.archive-pagination .current {
  border-color: #fff;
  color: #fff;
}

@media (max-width: 768px) {
  .archive-page { padding-top: 64px; }
}

/* ================================
   Demo Page (OPEN CALLS)
================================ */
.section-hero--demo .hero-title {
  text-align: left;
}

.section-hero--demo .hero-content {
  text-align: left;
  padding: 0 24px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-scroll-text {
  position: absolute;
  left: 24px;
  bottom: 40px;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: #666;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.page-demo-content {
  padding: 80px 0;
}

/* Demo Hero */
.page-template-page-demo main {
  padding-top: 0;
  margin-top: -32px;
}

.section-hero--demo {
  display: block;
}

.demo-hero-content {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 24px 80px;
  max-width: 1200px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  right: auto;
}

.demo-hero-top {
  margin-bottom: 32px;
}

.demo-hero-title {
  font-size: clamp(48px, 9vw, 120px);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1;
  margin-top: 12px;
}

.demo-hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.demo-hero-desc {
  max-width: 480px;
}

.demo-hero-desc p {
  font-size: 14px;
  color: #ccc;
  line-height: 1.7;
}

.demo-hero-desc p + p {
  margin-top: 8px;
  color: #888;
  font-size: 13px;
}

.btn-apply-now {
  display: inline-block;
  padding: 16px 40px;
  border: 1px solid #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}

.btn-apply-now:hover {
  background: #fff;
  color: #000;
}

/* Policy Cards */
.section-demo-policy {
  padding: 80px 0;
  background: #060606;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: #1a1a1a;
}

.policy-card {
  background: #0a0a0a;
  padding: 32px 28px;
}

.policy-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: #3b82f6;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.policy-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.policy-desc {
  font-size: 12px;
  color: #888;
  line-height: 1.8;
}

/* Submission Requirements */
.section-demo-requirements {
  padding: 100px 0;
}

.requirements-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.requirements-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.1;
}

.requirements-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.requirement-item {
  display: flex;
  gap: 24px;
  align-items: start;
}

.requirement-num {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #3b82f6;
  flex-shrink: 0;
  padding-top: 2px;
}

.requirement-name {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.requirement-desc {
  font-size: 13px;
  color: #888;
  line-height: 1.8;
}

/* Form */
.section-demo-form {
  padding: 80px 0;
  background: #060606;
}

.demo-form-wrap {
  max-width: 680px;
  margin: 0 auto;
}

.demo-form-wrap iframe {
  display: block;
  width: 100%;
  height: 720px;
}

/* Opportunities */
.section-opportunities {
  padding: 80px 0;
  border-top: 1px solid #1a1a1a;
}

@media (max-width: 768px) {
  .demo-hero-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .policy-grid {
    grid-template-columns: 1fr;
  }

  .requirements-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .section-demo-requirements { padding: 60px 0; }
  .section-demo-policy { padding: 60px 0; }
  .section-demo-form { padding: 60px 0; }
  .section-opportunities { padding: 60px 0; }
}

.opportunity-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.opportunity-rules {
  padding-top: 4px;
}

.rules-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.rules-title::before {
  content: '—';
  color: #3b82f6;
  font-weight: 400;
  flex-shrink: 0;
}

.rule-item {
  padding: 20px 0;
  border-bottom: 1px solid #1a1a1a;
}

.rule-item:first-of-type {
  padding-top: 0;
}

.rule-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: #3b82f6;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.rule-value {
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.2;
  margin-bottom: 4px;
}

.rule-note {
  font-size: 12px;
  color: #888;
  line-height: 1.7;
}

.rule-item--email {
  border-bottom: none;
  padding-bottom: 0;
}

.btn-submit-email {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border: 1px solid #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: background 0.2s, color 0.2s;
  margin-top: 12px;
}

.btn-submit-email:hover {
  background: #fff;
  color: #000;
}

.no-content {
  font-size: 13px;
  letter-spacing: 0.2em;
  color: #555;
  text-transform: uppercase;
  text-align: center;
  padding: 80px 0;
}

@media (max-width: 768px) {
  .opportunity-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .page-demo-content {
    padding: 60px 0;
  }

  .hero-scroll-text {
    display: none;
  }
}

/* ================================
   Opportunities Archive
================================ */
.opportunities-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.opportunity-card {
  padding: 48px 0;
  border-bottom: 1px solid #1a1a1a;
}

.opportunity-title {
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 16px;
  border-left: 3px solid #3b82f6;
  padding-left: 16px;
}

.opportunity-deadline {
  font-size: 13px;
  letter-spacing: 0.1em;
  color: #3b82f6;
  margin-bottom: 12px;
}

.opportunity-deadline span {
  color: #888;
}

.opportunity-labels {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.opportunity-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  border: 1px solid #333;
  padding: 3px 10px;
  color: #888;
}

.opportunity-content {
  font-size: 14px;
  color: #aaa;
  line-height: 1.8;
  max-width: 720px;
}

.opportunity-content p + p {
  margin-top: 1em;
}

/* ================================
   Event Map Icon
================================ */
.event-flyer-wrap {
  display: block;
  position: relative;
}

.event-flyer-wrap img {
  display: block;
  width: 100%;
}

.event-map-icon {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  background: rgba(0,0,0,0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  transition: background 0.2s;
}

.event-flyer-link:hover .event-map-icon {
  background: rgba(255,255,255,0.2);
}

/* ================================
   Events Archive
================================ */
.events-archive-list {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.event-archive-card {
  scroll-margin-top: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.event-archive-image img {
  width: 100%;
  display: block;
}

.event-archive-title {
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.event-archive-meta {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  color: #fff;
}

.event-archive-meta span {
  color: #888;
}

.event-archive-desc {
  margin-top: 24px;
  font-size: 13px;
  line-height: 1.8;
  color: #aaa;
}

@media (max-width: 768px) {
  .event-archive-card {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .events-archive-list { gap: 60px; }
}

/* ================================
   Contact
================================ */
.section-contact {
  padding: 80px 0;
}

.section-contact .section-header {
  margin-bottom: 40px;
}

.contact-form-wrap {
  max-width: 680px;
  margin: 0 auto;
}

.contact-form-wrap iframe {
  display: block;
  width: 100%;
  height: 720px;
  background: transparent;
  border: none;
}

@media (max-width: 768px) {
  .section-contact { padding: 60px 0; }
  .contact-form-wrap iframe { height: 660px; }
  .demo-form-wrap iframe { height: 660px; }
}

/* ================================
   Single Artist
================================ */
.single-artist-page {
  position: relative;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 80px;
  min-height: 100vh;
}

.artist-hero-bg {
  position: absolute;
  inset: -8%;
  background-size: cover;
  background-position: center top;
  filter: grayscale(1) contrast(0.35) brightness(0.55);
  z-index: 0;
}

.artist-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,0,0,0.9) 1.2px, transparent 1.2px);
  background-size: 5px 5px;
}

.artist-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.75) 100%);
}

.artist-hero-content {
  position: relative;
  z-index: 1;
}

.single-artist-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.single-artist-image img {
  width: 100%;
  display: block;
  aspect-ratio: 1;
  object-fit: cover;
}

.single-artist-name {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 12px 0 24px;
}

.single-artist-sns {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid #333;
}

.single-artist-sns a {
  font-size: 22px;
  color: #3b82f6;
  transition: color 0.2s;
}

.single-artist-sns a:hover {
  color: #fff;
}

.single-artist-profile {
  font-size: 14px;
  line-height: 2;
  color: #bbb;
}

.artist-releases {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid #333;
}

.artist-releases-heading {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  .single-artist-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .single-artist-image img {
    max-width: 320px;
    margin: 0 auto;
  }
}

/* ================================
   Single Event
================================ */
.single-event-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.single-event-flyer img {
  width: 100%;
  display: block;
}

.single-event-info .single-post-title {
  margin: 12px 0 32px;
}

.single-event-meta {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 40px;
  border-top: 1px solid #1a1a1a;
}

.event-meta-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #1a1a1a;
  align-items: baseline;
}

.event-meta-row dt {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #3b82f6;
  text-transform: uppercase;
}

.event-meta-row dd {
  font-size: 14px;
  color: #ccc;
  line-height: 1.6;
}

.meta-map-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: #888;
  margin-left: 12px;
  letter-spacing: 0.1em;
  transition: color 0.2s;
}

.meta-map-link:hover {
  color: #fff;
}

@media (max-width: 768px) {
  .single-event-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ================================
   Single Post
================================ */
.single-post {
  padding-bottom: 80px;
}

.single-post-header {
  max-width: 800px;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid #1a1a1a;
}

.single-post-meta {
  font-size: 11px;
  color: #888;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

.single-post-title {
  font-size: clamp(22px, 3.5vw, 42px);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.25;
}

.single-post-thumb {
  margin-bottom: 56px;
  max-width: 800px;
}

.single-post-thumb img {
  width: 100%;
  display: block;
  height: auto;
}

.single-post-body {
  max-width: 800px;
  font-size: 15px;
  line-height: 2;
  color: #bbb;
  margin-bottom: 64px;
}

.single-post-body p {
  margin-bottom: 1.6em;
}

.single-post-body h2 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  margin: 48px 0 16px;
  padding-left: 12px;
  border-left: 2px solid #3b82f6;
}

.single-post-body h3 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 36px 0 12px;
}

.single-post-body strong {
  color: #fff;
  font-weight: 600;
}

.single-post-body img {
  max-width: 100%;
  height: auto;
  margin: 32px 0;
  display: block;
}

.single-post-body a {
  color: #3b82f6;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.single-post-body ul,
.single-post-body ol {
  padding-left: 1.4em;
  margin: 16px 0 24px;
}

.single-post-body li {
  margin-bottom: 6px;
  list-style: disc;
  color: #bbb;
}

.single-post-body ol li {
  list-style: decimal;
}

.single-post-body hr {
  border: none;
  border-top: 1px solid #1a1a1a;
  margin: 40px 0;
}

.single-post-footer {
  max-width: 800px;
  padding-top: 40px;
  border-top: 1px solid #333;
}

.btn-back {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #aaa;
  transition: color 0.2s;
}

.btn-back:hover {
  color: #fff;
}

/* ================================
   Page (固定ページ)
================================ */
.page-title {
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid #1a1a1a;
}

.page-body {
  max-width: 800px;
  font-size: 14px;
  line-height: 1.9;
  color: #ccc;
}

.page-body h2 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin: 40px 0 12px;
  padding-left: 12px;
  border-left: 2px solid #3b82f6;
}

.page-body h3 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin: 32px 0 8px;
}

.page-body p {
  margin-bottom: 1em;
}

.page-body strong {
  color: #fff;
}

.page-body ol,
.page-body ul {
  padding-left: 1.5em;
  margin: 12px 0 16px;
}

.page-body li {
  margin-bottom: 6px;
  list-style: decimal;
}

.page-body ul li {
  list-style: disc;
}

.page-body hr {
  border: none;
  border-top: 1px solid #1a1a1a;
  margin: 32px 0;
}

/* ================================
   Open Calls
================================ */
.post-type-archive-opportunities main,
.post-type-archive-opportunity main {
  padding-top: 0;
}

.opencalls-hero-bg {
  background-color: #0a0a0a;
  background-position: center center !important;
}

.section-hero--opencalls {
  display: block;
  position: relative;
  height: 65vh;
  min-height: 420px;
  overflow: hidden;
}

.opencalls-hero-content {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  padding: 0 24px;
  z-index: 1;
}

.opencalls-hero-title {
  font-size: clamp(56px, 10vw, 130px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 0.9;
  text-transform: uppercase;
  margin-top: 16px;
}

.section-opencalls {
  padding-top: 48px;
  padding-bottom: 48px;
}

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

.opencall-card {
  padding: 64px 0;
  border-bottom: 1px solid #1a1a1a;
}

.opencall-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.opencall-title {
  font-size: clamp(24px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.1;
  border-left: 3px solid #3b82f6;
  padding-left: 20px;
  margin-bottom: 32px;
}

.opencall-dates {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 32px;
}

.opencall-dates p {
  font-size: 13px;
  color: #3b82f6;
  letter-spacing: 0.06em;
}

.date-label {
  display: inline-block;
  min-width: 80px;
}

.date-sep {
  margin: 0 12px;
  color: #555;
}

.date-value {
  color: #3b82f6;
}

.opencall-desc {
  font-size: 14px;
  line-height: 1.9;
  color: #aaa;
}

.opencall-desc p + p {
  margin-top: 16px;
}

.submission-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.submission-line {
  display: inline-block;
  width: 24px;
  height: 2px;
  background: #3b82f6;
  flex-shrink: 0;
}

.submission-rule {
  padding: 20px 0;
  border-bottom: 1px solid #1a1a1a;
}

.rule-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  color: #3b82f6;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.rule-value {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.rule-sub {
  font-size: 12px;
  color: #888;
  line-height: 1.8;
}

.submission-email-wrap {
  border-bottom: none;
  padding-top: 24px;
}

.btn-submission-email {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border: 1px solid #333;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fff;
  margin-top: 12px;
  transition: border-color 0.2s, background 0.2s;
}

.btn-submission-email:hover {
  border-color: #fff;
  background: #111;
}

.no-opencalls {
  padding: 40px 0;
  text-align: center;
}

.no-content-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: #555;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .opencalls-hero-content {
    bottom: 32px;
  }

  .opencall-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .opencall-card {
    padding: 48px 0;
  }
}

/* ================================
   About Page
================================ */
.about-intro {
  padding-bottom: 0;
}

.about-intro-sub {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: #3b82f6;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.about-intro-title {
  font-size: clamp(48px, 8vw, 100px);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.0;
  text-transform: uppercase;
}

.about-intro-highlight {
  color: #3b82f6;
}

.section-about-content {
  padding: 80px 0;
}

.about-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 64px 0;
}

.about-divider {
  border: none;
  border-top: 1px solid #1a1a1a;
  margin: 0;
}

.about-heading {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.2;
  margin: 12px 0 24px;
}

.about-body p {
  font-size: 14px;
  line-height: 2;
  color: #aaa;
}

/* 5 Labels */
.section-five-labels {
  padding: 80px 0;
  border-top: 1px solid #1a1a1a;
}

.five-labels-title {
  margin: 8px 0 48px;
}

.five-labels-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid #1a1a1a;
}

.label-item {
  padding: 40px 24px;
  border-right: 1px solid #1a1a1a;
}

.label-item:last-child {
  border-right: none;
}

.label-logo {
  height: 64px;
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.label-logo img {
  max-height: 56px;
  width: auto;
  filter: brightness(0) invert(1);
}

.label-name {
  font-size: 11px;
  color: #555;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.label-genre {
  font-size: 12px;
  color: #3b82f6;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 2;
}

/* About CTA */
.section-about-cta {
  padding: 100px 0;
  text-align: center;
  border-top: 1px solid #1a1a1a;
}

.about-cta-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: #555;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.about-cta-title {
  font-size: clamp(28px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 40px;
}

.about-cta-title span {
  color: #3b82f6;
}

.btn-send-demo {
  display: inline-block;
  padding: 16px 40px;
  border: 1px solid #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}

.btn-send-demo:hover {
  background: #fff;
  color: #000;
}

@media (max-width: 768px) {
  .about-row {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 48px 0;
  }

  .five-labels-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .label-item {
    border-right: 1px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
  }

  .label-item:nth-child(2n) {
    border-right: none;
  }

  .label-item:nth-last-child(-n+1) {
    border-bottom: none;
  }
}

/* ================================
   Footer
================================ */
.site-footer {
  padding: 40px 0;
  border-top: 1px solid #1a1a1a;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
}

.footer-logo-link {
  display: inline-block;
}

.footer-logo-link img,
.custom-logo-link img,
.custom-logo {
  height: 22px !important;
  width: auto !important;
  display: block;
}

.footer-logo-text {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
}

.footer-copy {
  font-size: 11px;
  color: #555;
  letter-spacing: 0.08em;
}

.footer-nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  list-style: none;
  justify-content: flex-end;
}

.footer-nav-list a {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: #888;
  text-transform: uppercase;
  transition: color 0.2s;
}

.footer-nav-list a:hover {
  color: #fff;
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    gap: 24px;
  }
  .footer-nav-list {
    justify-content: flex-start;
    gap: 12px 20px;
  }
}

/* ================================
   Downloads Archive
================================ */
.downloads-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.download-card-thumb {
  display: block;
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #111;
}

.download-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.download-card-thumb:hover img {
  transform: scale(1.04);
}

.download-card-noimg {
  width: 100%;
  height: 100%;
  background: #1a1a1a;
}

.download-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 24px;
  color: #fff;
}

.download-card-thumb:hover .download-card-overlay {
  opacity: 1;
}

.download-card-info {
  padding: 12px 0 0;
}

.download-card-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.4;
}

.download-card-title a {
  color: #fff;
  transition: color 0.2s;
}

.download-card-title a:hover {
  color: #aaa;
}

.download-card-artist {
  font-size: 11px;
  color: #888;
  margin-top: 4px;
  letter-spacing: 0.06em;
}

@media (max-width: 1024px) {
  .downloads-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .downloads-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

/* ================================
   Single Download
================================ */
.single-download .archive-page {
  padding-top: 32px;
}

.single-download-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 40px;
}

.single-download-cover img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.single-download-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.single-download-title {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.single-download-artist {
  font-size: 14px;
  color: #aaa;
  letter-spacing: 0.08em;
}

.single-download-desc {
  font-size: 13px;
  color: #888;
  line-height: 1.7;
}

.single-download-date {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.single-download-date .download-meta-label {
  font-size: 10px;
  letter-spacing: 0.15em;
  color: #555;
  text-transform: uppercase;
}

.single-download-date p {
  font-size: 13px;
  color: #ccc;
  letter-spacing: 0.06em;
}

.btn-download-now {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: #fff;
  color: #000;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
  align-self: flex-start;
}

.btn-download-now:hover {
  background: #ccc;
  color: #000;
}

.download-formats {
  font-size: 11px;
  color: #555;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.download-formats span {
  color: #888;
}

/* Track Specifications */
.single-download-tracks {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid #1a1a1a;
}

.tracks-heading {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: #555;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.tracks-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.track-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid #1a1a1a;
}

.track-num {
  font-size: 11px;
  color: #444;
  letter-spacing: 0.1em;
  min-width: 24px;
  flex-shrink: 0;
}

.track-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.track-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #fff;
}

.track-sub {
  font-size: 11px;
  color: #666;
  letter-spacing: 0.06em;
}

@media (max-width: 768px) {
  .single-download-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .single-download-cover img {
    max-width: 280px;
    margin: 0 auto;
  }
}
