@charset "UTF-8";

/*テンプレートファイル表示
---------------------------------------------------------------------------*/
h1.temp_name {
    display: none;
    
	font-size: 1.2rem;
	font-weight: normal;
	text-align: center;
	color: #FFFFFF;
	margin: 1em auto;
}
h1.temp_name span {
    color: #FF0000;
}

/*全体の設定
---------------------------------------------------------------------------*/
:root {
  --bg: #0b0b0b;
  --card: #121212;
  --ink: #f7f7f7;
  --muted: #bdbdbd;
  --accent: #4aa3ff;
  --accent-2: #7b60ff;
  --border: #2a2a2a;
  --rougan: #cccccc;
  --maxw: 100%;
}
* {
  box-sizing: border-box;
}
html, body {
  height: 100%;
}
html {
  scroll-behavior: smooth;
  font-size: 62.5%; /* font-sizeは16pxの62.5%の10px */
}
body {
  margin: 0;
  font-family: "Noto Sans JP", system-ui, -apple-system, Segoe UI, Roboto, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  color: var(--ink);
  /*background: radial-gradient(1200px 600px at 20% -10%, #151515, transparent 50%), var(--bg);*/
	background-color: #000;
  font-size: 1.4rem; /*font-size : 14px と同等*/
  line-height: 1.6;
	
	color: var(--rougan);
}

/* うにょ〜ん専用クラス */
.bg-radial-top {
  background:
    radial-gradient(1200px 600px at 20% -10%, #333, transparent 50%),
    #000;
}
h1,h2,h3,h4,h5,h6 {
	font-family: "TBUDゴシック E", "TBUDGothic E", sans-serif;
	margin: 0;
	padding: 0;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
	color: #FFF;
	text-decoration: none;
}
a:hover {
  /*text-decoration: underline;*/
  text-underline-offset: 0.3em;
}
.container {
  width: min(92vw, var(--maxw));
  margin-inline: auto;
    
}
.section {
  padding: clamp(48px, 6vw, 96px) 0;
  position: relative;
}
.fa-fw {
    margin-right: 0.2em;
}

/* フェードイン＋スクロールアニメ
---------------------------------------------------------------------------*/
[data-animate="fade"] {
  opacity: 0;
  transform: translateY(32px); /* ちょい大きく動かす */
  transition:
    opacity .7s ease-out, transform .7s cubic-bezier(.22, .61, .36, 1); /* すこしメリハリ */
}
/* 画面内に入ったとき */
[data-animate="fade"].is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* 動きを苦手な人向け：アニメなし */
@media (prefers-reduced-motion: reduce) {
  [data-animate="fade"] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ================== ヘッダー ================== */
:root {
  --header-h: 64px;
}
/* ヘッダー：初期は白、スクロール開始でほんのり透過 */
.site-header{
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #fff;                 /* ← background ではなく background-color に */
  border-bottom: 1px solid #c6cfd6;
  transition: background-color .2s ease,  /* なめらかに */
              box-shadow .18s ease;
}
.site-header.is-scrolled{
  background-color: rgba(255,255,255,.92); /* ← お好みで .96 〜 .9 に調整可 */
}

.site-header .container {
  width: min(96vw, var(--maxw)); /* 両サイドのスペース調製：92→96で左右2vwずつ狭く */
}
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: var(--header-h);
  padding: 0 8px;
}
/* 中央ロゴ：常にヘッダーの横センター */
.brand {
  justify-self: center;
  text-decoration: none;
  color: #000;
  display: flex;
  align-items: center;
  gap: .25rem;
}
.brand-logo {
  width: 140px;
}
.brand-logo img {
  display: block;
  width: 100%;
  height: auto;
}
/* 左：MENU（PCは無効）*/
.nav-toggle {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: none;
  border: 0;
  padding: 0;
  color: #000;
  font-size: 1.4rem;
  letter-spacing: .12em;
  cursor: default;
  pointer-events: none;
}
/* 既存の .nav-toggle-bar は常に隠す */
.nav-toggle-bar {
  display: none !important;
}
/* 右：グローバルナビ */
.global-nav {
  justify-self: end;
}
.global-nav ul {
  display: flex;
  /*gap: 1.5rem;*/
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 1.4rem;
}
.global-nav ul li::after{
  content: "｜";
  margin: 0 0.5em;
}
/* 最後の li だけ、縦線を消す */
.global-nav ul li:last-child::after{
  content: "";
  margin: 0;
}
.global-nav a {
  color: #000;
  text-decoration: none;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.global-nav a:hover {
  text-decoration: underline;
}
.nav-close {
  display: none;
}

/* ====== スマホ（800〜） ====== */
@media (max-width:800px) {
  .nav-toggle {
    cursor: pointer;
    pointer-events: auto;
    padding-right: 28px;
  }
  .nav-toggle::after {
    content: "";
    display: inline-block;
    width: 22px;
    height: 14px;
    background: linear-gradient(#000, #000) 0 0/100% 2px, linear-gradient(#000, #000) 0 6px/100% 2px, linear-gradient(#000, #000) 0 12px/100% 2px;
    background-repeat: no-repeat;
  }
  .global-nav {
    display: none;
  }
  body.nav-open .global-nav {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, .8); /* 背景は半透明 */
    padding: calc(var(--header-h) + 8px) 16px 24px;
    border-bottom: 1px solid #dde3e8;
  }
  body.nav-open .global-nav ul {
    flex-direction: column;
    gap: .75rem;
  }
  body.nav-open .global-nav ul li {
    border-bottom: 1px dotted #333;
    padding: 0 0 1em;
  }
	.global-nav ul li:last-child::after{
  content: "";
  margin: 0;
}
  body.nav-open {
    overflow: hidden; /* 画面裏スクロール抑止 */
  }
  .nav-close {
    display: inline-block;
    float: right; /* 右寄せ（親はそのまま） */
    margin: 8px 8px 6px;
    padding: 6px 10px;
    font-size: 4rem;
    line-height: 1;
    background: none;
    border: 0;
    color: #000;
  }
  /* floatの回り込み解除 */
  .global-nav::after {
    content: "";
    display: table;
    clear: both;
  }
}

/* ================= パンくずリスト ================= */
.breadcrumb-wrap {
  /*max-width: 1120px;*/
    max-width: 980px;
  margin: 0 auto;
  padding: 8px 20px 0;
  font-size: 1.2rem; /* 12px相当：本文より一段小さい */
}
.breadcrumb {
  font-size: 1em; /* 親（1.2rem）をそのまま継承 */
}
.breadcrumb__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4em;
}
.breadcrumb__item {
  display: flex;
  align-items: center;
}
.breadcrumb__item + .breadcrumb__item::before {
  font-family: "Font Awesome 6 Free"; 
  font-weight: 900;        
  content: "\f105"; 
  margin: 0 0.4em;
  opacity: 0.6;          
}
.breadcrumb__item a {
  color: #FFF;
  text-decoration: underline;
  opacity: 0.8;
}
.breadcrumb__item a:hover {
  opacity: 1;
}
.breadcrumb__item--home i {
  margin-right: 0.4em;
}

/* ================= ファーストビュー＆キャッチコピー ================= */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  background-color: #fff;
  color: #000;
  overflow: hidden;
}
/* 追加：透明な格子状のテクスチャ（網模様）をかぶせる */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/hero/overlays/07.png");
  background-repeat: repeat;
  /* opacity: 0.3; 網模様の濃さ：調整可能 */
  pointer-events: none; /* 動画の操作を邪魔しない */
  z-index: 1;
}
/* 背景スライダー */
.hero-slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .9s ease; /* ← JSのTRANSITION_MSと合わせる */
  background: #fff;
  background-size: cover;
  background-position: center;
}
/* picture をスライド全面に広げる */
.hero-slide > picture {
  position: absolute;
  inset: 0;
  display: block;
}
/* 実際に描画される要素（img / video）は全面フィット */
.hero-slide > picture > img,
.hero-slide > video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* 表示中 */
.hero-slide.is-active {
  opacity: 1;
}
/* フェードアウト中：is-activeは残したまま透明にする */
.hero-slide.is-active.is-leaving {
  opacity: 0;
}

