*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --accent: #8ab4c8;
  --accent2: #8ab4c8;
  --white: #f5f0eb;
  --dark: #080808;
  --nav-w: 180px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--white);
  
  font-weight: 300;
  overflow-x: hidden;
  font-family: 'Noto Serif JP', serif;
  text-rendering: optimizeSpeed;
  font-feature-settings: "palt";
  letter-spacing: 2px;
}

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

a:hover {
  color: rgb(255, 255, 255);
}

.big {
  color: var(--accent);
  font-size: 24px;
}

/* ─────────────────────────────────────────
   FIXED VIDEO BACKGROUND
───────────────────────────────────────── */
#bg-video {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.42) saturate(0.75);
}

#bg-overlay {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center, transparent 30%, rgba(8,8,8,0.55) 100%),
    linear-gradient(to right, rgba(8,8,8,0.55) 0%, transparent 25%);
}

#particles {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}

.inner {
  width: 80%;
  margin: auto;
}

/* ─────────────────────────────────────────
   LEFT SIDE NAV
───────────────────────────────────────── */
#sidenav {
  position: fixed;
  top: 0; left: 0;
  width: var(--nav-w);
  height: 100vh;
  z-index: 200;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 44px 32px;
  background: linear-gradient(to right, rgba(8,8,8,0.65) 0%, transparent 100%);
}

.nav-logo {
  font-family: 'Shippori Mincho', serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.22em;
  color: var(--white);
  text-decoration: none;
  line-height: 1.5;
  width: 50%;
}
.nav-logo span {
  display: block;
  font-size: 8px;
  letter-spacing: 0.38em;
  color: rgba(245,240,235,0.3);
  font-family: 'Zen Kaku Gothic New', sans-serif;
  margin-top: 5px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nav-links a {
  font-size: 10px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(245,240,235,0.45);
  text-decoration: none;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 300;
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 0;
  transition: color 0.3s, gap 0.3s;
  position: relative;
  overflow: hidden;
}
.nav-links a .bar {
  display: inline-block;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.35s ease;
  margin-right: 0;
  flex-shrink: 0;
  vertical-align: middle;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover .bar { width: 16px; margin-right: 8px; }
.nav-links a.active { color: var(--white); }
.nav-links a.active .bar { width: 16px; margin-right: 8px; background: var(--accent); }

.nav-sns {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.nav-sns::before {
  content: '';
  display: block;
  width: 20px; height: 1px;
  background: rgba(200,169,126,0.22);
  margin-bottom: 4px;
}
.nav-sns a {
  font-size: 8px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(245,240,235,0.95);
  text-decoration: none;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  transition: color 0.3s;
}
.nav-sns a:hover { color: var(--accent); }

/* ─────────────────────────────────────────
   HAMBURGER BUTTON (mobile only)
───────────────────────────────────────── */
#hamburger {
  display: none;
  position: fixed;
  top: 20px; right: 20px;
  z-index: 500;
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  background: rgba(8,8,8,0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(245,240,235,0.1);
  cursor: pointer;
  padding: 0;
}
#hamburger span {
  display: block;
  width: 20px; height: 1px;
  background: var(--white);
  transition: transform 0.35s ease, opacity 0.35s ease, width 0.35s ease;
}
#hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
#hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─────────────────────────────────────────
   MOBILE DRAWER
───────────────────────────────────────── */
#mobile-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 400;
  background: rgba(6,6,6,0.97);
  backdrop-filter: blur(20px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
#mobile-drawer.open {
  opacity: 1;
  pointer-events: all;
}
.drawer-logo {
  font-family: 'Shippori Mincho', serif;
  font-size: 22px;
  letter-spacing: 0.22em;
  color: var(--white);
  text-decoration: none;
  margin-bottom: 40px;
  width: 10%;
}
.drawer-divider {
  width: 1px; height: 30px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  margin-bottom: 40px;
}
.drawer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 48px;
}
.drawer-links a {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 11px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: rgba(245,240,235,0.5);
  text-decoration: none;
  padding: 12px 0;
  transition: color 0.3s;
  position: relative;
}
.drawer-links a::after {
  content: '';
  position: absolute;
  bottom: 8px; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}
.drawer-links a:hover { color: var(--white); }
.drawer-links a:hover::after { width: 100%; }
.drawer-sns {
  display: flex;
  gap: 24px;
}
.drawer-sns a {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245,240,235,0.25);
  text-decoration: none;
  transition: color 0.3s;
}
.drawer-sns a:hover { color: var(--accent); }

/* ─────────────────────────────────────────
   PAGE ? scrollable, above fixed bg
───────────────────────────────────────── */
#page {
  position: relative;
  z-index: 10;
}

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-eyebrow {
  font-size: 9px;
  letter-spacing: 0.58em;
  color: var(--accent);
  text-transform: uppercase;
  margin:0 auto 28px auto;
  text-align: center;
  opacity: 0;
  animation: fadeUp 1.2s ease 0.7s forwards;
}

.hero-title {
  font-size: clamp(64px, 10vw, 100px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.14em;
  color: var(--white);
  text-align: center;
  opacity: 0;
  animation: fadeUp 1.5s ease 0.3s forwards;
  text-shadow: 0 2px 40px rgba(0,0,0,0.6);
}
.hero-title .en {
  display: block;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: clamp(10px, 1.1vw, 13px);
  letter-spacing: 0.65em;
  color: rgba(245,240,235,0.35);
  font-weight: 300;
  text-transform: uppercase;
  margin: 60px 0 0 0;
}

.hero-bar {
  width: 1px; height: 52px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  margin-top: 42px;
  opacity: 0;
  animation: fadeUp 1s ease 1.1s forwards;
}

.scroll-hint {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  opacity: 0;
  animation: fadeIn 1s ease 1.9s forwards;
}
.scroll-hint span {
  font-size: 8px; letter-spacing: 0.5em;
  color: rgba(245,240,235,0.25); text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 42px;
  background: linear-gradient(to bottom, rgba(200,169,126,0.4), transparent);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100%{ opacity:.35; transform:scaleY(1); }
  50%    { opacity:1;   transform:scaleY(1.3); }
}

.hero-release {
  position: absolute; bottom: 44px; right: 40px;
  display: flex; align-items: center; gap: 14px;
  opacity: 0; animation: fadeIn 1s ease 2.1s forwards;
}
.hero-release::before {
  content:''; display:block; width:22px; height:1px; background:var(--accent);
}
.hero-release p {
  font-size: 9px; letter-spacing: 0.32em;
  color: rgba(245,240,235,0.35); text-transform: uppercase;
}

@keyframes fadeUp {
  from{ opacity:0; transform:translateY(20px); }
  to  { opacity:1; transform:translateY(0); }
}
@keyframes fadeIn {
  from{ opacity:0; } to{ opacity:1; }
}

/* ─────────────────────────────────────────
   CURTAIN REVEAL ANIMATION
───────────────────────────────────────── */
.curtain-wrap {
  position: relative;
  overflow: hidden;
}
/* カーテン本体 */
.curtain-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(3, 188, 255, 0.85);
  z-index: 20;
  transform: translateX(-101%);
  pointer-events: none;
}
/* フェーズ1: 左→右へ閉まる */
.curtain-wrap.curtain-in::before {
  animation: curtainIn 0.38s cubic-bezier(0.77,0,0.18,1) forwards;
}
/* フェーズ2: 左→右へ開く */
.curtain-wrap.curtain-out::before {
  animation: curtainOut 0.42s cubic-bezier(0.77,0,0.18,1) forwards;
}
@keyframes curtainIn {
  from { transform: translateX(-101%); }
  to   { transform: translateX(0%); }
}
@keyframes curtainOut {
  from { transform: translateX(0%); }
  to   { transform: translateX(101%); }
}
/* コンテンツ: カーテンが通過するまで非表示 */
.curtain-wrap:not(.curtain-revealed) .glass-block,
.curtain-wrap:not(.curtain-revealed) > * {
  visibility: hidden;
}
.curtain-wrap.curtain-revealed .glass-block,
.curtain-wrap.curtain-revealed > * {
  visibility: visible;
}

