/* =========================================
   LIVE Archive Layout (archive-live.css)
   Clean / No-duplicate version
   ========================================= */

/* ------------------------------
   Background hero (fixed)
--------------------------------*/
.nk-archive-hero{
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.nk-archive-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    url("/wp-content/uploads/2026/03/hero1.webp") center/cover no-repeat,
    radial-gradient(900px 500px at 20% 20%, rgba(0,0,0,.8), transparent 60%),
    radial-gradient(900px 600px at 80% 10%, rgba(0,0,0,.7), transparent 60%),
    radial-gradient(900px 700px at 60% 80%, rgba(0,0,0,.8), transparent 60%);
  opacity: .08; /* 濃さ調整 */
}

/* ------------------------------
   Page container
--------------------------------*/
.nk-archive{
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
  padding: 120px 16px 80px;
}

.nk-archive-header{ margin-bottom: 22px; }

.nk-archive-title{
  font-size: 42px;
  letter-spacing: .06em; /* “ロゴっぽく” */
  margin: 0 0 10px;
}

.nk-archive-subtitle{
  font-size: 22px;
  margin: 18px 0 12px;
  opacity: .65;
}

.nk-archive-list{
  display: grid;
  gap: 16px;
}

/* ------------------------------
   Card
--------------------------------*/
.nk-card{
  background: rgba(255,255,255,.92);
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.06);
  overflow: hidden;
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 28px rgba(0,0,0,.08);
  transition: transform .18s ease, box-shadow .18s ease;
  will-change: transform;
}
.nk-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0,0,0,.12);
}

.nk-card-link{
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 14px;
  padding: 14px;
  color: inherit;
  text-decoration: none;
  align-items: center;
}

/* 子要素が長いと崩れるのを防ぐ */
.nk-card-body{ min-width: 0; }
.nk-card-title{ min-width: 0; }

/* thumb */
.nk-card-thumb{
  width: 120px;
  height: 120px;
  border-radius: 12px;
  overflow: hidden;
  background: #f2f2f2;
}
.nk-card-thumb img,
.nk-thumb-fallback{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* thumb hover zoom */
.nk-card-thumb img{
  transition: transform .35s ease;
}
.nk-card:hover .nk-card-thumb img{
  transform: scale(1.04);
}

/* date row */
.nk-card-date{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  line-height: 1.2;
}

.nk-date{
  white-space: nowrap;
  font-weight: 700;
  letter-spacing: .02em;
  opacity: .75;
  font-size: 12px;
}

/* DOW base */
.nk-dow{
  font-weight: 800;
  letter-spacing: .08em;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 999px;
  background: rgb(179 179 179 / 10%);
}

/* SUN/SAT chip */
.nk-dow.is-sun{
  color: #c9302c;
  background: rgba(201,48,44,.10);
}
.nk-dow.is-sat{
  color: #2c5cc9;
  background: rgba(44,92,201,.10);
}

/* title */
.nk-card-title{
  font-size: 16px;
  line-height: 1.35;
  margin: 0;
  overflow-wrap: anywhere;
}
.nk-card-title-text{ font-weight: 600; }

/* venue (PC inline) */
.nk-card-venue{
  font-weight: 500;
  opacity: .72;
  margin-left: 8px;
  white-space: nowrap;
  font-size: 14px;
}
.nk-card-venue i{
  margin-right: 6px;
  font-size: .92em;
  opacity: .75;
}

/* more */
.nk-card-more{
  display: inline-block;
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: .06em;
  opacity: .55;
  transition: opacity .18s ease, transform .18s ease;
  border-bottom: 1px solid rgba(0,0,0,.15);
}
.nk-card:hover .nk-card-more{
  opacity: .9;
  transform: translateX(2px);
}

/* tap devices: disable hover effects */
@media (hover: none){
  .nk-card,
  .nk-card-thumb img,
  .nk-card-more{
    transition: none !important;
  }
  .nk-card:hover{
    transform: none;
    box-shadow: 0 10px 28px rgba(0,0,0,.08);
  }
  .nk-card:hover .nk-card-thumb img{ transform: none; }
  .nk-card:hover .nk-card-more{ transform: none; }
}

/* ------------------------------
   Pager (WordPress paginate_links type=list)
--------------------------------*/
.nk-pager{ margin-top: 24px; }
.nk-pager ul{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
}
.nk-pager a,
.nk-pager span{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  text-decoration: none;
  color: rgba(0,0,0,.75);
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 8px 18px rgba(0,0,0,.08);
}
.nk-pager .current{
  background: rgba(0,0,0,.08);
  font-weight: 700;
}

/* ------------------------------
   Mobile
--------------------------------*/
@media (max-width: 768px){
  .nk-archive{ padding: 90px 14px 70px; }
  .nk-archive-title{ font-size: 32px; }

  .nk-card-link{
    grid-template-columns: 92px 1fr;
    gap: 12px;
    padding: 12px;
    align-items: start;
  }

  .nk-card-thumb{
    width: 92px;
    height: 92px;
  }

  .nk-card-title{
    font-size: 15px;
    line-height: 1.35;
  }

  /* SP: タイトル + 改行 + @会場（スペースなし） */
  .nk-card-venue{
    display: block;
    margin-left: 0;
    margin-top: 2px;
    white-space: normal;
    font-size: 13px;
    opacity: .72;
  }

  .nk-card-more{ margin-top: 6px; }
}

/* Past toggle */
.nk-past-toggle{
  margin: 26px 0 10px;
  text-align: center;
}
.nk-past-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(0,0,0,.08);
  color: #111;
  text-decoration:none;
  transition:.2s ease;
}
.nk-past-btn:hover{
  background: rgba(0,0,0,.12);
  transform: translateY(-1px);
}