/* ===== Hero 画像スライドのほんのりズーム（Ken Burns風） ===== */
:root {
  --kb-dur: 8s; /* アニメ時間 */
  --kb-scale: 1.06; /* 1.03〜1.08くらいが上品 */
}
/* 画像が直書き<img>でも<picture><img></picture>でも両対応 */
.hero-slide.is-active > img, .hero-slide.is-active picture > img {
  will-change: transform;
  transform-origin: center center;
  animation: kb-zoom var(--kb-dur) ease-in-out both;
}
/* 低モーションユーザーは無効化 */
@media (prefers-reduced-motion: reduce) {
  .hero-slide.is-active > img, .hero-slide.is-active picture > img {
    animation: none;
  }
}
/* モバイルは少し控えめ（任意） */
@media (max-width: 768px) {
  :root {
    --kb-scale: 1.04;
    --kb-dur: 6s;
  }
}
/* キーフレーム */
@keyframes kb-zoom {
  from {
    transform: scale(1) translate3d(0, 0, 0);
  }
  to {
    transform: scale(var(--kb-scale)) translate3d(0, 0, 0);
  }
}

/* 中身のレイアウト */
.hero-inner {
  position: relative;
  z-index: 1;
  width: min(92vw, var(--maxw));
  margin-inline: auto;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  justify-content: center;
}
/* 縦横センターのキャッチコピー */
.hero-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-title {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "游明朝", "Yu Mincho", serif; /* 明朝系 */
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 2;
  margin: 0;
  letter-spacing: 0.2em;
  color: #FFF;
}
/* Photo クレジット（左下固定） */
.hero .credit {
  position: absolute;
  left: 16px;
  bottom: 16px;
  color: #FFF;
  font-size: 1.2rem;
}

/* ================= 新着情報 ================= */
.news {
  position: absolute;
  left: 50%;
  bottom: 8%;
  transform: translateX(-50%);
  width: min(96vw, var(--maxw));
  background: #fff;
  border: 1px solid #c6cfd6;
  border-radius: 6px;
  padding: 1rem 1.2rem 1rem;
  box-shadow: 0 6px 22px rgba(0, 0, 0, .05);
}
/* タブ本体 */
.news-tab {
  position: absolute;
  top: -0.5rem;
  left: 1rem;
  transform: translateY(-50%);
  margin: 0;
}
.news-tab__label {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .28rem .85rem;
  line-height: 1;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: .06em;
  color: #fff;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--accent, #4aa3ff), var(--accent-2, #7b60ff));
  box-shadow: 0 2px 6px rgba(0, 0, 0, .12);
  position: relative;
}
/* タブとカードを“つなぐ”スリット */
.news-tab__label::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translate(-50%, 0);
  width: 1px;
  height: 8px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, .12), transparent);
}
/* リスト */
.news-list {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
  font-size: 1.6rem;
}
.news-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.news-list time {
  font-variant-numeric: tabular-nums;
  color: #333;
  min-width: 5.5em; /* 数字幅で見やすく */
}
.news-more {
  display: none;
}
.news a {
	color: #0000FF;
	text-decoration: underline;
}

