/**
* Theme Name: Richard Child
* Description: This is a child theme of Richard, generated by Merlin WP.
* Author: <a href="https://themeforest.net/user/paul_tf">paul_tf</a>
* Template: richard
* Version: 1.0
*/

/* =========================================================
   Variables
   ========================================================= */
:root{
  --nk:#311cff;
  --sun:#e6104e; /* SUNだけ赤 */
}

/* =========================================================
   NK Common Sections (NEWS / LIVE INFO / NEXT LIVE headers)
   ========================================================= */
.nk-section{
  padding: 18px 14px;
  max-width: 980px;
  margin: 0 auto;
}

.nk-head{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:12px;
}

.nk-h2{
  font-size: 18px;
  letter-spacing:.04em;
  margin: 0;
}

.nk-link{
  color: var(--nk);
  font-weight: 700;
  text-decoration: none;
  font-size: 12px;
}
.nk-link:hover{ text-decoration: underline; }

.nk-list{
  margin-top: 10px;
  border-top: 1px solid rgba(0,0,0,.08);
}

.nk-row{
  display:flex;
  gap:12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,.08);
  text-decoration:none;
}

.nk-date{
  min-width: 70px;
  color:#666;
  font-size:12px;
}

.nk-text{
  color:#111;
  font-size: 14px;
  line-height:1.35;
  min-width:0;
}

.nk-empty{
  padding: 12px 0;
  color:#666;
  font-size: 13px;
}

/* =========================================================
   LIVE INFO row (thumb + title + @venue)
   ========================================================= */
.nk-live-row{ align-items:center; }

.nk-live-thumb{
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
}
.nk-live-thumb img{
  width:44px;
  height:44px;
  object-fit:cover;
  border-radius:10px;
  display:block;
}

.nk-live-title{
  display:flex;
  align-items:baseline;
  gap:8px;
  flex-wrap:wrap;
  min-width:0;
}

.nk-venue{
  color:#666;
  font-size:12px;
  font-weight:700;
}

/* =========================================================
   NEXT LIVE (single source of truth)
   - Card clickable (hit layer)
   - 2-col (PC) / compact thumb (SP)
   - DL: PC vertical divider / SP horizontal row dividers
   ========================================================= */
.nk-nextlive-card{
  position: relative;
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,.08);
  text-decoration:none;
  color: inherit;
}

/* full-card hit */
.nk-nextlive-hit{
  position:absolute;
  inset:0;
  z-index:1;
  text-decoration:none;
  background:transparent;
}

/* links inside should be above hit */
.nk-nextlive-a{
  position:relative;
  z-index:2;
  color: var(--nk);
  font-weight: 700;
  text-decoration: none;
}
.nk-nextlive-a:hover{ text-decoration: underline; }

.nk-nextlive-grid{
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.nk-nextlive-flyer img{
  width:100%;
  height:auto;
  display:block;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,.10);
  object-fit: cover;
}

.nk-nextlive-info{ min-width:0; }

.nk-nextlive-date{
  font-weight: 800; /* 日付だけ太字 */
  font-size: 18px;
  letter-spacing: .02em;
  margin: 0 0 6px;
  color: #111;
}

.nk-nextlive-title{
  font-weight: 600;
  font-size: 15px;
  line-height: 1.35;
  margin: 0 0 10px;
  color: #111;
  word-break: break-word;
  overflow-wrap:anywhere;
}

.nk-nextlive-dl{
  margin: 0;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 10px 18px;
  align-items: start;
  position: relative;
}

.nk-nextlive-dl dt{
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  color: #777;
  text-transform: uppercase;
}

