  :root {
    --white: #ffffff;
    --off-white: #f9f7f4;
    --light: #f0ece4;
    --mid: #9e9186;
    --dark: #1e1a16;
    --accent: #7a5c3a;
    --accent-light: #c4a07a;
    --text: #1a1410;
    --text-body: #3a3026;
    --text-muted: #5a5046;
    --gold: #a07838;
    --gold-light: #dcc89a;
    --nav-h: 72px;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    font-family: 'Noto Serif JP', serif;
    background: var(--white);
    color: var(--text);
    overflow-x: hidden;
  }

  /* 日英併記:日本語の下に英語を表示 */
  [data-lang="ja"] { display: block; }
  [data-lang="en"] {
    display: block;
    font-size: 0.86em;
    font-family: 'Montserrat', 'Cormorant Garamond', sans-serif;
    font-weight: 300;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    margin-top: 0.25em;
  }
  /* タグ・カテゴリなどインライン要素は横並びのまま */
  .tag[data-lang], .works-tags [data-lang] { display: inline-block; margin-top: 0; }
  .news-date[data-lang] { display: inline; }
  /* ボタン内の英語は控えめに */
  .btn-more [data-lang="en"] { font-size: 0.72em; margin-top: 0.35em; opacity: 0.75; }
  /* ヒーロー・見出し系の英語 */
  .subpage-hero-inner h1 [data-lang="en"] { color: rgba(255,255,255,0.85); font-size: 0.55em; letter-spacing: 0.3em; text-transform: uppercase; margin-top: 0.5em; }
  .about-title [data-lang="en"], .profile-role [data-lang="en"] { font-size: 0.78em; }
  /* ナビのドロップダウン内 */
  .sub-menu [data-lang="en"] { font-size: 0.82em; margin-top: 0.1em; }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4vw;
    background: rgba(255,255,255,0.97);
    border-bottom: 1px solid var(--gold-light);
    backdrop-filter: blur(8px);
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    color: var(--dark);
    text-decoration: none;
  }
  .nav-logo-mark {
    height: 46px;
    width: auto;
    display: block;
  }
  .nav-logo-text span {
    display: block;
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    color: var(--text-muted);
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    margin-top: 2px;
    text-transform: uppercase;
  }

  .nav-right { display: flex; align-items: center; gap: 2rem; }
  .nav-links { display: flex; gap: 1.8rem; list-style: none; }
  .nav-links a {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.66rem;
    font-weight: 400;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-body);
    text-decoration: none;
    transition: color 0.3s;
  }
  .nav-links a:hover { color: var(--gold); }

  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
  }
  .hamburger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--dark);
  }

  /* ── HERO ── */
  #top {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: var(--nav-h);
    position: relative;
    overflow: hidden;
  }

  .hero-text-col {
    display: flex;
    align-items: center;
    padding: 6vw 5vw 6vw 6vw;
    background: var(--white);
    position: relative;
    z-index: 2;
  }

  .hero-text-wrap {
    max-width: 520px;
  }

  .hero-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.62rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
  }

  .hero-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 3.8vw, 3.6rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 1.4rem;
  }

  .hero-sub {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-body);
    margin-bottom: 2rem;
  }

  .hero-body {
    font-size: 0.92rem;
    font-weight: 400;
    line-height: 2.1;
    color: var(--text-body);
  }

  .hero-photo-col {
    position: relative;
    overflow: hidden;
  }

  .hero-photo-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
  }

  .hero-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(255,255,255,0.15) 0%, transparent 40%);
    pointer-events: none;
  }

  .scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.58rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-muted);
    z-index: 3;
  }
  .scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollDrop 2s ease-in-out infinite;
  }
  @keyframes scrollDrop {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; transform: scaleY(1.2); }
  }

  /* ── SECTIONS ── */
  section { padding: 7rem 4vw; }
  .section-inner { max-width: 1100px; margin: 0 auto; }

  .section-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.62rem;
    font-weight: 400;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .section-label::after {
    content: '';
    flex: 1;
    max-width: 60px;
    height: 1px;
    background: var(--gold-light);
  }


  /* ── ABOUT PHOTO ── */
  .about-photo-wrap {
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
  }
  .about-photo {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    object-position: center 30%;
    display: block;
  }
  .about-photo-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(249,247,244,0.3) 0%, transparent 30%, transparent 70%, rgba(249,247,244,0.3) 100%);
    pointer-events: none;
  }
  /* ── ABOUT ── */
  #about { background: var(--off-white); }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 5rem;
    align-items: start;
  }

  .about-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 2.8vw, 2.6rem);
    font-weight: 400;
    line-height: 1.35;
    color: var(--dark);
  }

  .about-body {
    font-size: 1rem;
    font-weight: 400;
    line-height: 2.2;
    color: var(--text-body);
  }

  /* ── PROFILE ── */
  #profile { background: var(--white); }

  .profile-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 5rem;
    align-items: start;
  }

  .profile-portrait {
    position: relative;
  }

  .portrait-frame {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    position: relative;
  }

  .portrait-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
  }

  .portrait-accent {
    position: absolute;
    bottom: -12px;
    right: -12px;
    width: 50%;
    height: 50%;
    border-right: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    pointer-events: none;
  }

  .profile-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.6rem;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 0.4rem;
  }

  .profile-role {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
  }

  .profile-divider {
    width: 40px;
    height: 1px;
    background: var(--gold-light);
    margin-bottom: 2rem;
  }

  .profile-body {
    font-size: 0.97rem;
    font-weight: 400;
    line-height: 2.2;
    color: var(--text-body);
    margin-bottom: 1.5rem;
  }

  /* ── SERVICES ── */
  #service {
    background: #ece4f4; /* 薄い紫 */
    color: var(--text);
    position: relative;
    overflow: hidden;
  }
  #service::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../images/service.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.08;
    z-index: 0;
  }
  #service::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(236,228,244,0.55) 0%, rgba(226,214,240,0.55) 100%);
    z-index: 0;
  }
  #service .section-inner {
    position: relative;
    z-index: 1;
  }
  #service .section-label { color: #6b3fa0; }
  #service .section-label::after { background: rgba(107,63,160,0.25); }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
  }

  .service-item {
    padding: 2.5rem 1.8rem;
    border-left: 1px solid rgba(107,63,160,0.18);
    transition: background 0.3s;
  }
  .service-item:first-child { border-left: none; }
  .service-item:hover { background: rgba(107,63,160,0.07); }

  .service-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.4rem;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 1px 6px rgba(107,63,160,0.35);
    line-height: 1;
    margin-bottom: 1.5rem;
  }

  .service-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 2;
    color: #4a2a7a; /* 濃い紫で目立たせる */
  }

  /* ── WORKS ── */
  #works { background: var(--off-white); }

  .works-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }

  .works-img-wrap {
    position: relative;
    overflow: hidden;
  }
  .works-img-wrap img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
  }
  .works-img-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 1rem 1.2rem;
    background: linear-gradient(to top, rgba(30,26,22,0.75), transparent);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.62rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
  }

  .works-body {
    font-size: 1rem;
    font-weight: 400;
    line-height: 2.2;
    color: var(--text-body);
    margin-bottom: 2rem;
  }

  .works-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
  }

  .tag {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.62rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 14px;
    border: 1px solid var(--gold-light);
    color: var(--accent);
  }

  /* ── MAMABAND ── */
  #mamaband { background: var(--white); }

  .mamaband-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }

  .mamaband-img-wrap {
    position: relative;
    overflow: hidden;
  }
  .mamaband-img-wrap img {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
    object-position: center 20%;
    display: block;
  }
  .mamaband-img-wrap::before {
    content: '';
    position: absolute;
    top: -12px; left: -12px;
    width: 60%;
    height: 60%;
    border-left: 2px solid var(--gold-light);
    border-top: 2px solid var(--gold-light);
    z-index: 1;
    pointer-events: none;
  }

  .mamaband-title-large {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 0.6rem;
  }

  .mamaband-tagline {
    font-family: 'Noto Serif JP', serif;
    font-size: 1rem;
    font-weight: 400;
    color: var(--gold);
    margin-bottom: 2rem;
    font-style: italic;
  }

  .mamaband-body {
    font-size: 0.97rem;
    font-weight: 400;
    line-height: 2.2;
    color: var(--text-body);
  }

  /* ── CONTACT ── */
  #contact { background: var(--off-white); text-align: center; }

  .contact-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 1rem;
  }

  .contact-sub {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-body);
    line-height: 2;
    margin-bottom: 3rem;
  }

  .contact-links {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
  }

  .contact-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-body);
    text-decoration: none;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--gold-light);
    transition: all 0.3s;
  }
  .contact-link:hover { color: var(--gold); border-color: var(--gold); }

  .contact-icon { width: 18px; height: 18px; }

  .contact-address {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-body);
    line-height: 2;
  }

  /* ── FOOTER ── */
  footer {
    background: var(--dark);
    color: rgba(255,255,255,0.45);
    padding: 2rem 4vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.62rem;
    font-weight: 300;
    letter-spacing: 0.14em;
  }

  /* ── ANIMATIONS ── */
  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .reveal.visible { opacity: 1; transform: none; }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    #top { grid-template-columns: 1fr; min-height: auto; }
    .hero-photo-col { height: 55vw; }
    .hero-text-col { padding: 3rem 5vw; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .about-grid { grid-template-columns: 1fr; gap: 2rem; }
    .profile-grid { grid-template-columns: 1fr; }
    .portrait-frame { max-width: 280px; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .service-item:nth-child(odd) { border-left: none; }
    .works-layout { grid-template-columns: 1fr; }
    .mamaband-layout { grid-template-columns: 1fr; }
  }

  @media (max-width: 600px) {
    section { padding: 4.5rem 5vw; }
    .services-grid { grid-template-columns: 1fr; }
    .service-item { border-left: none; border-top: 1px solid rgba(255,255,255,0.1); }
    .service-item:first-child { border-top: none; }
  }
/* ═══════════════════════════════════════════════
   追加スタイル(WordPress版で追加した部分)
   ═══════════════════════════════════════════════ */

/* ── ABOUT: 更新情報(コンサート予定) ── */
.about-news {
  margin-top: 4.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--gold-light);
  text-align: center;
}
.about-news-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.6rem;
}
.news-list {
  list-style: none;
  max-width: 640px;
  margin: 0 auto;
}
.news-item {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 1.6rem;
  padding: 1rem 0.2rem;
  border-bottom: 1px dashed var(--gold-light);
}
.news-item:first-child { border-top: 1px dashed var(--gold-light); }
.news-date {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  white-space: nowrap;
}
.news-title {
  font-size: 0.98rem;
  color: var(--text-body);
  line-height: 1.6;
}
.news-title a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s;
}
.news-title a:hover { border-color: var(--accent); }
.news-venue {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}
.news-empty { color: var(--text-muted); font-size: 0.9rem; }