/* ---- SP 調整 ---- */
@media (max-width: 768px) {
  .news {
    bottom: 6%;
    padding: .9rem 1rem;
    border-radius: 10px;
  }
  .news-tab {
    left: .9rem;
  }
  .news-tab__label {
    /*font-size: .76rem;
    padding: .24rem .72rem;*/
  }
}

/* ================== 新着情報：single / archive ================== */
.news-single, .news-archive {
  /*max-width: 1120px;*/
    max-width: 980px;
  margin: 0 auto;
  padding: 64px 20px 96px;
}
/* 見出しまわり */
.news-single__eyebrow, .news-archive__eyebrow {
  font-size: 1.2rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.7;
  margin: 0 0 4px;
}
.news-single__title {
  font-size: 2.2rem;
  margin: 0 0 10px;
  line-height: 1.5;
}
.news-archive__title {
  font-size: 2.0rem;
  margin: 0 0 16px;
}
.news-archive__desc {
  font-size: 1.4rem;
  opacity: 0.8;
  margin: 0 0 8px;
}
/* メタ情報 */
.news-single__meta {
  font-size: 1.3rem;
  opacity: 0.8;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 12px;
}
.news-single__date, .news-archive__date {
  letter-spacing: 0.08em;
}
.news-single__cat a {
  color: inherit;
  text-decoration: none;
}
.news-single__cat a:hover {
  text-decoration: underline;
}

/* 本文 */
.news-single__content {
  margin-top: 24px;
  font-size: 1.6rem;
  line-height: 1.8;
}

/* single：前後ナビ & 一覧リンク */
.news-single__footer {
  margin-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 16px;
}
.news-single__nav {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 1.3rem;
}
.news-single__nav a {
  text-decoration: underline;
	color: #FFF;
}
.news-single__back-wrap {
  margin-top: 16px;
}
.news-single__back-wrap a {
  color: #FFF !important;
}
.news-single__back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  font-size: 1.3rem;
  text-decoration: none;
  letter-spacing: 0.08em;
  background: transparent;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.news-single__back:hover {
  background: #fff;
  color: #000 !important;
  border-color: #fff;
}

/* archive：リスト */
.news-archive__list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.news-archive__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.news-archive__link {
  display: flex;
  gap: 16px;
  align-items: baseline;
  padding: 10px 0;
  text-decoration: none;
  color: inherit;
}
.news-archive__item-title {
  font-size: 1.5rem;
}
.news-archive__link:hover .news-archive__item-title {
  text-decoration: underline;
}

/* SP */
@media (max-width: 768px) {
  .news-single, .news-archive {
    padding-top: 40px;
  }
  .news-archive__link {
    flex-direction: column;
    gap: 4px;
  }
}

/* ▼ アーカイブ共通のページネーション（news & kotonoha） */
.news-archive__pager {
  margin: 40px 0 60px;
  text-align: center;
}
/* nav のデフォルト余白を消す（テーマによっては効いてることがある） */
.news-archive__pager .navigation.pagination {
  margin: 0;
}
/* ul.page-numbers をフレックスで横並びに */
.news-archive__pager .page-numbers {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  padding: 6px 10px;
  margin: 0;
  border: 1px solid #444;
  background: #111; /* 黒背景サイトになじむ帯 */
  border-radius: 3px;
}
/* 各 li の余白（お好みで） */
.news-archive__pager .page-numbers li {
  margin: 0 2px;
}
/* 通常のページ番号リンク＆現在ページの共通スタイル */
.news-archive__pager .page-numbers a, .news-archive__pager .page-numbers span {
  display: inline-block;
  min-width: 28px;
  padding: 4px 8px;
  border-radius: 2px;
  border: 1px solid transparent;
  font-size: 1.4rem;
  line-height: 1.6;
  text-align: center;
  text-decoration: none;
  color: #ffffff;
  background: transparent;
}
/* visited でも色が変わらないように */
.news-archive__pager .page-numbers a:visited {
  color: #ffffff;
}
/* ホバー時：ちょっと白枠＆濃い背景 */
.news-archive__pager .page-numbers a:hover {
  border-color: #ffffff;
  background: #333333;
}
/* 現在のページ（ヤフーの青反転ポジを白反転で） */
.news-archive__pager .page-numbers .current {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
  cursor: default;
}
/* 「前へ」「次へ」は少し横長に */
.news-archive__pager .page-numbers .prev, .news-archive__pager .page-numbers .next {
  padding: 4px 12px;
}
/* … の部分はシンプルに */
.news-archive__pager .page-numbers .dots {
  border: none;
  background: transparent;
  padding: 4px 4px;
  cursor: default;
}

/* ================== ナレーターサンプル（index.php） ================== */
/* セクション全体 */
.narr-hero {
  position: relative;
  padding: clamp(60px, 8vw, 120px) 0;
  /*background: #000;*/
  overflow: hidden;
  /*color: #fff;*/
    
    max-width: 980px;
    width: 100%;
    margin: 0 auto;
}
/* 背景マイク画像（PC・スマホ共通） */
.narr-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/common/page_BG0.png');
  background-size: contain; /* ← 切れ防止 */
  background-repeat: no-repeat;
  background-position: right center; /* ← 右に寄せる */
  z-index: 0;
  opacity: 1;
}
/* 左側テキストエリア */
.narr-hero__body {
  position: relative;
  z-index: 2;
  width: min(92vw, 640px);
  padding-left: clamp(16px, 4vw, 32px);
}
/* 左側暗幕（見やすくするため） */
.narr-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  /*background: linear-gradient(90deg, rgba(0, 0, 0, .92) 0%, rgba(0, 0, 0, .88) 40%, rgba(0, 0, 0, .55) 65%, rgba(0, 0, 0, 0) 90%);*/
  z-index: 1;
}
/* 英語タイトル（小さく上に） */
.narr-hero__eyebrow {
  font-size: 1.4rem;
  letter-spacing: .08em;
  color: #dadada;
  margin-bottom: .4rem;
  text-shadow: 0 2px 6px rgba(0, 0, 0, .85);
}
/* メインタイトル */
.narr-hero__title {
  font-size: clamp(2.4rem, 3.8vw, 3.2rem);
  font-weight: 700;
  margin: 0 0 1.6rem 0;
  /*color: #fff;*/
  text-shadow: 0 2px 6px rgba(0, 0, 0, .92);
}
/* 説明文（箇条書き） */
.narr-hero__lead {
  list-style: none;
  margin: 0 0 2rem 0;
  padding: 0;
}
.narr-hero__lead li {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "游明朝", "Yu Mincho", serif; /* 明朝系 */
  font-size: 1.8rem;
  line-height: 1.6;
  margin-bottom: .4rem;
  color: #f6f6f6;
  text-shadow: 0 2px 4px rgba(0, 0, 0, .85);
}