/* ─────────────────────────────────────────
   CONTENT SECTIONS
───────────────────────────────────────── */
.section-wrap { }

.glass-block {
  background: rgba(8,8,8,0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(245,240,235,0.07);
  padding: 56px;
}

.glass-block_w {
  background: rgba(255, 255, 255, 1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(245,240,235,0.07);
  padding: 56px;

}

.section-label {
  font-size: 9px; letter-spacing: 0.55em;
  color: var(--accent); text-transform: uppercase;
  margin-bottom: 42px;
  display: flex; align-items: center; gap: 16px;
}
.section-label::before {
  content:''; display:block; width:22px; height:1px; background:var(--accent);
}

/* ─── NEWS ─── */
.news-list { list-style: none; }
.news-item {
  display: grid;
  grid-template-columns: 120px 72px 1fr;
  gap: 0 34px;
  align-items: center;
  padding: 20px 0;

  /* 元の border-top（すべてのアイテムに適用） */
  border-top: 1px solid rgba(0, 0, 0, 0.9) !important;
  text-decoration: none; color: inherit;
  transition: opacity 0.3s;
}
.news-item:hover { opacity: 0.58; }

/* 修正：一番最後の li の中にある .news-item にだけ下線を引く */
.news-list li:last-child .news-item {
  border-bottom: 1px solid #000;
}


.news-date { font-size:11px; letter-spacing:.1em; color:rgba(0, 0, 0, 0.96); }
.news-date2 { font-size:11px; letter-spacing:.1em; color:rgba(255, 255, 255, 0.96); }
.news-cat  {
  font-size:8px; letter-spacing:.28em; text-transform:uppercase;
  color:#fff; border:1px solid rgba(138,180,200,.27); padding:3px 9px; display:inline-block;
  background-color:var(--accent2);
}
.news-title{ font-size:13px; letter-spacing:.05em; color:rgba(0, 0, 0, 0.96); }

/* ─── PHOTOBOOK ─── */
.pb-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 42px;
}

/* divからaタグになったため、文字色や下線をリセット */
.pb-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-decoration: none;
  color: inherit;
}

.pb-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #0d0d0d;
}

.pb-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.pb-card:hover .pb-img-wrap img {
  transform: scale(1.03);
}

.pb-mask {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  transition: background 0.3s ease;
  pointer-events: none;
}

.pb-card:hover .pb-mask {
  background: rgba(0,0,0,0);
}

.pb-info {
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.pb-num {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--accent); /* 変数がない場合は適宜色を指定してください */
}

.pb-title {
  font-family: 'Shippori Mincho', serif;
  font-size: 18px;
  letter-spacing: 0.1em;
  color: var(--white); /* 変数がない場合は #fff などにしてください */
}

.pb-date {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(245,240,235,0.35);
  margin-left: auto;
}

/* ── スマホ時（768px以下）のスタイル ── */
@media (max-width: 768px) {
  /* スマホの時はマスク要素を非表示にして写真をクリアに見せる */
  .pb-mask {
    display: none; 
  }
  
  /* 必要に応じてスマホ時は1カラムにする場合 */
  /*
  .pb-grid {
    grid-template-columns: 1fr;
  }
  */
}

.pc {
  display: block !important;
}

.sp {display: none !important;}

@media (max-width: 768px) {


  .pc {
    display: none !important;
  }
  
  .sp {display: block !important;}
}