/* ── PROFILE: 詳細はこちらボタン ── */
.btn-more {
  display: inline-block;
  margin-top: 2.2rem;
  padding: 0.95rem 2.8rem;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: 'Montserrat', 'Noto Serif JP', serif;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}
.btn-more:hover {
  background: var(--accent);
  color: var(--white);
}

/* ── 子ページ(プロフィール詳細)共通 ── */
.subpage-hero {
  position: relative;
  height: 340px;
  margin-top: var(--nav-h);
  background-image: url('../images/leaves.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.subpage-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(20, 26, 16, 0.28), rgba(20, 26, 16, 0.42));
}
.subpage-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
}
.subpage-hero-inner .subpage-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 0.8rem;
}
.subpage-hero-inner h1 {
  font-family: 'Cormorant Garamond', 'Noto Serif JP', serif;
  font-weight: 400;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  letter-spacing: 0.12em;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}

.subpage-section {
  padding: 5.5rem 4vw;
}
.subpage-section:nth-child(even) { background: var(--off-white); }
.subpage-inner { max-width: 900px; margin: 0 auto; }
.subpage-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 2.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.subpage-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gold-light);
}
.subpage-lead {
  font-size: 0.98rem;
  line-height: 2.1;
  color: var(--text-body);
  margin-bottom: 2.5rem;
}