/* ボタン群 */
.narr-hero__buttons {
  display: flex;
  gap: 1em;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  flex-direction: column;
	text-align: center;
}
/* ボタン本体 */
.btn-ghost {
  padding: .6rem 1.4rem;
  font-size: 1.6rem;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, .9);
  color: #fff;
	
  /* フォールバック */
  background: rgba(0, 0, 0, .35);
	
  backdrop-filter: blur(3px);
  transition: .2s ease;
  text-shadow: 0 1px 3px rgba(0, 0, 0, .6);
  width: min(92vw, 160px); /* ボタンの幅 */
}
.btn-ghost2 {
  padding: .6rem 1.4rem;
  font-size: 1.6rem;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, .9);
  color: #fff;
	
    /* フォールバック */
  background: rgba(0, 0, 0, .35);
	
  backdrop-filter: blur(3px);
  transition: .2s ease;
  text-shadow: 0 1px 3px rgba(0, 0, 0, .6);
  width: min(92vw, 280px); /* ボタンの幅 */
}
/* blur 対応ブラウザだけ */
@supports ((-webkit-backdrop-filter: blur(3px)) or (backdrop-filter: blur(3px))) {
  .btn-ghost, .btn-ghost2 {
    background: rgba(255, 255, 255, .08);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
  }
}

.btn-ghost:hover, .btn-ghost2:hover {
  background: rgba(255, 255, 255, .15);
}

/* クレジット */
.narr-hero__credit {
  font-size: 1.2rem;
  margin-top: 1rem;
  color: #ccc;
  text-shadow: 0 1px 3px rgba(0, 0, 0, .6);
}
/* ======= レイアウト調整（スマホ） ======= */
@media (max-width: 768px) {
  .narr-hero {
    padding: 48px 0 72px;
  }
  .btn-ghost {
    font-size: 1.4rem;
    padding: .5rem 1.2rem;
  }
}

/* ================== ナレーターサンプル（single-narration.php） ================== */
/* ラベル＋秒数を横並びヘッダーっぽく */
.narration__samples-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}
.narration-single {
  /*max-width: 1120px;*/
    max-width: 980px;
  margin: 0 auto;
  padding: 64px 20px 96px;
}
/* --- header（名前＋サムネ） --- */
.narration__header {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(260px, 1.3fr);
  gap: 32px;
  align-items: flex-end;
  margin-bottom: 48px;
}
.narration__name-block {
  min-width: 0;
}
.narration__name {
  font-size: clamp(2.2rem, 3vw, 2.6rem);
  letter-spacing: 0.08em;
  margin: 0 0 8px;
  line-height: 1.15;
}
.narration__kana {
  font-size: 1.4rem;
  opacity: 0.7;
  margin: 0 0 4px;
}
.narration__type {
  display: inline-block;
  margin-top: 8px;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.narration__thumb {
  aspect-ratio: 4 / 3; /* ★ ここで4:3固定 */
  overflow: hidden; /* はみ出した部分はカット */
}
.narration__thumb img {
  display: block;
  width: 100%;
  height: 100%; /* コンテナにフィット */
  object-fit: cover; /* 縦横比を保ったまま、はみ出しカット */
  border-radius: 14px;
}
/* --- section title --- */
.narration__section-title {
  font-size: 1.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 16px;
  display: flex;
  gap: 8px;
  align-items: baseline;
}
.narration__section-title span {
  font-size: 1.2rem;
  opacity: 0.6;
}

/* --- profile --- */
.narration__profile {
  margin: 40px 0 48px;
}
.narration__profile-text {
  line-height: 1.8;
  font-size: 1.6rem;
  border-left: 3px solid rgba(255, 255, 255, .6);
  padding-left: .8em;
}

/* --- samples --- */
.narration__samples {
  margin: 40px 0 56px;
}
.narration__samples-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.narration__samples-item {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 16px 18px 14px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(4px);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.narration__samples-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.35);
}
.narration__samples-label {
  font-size: 1.2rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.8;
  margin: 0;
  padding: 2px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.narration__samples-title {
  font-size: 1.6rem;
  font-weight: 600;
  margin: 8px 0 12px;
}
.narration__samples-audio audio {
  width: 100%;
  max-width: 100%;
  display: block;
}
.narration__samples-length {
  margin: 0;
  font-size: 1.1rem;
  opacity: 0.7;
}
/* --- links（本文ゾーン） --- */
.narration__links {
  margin-bottom: 40px;
    font-size: 1.6rem;
    line-height: 1.6;
}
.narration__links a {
  text-decoration: underline;
    color: #FFF;
}
/* --- footer note --- */
.narration__footer-note {
  font-size: 1.4rem;
  line-height: 1.6;
  opacity: 0.7;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 1em;
}
.narration__footer-note p {
  margin: 0;
  padding: 0;
}
.narration__footer-note a {
    color: #FFF;
    text-decoration: underline;
}
.narration__alias {
  font-size: 1.3rem;
  opacity: 0.75;
  letter-spacing: 0.06em;
  margin-top: 2px;
}

/* --- SP --- */
@media (max-width: 768px) {
  .narration-single {
    padding-top: 40px;
  }
  .narration__header {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .narration__thumb {
    max-width: 420px;
  }
}

/* --- 外部リンク --- */
.narration__external-links {
  margin: 32px 0 40px;
}
.narration__external-links-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.narration__external-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 4px;
  letter-spacing: 0.06em;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.04);
  font-size: 1.4rem; /* 基本14pxベースにちょい大きめ */
  text-decoration: none;
  color: inherit;
  transition:
    background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.narration__external-link-btn:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.45);
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.45);
}
.narration__external-link-text {
  letter-spacing: 0.04em;
}
.narration__external-link-icon {
  font-size: 1.1rem;
  opacity: 0.8;
}
/* SP では横幅詰まりすぎないように */
@media (max-width: 768px) {
  .narration__external-links-list {
    gap: 8px;
  }
  .narration__external-link-btn {
    font-size: 1.2rem;
    padding: 7px 12px;
  }
}