/* ─── MUSIC ─── */
.music-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; margin-top: 42px;
}
.music-card { position:relative; aspect-ratio:1; overflow:hidden; background:#0d0d0d; }
.music-card-art { position:absolute; inset:0; transition:transform .6s ease; }
.music-card:hover .music-card-art { transform:scale(1.06); }
.art-1 { background:radial-gradient(circle at 25% 75%,#1b2b38 0%,#060b10 100%); }
.art-2 { background:radial-gradient(circle at 75% 25%,#221a0e 0%,#080808 100%); }
.art-3 { background:radial-gradient(circle at 50% 50%,#1a1028 0%,#07060e 100%); }
.music-card-info {
  position:absolute; inset:0;
  display:flex; flex-direction:column; justify-content:flex-end; padding:22px;
  background:linear-gradient(to top,rgba(6,6,6,.88) 0%,transparent 55%);
}
.music-card-cat  { font-size:8px; letter-spacing:.42em; color:var(--accent); text-transform:uppercase; margin-bottom:6px; }
.music-card-title{ font-family:'Shippori Mincho',serif; font-size:18px; letter-spacing:.08em; color:var(--white); margin-bottom:4px; }
.music-card-date { font-size:10px; letter-spacing:.2em; color:rgba(245,240,235,.35); }
.music-card-num  { position:absolute; top:14px; right:18px; font-size:10px; letter-spacing:.2em; color:rgba(245,240,235,.1); }
.music-card::after {
  content:''; position:absolute; bottom:0; left:0;
  width:0; height:2px; background:var(--accent); transition:width .5s ease;
}
.music-card:hover::after { width:100%; }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
footer {
  background: rgba(6,6,6,0.88);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(245,240,235,0.06);
  padding: 44px 60px 44px 40px;
  display: flex; align-items: right; justify-content: space-between;
  position: relative; z-index: 10;
  
}
.footer-logo { font-family:'Shippori Mincho',serif; font-size:15px; letter-spacing:.2em; color:rgba(245,240,235,.22); }
.footer-links { display:flex; gap:26px; margin: auto;}
.footer-links a {
  font-size:9px; letter-spacing:.28em; text-transform:uppercase;
  color:rgba(245,240,235,.22); text-decoration:none; transition:color .3s;
}
.footer-links a:hover { color:var(--accent); }
.footer-copy { font-size:9px; letter-spacing:.15em; color:rgba(245,240,235,.15); margin: auto; }

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

  .glass-block_w {
    background: rgba(255, 255, 255, 1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(245,240,235,0.07);
    padding:36px 5px 36px 5px;
  
  }

  #sidenav { display: none; }
  #hamburger { display: flex; }
  #mobile-drawer { display: flex; }
  #page { margin-left: 0; 
 width: 95%;
margin: auto;}
  .inner { width: 97% !important; }
  .hero-title { font-size: clamp(42px, 11vw, 72px); }
  .hero-title .en { font-size: 9px; letter-spacing: 0.4em; }
  .hero-release { display: none; }
  .news-item { grid-template-columns: 1fr; gap: 6px 0; padding: 16px 0; }
  .music-grid { grid-template-columns: 1fr; }
  .glass-block { padding: 40px 4px; }
  .news_detail {
    padding: 100px 4px !important
  }
  footer { flex-direction: column; gap: 20px; text-align: center; padding: 36px 24px; }
}

@media (min-width: 769px) {
 
  #mobile-drawer { display: none !important; }
  #hamburger { display: none !important; }
}

.news_detail {
  padding: 100px 56px;
}

.news_detail h2 {
  font-size: 24px;
  padding: 20px 0;
}

.article-body {
  padding: 30px 0;
  max-width: 100%;
  font-size: 15px;
  line-height: 2;
  color: rgba(245, 240, 235, 0.7);
  letter-spacing: 0.04em;
}

.article-body img {
    padding: 0 0 30px 0;
}

.article-body .v_box {
	padding-top: 56.25%;
	width: 100%;
	position: relative;
}

.article-body p {
  padding: 0 0 20px 0;
}


.v_box video{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
  padding: 0 0 30px 0;
}


/* ─────────────────────────────────────────
   EVENT INFO TABLE
───────────────────────────────────────── */
.event-info {
  margin-top: 60px;
  border-top: 1px solid rgba(245,240,235,0.1);
  padding-top: 48px;
}
 
.event-info-title {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 9px;
  letter-spacing: 0.55em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.event-info-title::before {
  content: '';
  display: block;
  width: 22px;
  height: 1px;
  background: var(--accent);
}
 

.event-info-title2 {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 9px;
  letter-spacing: 0.55em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 0px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.event-info-title2::before {
  content: '';
  display: block;
  width: 22px;
  height: 1px;
  background: var(--accent);
}

.event-info-table {
  width: 100%;
  border-collapse: collapse;
}
 
.event-info-table tr {
  border-bottom: 1px solid rgba(245,240,235,0.06);
}
.event-info-table tr:first-child {
  border-top: 1px solid rgba(245,240,235,0.06);
}
 
.event-info-table th {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: rgba(245,240,235,0.38);
  font-weight: 300;
  text-align: left;
  padding: 20px 0;
  width: 140px;
  vertical-align: top;
  white-space: nowrap;
}
 
.event-info-table td {
  font-size: 14px;
  letter-spacing: 0.06em;
  color: rgba(245,240,235,0.82);
  padding: 20px 0 20px 32px;
  line-height: 1.8;
  vertical-align: top;
}
 
.event-info-table td a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(200,169,126,0.3);
  transition: border-color 0.3s, color 0.3s;
}
.event-info-table td a:hover {
  color: var(--white);
  border-bottom-color: var(--white);
}
 
@media (max-width: 768px) {
  .event-info-table th,
  .event-info-table td {
    display: block;
    padding: 0;
    width: 100%;
  }
  .event-info-table th {
    padding-top: 20px;
    font-size: 9px;
  }
  .event-info-table td {
    padding: 8px 0 20px 0;
    font-size: 13px;
  }
}

.bio {
  background: url(../img/pro.jpg);
  background-size: cover;
  padding: 56px;
  height: 600px;
  margin: 100px 0 !important;
}

/* ─────────────────────────────────────────
   BIOGRAPHY SECTION
───────────────────────────────────────── */
.bio-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: flex-start;
  
}

/* キャッチコピー */
.bio-catch {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.15em;
  margin-bottom: 40px;
  color: rgba(0, 0, 0, 0.7);
}

/* プロフィール本文 */
.bio-text {
  font-size: 15px;
  line-height: 2;
  color: rgba(0, 0, 0, 0.7);
  letter-spacing: 0.04em;
}
.bio-text p {
  margin-bottom: 1.5em;

}

/* 実績セクション右側 */
.detail-group {
  margin-bottom: 48px;
}

.detail-head {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.detail-head::after {
  content: '';
  flex-grow: 1;
  height: 1px;
  background: rgba(200, 169, 126, 0.15);
}

.detail-list {
  list-style: none;
}
.detail-list li {
  font-size: 13px;
  letter-spacing: 0.05em;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.detail-list li span {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 10px;
  color: var(--accent2);
  width: 40px;
  flex-shrink: 0;
  padding-top: 4px;
}

/* ─────────────────────────────────────────
   BIOGRAPHY RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 1024px) {
  .bio-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

@media (max-width: 768px) {
  .bio-catch {
    font-size: 22px;
  }
  .bio-text {
    font-size: 14px;
  }
  .detail-list li {
    font-size: 12px;
  }
}


@charset "UTF-8";

.saira-condensed-thin {
  font-family: "Saira Condensed", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.saira-condensed-extralight {
  font-family: "Saira Condensed", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.saira-condensed-light {
  font-family: "Saira Condensed", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.saira-condensed-regular {
  font-family: "Saira Condensed", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.saira-condensed-medium {
  font-family: "Saira Condensed", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.saira-condensed-semibold {
  font-family: "Saira Condensed", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.saira-condensed-bold {
  font-family: "Saira Condensed", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.saira-condensed-extrabold {
  font-family: "Saira Condensed", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.saira-condensed-black {
  font-family: "Saira Condensed", sans-serif;
  font-weight: 900;
  font-style: normal;
}

   /* =========================
       Base
    ========================= */


    img, video {
      max-width: 100%;
      display: block;
    }

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

    .font-en {
      font-family: 'Oswald', sans-serif;
    } 

    /* =========================
       Layout
    ========================= */
    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      padding: 16px 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 1000;
      mix-blend-mode: difference;
    }

    header img {
      width: 60px;
    }

    nav.desktop {
      display: flex;
      gap: 32px;
      align-items: center;
      font-size: 14px;
      letter-spacing: 0.2em;
    }

    nav.desktop a:hover {
      color: #aaa;
    }
 a {
  transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
 }
    a:hover {
      color: #949494;
    }

    .btn-contact {
      padding: 8px 24px;
      border: 1px solid #fff;
      background: #fff;
      color: #000;
      transition: .3s;
    }

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

    /* =========================
       Hamburger
    ========================= */
    .menu-btn {
      display: none;
      flex-direction: column;
      gap: 6px;
      cursor: pointer;
    }

    .menu-btn span {
      width: 24px;
      height: 2px;
      background: #fff;
      transition: .3s;
    }

    .menu-btn.open span:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
    }

    .menu-btn.open span:nth-child(2) {
      opacity: 0;
    }

    .menu-btn.open span:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
    }

    /* =========================
       Mobile Menu
    ========================= */
    .mobile-menu {
      position: fixed;
      inset: 0;
      background: #000;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 32px;
      transform: translateX(100%);
      transition: .3s;
      z-index: 900;
    }

    .mobile-menu.open {
      transform: translateX(0);
    }

    .mobile-menu a {
      font-size: 24px;
      letter-spacing: 0.2em;
    }

    /* =========================
       FV
    ========================= */
    .fv {
      height: 100vh;
      position: relative;
      overflow: hidden;
    }

    .fv video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .fv::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,.5);
    }

    .scroll-indicator {
      position: absolute;
      bottom: 40px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      animation: bounce 1.5s infinite;
      opacity: .6;
    }

    @keyframes bounce {
      0%,100% { transform: translate(-50%,0); }
      50% { transform: translate(-50%,10px); }
    }

    /* =========================
       Sections
    ========================= */
    section {
      padding: 0px 0;
    }


    .inner {
       margin: auto;
    }

    .margin_inner {
      width: 95%;
      margin: auto;
      padding: 120px 0 0 0;
      text-align: center;
    }

    h2 {
      font-size: 3.4vh;
      padding: 0 !important;
    }

    .bold {
      font-size: 36px !important;
      text-align: center;
    }

    .small {
      font-size: 1.2vh;
      color: #939393;

      animation: blur 1s both ease-in;
    }
    
    .small_text {
      font-size: 1.2vh;
      color: #ffffff;
      line-height: 28px;
      animation: blur 1s both ease-in;
      max-width: 680px;
      margin: auto;
      text-align: left;
      padding: 0 0 20px 0;
    }


    h3 {
      font-size: 7vh;
 
      margin-bottom: 16px;
      width: 100%;
      text-align: left;
    }

    .line {
      width: 80px;
      height: 4px;
      background: #fff;
      margin-bottom: 40px;
    }

    /* =========================
       Works
    ========================= */
    .works-grid {
      display: grid;
      grid-template-columns: repeat(2,1fr);
      gap: 0px;
    }
  
    .works-grid_low {
      display: grid;
      grid-template-columns: repeat(5,1fr);
      gap: 0px;
    }


        /* =========================
       member
    ========================= */
    .member-grid {
      display: grid;
      grid-template-columns: repeat(3,1fr);
      gap: 0px;
      color: #fff;
    }

    .member-grid_l {
      display: grid;
      grid-template-columns: repeat(3,1fr);
      gap: 20px;
      color: #fff;
      max-width: 1400px;
      margin: auto;
    }


    /* =========================
       Footer
    ========================= */
    footer {
      border-top: 1px solid #222;
      padding: 32px 0;
      text-align: center;
      font-size: 12px;
      letter-spacing: .2em;
      color: #666;
    }

    /* =========================
       Responsive
    ========================= */
    @media (max-width: 768px) {
      nav.desktop { display: none; }
      .menu-btn { display: flex; }

      h3 { font-size: 32px; }

      .member-grid_l {
        display: grid;
        grid-template-columns: repeat(2,1fr);
        gap: 20px;
        color: #fff;
      }

      .small_text {
        font-size: 14px;
        color: #ffffff;
        line-height: 28px;
        animation: blur 1s both ease-in;
        max-width: 680px;
        margin: auto;
        text-align: left;
        padding: 0 0 20px 0;
      }

      .small {
        font-size: 12px;
        color: #939393;
  
        animation: blur 1s both ease-in;
      }

      .works-grid_low {
        display: grid;
        grid-template-columns: repeat(2,1fr) !important;
        gap: 0px;
      }
    }


    .blur-item {
      opacity: 0;
      filter: blur(15px);
      transition: opacity 1.4s, filter 0.3s;
    }
    
    
    .blur-item.active {
      animation: blur 0.4s both ease-in;
    }
    
    
    
    @keyframes blur {
      0% {
        opacity: 0;
        filter: blur(10px);
      }
      100% {
        opacity: 1;
        filter: blur(0);
      }
    }
  




    /* ===== 初期状態 ===== */
.blur-item {
  filter: blur(12px);
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s ease;
}

.fadeIn {
  opacity: 0;
  transform: translateY(90px);
  transition: all 1s ease;
}

/* ===== 発火後 ===== */
.blur-item.is-active {
  filter: blur(0);
  opacity: 1;
  transform: translateY(0);
}

.fadeIn.is-active {
  opacity: 1;
  transform: translateY(0);
}


.work {
  position: relative;
  overflow: hidden;
}

/* 画像 */
/* 初期：ほんの少しズーム */
.work img {
  transform: scale(1.05);
  transition: transform 1.2s ease;
}

/* カーテン完了後 + hover */
.work.is-active:hover img {
  transform: scale(1.1);
}

/* hoverでズーム */
.work:hover img {
  transform: scale(1.08);
}

/* カーテン */
.work::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #000; /* 黒背景に合わせる */
  transform: translateY(0);
  transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 2;
}

/* 発火後 */
.work.is-active::before {
  transform: translateY(100%);
}

.work.is-active img {
  transform: scale(1);
}




/* hover用 黒マスク */
.work::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 3;
}

.member::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6) !important;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 3;
}