/* ── 作品一覧 ── */
.works-list { list-style: none; }
.works-list li {
  display: flex;
  gap: 1.4rem;
  align-items: baseline;
  padding: 1.05rem 0.2rem;
  border-bottom: 1px solid var(--light);
}
.works-cat {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--gold);
  text-transform: uppercase;
  white-space: nowrap;
  min-width: 9em;
}
.works-name {
  font-size: 0.96rem;
  color: var(--text-body);
  line-height: 1.7;
}
.works-name small { color: var(--text-muted); }

/* ── 年表 ── */
.timeline {
  list-style: none;
  border-left: 1px solid var(--gold-light);
  padding-left: 2.2rem;
  margin-left: 0.4rem;
}
.timeline li {
  position: relative;
  padding-bottom: 2.1rem;
}
.timeline li::before {
  content: '';
  position: absolute;
  left: calc(-2.2rem - 5px);
  top: 0.5em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
}
.timeline-year {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 0.3rem;
}
.timeline-body {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--text-body);
}

@media (max-width: 640px) {
  .news-item { flex-direction: column; gap: 0.3rem; align-items: center; }
  .works-list li { flex-direction: column; gap: 0.25rem; }
  .subpage-hero { height: 250px; }
}

/* ── コンサート詳細ページ ── */
.concert-hero {
  background-image: url('../images/hero.jpg');
}
.concert-hero-date {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.25em;
  margin-top: 1rem;
  opacity: 0.95;
}
.concert-meta {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2.5rem;
}
.concert-meta th,
.concert-meta td {
  padding: 1.1rem 0.5rem;
  border-bottom: 1px solid var(--light);
  text-align: left;
  vertical-align: top;
  font-size: 0.96rem;
  line-height: 1.8;
}
.concert-meta th {
  width: 10em;
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.concert-meta td { color: var(--text-body); }
.concert-body { margin-bottom: 1rem; }
.concert-map {
  position: relative;
  width: 100%;
  padding-top: 56%;
  border: 1px solid var(--gold-light);
}
.concert-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.concert-map-address {
  margin-top: 0.9rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}
@media (max-width: 640px) {
  .concert-meta th { width: 7em; }
  .concert-map { padding-top: 75%; }
}

/* ── ナビ:Worksドロップダウン ── */
.nav-links .has-sub { position: relative; }
.nav-links .sub-menu {
  list-style: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--gold-light);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
  padding: 0.7rem 0;
  min-width: 230px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s;
  z-index: 100;
}
.nav-links .has-sub:hover .sub-menu,
.nav-links .has-sub:focus-within .sub-menu {
  opacity: 1;
  visibility: visible;
}
.nav-links .sub-menu a {
  display: block;
  padding: 0.6rem 1.5rem;
  white-space: nowrap;
}
@media (max-width: 900px) {
  /* モバイルメニュー展開時はドロップダウンをインライン表示 */
  .nav-links .sub-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    border: none;
    box-shadow: none;
    padding: 0.4rem 0 0 1.2rem;
    min-width: 0;
  }
}