@media (max-width: 767px){
  .nk-archive{
    padding-top: 112px; /* 90px → 112pxあたりに。まだ詰まるなら120 */
  }
}

@media (max-width: 767px){
  .nk-archive-title{
    font-size: 28px;     /* 32px → 28px */
    line-height: 1.05;
    margin-bottom: 8px;  /* 余白を短く */
    letter-spacing: .04em;
  }
}

@media (max-width: 767px){
  .nk-archive-subtitle{
    font-size: 16px;        /* 22px → 16px */
    letter-spacing: .12em;
    text-transform: uppercase;
    opacity: .55;
    margin: 10px 0 14px;    /* タイトルとの距離 / カードとの距離を調整 */
  }
}

@media (max-width: 767px){
  .nk-archive-header{
    margin-bottom: 14px;
  }
}

@media (max-width: 767px){
  .nk-archive-list{ gap: 18px; }
}

/* ===============================
   LIVE Archive improvements
   =============================== */

/* A) intro text under H1 */
.nk-archive-intro{
  max-width: 860px;
  margin: 10px auto 0;
  padding: 0 2px;
}

.nk-archive-intro p{
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  letter-spacing: .01em;
  color: rgba(0,0,0,.62);
  text-wrap: balance;
}

/* subtle separator line (optional) */
.nk-archive-intro::after{
  content:"";
  display:block;
  height: 1px;
  margin: 14px 0 0;
  background: rgba(0,0,0,.06);
}

/* B) LIVE DETAILS label styling */
.nk-card-more{
  display: inline-block;
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(0,0,0,.42);
  border-bottom: 1px solid rgba(0,0,0,.12);
  padding-bottom: 2px;
}

/* Hover: slightly stronger, but still subtle */
.nk-card-link:hover .nk-card-more{
  color: rgba(0,0,0,.62);
  border-bottom-color: rgba(0,0,0,.24);
}

/* If you want “LIVE DETAILS” to align nicely with title/venue */
.nk-card-body{
  min-width: 0;
}

/* Responsive tweaks */
@media (max-width: 768px){
  .nk-archive-intro{
    max-width: 100%;
    margin-top: 8px;
  }
  .nk-archive-intro p{
    font-size: 13px;
    line-height: 1.8;
  }
  .nk-archive-intro::after{
    margin-top: 12px;
  }
  .nk-card-more{
    margin-top: 6px;
    font-size: 11px;
  }
}