/* テキスト */
.work-info {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.work-title {
  font-size: 16px;
  letter-spacing: 0.05em;
}

.work-cat {
  font-size: 14px;
  opacity: 0.8;
  margin-top: -20px;
}

/* hover発火 */
.work:hover::after {
  opacity: 1;
}

.work:hover .work-info {
  opacity: 1;
  transform: translateY(0);
}

/* カーテン（前回） */
.work::before {
  z-index: 2;
}

/* hoverマスク */
.work::after {
  z-index: 3;
}

/* テキスト */
.work-info {
  z-index: 4;
}

@media (hover: none) {
  .work::after,
  .work .work-info {
    opacity: 0;
    transform: none;
  }


}

#member {
  background: #fff !important;
  color: #000;
}




/* 画像 */
/* 初期：ほんの少しズーム */
.work img {
  transform: scale(1.05);
  transition: transform 1.2s ease;
}

/* カーテン完了後 + hover */
.work.is-active:hover img {
  transform: scale(1.1);
}

/* hoverでズーム */
.work:hover img {
  transform: scale(1.08);
}

/* カーテン */
.work::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #000; /* 黒背景に合わせる */
  transform: translateY(0);
  transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 2;
}

/* 発火後 */
.work.is-active::before {
  transform: translateY(100%);
}

.work.is-active img {
  transform: scale(1);
}



.member {
  position: relative;
  overflow: hidden;
}

/* 画像 */


/* テキスト */
.work-info {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}




/* 初期：ほんの少しズーム */
.member img {
  transform: scale(1);
  transition: transform 1.2s ease;
}

/* カーテン完了後 + hover */
.member.is-active:hover img {
  transform: scale(1.1);
}

/* hoverでズーム */
.member:hover img {
  transform: scale(1.08);
}

/* カーテン */
.member::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #ffffff; /* 黒背景に合わせる */
  transform: translateX(0);
  transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 2;
}

/* 発火後 */
.member.is-active::before {
  transform: translateX(100%);
}

.member.is-active img {
  transform: scale(1);
}



/* hover用 黒マスク */
.member::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.8);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 3;
}
/* hover発火 */
.member:hover::after {
  opacity: 1;
}

.member:hover .work-info {
  opacity: 1;
  transform: translateY(0);
}

/* カーテン（前回） */
.member::before {
  z-index: 2;
}

/* hoverマスク */
.member::after {
  z-index: 3;
}

/* テキスト */
.work-info {
  z-index: 4;
}

@media (hover: none) {
  .member::after,
  .member .work-info {
    opacity: 0;
    transform: none;
  }
}

.works-filter {
  display: flex;
  gap: 16px;
  margin: 40px 0;
}

.filter-btn {
  background: none;
  border: none;
  color: #888;
  font-size: 14px;
  letter-spacing: 0.1em;
  cursor: pointer;
}

.filter-btn.is-active {
  color: #fff;
}

.work {
  transition: opacity .4s ease, transform .4s ease;
}

.work.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.95);
}


.work-back {
  max-width: 980px;
  margin: 120px auto 40px;

}

.work-back a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  letter-spacing: 0.12em;
  color: #aaa;
  text-decoration: none;
}

.work-back a:hover {
  color: #fff;
}