/* ================== ナレーターサンプル一覧（archive-narration.php） ================== */
.narration-archive {
  /*max-width: 1120px;*/
    max-width: 980px;
  margin: 0 auto;
  padding: 64px 20px 96px;
}
.narration-archive a {
  color: #fff !important;
}

/* ヘッダー */
.narration-archive__header {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(260px, 1.5fr);
  gap: 32px;
  /*align-items: flex-end;*/
	align-items: center;
	
  margin-bottom: 40px;
}
.narration-archive__intro {
  min-width: 0;
}
.narration-archive__title {
  font-size: 2.4rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 12px;
}
.narration-archive__lead {
  font-size: 1.8rem;
    font-family: "Noto Serif JP", "Hiragino Mincho ProN", "游明朝", "Yu Mincho", serif; /* 明朝系 */
  line-height: 1.6;
  margin: 0;
}

/* ヘッダー内の検索ボックス */
.narration-archive__search--header {
  /*align-self: stretch;*/
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.narration-archive__search-title {
font-size: 1.4rem;
  margin-bottom: 4px;
}

/* ブロック（男性・女性・外国人）をカード風に */
.narration-archive__block {
  margin: 40px 0;
  padding: 24px 24px 28px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(600px 300px at 0% 0%, rgba(255, 255, 255, 0.06), transparent 60%), rgba(255, 255, 255, 0.02);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
  scroll-margin-top: 80px; /* アンカー用は残す */
}
/* 左端にアクセントライン */
.narration-archive__block::before {
  content: "";
  position: absolute;
  inset: 0;
  border-left: 3px solid rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  pointer-events: none;
  opacity: 0.8;
}
/* アンカーで飛んだときのヘッダーかぶり対策 */
.narration-archive__block {
  scroll-margin-top: 80px; /* 固定ヘッダー高さに合わせて調整してOK */
}
.narration-archive__block-title {
  font-size: 2.0rem;
  margin: 0 0 18px;
  letter-spacing: 0.08em;
}
/* 行ごとのラッパー */
.narration-archive__gyo {
  margin-bottom: 16px;
}
.narration-archive__gyo-head {
  margin-bottom: 4px;
}
.narration-archive__gyo-label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 1.4rem;
  padding: 2px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.3);
  letter-spacing: 0.08em;
}
/* 名前一覧（折り返し） */
.narration-archive__gyo-list a {
  /*color: #FFF;*/
}
.narration-archive__gyo-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6em 1.4em;
  padding-left: 6px;
}
.narration-archive__name {
  position: relative;
  font-size: 1.6rem;
  text-decoration: none;
  padding: 2px 0;
  opacity: 0.9;
}
.narration-archive__name::before {
    content: "・";
    margin-right: 0.2em;
}
.narration-archive__name::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.9);
  transition: width 0.15s ease;
}
.narration-archive__name:hover {
  opacity: 1;
}
.narration-archive__name:hover::after {
  width: 100%;
}

/* 0件のときの表示 */
.narration-archive__empty {
  font-size: 1.4rem;
  opacity: 0.7;
  margin: 6px 0 0;
}