/* ── WORKSページ:下層カード ── */
.works-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.works-card {
  display: block;
  text-decoration: none;
  border: 1px solid var(--light);
  background: #fff;
  transition: box-shadow 0.3s, transform 0.3s;
}
.works-card:hover {
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}
.works-card-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.works-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.works-card:hover .works-card-img img { transform: scale(1.05); }
.works-card-body { padding: 1.4rem 1.5rem 1.6rem; }
.works-card-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.5rem;
  letter-spacing: 0.06em;
}
.works-card-text {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--text-muted);
}
@media (max-width: 900px) {
  .works-cards { grid-template-columns: 1fr; }
}

/* ── お問い合わせフォーム ── */
.contact-form-wrap { max-width: 640px; }
.contact-form { margin-top: 2.5rem; }
.form-row { margin-bottom: 1.8rem; }
.form-row label {
  display: block;
  font-family: 'Noto Serif JP', serif;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: 0.6rem;
}
.form-row label em {
  color: #b0483f;
  font-style: normal;
  margin-left: 0.2em;
}
.form-row input[type="text"],
.form-row input[type="email"],
.form-row textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--gold-light);
  background: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color 0.25s;
}
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.form-submit { text-align: center; }
.form-result {
  margin: 2rem 0;
  padding: 1.1rem 1.4rem;
  font-size: 0.92rem;
  line-height: 1.8;
  text-align: center;
}
.form-success {
  border: 1px solid #7ba05b;
  background: #f2f7ec;
  color: #4a6b33;
}
.form-error {
  border: 1px solid #c0736b;
  background: #faf0ef;
  color: #8f4038;
}