.work-back .arrow {
  font-size: 18px;
}

.work-gallery {
  max-width: 1600px;
  margin: 0 auto 80px;
}

.work-gallery img {
  width: 100%;
  height: auto;
  display: block;
}

.work-detail {
  width: 95%;
  max-width: 1600px;
  margin: 0 auto 160px;
}

.work-detail  {
  font-size: 32px;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.work-desc {
  max-width: 880px;
  font-size: 15px;
  line-height: 2;
  color: #ccc;
  margin-bottom: 48px;
}

.work-meta {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px 24px;
  font-size: 14px;
  font-weight: 600;
}

.work-meta dt {
  color: #777;
  letter-spacing: 0.1em;
}

.work-meta dd {
  color: #eee;
}

@media (max-width: 768px) {
  .work-back,
  .work-gallery,
  .work-detail {
    padding: 0 0px;
  }

  .work-detail .work-title {
    font-size: 24px;
  }

  .work-meta {
    grid-template-columns: 1fr;
  }

  .work-title {
    font-size: 14px;
    letter-spacing: 0.05em;
    margin: 30px 0 0 0;
  }
  
  .work-cat {
    font-size: 12px;
    opacity: 0.8;
    margin-top: 6px;
  }

  .work-info {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 5px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
  }
  
  .member-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 0px;
    color: #fff;
  }

  header img {
    width: 40px !important;
  }

  .member::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 3;
  }
}
.work-back-fixed {
  position: absolute;
  left: 2.5%;
  top: 28%;
  transform: translateY(-50%);


  font-size: 12px;
  letter-spacing: 0.18em;
  color: #aaa;
  text-decoration: none;
  z-index: 100;
}

.work-back-fixed .arrow {
  margin-bottom: -2px;
  font-size: 16px;
}

.work-back-fixed:hover {
  color: #fff;
}

/* SPでは通常表示に戻す */
@media (max-width: 768px) {
  .work-back-fixed {
    position: static;
    transform: none;
    writing-mode: horizontal-tb;
    margin: 24px 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
}


/* 矢印 */
.swiper-button-prev,
.swiper-button-next {
  color: #fff !important;

}

.swiper-pagination-bullet-active {
  background: #fff !important;
}

/* 写真の主張を優先 */
.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 18px;
}

.small2 {
  font-size: 10px;
  color: #777;
}

.swiper-button-next::after, .swiper-button-prev::after {
  font-size: 12px !important;
  color: #fff;
 border: 1px solid #fff;
  padding: 10px;
}

/* プログレスバー全体 */
.swiper-pagination {
  position: relative;
  margin-top: 70.45%;
  height: 2px;
}

.swiper-pagination-progressbar {
  background: rgba(255,255,255,0.2);
}

.swiper-pagination-progressbar-fill {
  background: #fff !important;
}

.swiper {
  position: relative;
}


.work-info2 {
color: #000;
width: 95%;
margin: auto;
}


.member-title {
  font-size: 20px;
  letter-spacing: 0.05em;
}

.member-cat {
  font-size: 12px;
  opacity: 0.8;
  margin-top: -22px;
}




.member_l {
  position: relative;
  overflow: hidden;
}

.member_l::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0) !important;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 3;
}


/* 初期：ほんの少しズーム */
.member_l img {
  transform: scale(1);
  transition: transform 1.2s ease;
}

/* カーテン完了後 + hover */
.member_l.is-active:hover img {
  transform: scale(1.1);
}

/* hoverでズーム */
.member_l:hover img {
  transform: scale(1.08);
}

/* カーテン */
.member_l::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #ffffff; /* 黒背景に合わせる */
  transform: translateX(0);
  transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 2;
}

/* 発火後 */
.member_l.is-active::before {
  transform: translateX(100%);
}

.member_l.is-active img {
  transform: scale(1);
}



/* hover用 黒マスク */
.member_l::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.8);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 3;
}
/* hover発火 */
.member_l:hover::after {
  opacity: 1;
}

.member_l:hover .work-info {
  opacity: 1;
  transform: translateY(0);
}

/* カーテン（前回） */
.member_l::before {
  z-index: 2;
}

/* hoverマスク */
.member_l::after {
  z-index: 3;
}

/* テキスト */
.work-info {
  z-index: 4;
}





/* =========================
   Footer
========================= */
.site-footer {
  border-top: 1px solid #222;
  padding: 80px 0 32px;
  background: #050505;
  color: #aaa;
}

.footer-inner {
  width: 95%;
  max-width: 1600px;
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 80px;
}

/* ロゴ */
.footer-logo img {
  width: 80px;
}

/* ナビ */
.footer-nav {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
}

.footer-main {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0.2em;
  color: #fff;
  margin-bottom: 16px;
}

.footer-sub {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-sub li {
  margin-bottom: 8px;
}

.footer-sub a {
  font-size: 12px;
  letter-spacing: 0.12em;
  color: #777;
  transition: color 0.3s;
}

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

/* コピーライト */
.footer-copy {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: #555;
}

/* =========================
   SP
========================= */
@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-nav {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-logo {
    text-align: center;
  }
}

/* =========================
   Footer SNS
========================= */
.footer-sns {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
}

.footer-sns img {
  width: 20px;
  height: 20px;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.footer-sns a:hover img {
  opacity: 0.5;
}


/* ─────────────────────────────────────────
   FULL-SCREEN SINGLE SLIDER (PC全幅 / スマホ比率維持)
───────────────────────────────────────── */
.pb-slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 80px;

  touch-action: pan-y; 
}

/* デフォルト（スマホ・タブレット）：横比率「3:2」を維持して全体表示 */
.pb-slider-track {
  display: flex;
  transform: translateX(-100%);
  width: 100%;
  aspect-ratio: 3 / 2; /* スマホは3:2の比率をキープ */
  will-change: transform;
}

.pb-slide {
  min-width: 100%;
  max-width: 100%;
  height: 100%;
  user-select: none;
}

.pb-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* スマホはトリミングせず全体を見せる */
  pointer-events: none;
}

/* インジケーター（ドット） */
.slider-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(245, 240, 235, 0.3);
  transition: background 0.4s ease, transform 0.4s ease;
}

.dot.is-active {
  background: var(--accent);
  transform: scale(1.3);
}

/* ─────────────────────────────────────────
   PC OVERLAY (デスクトップ時は横幅100%のダイナミック表示)
───────────────────────────────────────── */
@media (min-width: 1024px) {
  .pb-slider-track {
    aspect-ratio: auto; /* スマホ用の比率縛りを解除 */
    height: 65vh; /* PCで写真が一番美しく見える画面高の約6.5割に固定（好みで100vh等に変更も可） */
  }

  .pb-slide img {
    object-fit: cover; /* 横幅100%で枠いっぱいに隙間なく表示 */
    object-position: center; /* 中央を基準にトリミング */
  }
  
  .slider-dots {
    bottom: 24px; /* PC時はドットの位置を少し下げる */
  }
}

/* ─────────────────────────────────────────
   PURCHASE BUTTONS
───────────────────────────────────────── */
.purchase-container {
  margin-top: 60px;
  padding-top: 40px;
  text-align: center;
}

.purchase-title {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}

.purchase-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap; /* スマホ時に自動で折り返す設定 */
}