/* 検索ボックス */
.narration-archive__search-form {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
}
.narration-archive__search-form input[type="search"] {
  flex: 1 1 auto;
  padding: 6px 10px;
  font-size: 1.4rem;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.2);
  color: inherit;
}
.narration-archive__search-form button {
  padding: 6px 16px;
  font-size: 1.4rem;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  color: inherit;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.narration-archive__search-form button:hover {
  background: #fff;
  color: #000;
}

/* SPでは縦積みに戻す */
@media (max-width: 768px) {
  .narration-archive__header {
    grid-template-columns: 1fr;
  }
  .narration-archive__search--header {
    margin-top: 16px;
  }
  .narration-archive__search-form {
    flex-wrap: wrap;
  }
  .narration-archive__search-form input[type="search"] {
    flex: 1 1 100%;
  }
}

/* 追悼リンク */
.narration-archive__memorial-link {
	border: 1px solid #FFF;
  font-size: 1.4rem;
  margin: 1em 0;
	padding: 1em 1.5em;
	display: inline-block;
}
.narration-archive__memorial-link a {
	color: #FFF;
  text-decoration: none;
}

/* SP調整 */
@media (max-width: 768px) {
  .narration-archive {
    padding-top: 40px;
  }
  .narration-archive__lead {
    font-size: 1.5rem;
  }
  .narration-archive__block {
    margin-bottom: 40px;
  }
}

/* ================== ご挨拶（index.php） ================== */
.greet-hero {
  position: relative;
  padding: clamp(60px, 8vw, 120px) 0;
  /*background: #000;*/
  overflow: hidden;
  /*color: #fff;*/
    
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
}
/* 背景マイク画像（ナレーションと同じノリ） */
.greet-hero__bg {
  position: absolute;
  inset: 0;
  /*background-image: url('../img/common/page_BG.png');*/ /* ←好きなファイル名に変更OK */
  background-size: contain; /* 切れ防止 */
  background-repeat: no-repeat;
  background-position: right center; /* 右寄せ（少し中に入れるなら 88〜92% とかに調整） */
  z-index: 0;
  opacity: 1;
}
/* 左側テキストエリア */
.greet-hero__inner {
  position: relative;
  z-index: 2;
}
.greet-hero__body {
  width: min(92vw, 640px);
  padding-left: clamp(16px, 4vw, 32px);
}
/* 左側暗幕（文字を読みやすく） */
.greet-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  /*background: linear-gradient(90deg, rgba(0, 0, 0, .92) 0%, rgba(0, 0, 0, .88) 40%, rgba(0, 0, 0, .55) 65%, rgba(0, 0, 0, 0) 90%);*/
  z-index: 1;
}
/* 英語タイトル */
.greet-hero__eyebrow {
  font-size: 1.4rem;
  letter-spacing: .12em;
  color: #dadada;
  margin-bottom: .4rem;
  text-shadow: 0 2px 6px rgba(0, 0, 0, .85);
}
/* 見出し */
.greet-hero__title {
  font-size: clamp(2.4rem, 3.2vw, 3rem);
  font-weight: 700;
  margin: 0 0 1.6rem;
  text-shadow: 0 2px 6px rgba(0, 0, 0, .92);
}
/* 本文 */
.greet-hero__text {
  font-size: 1.6rem;
  line-height: 1.9;
  margin: 0 0 1.8rem;
  color: #f6f6f6;
  text-shadow: 0 2px 4px rgba(0, 0, 0, .85);
}
/* 日付・署名 */
.greet-hero__sign {
  font-size: 1.4rem;
  line-height: 1.8;
  margin: 0 0 2rem;
  color: #e0e0e0;
}
/* Team WOODSAN ボタンの位置だけ少し調整 */
.greet-hero .btn-woodsan {
  margin-top: .5rem;
}
/* クレジット */
.greet-hero__credit {
  font-size: 1.2rem;
  margin-top: 1.2rem;
  color: #ccc;
  text-shadow: 0 1px 3px rgba(0, 0, 0, .6);
}

/* ======= スマホ調整 ======= */
@media (max-width: 768px) {
  .greet-hero {
    padding: 48px 0 72px;
  }
  .greet-hero__body {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }
  .greet-hero__bg {
    background-position: center bottom;
    opacity: .28;           /* 文字優先で少し薄め */
  }
  .greet-hero__text {
    font-size: 1.5rem;
  }
  .greet-hero__sign {
    font-size: 1.35rem;
  }
}

/* ================== 基準の固定ページ（page.php） ================== */
.pages {
  /*max-width: 1120px;*/
    max-width: 980px;
  margin: 0 auto;
  padding: 64px 20px 96px;
}
section.pages a {
  color: #fff !important;
  text-decoration: underline !important;
}
section.pages a::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f08e";
  margin: 0 0.4em;
  opacity: 0.6;
}

/* ================== プライバシーポリシー（page-privacy-policy.php） ================== */
main#policy ol {
  font-size: 1.6rem;
  margin: 0;
  padding: 1em 0 1em 1.4em;
}
main#policy ol li:first-child {
  margin: 0!important;
}
main#policy ol li {
  margin: 1em 0;
}
main#policy ol ul li {
  font-size: 1.5rem;
  list-style: disc !important;
  line-height: 1.2;
}
main#policy p {
  font-size: 1.5rem;
}
main#policy a {
    text-decoration: underline;
}

/* ================== ご挨拶（page-about.php） ================== */
.about-woodsan {
  /*max-width: 1120px;*/
    max-width: 980px;
  margin: 0 auto;
  padding: 64px 20px 96px;
}
/* ヘッダー */
.about-woodsan__header {
  margin-bottom: 40px;
}
.about-woodsan__eyebrow {
  font-size: 1.2rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.7;
  margin: 0 0 4px;
}
.about-woodsan__title {
  font-size: 2.4rem;
  margin: 0 0 16px;
  letter-spacing: 0.12em;
}
.about-woodsan__lead {
  font-size: 1.6rem;
  line-height: 1.9;
  margin: 0;
}
/* セクション共通 */
.about-woodsan__section {
  margin: 40px 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.about-woodsan__section-title {
  font-size: 1.8rem;
  margin: 0 0 12px;
}
.about-woodsan__text {
  font-size: 1.5rem;
  line-height: 1.9;
  margin: 0 0 10px;
}
/* メンバー */
.about-woodsan__member {
  margin-top: 24px;
}
.about-woodsan__member-name {
  font-size: 1.6rem;
  margin: 0 0 6px;
}
.about-woodsan__member-name a {
  color: #FFF;
  text-decoration: underline;
}
.about-woodsan__member-name a::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f08e";
  margin: 0 0.4em;
  opacity: 0.6;
}
.about-woodsan__member-name span {
  display: block;
  font-size: 1.3rem;
  opacity: 0.8;
  margin-top: 2px;
}