/* ── トップページ:更新情報セクション ── */
.top-news-section {
  padding: 4.5rem 4vw 6rem;
  background: var(--off-white);
}
.top-news-section .about-news {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

/* 日英併記:カテゴリ内の英語表記 */
.works-cat [data-lang="en"] { font-size: 0.9em; margin-top: 0.1em; }

/* ── Profileページ:キャッチコピー・座右の銘 ── */
.profile-catch {
  font-family: 'Cormorant Garamond', 'Noto Serif JP', serif;
  font-size: 1.35rem;          /* 少し大きめ */
  line-height: 1.7;
  letter-spacing: 0.05em;
  color: #3f9e57;              /* 爽やかなグリーン */
  margin-bottom: 1.6rem;
}
.profile-catch-ja {
  display: block;
  font-family: 'Noto Serif JP', serif;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  margin-top: 0.6rem;
  color: #3f9e57;
}
.profile-motto {
  font-weight: 700;            /* 太字 */
  font-size: 1.12rem;          /* 少し大きめ */
  line-height: 2;
  letter-spacing: 0.06em;
  color: var(--text);
  margin-top: 2rem;
}

/* ── Main Achievementページ ── */
.works-video {
  margin-bottom: 2.5rem;
  border: 1px solid var(--light);
  background: #000;
}
.works-video video {
  display: block;
  width: 100%;
  height: auto;
}
.works-photo-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  align-items: start;
}
.works-photo-row img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--light);
}
.works-quote {
  border-left: 3px solid var(--gold);
  padding: 0.4rem 0 0.4rem 1.8rem;
  margin-bottom: 2rem;
}
.works-quote p {
  font-size: 0.98rem;
  line-height: 2.1;
  color: var(--text-body);
  margin-bottom: 1rem;
}
.works-quote p:last-child { margin-bottom: 0; }
.works-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--accent);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s;
}
.works-link:hover { border-color: var(--accent); }
.works-link-icon { width: 20px; height: 20px; flex-shrink: 0; }
.music-links { list-style: none; }
.music-links li {
  padding: 0.9rem 0.2rem;
  border-bottom: 1px dashed var(--gold-light);
}
.music-links li:first-child { border-top: 1px dashed var(--gold-light); }
@media (max-width: 640px) {
  .works-photo-row { grid-template-columns: 1fr; }
}

/* ── Artist Collaboration:下層ページへの大きな写真リンク ── */
.collab-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 2.5rem 0 3.5rem;
}
.collab-card {
  display: block;
  text-decoration: none;
  border: 1px solid var(--light);
  background: #fff;
  transition: box-shadow 0.3s, transform 0.3s;
}
.collab-card:hover {
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}
.collab-card img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.collab-card-title {
  padding: 1.1rem 1.4rem;
  font-family: 'Noto Serif JP', serif;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text);
}
@media (max-width: 700px) {
  .collab-cards { grid-template-columns: 1fr; }
}

/* ── フライヤー画像2枚並べ ── */
.flyer-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0;
  align-items: start;
}
.flyer-row img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--light);
}
@media (max-width: 700px) {
  .flyer-row { grid-template-columns: 1fr; }
}

/* ── Q&Aリスト ── */
.qa-list dt {
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--text);
  padding-top: 1.6rem;
  margin-bottom: 0.6rem;
  line-height: 1.8;
}
.qa-list dt:first-child { padding-top: 0; }
.qa-num {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  color: var(--gold);
  margin-right: 0.4em;
}
.qa-list dd {
  font-size: 0.95rem;
  line-height: 2;
  color: var(--text-body);
  padding-bottom: 1.4rem;
  border-bottom: 1px dashed var(--gold-light);
}