.btn-purchase {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 240px;
  padding: 18px 24px;
  background: rgba(245, 240, 235, 0.02);
  border: 1px solid rgba(245, 240, 235, 0.15);
  text-decoration: none;
  transition: border-color 0.4s ease, background 0.4s ease;
  overflow: hidden;
}

.btn-purchase .btn-text {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 12px;
  letter-spacing: 0.15em;
  color: rgba(245, 240, 235, 0.8);
  transition: color 0.4s ease, transform 0.4s ease;
}

/* 右側の矢印（>）演出 */
.btn-purchase .btn-arrow {
  position: relative;
  width: 12px;
  height: 1px;
  background: rgba(245, 240, 235, 0.4);
  transition: background 0.4s ease, transform 0.4s ease;
}
.btn-purchase .btn-arrow::after {
  content: '';
  position: absolute;
  right: 0; top: -2px;
  width: 4px; height: 4px;
  border-top: 0px solid rgba(245, 240, 235, 0.4);
  border-right: 0px solid rgba(245, 240, 235, 0.4);
  transform: rotate(45deg);
  transition: border-color 0.4s ease;
}

/* ホバー時のインタラクション */
.btn-purchase:hover {
  border-color: var(--accent);
  background: rgba(200, 169, 126, 0.05); /* ほんのりゴールド背景に */
}

.btn-purchase:hover .btn-text {
  color: var(--white);
  transform: translateX(4px); /* テキストが少し右に動く */
}

.btn-purchase:hover .btn-arrow {
  background: var(--accent);
  transform: translateX(6px); /* 矢印がさらに右に動く伸びやかな演出 */
}
.btn-purchase:hover .btn-arrow::after {
  border-color: var(--accent);
}

/* スマホ対応 */
@media (max-width: 768px) {
  .purchase-links {
    flex-direction: column; /* スマホでは縦並びに */
    align-items: center;
    gap: 16px;
  }
  .btn-purchase {
    width: 100%; /* スマホ時は横幅いっぱい */
    max-width: 320px;
  }
}

/* ???????????????????????????????????????????
   WORKS DETAIL v2
   左: テキスト固定  右: スライダー
??????????????????????????????????????????? */

/* ── ページ全体 ── */
.wd-page {
  min-height: 100vh;
  padding-top: var(--nav-w); /* サイドナビ分のオフセット */
}

/* ── メインレイアウト ── */
.wd-main {
  display: grid;
  grid-template-columns: 380px 1fr;
  min-height: 100vh;
  position: relative;
}

/* ─────────────────────────────────────────
   左ペイン：テキスト（スクロール中fixed）
───────────────────────────────────────── */
.wd-left {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 56px 80px 48px;
  z-index: 10;
  /* 左エッジの薄いグラデ（サイドナビの続き感） */
  background: linear-gradient(to right, rgba(8,8,8,0.55) 0%, rgba(8,8,8,0.15) 100%);
  backdrop-filter: blur(2px);
}

/* カテゴリラベル */
.wd-cat {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 9px;
  letter-spacing: 0.55em;
  color: var(--accent);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  opacity: 0;
  animation: wdFadeUp 0.9s ease 0.2s forwards;
}
.wd-cat::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--accent);
}

/* タイトル */
.wd-title {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(22px, 2.4vw, 36px);
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 10px;
  opacity: 0;
  animation: wdFadeUp 1s ease 0.35s forwards;
}

/* クライアント名 */
.wd-client {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 10px;
  letter-spacing: 0.35em;
  color: rgba(245,240,235,0.35);
  text-transform: uppercase;
  margin-bottom: 40px;
  opacity: 0;
  animation: wdFadeUp 1s ease 0.45s forwards;
}

/* 区切り線 */
.wd-divider {
  width: 24px;
  height: 1px;
  background: rgba(200,169,126,0.3);
  margin-bottom: 36px;
  opacity: 0;
  animation: wdFadeUp 0.8s ease 0.55s forwards;
}

/* 説明文 */
.wd-desc {
  font-size: 13px;
  line-height: 2.2;
  letter-spacing: 0.04em;
  color: rgba(245,240,235,0.65);
  margin-bottom: 48px;
  opacity: 0;
  animation: wdFadeUp 1s ease 0.6s forwards;
}

/* スペックテーブル */
.wd-spec {
  opacity: 0;
  animation: wdFadeUp 1s ease 0.75s forwards;
}

.wd-spec-row {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0;
  border-bottom: 1px solid rgba(245,240,235,0.06);
  padding: 12px 0;
}
.wd-spec-row:first-child {
  border-top: 1px solid rgba(245,240,235,0.06);
}

.wd-spec-key {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 9px;
  letter-spacing: 0.3em;
  color: rgba(245,240,235,0.28);
  text-transform: uppercase;
  padding-top: 2px;
}

.wd-spec-val {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(245,240,235,0.72);
  line-height: 1.7;
}

/* 戻るリンク */
.wd-back {
  margin-top: 40px;
  opacity: 0;
  animation: wdFadeUp 1s ease 0.9s forwards;
}
.wd-back a {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(245,240,235,0.32);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s;
}
.wd-back a:hover { color: var(--accent); }
.wd-back a::before { content: '←'; }

/* ─────────────────────────────────────────
   右ペイン：スライダー
───────────────────────────────────────── */
.wd-right {
  position: relative;
  height: 100vh;
  overflow: hidden;
  opacity: 0;
  animation: wdFadeIn 1.2s ease 0.1s forwards;
}

/* スライダー本体 */
.wd-slider {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.wd-track {
  display: flex;
  height: 100%;
  transition: transform 0.75s cubic-bezier(0.77,0,0.18,1);
  will-change: transform;
}

.wd-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.wd-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.75s ease;
  user-select: none;
  -webkit-user-drag: none;
}

/* スライドイン時の画像ズームアウト効果 */
.wd-slide.is-current img {
  transform: scale(1);
}
.wd-slide:not(.is-current) img {
  transform: scale(1.05);
}

/* 薄い暗幕 */
.wd-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, transparent 60%, rgba(8,8,8,0.4) 100%);
  pointer-events: none;
}

/* スライダーUI */
.wd-slider-ui {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

/* カウンター */
.wd-counter {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: rgba(245,240,235,0.45);
}
.wd-counter em {
  font-style: normal;
  color: var(--white);
  font-size: 13px;
}

/* ドット */
.wd-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.wd-dot {
  width: 20px;
  height: 1px;
  background: rgba(245,240,235,0.25);
  cursor: pointer;
  border: none;
  padding: 6px 0;
  background-clip: content-box;
  transition: background-color 0.3s, width 0.35s;
}
.wd-dot.active {
  width: 36px;
  background-color: var(--accent);
}

/* 矢印ボタン */
.wd-arrows {
  display: flex;
  gap: 8px;
}
.wd-arrow {
  width: 40px;
  height: 40px;
  background: rgba(8,8,8,0.5);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(245,240,235,0.15);
  color: rgba(245,240,235,0.7);
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
  padding: 0;
}
.wd-arrow:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(200,169,126,0.08);
}

/* ─────────────────────────────────────────
   OTHER WORKS（下部サムネイルリンク）
───────────────────────────────────────── */
.wd-others {
  position: relative;
  z-index: 10;
  background: rgba(8,8,8,0.85);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(245,240,235,0.06);
  padding: 64px 0 80px;
}

.wd-others-inner {
  width: 88%;
  margin: 0 auto;
}