/* 寄付ボタン */
.about-woodsan__donation {
  margin: 2em auto;
  text-align: center;
}
.ofuse-btn { /* 白ベタ黒文字 */
  display: inline-block;
  padding: 10px 32px;
  font-size: 1.4rem;
  font-weight: 600;
  border-radius: 999px;
  background: #fff;
  color: #000;
  text-decoration: none;
}
.ofuse-btn:hover {
  opacity: .85;
}
.ofuse-btnF { /* 黒ベタ白文字 */
  display: inline-block;
  padding: 10px 32px;
  font-size: 1.4rem;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  /*letter-spacing: 0.2em;
  text-indent: 0.2em;
  cursor: pointer;*/
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  /*text-align: center;
  margin: 0 auto;*/
}
.ofuse-btnF:hover {
  background: #fff;
  color: #000;
}

.precautions {
  margin: 40px 0 0;
  padding-left: 1.2em;
  font-size: 1.3rem;
  opacity: 0.8;
  list-style: none;
}
.precautions li + li {
  margin-top: 4px;
}
/* 参加メンバーだけカード風の別枠にする */
.about-woodsan__section--members {
  margin-top: 56px; /* 上だけ少し広め */
  padding: 28px 24px 26px;
  border-top: none; /* 共通の上線はいったん消す */
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.7);
}
/* 見出しはちょっとだけ強めに */
.about-woodsan__section--members .about-woodsan__section-title {
  font-size: 1.9rem;
  margin-bottom: 16px;
}
/* メンバーごとの区切り */
.about-woodsan__member {
  padding-top: 16px;
  margin-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.about-woodsan__member:first-of-type {
  padding-top: 8px;
  margin-top: 8px;
  border-top: none;
}
/* 名前周りを少し締める */
.about-woodsan__member-name {
  font-size: 1.6rem;
  margin: 0 0 4px;
}
.about-woodsan__member-name span {
  display: block;
  font-size: 1.3rem;
  opacity: 0.8;
  margin-top: 2px;
}

/* SP調整 */
@media (max-width: 768px) {
  .about-woodsan__section--members {
    padding: 22px 16px 20px;
    margin-top: 40px;
  }
  .about-woodsan {
    padding-top: 40px;
  }
  .about-woodsan__lead {
    font-size: 1.5rem;
  }
  .about-woodsan__text {
    font-size: 1.4rem;
  }
}

/* ================== ナレーター検索（search.php, post_type=narration） ================== */
.narration-search {
  /*max-width: 1120px;*/
    max-width: 980px;
  margin: 0 auto;
  padding: 64px 20px 96px;
}
.narration-search__header {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(260px, 1.5fr);
  gap: 32px;
  align-items: flex-end;
  margin-bottom: 40px;
}
.narration-search__intro {
  min-width: 0;
}
.narration-search__title {
  font-size: 2.2rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 12px;
}
.narration-search__keyword {
  font-size: 1.5rem;
  margin: 0 0 4px;
}
.narration-search__keyword span {
  font-weight: 600;
}
.narration-search__count {
  font-size: 1.4rem;
  opacity: 0.8;
  margin: 0;
}
.narration-search__form-wrap {
  max-width: 360px;
  margin-left: auto;
}
.narration-search__form-title {
  font-size: 1.4rem;
  margin: 0 0 6px;
}
/* リスト */
.narration-search__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}
.narration-search__item {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.6);
  overflow: hidden;
}
.narration-search__link {
  display: block;
  padding: 16px 18px 14px;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.narration-search__item:hover .narration-search__link {
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.7);
  border-color: rgba(255, 255, 255, 0.32);
}
/* メタ */
.narration-search__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 10px;
  margin-bottom: 6px;
  font-size: 1.2rem;
}
.narration-search__type {
  padding: 2px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  letter-spacing: 0.08em;
}
.narration-search__kana {
  opacity: 0.7;
}
/* 名前＋プロフィール */
.narration-search__name {
  font-size: 1.8rem;
  margin: 0 0 6px;
}
.narration-search__excerpt {
  font-size: 1.4rem;
  opacity: 0.85;
  margin: 0 0 8px;
}
.narration-search__more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 6px;
  padding: 4px 14px;
  
  border: 1px solid rgba(255, 255, 255, 0.7);
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  background: rgba(0, 0, 0, 0.5);
  text-transform: none;
}
/* ホバー時はボタンだけ反転させる */
.narration-search__item:hover .narration-search__more {
  background: #fff;
  color: #000;
}

/* 空振り時 */
.narration-search__empty {
  margin-top: 32px;
  font-size: 1.5rem;
}
.narration-search__empty p {
  margin: 0 0 4px;
}
/* ページャ */
.narration-search__pager {
  margin-top: 24px;
}
.narration-search__alias {
  font-size: 1.3rem;
  opacity: 0.8;
  margin: 0 0 6px;
}

/* SP */
@media (max-width: 768px) {
  .narration-search {
    padding-top: 40px;
  }
  .narration-search__header {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .narration-search__form-wrap {
    max-width: none;
  }
}

/* ================== CONTACT（page-contact.php） ================== */
.contact {
  /*max-width: 1120px;*/
    max-width: 980px;
  margin: 0 auto;
  padding: 64px 20px 96px;
}
/* ============================
   CONTACT フォーム共通スタイル
   ============================ */
/* フォーム全体 */
.contact-form {
  max-width: 640px;
  margin: 0 auto 1em;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.6;
}
.contact-form p {
  line-height: 1 !important;
}
/* 1行ごとのブロック */
.contact-row {
  margin-bottom: 3em;
}
/* ラベル */
.contact-label {
  display: block;
  margin-bottom: 6px;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
}
/* テキスト入力・メール・TEL・セレクト・テキストエリア */
.contact-form input[type="text"], .contact-form input[type="email"], .contact-form input[type="tel"], .contact-form select, .contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #444;
  border-radius: 3px;
  background: #111;
  color: #fff;
  box-sizing: border-box;
  font-size: 1.4rem;
}
/* プレースホルダー */
.contact-form input::placeholder, .contact-form textarea::placeholder {
  color: #999;
}
/* フォーカス時 */
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none;
  border-color: #ff6060;
  box-shadow: 0 0 0 1px rgba(255, 96, 96, 0.4);
}
/* テキストエリアは少し高めに */
.contact-form textarea {
  min-height: 180px;
  resize: vertical;
}