/* ── Contact Form 7 のデザイン調整 ── */
.contact-form .wpcf7 label {
  display: block;
  font-family: 'Noto Serif JP', serif;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: 1.6rem;
}
.contact-form .wpcf7 input[type="text"],
.contact-form .wpcf7 input[type="email"],
.contact-form .wpcf7 input[type="tel"],
.contact-form .wpcf7 textarea {
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--gold-light);
  background: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color 0.25s;
}
.contact-form .wpcf7 input:focus,
.contact-form .wpcf7 textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.contact-form .wpcf7 input[type="submit"] {
  display: inline-block;
  padding: 0.95rem 2.8rem;
  border: 1px solid var(--accent);
  background: none;
  color: var(--accent);
  font-family: 'Montserrat', 'Noto Serif JP', serif;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}
.contact-form .wpcf7 input[type="submit"]:hover {
  background: var(--accent);
  color: var(--white);
}
.contact-form .wpcf7 p:has(input[type="submit"]) { text-align: center; }
.contact-form .wpcf7-not-valid-tip {
  color: #8f4038;
  font-size: 0.82rem;
  margin-top: 0.3rem;
}
.contact-form .wpcf7 form .wpcf7-response-output {
  margin: 2rem 0 0;
  padding: 1.1rem 1.4rem;
  font-size: 0.92rem;
  text-align: center;
  border: 1px solid var(--gold-light);
}
.contact-form .wpcf7 form.sent .wpcf7-response-output {
  border-color: #7ba05b;
  background: #f2f7ec;
  color: #4a6b33;
}
.contact-form .wpcf7 form.invalid .wpcf7-response-output,
.contact-form .wpcf7 form.failed .wpcf7-response-output {
  border-color: #c0736b;
  background: #faf0ef;
  color: #8f4038;
}

/* ── Main Achievement:原神ビジュアル ── */
.genshin-visual {
  text-align: center;
  margin-bottom: 2.5rem;
}
.genshin-visual img {
  display: inline-block;
  width: 100%;
  max-width: 520px;
  height: auto;
  border: 1px solid var(--light);
}

/* ── Aboutページ:会社情報 ── */
.company-info { margin-top: 4.5rem; }
.company-block {
  padding: 1.8rem 0.2rem;
  border-bottom: 1px solid var(--light);
}
.company-block:first-of-type { border-top: 1px solid var(--light); }
.company-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.08rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: 0.8rem;
}
.company-address {
  font-size: 0.95rem;
  line-height: 2;
  color: var(--text-body);
}
.company-address-en {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 0.88rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

/* ── 更新情報:アイキャッチ画像(日付の左) ── */
.news-item { align-items: center; }
.news-thumb {
  flex-shrink: 0;
  width: 90px;
  height: 60px;
}
.news-thumb img {
  width: 90px;
  height: 60px;
  object-fit: cover;
  display: block;
  border: 1px solid var(--light);
}
.news-thumb-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 60px;
  background: var(--off-white);
  border: 1px solid var(--light);
}
.news-thumb-placeholder img {
  width: 34px;
  height: auto;
  border: none;
  opacity: 0.45;
}
@media (max-width: 640px) {
  .news-item { align-items: center; }
  .news-thumb { margin-bottom: 0.2rem; }
}

/* ── アイキャッチ拡大モーダル ── */
.news-thumb-zoom {
  padding: 0;
  border: none;
  background: none;
  cursor: zoom-in;
  display: block;
}
.msg-modal {
  position: fixed;
  inset: 0;
  background: rgba(20, 18, 15, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 4vw;
}
.msg-modal.open { display: flex; }
.msg-modal-img {
  max-width: 92vw;
  max-height: 88vh;
  width: auto;
  height: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  cursor: default;
}
.msg-modal-close {
  position: absolute;
  top: 18px;
  right: 24px;
  font-size: 2.4rem;
  line-height: 1;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.msg-modal-close:hover { opacity: 1; }

/* ── Aboutページ:全体背景と2カラムプロフィール ── */
.about-page {
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
  margin-top: var(--nav-h);
}
.about-page .subpage-section,
.about-page .subpage-section:nth-child(even) {
  background: transparent;   /* 背景画像を透かすためセクション背景を無効化 */
}
.about-profile-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 3rem;
  align-items: start;
}
.about-profile-img img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--light);
}
@media (max-width: 800px) {
  .about-profile-grid { grid-template-columns: 1fr; }
  .about-page { background-attachment: scroll; }
}