.wd-others-label {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 9px;
  letter-spacing: 0.55em;
  color: var(--accent);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
}
.wd-others-label::before {
  content: '';
  display: block;
  width: 18px;
  height: 1px;
  background: var(--accent);
}

.wd-others-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.wd-other-card {
  display: block;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #0d0d0d;
}

.wd-other-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
  filter: brightness(0.55) saturate(0.7);
}
.wd-other-card:hover img {
  transform: scale(1.05);
  filter: brightness(0.7) saturate(0.85);
}

/* カード下部テキスト */
.wd-other-info {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 22px;
  background: linear-gradient(to top, rgba(8,8,8,0.85) 0%, transparent 55%);
}

.wd-other-cat {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 8px;
  letter-spacing: 0.4em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.wd-other-title {
  font-family: 'Shippori Mincho', serif;
  font-size: 15px;
  letter-spacing: 0.08em;
  color: var(--white);
  line-height: 1.4;
}

/* カード下のアクセントライン */
.wd-other-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.5s ease;
}
.wd-other-card:hover::after { width: 100%; }

/* ─────────────────────────────────────────
   ANIMATIONS
───────────────────────────────────────── */
@keyframes wdFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes wdFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ─────────────────────────────────────────
   RESPONSIVE ? スマホ
   スライダー上 / テキスト下
───────────────────────────────────────── */
@media (max-width: 768px) {
  .wd-page { padding-top: 0; }

  .wd-main {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    min-height: auto;
  }

  /* スマホ: スライダーを上 */
  .wd-right {
    order: 1;
    height: 65vw;
    min-height: 240px;
    animation: none;
    opacity: 1;
  }

  /* スマホ: テキストを下 */
  .wd-left {
    order: 2;
    position: static;
    height: auto;
    padding: 48px 24px 60px;
    background: rgba(8,8,8,0.8);
    backdrop-filter: blur(16px);
    animation: none;
  }
  .wd-cat, .wd-title, .wd-client, .wd-divider,
  .wd-desc, .wd-spec, .wd-back {
    opacity: 1;
    animation: none;
  }

  .wd-slider-ui {
    bottom: 16px;
    right: 16px;
    gap: 10px;
  }

  .wd-others-grid {
    grid-template-columns: 1fr;
    gap: 1px;
  }

  .wd-other-card {
    aspect-ratio: 16 / 9;
  }

  .wd-others-inner { width: 100%; }
  .wd-others { padding: 48px 24px 60px; }
}

/* タブレット中間 */
@media (min-width: 769px) and (max-width: 1100px) {
  .wd-main { grid-template-columns: 300px 1fr; }
  .wd-left { padding: 60px 36px 60px 32px; }
}

.article_left {
  float:left;
  width: 70%;
}

.article-body_right {
  float: right;
  width: 27%;
  position: fixed;
  right:3%;
}

/* ── article_left 画像フェードイン ── */
.article_left .fade-img {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.article_left .fade-img.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* 2枚目は少し遅らせる */
.article_left .fade-img:nth-child(2) {
  transition-delay: 0.18s;
}

/* ─────────────────────────────────────────
   ARTICLE LEFT / RESPONSIVE SLIDER
───────────────────────────────────────── */
/* デフォルト（PC時）：画像を縦に並べて表示 */
.article_left {
  display: flex;
  flex-direction: column;
  gap: 40px; /* 画像間の余白 */
}

/* PC時はスライダーのトラックやスライドの縛りを解除して縦並びにする */
.article_left .pb-slider-container {
  width: 100%;
}
.article_left .pb-slider-track {
  display: flex;
  flex-direction: column;
  gap: 40px;
  transform: none !important; /* PC時はJSの横移動を無効化 */
}
.article_left .pb-slide {
  min-width: 100%;
  max-width: 100%;
  opacity: 1;
}
.article_left .pb-slide img {
  width: 100%;
  height: auto;
  object-fit: cubic-bezier; /* PC時は元の比率でそのまま出す */
}

/* PC時はループ用のクローン画像とドットを非表示にする */
.article_left .pb-slide:first-child,
.article_left .pb-slide:last-child,
.article_left .slider-dots {
  display: none;
}

/* ?スマホ時（768px以下）：スライダーモードに切り替え */
@media (max-width: 768px) {

  .article-body_right {
    float: none;
    width: 97%;
    position: static;
    right:0%;
  }

  .article_left {
    float:none;
    width: 100%;
  }

  .article_left {
    gap: 0;
  }
  .article_left .pb-slider-container {
    position: relative;
    overflow: hidden;
    background: #000;
    touch-action: pan-y;
  }
  .article_left .pb-slider-track {
    flex-direction: row; /* 横並びに変更 */
    gap: 0;
    width: 100%;
    aspect-ratio: 3 / 2; /* スマホ時は3:2の横比率を維持 */
    will-change: transform;
  }
  .article_left .pb-slide {
    min-width: 100%;
    max-width: 100%;
    height: 100%;
    user-select: none;
  }
  /* スマホ時はクローンを表示 */
  .article_left .pb-slide:first-child,
  .article_left .pb-slide:last-child {
    display: block;
  }
  .article_left .pb-slide img {
    height: 100%;
    object-fit: contain; /* 比率を保って全体を表示 */
    pointer-events: none;
  }
  
  /* ドットインジケーター */
  .article_left .slider-dots {
    display: flex;
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    gap: 12px;
    z-index: 10;
  }
  .article_left .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(245, 240, 235, 0.3);
    transition: background 0.4s ease, transform 0.4s ease;
  }
  .article_left .dot.is-active {
    background: var(--accent);
    transform: scale(1.3);
  }

  .denei_left {
    float: none !important;
    width: 100% !important;
    padding: 0 0 20px 0;
  }
  
  .denei_right {
    float: none !important;
    width: 100% !important;
  }
}

.works_bt {
  width: 100%;
  display: flex;
  justify-content: center; /* 左右中央に配置 */
  margin: 40px 0 0 0;
}


/* =================================================
   NOTE BLOG ? PHP RSS セクション CSS差分
   style.css の末尾に追加してください
================================================= */
 
/* ─────────────────────────────────────────
   セクション全体
───────────────────────────────────────── */
#blog .glass-block ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 0;
  padding: 0;
}
 
/* ─────────────────────────────────────────
   各カード（li）
───────────────────────────────────────── */
#blog .glass-block ul li {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(245,240,235,0.07);
  background: rgba(255,255,255,0.02);
  transition: border-color 0.35s ease, background 0.35s ease;
}
 
#blog .glass-block ul li:hover {
  border-color: rgba(200,169,126,0.35);
  background: rgba(200,169,126,0.04);
}
 
/* ホバー時のアクセントライン */
#blog .glass-block ul li::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.4s ease;
}
#blog .glass-block ul li:hover::after { width: 100%; }
 
/* ─────────────────────────────────────────
   サムネイル
───────────────────────────────────────── */
#blog .glass-block ul li img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  filter: brightness(0.82) saturate(0.75);
  transition: transform 0.6s ease, filter 0.4s ease;
}
 
#blog .glass-block ul li:hover img {
  transform: scale(1.05);
  filter: brightness(1) saturate(1);
}
 