/* 同意チェック部分 */
.contact-agree {
  margin-top: 12px;
  font-size: 1.3rem;
  line-height: 1.5;
  color: #ccc;
}
/* use_label_element のラベル */
.contact-agree .wpcf7-list-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact-agree input[type="checkbox"] {
  margin-top: 3px;
  transform: translateY(1px) scale(1.1);
}

/* 送信ボタン */
.contact-submit {
  text-align: center;
}
.contact-submit-btn, .contact-form input[type="submit"] {
  display: inline-block;
  padding: 12px 40px;
  border: 1px solid #fff;
  border-radius: 999px;
  background: transparent;
  color: #fff;
  font-size: 1.6rem;
  letter-spacing: 0.3em;
  text-indent: 0.3em; /* 文字詰まり対策 */
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
/* ホバー時：白反転 or アクセントカラーにしたければここで調整 */
.contact-submit-btn:hover, .contact-form input[type="submit"]:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
}
/* 必須マークをより見やすく調整 */
.contact-label .required {
  display: inline-block;
  margin-left: 0.4em;
  font-size: 1.2rem;
  color: #ff5050;
  font-weight: bold;
}

/* モバイル調整 */
@media screen and (max-width: 767px) {
  .contact-form {
    padding: 0 16px;
  }
  .contact-submit-btn, .contact-form input[type="submit"] {
    width: 100%;
  }
}

/* ナレーターお問い合わせブロック */
.narrator-contact-block {
  margin: 60px auto 80px;
  /*max-width: 640px;*/
    width: 100%;
}
/* 開閉ボタン */
.narrator-contact-toggle {
  display: block;
  padding: 10px 32px;
  border-radius: 999px;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    
    text-align: center;
    margin: 0 auto;
}
.narrator-contact-toggle:hover {
  background: #fff;
  color: #000;
}
/* フォームのラッパー（必要なら余白追加） */
.narrator-contact-form-wrap {
  margin-top: 24px;
}

/* ================== Buttons 共通 ================== */
.btn {
  display: inline-block;
  text-decoration: none;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: 0.2s ease;
  font-weight: 600;
}

.btn.primary {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: #000;
  border-color: transparent;
}

.btn.primary:hover {
  filter: brightness(1.05);
}

.btn.ghost {
  color: var(--ink);
}

.btn.ghost:hover {
  background: #1a1a1a;
}

/* ================== Sample ================== */
.section-head {
  margin-bottom: clamp(16px, 2vw, 24px);
}

.section-title {
  margin: 0.25rem 0;
  font-size: clamp(1.2rem, 1.4vw + 1rem, 2rem);
}

.section-lead {
  color: var(--muted);
}

.eyebrow {
  color: var(--muted);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sample-jumps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 20px 0 28px;
}

.jump-card {
  display: grid;
  place-items: center;
  min-height: 88px;
  border-radius: 16px;
  padding: 1rem;
  background: conic-gradient(from 180deg at 50% 50%, #171717, #0f0f0f);
  border: 1px solid var(--border);
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.jump-card:hover {
  outline: 2px solid color-mix(in oklab, var(--accent) 60%, white);
}

@media (max-width: 800px) {
  .sample-jumps {
    grid-template-columns: 1fr;
  }
}

.group-title {
  margin: 28px 0 8px;
  font-size: 1.1rem;
  color: var(--muted);
}

.sample-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

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

.sample-card {
  background: linear-gradient(180deg, #131313, #0f0f0f);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
}

.sample-name {
  margin: 0.5rem 0 0;
}

.play {
  width: 100%;
  display: inline-block;
  padding: 0.9rem;
  border-radius: 10px;
  font-weight: 700;
  border: 1px solid var(--border);
  background: #1a1a1a;
  color: var(--ink);
  cursor: pointer;
  transition: transform 0.04s ease, box-shadow 0.2s ease;
}

.play:active {
  transform: scale(0.995);
}

.note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.95rem;
}

/* ================== Spare ================== */
.spare-box {
  min-height: clamp(200px, 30vh, 420px);
  border: 2px dashed #2c2c2c;
  border-radius: 16px;
  background: repeating-linear-gradient(45deg, #0f0f0f 0 10px, #101010 10px 20px);
}

/* ================== Greeting ================== */
.grid-2 {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
}

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

.greeting-figure {
  margin: 0;
  background: #0f0f0f;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.greeting-figure figcaption {
  color: var(--muted);
  font-size: 0.85rem;
  padding: 0.5rem 0.75rem;
}

.greeting-copy .sign {
  color: var(--muted);
}

/* ================== Footer ================== */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  background: #0b0b0b;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.site-footer a {
  color: var(--muted);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--ink);
}

/* ================== Utilities ================== */
.visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

/* reCAPTCHA バッジを消す（v3 用） */
.grecaptcha-badge {
  visibility: hidden; /* display: none; ではなく visibility:hidden 推奨 */
}
.recaptcha-notice {
  margin: 1em auto;
  padding: 0;
  font-size: 1.2rem;
  color: #999;
  line-height: 1.6;
  text-align: center;
}
.recaptcha-notice a {
  color: #C6C6C6;
  text-decoration: underline;
}