/* ── WORKSヘッダー:サービス一覧テキスト ── */
.works-hero-services {
  font-family: 'Noto Serif JP', serif !important;
  font-weight: 400;
  font-size: clamp(0.95rem, 2.2vw, 1.25rem) !important;
  line-height: 2 !important;
  letter-spacing: 0.08em !important;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 4vw;
}

/* ── WORKS:主な実績見出し ── */
.works-heading-section {
  padding-top: 7rem !important;    /* 天地を広げて文字を上下中央に */
  padding-bottom: 7rem !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.works-main-heading {
  font-family: 'Cormorant Garamond', 'Noto Serif JP', serif;
  font-weight: 400;
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  letter-spacing: 0.12em;
  text-align: center;
  color: var(--text);
}
.works-main-heading [data-lang="en"] {
  font-size: 0.5em;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.5em;
}

/* ── WORKS:原神ライブコンサート ギャラリー ── */
.works-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}
.works-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  border: 1px solid var(--light);
}
@media (max-width: 700px) {
  .works-gallery { grid-template-columns: repeat(2, 1fr); }
}

/* ── WORKS:REC & ALBUM ビジュアル ── */
.rec-album-visual {
  text-align: center;
  margin-bottom: 2.5rem;
}
.rec-album-visual img {
  display: inline-block;
  width: 100%;
  max-width: 520px;
  height: auto;
  border: 1px solid var(--light);
}

/* ── Collaboration:文字だけのヘッダー ── */
.collab-plain-header {
  margin-top: var(--nav-h);
  padding: 7rem 4vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--off-white);
}

/* ── Yang Yongliangページ:中央ポートレート ── */
.yang-portrait {
  text-align: center;
  margin-bottom: 3rem;
}
.yang-portrait img {
  display: inline-block;
  width: 100%;
  max-width: 420px;
  height: auto;
  border: 1px solid var(--light);
}

/* ── Wonderlens/MINIESE:文字なしヘッダー ── */
.wonderlens-hero::after { display: none; }  /* 暗いオーバーレイを無効化(白50%で薄く) */

/* ── MamaBand:文字なしヘッダー ── */
.mamaband-hero::after { display: none; }  /* 暗いオーバーレイを無効化 */

/* ── MamaBand:フォトコラージュ(重なりながら散りばめる) ── */
.mama-collage {
  position: relative;
  margin-top: 4rem;
  padding-bottom: 118%;   /* コラージュ領域の高さ */
}
.mama-collage .mc {
  position: absolute;
  display: block;
  background: #fff;
  padding: 6px;
  border: 1px solid var(--light);
  box-shadow: 0 8px 24px rgba(40, 30, 20, 0.18);
  transition: transform 0.35s, z-index 0s, box-shadow 0.35s;
}
.mama-collage .mc:hover {
  transform: scale(1.06) rotate(0deg) !important;
  z-index: 20;
  box-shadow: 0 16px 40px rgba(40, 30, 20, 0.28);
}
.mc1 { top: 0;    left: 1%;  width: 31%; transform: rotate(-4deg); z-index: 3; }
.mc2 { top: 3%;   left: 27%; width: 24%; transform: rotate(3deg);  z-index: 5; }
.mc3 { top: 1%;   left: 48%; width: 39%; transform: rotate(-2deg); z-index: 2; }
.mc4 { top: 24%;  left: 5%;  width: 30%; transform: rotate(2.5deg); z-index: 6; }
.mc5 { top: 21%;  left: 36%; width: 23%; transform: rotate(-3deg); z-index: 4; }
.mc6 { top: 25%;  left: 60%; width: 27%; transform: rotate(4deg);  z-index: 3; }
.mc7 { top: 58%;  left: 2%;  width: 26%; transform: rotate(-3.5deg); z-index: 5; }
.mc8 { top: 63%;  left: 27%; width: 36%; transform: rotate(2deg);  z-index: 7; }
.mc9 { top: 65%;  left: 62%; width: 30%; transform: rotate(-4deg); z-index: 4; }

@media (max-width: 640px) {
  /* スマホは2列の軽い重なりレイアウトに */
  .mama-collage { padding-bottom: 0; }
  .mama-collage .mc {
    position: static;
    display: inline-block;
    width: 47% !important;
    margin: -2% 1% 3%;
    vertical-align: top;
  }
}