/* ─────────────────────────────────────────
   テキストエリア（time・h3・a を囲む）
───────────────────────────────────────── */
#blog .glass-block ul li time,
#blog .glass-block ul li h3,
#blog .glass-block ul li a {
  display: block;
  padding-left: 18px;
  padding-right: 18px;
}
 
/* ─────────────────────────────────────────
   日付
───────────────────────────────────────── */
#blog .glass-block ul li time {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 9px;
  letter-spacing: 0.3em;
  color: rgba(245,240,235,0.35);
  padding-top: 16px;
  margin-bottom: 8px;
}
 
/* ─────────────────────────────────────────
   タイトル
───────────────────────────────────────── */
#blog .glass-block ul li h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: rgba(245,240,235,0.82);
  line-height: 1.7;
  margin: 0 0 16px;
 
  /* 2行でクランプ */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  padding-left: 18px;
  padding-right: 18px;
}
 
/* ─────────────────────────────────────────
   「記事を見る」リンク
───────────────────────────────────────── */
#blog .glass-block ul li a.blog-card-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  height: 100%;
}
 
#blog .glass-block ul li a::after {
 
  font-size: 11px;
  transition: transform 0.3s;
}
#blog .glass-block ul li:hover a { color: var(--white); }
#blog .glass-block ul li:hover a::after { transform: translateX(4px); }
 
/* ─────────────────────────────────────────
   エラー文
───────────────────────────────────────── */
#blog .glass-block p {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 11px;
  letter-spacing: 0.25em;
  color: rgba(245,240,235,0.3);
  text-align: center;
  padding: 40px 0;
}
 
/* ─────────────────────────────────────────
   note リンク（「もっと見る」）
   ※ PHPの外側にHTMLで追加する場合
───────────────────────────────────────── */
.blog-more {
  margin-top: 36px;
  text-align: right;
}
.blog-more-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 10px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(245,240,235,0.38);
  text-decoration: none;
  transition: color 0.3s;
}
.blog-more-link:hover { color: var(--accent); }
.blog-more-link svg   { transition: transform 0.3s; }
.blog-more-link:hover svg { transform: translateX(4px); }
 
/* ─────────────────────────────────────────
   レスポンシブ
───────────────────────────────────────── */
 
/* タブレット: 2列 */
@media (max-width: 1024px) {
  #blog .glass-block ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
 
/* スマホ: 1列 */
@media (max-width: 768px) {
  #blog .glass-block ul {
    grid-template-columns: 1fr;
    gap: 12px;
  }
 
  #blog .glass-block ul li img {
    aspect-ratio: 16 / 9;
  }
 
  #blog .glass-block ul li h3 {
    font-size: 13px;
  }
}



/* ── FV Special Animation ── */
#fv-splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #050505; /* 漆黒の背景（後で動画が透けるように消えます） */
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* 吸い込まれる写真たち */
.fv-photo {
  position: absolute;
  /* left と top は JSで付与されるCSS変数(--posX, --posY)を使用 */
  left: var(--posX);
  top: var(--posY);
  transform: translate(-50%, -50%); /* 中心基準で配置 */
  
  width: clamp(350px, 30vw, 400px); /* 写真のサイズ感 */
  height: auto;
  opacity: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.9);
  
  /* 3秒かけてフワッと現れて消える */
  animation: flashFade 3s ease-in-out forwards;
}

/* テキストロゴ */
#fv-logo {
  position: absolute;
  font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 100;
  color: #fff;
  letter-spacing: 0.15em;
  opacity: 0; /* 初期状態は非表示 */
  margin: auto;
  text-align: center;
}

.logo-reveal {
  /* 2.5秒かけてフェードイン＆グリッチ */
  animation: glitchFadeIn 2.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
/* スプラッシュ画面全体のフェードアウト */
.splash-fadeout {
  animation: fadeOutSplash 1.5s ease forwards;
  pointer-events: none; /* フェードアウト後は裏の操作を許可 */
}

/* ── Keyframes ── */
@keyframes flashFade {
  0% {
    opacity: 0;
    filter: blur(5px); /* 最初は少しぼやけている */
  }
  20% {
    opacity: 0.8; /* くっきりと浮かび上がる */
    filter: blur(0);
  }
  80% {
    opacity: 0.2; /* 少しの間、その場に留まる */
    filter: blur(0);
  }
  100% {
    opacity: 0; /* 再び闇に溶けて消える */
    filter: blur(5px);
  }
}

@keyframes glitchFadeIn {
  0% {
    opacity: 0;
    text-shadow: none;
    transform: scale(0.98); /* ほんの少し引いた状態から */
  }
  15% {
    opacity: 0.5;
    /* シアンとマゼンタに色ズレし、少し歪む */
    text-shadow: 6px 0 0 rgba(0, 255, 255, 0.7), -6px 0 0 rgba(255, 0, 255, 0.7);
    transform: scale(1.02) skewX(4deg);
  }
  20% {
    opacity: 0.8;
    /* 逆方向に色ズレと歪み */
    text-shadow: -6px -2px 0 rgba(0, 255, 255, 0.7), 6px 2px 0 rgba(255, 0, 255, 0.7);
    transform: scale(0.99) skewX(-4deg);
  }
  25% {
    opacity: 1;
    text-shadow: none; /* 一旦正常に戻る */
    transform: scale(1) skewX(0);
  }
  28% {
    /* 最後にもう一度だけ小さくバグる */
    text-shadow: 3px 1px 0 rgba(0, 255, 255, 0.7), -3px -1px 0 rgba(255, 0, 255, 0.7);
    transform: skewX(1deg);
  }
  32% {
    text-shadow: none;
    transform: skewX(0);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    /* 最終的にはうっすらと発光させて夜の街のネオン感を残す */
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.4); 
  }
}

@keyframes fadeOutSplash {
  0% { background-color: rgba(5, 5, 5, 1); }
  100% { background-color: rgba(5, 5, 5, 0); visibility: hidden; }
}

/* ロゴのフェードアウト用クラス */
.logo-fadeout {
  /* 背景のフェードアウト(0.8s)と合わせて自然に消えるように設定 */
  animation: fadeOutLogo 0.3s ease forwards;
}

@keyframes fadeOutLogo {
  0% {
    opacity: 1;
    filter: blur(0);
  }
  100% {
    opacity: 0;
    filter: blur(5px); /* 少しぼやけながら闇に溶ける */
    transform: scale(1.02); /* ほんの少しだけフワッと広がる */
  }
}

.new {
  font-size: 18px;
}

.denei_left {
  float: left;
  width: 40%;
}

.denei_right {
  float: right;
  width: 55%;
}


/* ── Masonry Gallery ── */
.masonry-gallery {
  /* PC時は4列 */
  column-count: 4;
  column-gap: 16px;
  padding: 40px 0;
}

.masonry-item {
  break-inside: avoid; /* 画像が列をまたいで分割されるのを防ぐ */
  margin-bottom: 16px; /* 縦の隙間 */
  border-radius: 2px; /* 少しだけ角を落とす（お好みで0に） */
  overflow: hidden;
  background: #0d0d0d;
}

.masonry-item img {
  width: 100%;
  height: auto;
  display: block;
}

/* スマホ時（768px以下）は2列に変更 */
@media (max-width: 768px) {
  .masonry-gallery {
    column-count: 2;
    column-gap: 12px;
    padding: 24px 0;
  }
  .masonry-item {
    margin-bottom: 12px;
  }
}