.nk-nextlive-dl dd{
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  color: #111;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* PC: vertical divider */
@media (min-width: 769px){
  .nk-nextlive-dl::before{
    content:"";
    position:absolute;
    top:0;
    bottom:0;
    left: 140px;          /* dt幅に合わせる */
    width:1px;
    background: rgba(0,0,0,.08);
  }

  .nk-nextlive-dl dt,
  .nk-nextlive-dl dd{
    position: relative;
    z-index: 1;
  }

  .nk-nextlive-dl dt{
    padding-right: 10px;
  }
}

/* SP: compact thumb + horizontal dividers */
@media (max-width: 768px){
  .nk-nextlive-grid{
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 12px;
  }

  .nk-nextlive-flyer{
    width: 72px;
  }
  .nk-nextlive-flyer img{
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 12px;
  }

  .nk-nextlive-date{
    font-size: 16px;
    margin-bottom: 4px;
  }

  .nk-nextlive-title{
    font-size: 14px;
    margin-bottom: 8px;
  }

  .nk-nextlive-dl{
    grid-template-columns: 92px 1fr;
    gap: 0 10px;
  }

  .nk-nextlive-dl dt,
  .nk-nextlive-dl dd{
    padding: 10px 0;
    border-top: 1px solid rgba(0,0,0,.08);
  }

  .nk-nextlive-dl dt:first-of-type,
  .nk-nextlive-dl dt:first-of-type + dd{
    border-top: none;
  }

  .nk-nextlive-dl dt{
    font-size: 11px;
    letter-spacing: .10em;
  }
  .nk-nextlive-dl dd{
    font-size: 13px;
  }
}

/* =========================================================
   Meta rows (if used elsewhere)
   ========================================================= */
.nk-meta-row{
  display:grid;
  grid-template-columns: 140px 1fr;
  gap: 12px;
  align-items: baseline;
  min-width:0;
}

.nk-meta-label{
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  color:#666;
  text-transform: uppercase;
  line-height: 1.2;
}

.nk-meta-text{
  font-size: 15px;
  color:#111;
  min-width:0;
  overflow-wrap:anywhere;
  word-break:break-word;
}

.nk-meta-link{
  color: var(--nk);
  font-weight: 900;
  text-decoration: none;
}
.nk-meta-link:hover{ text-decoration: underline; }

/* =========================================================
   GLOBAL Sticky Footer (single source of truth)
   ========================================================= */
html, body{ height:100%; }

/* wrapper as flex column */
body .vlt-site-wrapper{
  min-height: 100vh !important;
  display: flex !important;
  flex-direction: column !important;
}

/* header/footer not shrink, footer pushed down */
body .vlt-site-wrapper > header{
  flex: 0 0 auto !important;
}
body .vlt-site-wrapper > footer,
body .vlt-site-wrapper > .vlt-footer{
  flex: 0 0 auto !important;
  margin-top: auto !important;
}

/* main-ish container grows */
body .vlt-site-wrapper > .elementor,
body .vlt-site-wrapper > main,
body .vlt-site-wrapper > #content,
body .vlt-site-wrapper > .site-content,
body .vlt-site-wrapper > .vlt-main,
body .vlt-site-wrapper > .vlt-main-holder{
  flex: 1 0 auto !important;
}

/* =========================================================
   Utilities
   ========================================================= */
#simple-translate{ display:none !important; }

/* =========================================================
   Partner Logos (gallery)
   ========================================================= */
.partner-logos .gallery{
  display:flex !important;
  flex-wrap:nowrap !important;
  justify-content:center !important;
  align-items:center !important;
}

.partner-logos .gallery-item{
  width:auto !important;
  margin:0 !important;
  flex:0 0 auto !important;
}

.partner-logos img{
  height:80px;
  width:auto;
  max-width:140px;
  object-fit:contain;
  opacity:0.75;
  transition:0.2s ease;
}
.partner-logos img:hover{ opacity:1; }

@media (max-width: 767px){
  .partner-logos .gallery{
    justify-content:flex-start !important;
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
    padding-bottom:8px;
  }
}

/* Partners section images */
.partners img{
  opacity:0.6;
  transition:0.3s;
}
.partners img:hover{ opacity:1; }

/* =========================================================
   Footer bottom row
   - PC: left text + right sns
   - SP: sns first, then copyright (center)
   ========================================================= */
.footer-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.footer-bottom,
.footer-bottom .footer-left{
  color: rgba(255,255,255,0.65);
  font-size:14px;
  line-height:36px; /* sns丸(36)に合わせる */
}

.footer-bottom a{
  color: rgba(255,255,255,0.75);
  text-decoration:none;
}
.footer-bottom a:hover{
  color:#fff;
  text-decoration:underline;
  text-underline-offset:3px;
}

.footer-sns{
  display:flex;
  gap:14px;
  align-items:center;
  justify-content:flex-end;
}

.footer-sns a{
  width:36px;
  height:36px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;

  background: rgba(255,255,255,0.08);
  color:#fff;

  opacity:0.85;
  transition:0.25s ease;
  transform: translateY(0);
}
.footer-sns a:hover{
  opacity:1;
  background: rgba(255,255,255,0.16);
  transform: translateY(-2px);
}

/* SP: icons -> copyright */
@media (max-width: 768px){
  .footer-bottom{
    flex-direction:column;
    align-items:center;
    gap:17px;
  }
  .footer-bottom,
  .footer-bottom .footer-left{
    line-height:1.6;
    text-align:center;
  }

  .footer-bottom .footer-sns{ order:1; }
  .footer-bottom .footer-left{ order:2; }
}

/* =========================================================
   Navbar layout tweaks
   ========================================================= */
.vlt-navbar-inner-left{
  flex: 0 0 35%;
}
.vlt-navbar-inner-right{
  flex: 0 0 65%;
  display:flex;
  justify-content:flex-end;
}

.vlt-navbar .vlt-social-nav .vlt-social-nav__icon + .vlt-social-nav__icon{
  margin-left: 1.2rem;
}

/* old ion icon mapping -> FA */
.ion-social-twitter:before{
  font-family:"Font Awesome 6 Brands";
  content:"\e61b";
}

/* =========================================================
   SP only: TOP hide header until scroll
   ========================================================= */
/* SPのみ：TOPだけ スクロールするまでヘッダー非表示 */
@media (max-width: 767px){

  /* TOPページのみ */
  body.home .vlt-navbar.vlt-navbar--main,
  body.front-page .vlt-navbar.vlt-navbar--main{
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999;

    /* 初期状態は隠す */
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;

    transition: transform .22s ease, opacity .22s ease;
  }

  /* スクロール後（JSでhtmlにクラス追加） */
  html.nk-header-show body.home .vlt-navbar.vlt-navbar--main,
  html.nk-header-show body.front-page .vlt-navbar.vlt-navbar--main{
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

}

.partner-logos .gallery{
  display:flex !important;
  flex-wrap:nowrap !important;
  justify-content:center !important;
  align-items:center !important;
}

.partner-logos .gallery-item{
  width:auto !important;
  margin:0 !important;
  flex:0 0 auto !important;
}

.partner-logos img{
  height:80px;
  width:auto;
  max-width:140px;
  object-fit:contain;
  opacity:0.75;
  transition:0.2s ease;
}
.partner-logos img:hover{ opacity:1; }

@media (max-width: 767px){
  .partner-logos .gallery{
    justify-content:flex-start !important;
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
    padding-bottom:8px;
  }
}

/* Partners section images */
.partners img{
  opacity:0.6;
  transition:0.3s;
}
.partners img:hover{ opacity:1; }

.partner-logos .gallery { display: flex !important; flex-wrap: nowrap !important; /* 1行固定 */ justify-content: center !important; align-items: center !important; } .partner-logos .gallery-item { width: auto !important; margin: 0 !important; flex: 0 0 auto !important; } .partner-logos img { height: 80px !important; width: auto; max-width: 140px; object-fit: contain; opacity: 0.75; transition: 0.2s ease; } .partner-logos img:hover { opacity: 1; } /* SP：横スクロール */ @media (max-width: 767px) { .partner-logos .gallery { justify-content: flex-start !important; overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 8px; } }

.vlt-aside-menu-wrapper {
 width: 66%!important;
}
.vlt-navbar .vlt-navbar-inner--left {
    width: 40%;
}

/* =========================================
CONTACT PAGE
========================================= */

.nk-contact{
max-width:960px;
margin:0 auto;
padding:120px 16px 80px;
}

.nk-contact-card{
background:rgba(255,255,255,.72);
border:1px solid rgba(0,0,0,.08);
border-radius:16px;
padding:28px 22px;
backdrop-filter:blur(6px);
}

.nk-contact-content{
font-size:16px;
line-height:1.7;
}

.nk-contact-content h3{
font-size:14px;
letter-spacing:.18em;
text-transform:uppercase;
color:#777;
margin-top:26px;
margin-bottom:6px;
font-weight:800;
}

.nk-contact-content a{
color:var(--nk);
font-weight:800;
text-decoration:none;
}

.nk-contact-content a:hover{
text-decoration:underline;
}

/* 英語テキスト */
.nk-en{
display:block;
font-size:14px;
color:#777;
margin-top:4px;
}

/* SP */
@media (max-width:768px){

.nk-contact-card{
padding:22px 16px;
}

}
/* =========================================================
   Contact page (match LIVE tone)
   ========================================================= */

body.page-template-page-contact .nk-archive-hero{
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
body.page-template-page-contact .nk-archive-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:url("/wp-content/uploads/2026/03/hero1.webp") center/cover no-repeat;
  opacity:.07; /* LIVEと同じ */
}

/* 本文レイヤを前へ */
body.page-template-page-contact .nk-contact{
  position: relative;
  z-index: 1;
}

/* タイトル少し締める（今の感じを維持しつつ） */
body.page-template-page-contact .nk-single-title{
  font-size: 56px;
  letter-spacing: .01em;
  margin: 0 0 18px;
}

/* カード：透明ガラス */
body.page-template-page-contact .nk-contact-card{
  background: rgba(255,255,255,.68);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  padding: 26px 22px;
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* 文章 */
body.page-template-page-contact .nk-contact-card p{
  margin: 0 0 14px;
  line-height: 1.8;
}
body.page-template-page-contact .nk-contact-card p:last-child{
  margin-bottom: 0;
}

/* 英語を添える用（本文に <span class="nk-en">... を入れる想定） */
body.page-template-page-contact .nk-en{
  display:inline;
  font-size: 13px;
  color: rgba(0,0,0,.55);
  margin-left: .35em;
}

/* 見出し（BOOKING...） */
body.page-template-page-contact .nk-contact-h{
  margin: 18px 0 10px;
  font-size: 12px;
  letter-spacing: .22em;
  font-weight: 800;
  color: rgba(0,0,0,.55);
  text-transform: uppercase;
}

/* メール：ボタン風（コピー不要） */
body.page-template-page-contact .nk-mail{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.6);
  text-decoration: none;
  color: var(--nk);
  font-weight: 800;
}
body.page-template-page-contact .nk-mail:hover{
  background: rgba(255,255,255,.85);
  border-color: rgba(0,0,0,.18);
  text-decoration: none;
}

/* SP調整 */
@media (max-width: 767px){
  body.page-template-page-contact .nk-single-title{
    font-size: 40px;
    margin-bottom: 14px;
  }
  body.page-template-page-contact .nk-contact-card{
    padding: 20px 16px;
  }
  body.page-template-page-contact .nk-mail{
    width: 100%;
    justify-content: center;
  }
}

body.page-id-3 .nk-mail{
  background: rgba(0,0,0,.04);
  color:#111;
}

/* =========================
   BIOGRAPHY (NK)
========================= */
.nk-bio{
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
  padding: 120px 16px 80px;
}

.nk-bio-card{
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 18px;
  box-shadow: 0 14px 40px rgba(0,0,0,.08);
  padding: 22px 22px;
  backdrop-filter: blur(6px);
}

/* 文章のベース */
.nk-bio .nk-prose{
  font-size: 15px;
  line-height: 1.9;
  color: #111;
}
.nk-bio .nk-prose p{
  margin: 0 0 8px;
}
.nk-bio .nk-en{
  display:block;
  margin-top: 6px;
  color: rgba(0,0,0,.55);
  font-size: 13px;
  letter-spacing: .02em;
}

/* 先頭の大きい画像を「ヒーロー」っぽく */
.nk-bio .wp-block-image:first-child{
  margin: 6px 0 18px;
}
.nk-bio .wp-block-image:first-child img{
  width: 100%;
  height: auto;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.08);
  display:block;
}

/* 見出し（Member / History / Profile / Media） */
.nk-bio h2.wp-block-heading{
  margin: 26px 0 12px;
  font-size: 18px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.nk-bio h2.wp-block-heading::after{
  content:"";
  display:block;
  margin-top: 10px;
  height: 1px;
  background: rgba(0,0,0,.10);
}


/* Member：columnsをカードグリッド化 */
.nk-bio h2.wp-block-heading + .wp-block-columns{
  margin-top: 14px;
}
.nk-bio .wp-block-columns{
  gap: 14px;
}
.nk-bio .wp-block-column{
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 14px;
  padding: 12px 12px 10px;
}
.nk-bio .wp-block-column .wp-block-image{
  margin: 0 0 10px;
}
.nk-bio .wp-block-column .wp-block-image img{
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 12px;
  display:block;
}
.nk-bio .wp-block-column h4{
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .02em;
}

/* リスト（Mediaの雑誌など） */
.nk-bio ul{
  margin: 10px 0 0;
  padding-left: 18px;
}
.nk-bio li{
  margin: 6px 0;
}

/* リンクはブランドカラー */
.nk-bio a{
  color: var(--nk);
  text-decoration: none;
  font-weight: 700;
}
.nk-bio a:hover{
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* SP調整 */
@media (max-width: 767px){
  .nk-bio{
    padding: 96px 14px 64px;
  }
  .nk-bio-card{
    padding: 16px 14px;
    border-radius: 16px;
  }
  .nk-bio .wp-block-columns{
    flex-wrap: wrap;
  }
  .nk-bio .wp-block-column{
    padding: 10px;
  }
}

/* =========================================
   NK Simple Pages (Contact / Privacy / Bio)
   - Live/Newsベースの背景 + タイトル + card
========================================= */

.nk-single-header{
  margin-bottom: 18px;
  text-align: center;
}

.nk-single-title{
  font-size: 56px;
  margin: 0 0 10px;
  letter-spacing: .02em;
  overflow-wrap: anywhere;
}

.nk-single-subtitle{
  margin: 0;
  font-size: 14px;
  color: rgba(0,0,0,.55);
  letter-spacing: .06em;
}

/* card 共通 */
.nk-page-card{
  max-width: 980px;
  margin: 0 auto;
  border-radius: 16px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 14px 40px rgba(0,0,0,.08);
  border: 1px solid rgba(0,0,0,.06);
  backdrop-filter: blur(8px);
}

.nk-page-content{
  padding: 28px 28px 30px;
}

/* Gutenberg内の見え方を整える */
.nk-page-content p{
  line-height: 1.9;
  margin: 0 0 14px;
}

.nk-page-content h2{
  margin: 26px 0 12px;
  font-size: 14px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(0,0,0,.55);
}

.nk-page-content h3{
  margin: 18px 0 10px;
  font-size: 16px;
}

.nk-page-content hr{
  border: 0;
  height: 1px;
  background: rgba(0,0,0,.08);
  margin: 18px 0;
}

/* 画像：角丸と余白（バイオのトップ画像にも効く） */
.nk-page-content .wp-block-image img{
  border-radius: 16px;
  display: block;
}

/* Member の columns をカードっぽく */
.nk-bio .wp-block-columns{
  gap: 16px;
}
.nk-bio .wp-block-column{
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 14px;
  padding: 12px;
}
.nk-bio .wp-block-column .wp-block-image{
  margin: 0 0 10px;
}
.nk-bio .wp-block-column h4{
  margin: 0;
  font-size: 12px;
  letter-spacing: .10em;
}

/* History：年見出しを目立たせる */
.nk-bio h3.wp-block-heading{
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(0,0,0,.08);
}

/* メールボタン（Contact/Privacyで使い回し） */
.nk-mail{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(0,0,0,.12);
  color: var(--nk);
  font-weight: 800;
  text-decoration: none;
  letter-spacing: .02em;
}
.nk-mail:hover{
  background: rgba(255,255,255,.9);
  text-decoration: none;
}

/* 英語の小さめテキスト（.nk-en を使ってる想定） */
.nk-en{
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: rgba(0,0,0,.50);
}

/* SP */
@media (max-width: 768px){
  .nk-single-title{
    font-size: 42px;
  }
  .nk-page-content{
    padding: 20px 18px 22px;
  }
}

/* =========================
   Biography title
========================= */

.nk-bio .nk-single-header{
  text-align: center;
  margin-bottom: 32px;
}

.nk-bio .nk-single-title{
  font-size: 56px;
  font-weight: 700;
  letter-spacing: .02em;
  margin: 0;
  line-height: 1.1;
  color: #111;
}

@media (max-width: 768px){

  .nk-bio .nk-single-title{
    font-size: 40px;
  }

}

.nk-bio-card{
  margin-top: 20px;
}


/* =========================
   BIOGRAPHY (NK)
========================= */
.nk-bio{
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
  padding: 120px 16px 80px;
}

.nk-bio-card{
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 18px;
  box-shadow: 0 14px 40px rgba(0,0,0,.08);
  padding: 22px 22px;
  backdrop-filter: blur(6px);
}

/* 文章のベース */
.nk-bio .nk-prose{
  font-size: 15px;
  line-height: 1.9;
  color: #111;
}
.nk-bio .nk-prose p{
  margin: 0 0 14px;
}
.nk-bio .nk-en{
  display:block;
  margin-top: 6px;
  color: rgba(0,0,0,.55);
  font-size: 13px;
  letter-spacing: .02em;
}

/* 先頭の大きい画像を「ヒーロー」っぽく */
.nk-bio .wp-block-image:first-child{
  margin: 6px 0 18px;
}
.nk-bio .wp-block-image:first-child img{
  width: 100%;
  height: auto;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.08);
  display:block;
}

/* 見出し（Member / History / Profile / Media） */
.nk-bio h2.wp-block-heading{
  margin: 26px 0 12px;
  font-size: 18px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.nk-bio h2.wp-block-heading::after{
  content:"";
  display:block;
  margin-top: 10px;
  height: 1px;
  background: rgba(0,0,0,.10);
}

/* 年（2010年など） */
.nk-bio h3.wp-block-heading{
  margin: 18px 0 8px;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .06em;
}

/* Historyの文章を読みやすく */
.nk-bio h3.wp-block-heading + p{
  margin-top: 10px;
}
.nk-bio h3.wp-block-heading ~ p{
  position: relative;
  padding-left: 12px;
}
.nk-bio h3.wp-block-heading ~ p::before{
  content:"";
  position:absolute;
  left: 0;
  top: .9em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(0,0,0,.25);
}

/* Member：columnsをカードグリッド化 */
.nk-bio h2.wp-block-heading + .wp-block-columns{
  margin-top: 14px;
}
.nk-bio .wp-block-columns{
  gap: 14px;
}
.nk-bio .wp-block-column{
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 14px;
  padding: 12px 12px 10px;
}
.nk-bio .wp-block-column .wp-block-image{
  margin: 0 0 10px;
}
.nk-bio .wp-block-column .wp-block-image img{
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 12px;
  display:block;
}
.nk-bio .wp-block-column h4{
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .02em;
}

/* リスト（Mediaの雑誌など） */
.nk-bio ul{
  margin: 10px 0 0;
  padding-left: 18px;
}
.nk-bio li{
  margin: 6px 0;
}

/* リンクはブランドカラー */
.nk-bio a{
  color: var(--nk);
  text-decoration: none;
  font-weight: 700;
}
.nk-bio a:hover{
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* SP調整 */
@media (max-width: 767px){
  .nk-bio{
    padding: 96px 14px 64px;
  }
  .nk-bio-card{
    padding: 16px 14px;
    border-radius: 16px;
  }
  .nk-bio .wp-block-columns{
    flex-wrap: wrap;
  }
  .nk-bio .wp-block-column{
    padding: 10px;
  }
}

/* =========================================================
   Biography page (match LIVE tone)
   ========================================================= */

body.page-template-page-biography .nk-archive-hero{
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
body.page-template-page-biography .nk-archive-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:url("/wp-content/uploads/2026/03/hero1.webp") center/cover no-repeat;
  opacity:.07; /* LIVEと同じ */
}

/* 本文レイヤを前へ */
body.page-template-page-biography .nk-bio{
  position: relative;
  z-index: 1;
}

.menu-item a[target="_blank"]::after{
  content:" ↗";
  font-size:.8em;
  opacity:.6;
  margin-left:.2em;
}

.nk-venue {
color: #343434;
opacity: .72;
}

/* Biography: related links */
.nk-bio-links{
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,.06);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 12px;
  letter-spacing: .06em;
}

.nk-bio-links a{
  color: rgba(0,0,0,.55);
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,.12);
  padding-bottom: 2px;
}

.nk-bio-links a:hover{
  color: rgba(0,0,0,.75);
  border-bottom-color: rgba(0,0,0,.24);
}