/* =========================================
   Global（ライト版・セーフ）
========================================= */
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo",
    sans-serif;
  line-height: 1.7;
  color: #111;
  background: #fff;
  text-align: center;
}
.container {
  width: 92%;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.section {
  padding: 64px 0;
}
.offset-top {
  padding-top: 100px;
}
@media (max-width: 920px) {
  .offset-top {
    padding-top: 84px;
  }
}
h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1;
  letter-spacing: 0.04em;
  margin: 0.25em 0;
}
h2,
h3 {
  scroll-margin-top: 90px;
}

/* =========================================
   Header / Navigation（白バー＋黒SNSエリア）
========================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #ffffff;                  /* バーは白 */
  border-bottom: 1px solid rgba(0,0,0,.08);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  z-index: 1000;
}

/* ヘッダー内レイアウト */
.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  padding: 10px 12px;
}

/* 左右の見切れ保険（PCで少し広め） */
@media (min-width: 921px) {
  .site-header .nav {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (max-width: 920px) {
  .site-header .nav {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* ロゴ＋名前（左固定） */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #111;
  text-decoration: none;
  flex: 0 0 auto;
}
.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ddd;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(0,0,0,.08);
}
.brand-name {
  font-size: 16px;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: #111;
  text-transform: uppercase;
}

/* ロゴ右側の <nav> コンテナ（メニュー＋ハンバーガー） */
.site-header .nav > nav {
  margin-left: auto;        /* ロゴとメニューを左右に振り分け */
  display: flex;
  align-items: center;
  gap: 16px;
}

/* メニュー本体（PC時は右寄せで横並び） */
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  white-space: nowrap;
}
.nav-links a {
  display: inline-block;
  padding: 8px 4px;
  color: #111;
  opacity: 0.9;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-decoration: none;
  border-bottom: 3px solid transparent;
  font-size: 13px;
}
.nav-links a:hover,
.nav-links a:focus {
  opacity: 1;
  border-bottom-color: #c9a63a;   /* ホバー時だけゴールドライン */
}
.nav-links a.active {
  color: #c9a63a;
  border-bottom-color: #c9a63a;
}

/* SNSアイコン：黒い楕円の中に白アイコン（矢沢サイトっぽく） */
.header-sns {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  flex: 0 0 auto;
  padding: 4px 8px;
  border-radius: 999px;
  background: #111;
}
.header-sns a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid transparent;
  background: transparent;
  color: #fff;
  text-decoration: none;
}
.header-sns a:hover {
  background: #fff;
  color: #111;
}
.header-sns svg {
  width: 18px;
  height: 18px;
  display: block;
}

/* ハンバーガーボタン（PCでは非表示） */
.nav-drawer {
  display: none;
}
.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 12px;
  background: transparent;
  color: #111;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  margin: 6px auto;
}

/* スマホ：メニューはドロワー、SNSは非表示 */
@media (max-width: 920px) {
  .nav {
    justify-content: space-between;
  }

  .nav-links {
    display: none;
  }

  .header-sns {
    display: none;
  }

  .hamburger {
    display: inline-block;
  }

  .nav-drawer {
    display: none;
    position: absolute;
    top: 60px;
    right: 14px;
    left: auto;
    width: min(86%, 340px);
    max-height: 80vh;
    padding: 14px;
    background: #111;
    border: 1px solid #444;
    border-radius: 14px;
    text-align: center;
    overflow-y: auto;
    z-index: 1200;
  }
  .nav-drawer a {
    display: block;
    padding: 12px 10px;
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
  }
  .nav-drawer a:hover {
    background: rgba(255,255,255,0.06);
  }
  .nav-drawer.is-open {
    display: block;
  }
}
.nav-drawer a.active {
  color: #c9a63a;
}

/* =========================================
   Hero（IMG方式：共通基準）
========================================= */
.hero {
  padding: 0;
  background: none;
  color: #111;
}
.hero .hero-inner {
  position: relative;
  display: block;
  text-align: center;
  overflow: hidden;
}
.hero .hero-media {
  position: relative;
  width: 100%;
  height: clamp(520px, 72vh, 860px); /* 下層Hero用の既定高さ（indexは後で上書き） */
  overflow: hidden;
}
.hero .scrim {
  display: none;
}
.hero .content {
  padding: 24px 16px 56px;
}
.tag {
  display: inline-block;
  font-size: 13px;
  color: #fff;
  background: #c9a63a;
  border: none;
  border-radius: 999px;
  padding: 6px 10px;
  font-weight: 800;
}
.hero-lead {
  max-width: 820px;
  margin: 0 auto;
  color: #333;
  font-size: 18px;
}
.hero-cta {
  margin-top: 24px;
}

/* Hero画像：上端優先トリミング＋Ken Burns */
.hero .hero-media img,
.hero .hero-media img.hero-img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 0%;
  transform-origin: 50% 10%;
  animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.06);
  }
}
/* 低速化指定でも、明示フラグがある場合は動かす */
@media (prefers-reduced-motion: reduce) {
  html:not(.force-motion) #hero .hero-media.hero-21 > .hero-img {
    animation: none !important;
  }
  html:not(.force-motion) #hero .hero-media.hero-21 > .hero-img.a {
    opacity: 1 !important;
  }
  html:not(.force-motion) #hero .hero-media.hero-21 > .hero-img.b {
    opacity: 0 !important;
  }
}

/* ほんのりビネット＋細いゴールドライン */
.hero .hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    120% 85% at 50% 10%,
    rgba(0, 0, 0, 0) 60%,
    rgba(0, 0, 0, 0.08) 100%
  );
}
.hero .hero-media::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -1px;
  width: min(92%, 1100px);
  height: 2px;
  opacity: 0.9;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0), #c9a63a, rgba(0, 0, 0, 0));
}

/* =========================================
   Buttons
========================================= */
.btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  color: #111;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 10px;
  text-decoration: none;
}
.btn:hover {
  background: #111;
  color: #fff;
  border-color: #111;
}
.btn.primary {
  background: #c9a63a;
  border-color: #c9a63a;
  color: #fff;
}
.btn.primary:hover {
  background: #e0c469;
  border-color: #e0c469;
  color: #1a1200;
}

/* =========================================
   Section Headings
========================================= */
h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 32px;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
  margin-bottom: 22px;
  color: #111;
}
h2::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 72px;
  height: 2px;
  background: #c9a63a;
}
.section .section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.section .section-head h2 {
  margin: 0;
  padding: 0 0 8px;
}
.section .section-head .more {
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #111;
  opacity: 0.9;
  text-decoration: none;
  border-bottom: 2px solid transparent;
}
.section .section-head .more:hover {
  border-bottom-color: #e0c469;
}

/* =========================================
   News（縦リスト）
========================================= */
.news-wrap {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}
.news-feed {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
}
.news-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px 14px;
  background: #fff;
  border-left: 4px solid #c9a63a;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.news-item:first-child {
  border-top: none;
}
.news-date {
  flex: 0 0 120px;
  font-weight: 800;
  font-size: 14px;
  color: #333;
  white-space: nowrap;
}
.news-title {
  flex: 1 1 auto;
  font-weight: 700;
  font-size: 17px;
  line-height: 1.7;
  color: #111;
}
.news-item:hover {
  background: #fafafa;
  border-left-color: #e0c469;
}
@media (max-width: 560px) {
  .news-item {
    flex-direction: column;
  }
  .news-date {
    flex: none;
    font-size: 13px;
  }
  .news-title {
    font-size: 16px;
    line-height: 1.65;
  }
}

/* =========================================
   Discography（縦カード）
========================================= */
.disc-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  color: #111;
  text-align: left;
}
.disc-list li {
  position: relative;
  line-height: 1.75;
  font-size: 16.5px;
  padding: 14px 16px;
  margin: 0 0 14px 0;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}
.disc-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 5px;
  border-radius: 5px;
  background: #c9a63a;
}
.disc-list li:hover {
  transform: translateY(-1px);
  background: #fcfcfc;
  border-color: rgba(0, 0, 0, 0.16);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}
.disc-list strong {
  display: inline-block;
  min-width: 72px;
  padding: 3px 10px;
  margin-right: 10px;
  border-radius: 999px;
  background: #c9a63a;
  border: 1px solid #c9a63a;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-align: center;
}
.disc-note {
  color: #444;
  font-size: 0.96em;
  margin-left: 0.4em;
}
@media (max-width: 560px) {
  .disc-list li {
    padding: 12px 12px 12px 14px;
    font-size: 16px;
    line-height: 1.7;
  }
  .disc-list strong {
    min-width: auto;
    margin-right: 8px;
    padding: 3px 8px;
  }
}

/* =========================================
   Media
========================================= */
.media-hero {
  height: 220px;
  background: url("../images/坂本つとむ_アー写２_0.jpg") center 40% / cover no-repeat;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
  margin: 10px auto 20px;
  max-width: 1100px;
}
@media (max-width: 720px) {
  .media-hero {
    height: 180px;
  }
}
.media-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.video {
  position: relative;
  display: block;
  width: 90%;
  max-width: 600px;
  height: 0;
  padding-bottom: 56.25%;
  margin: 6px auto 18px;
}
.video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.sns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.sns a {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  padding: 10px 14px;
  margin: 4px;
  display: inline-block;
  text-decoration: none;
  color: #111;
}
.sns a:hover {
  background: #111;
  color: #fff;
  border-color: #111;
}

/* TikTokカード（白基調・スリム） */
.tiktok-hero {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 14px;
  padding: 14px 18px;
  margin: 10px auto 20px;
  max-width: 900px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  color: #111;
}
.tiktok-hero .copy h3 {
  color: #111;
  font-size: 26px;
  margin: 0.1em 0;
}
.tiktok-hero .copy p {
  color: #333;
  margin: 0.3em 0 0.5em;
}
.tiktok-hero .tiktok-btn {
  background: #c9a63a;
  border: 1px solid #c9a63a;
  color: #fff;
  padding: 10px 14px;
  font-size: 15px;
  border-radius: 999px;
  text-decoration: none;
  display: inline-block;
}
.tiktok-hero .tiktok-btn:hover {
  background: #e0c469;
  border-color: #e0c469;
  color: #1a1200;
}
@media (max-width: 720px) {
  .tiktok-hero {
    padding: 18px 14px;
  }
}

/* =========================================
   About（写真）
========================================= */
.about {
  text-align: center;
}
.about .photo img {
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: inline-block;
  max-width: 320px;
}

/* =========================================
   Profile table
========================================= */
.profile-table {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.profile-table th,
.profile-table td {
  padding: 8px 10px;
  vertical-align: top;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.profile-table th {
  color: #111;
  width: 120px;
  text-align: right;
  white-space: nowrap;
}
.profile-table td {
  color: #111;
  text-align: left;
}
.profile-table tr:last-child th,
.profile-table tr:last-child td {
  border-bottom: none;
}

/* =========================================
   Live（表をカード風に）
========================================= */
.live-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 12px;
  margin: 0 auto;
  text-align: center;
}
.live-table tr {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}
.live-table tr td:first-child {
  border-top-left-radius: 14px;
  border-bottom-left-radius: 14px;
}
.live-table tr td:last-child {
  border-top-right-radius: 14px;
  border-bottom-right-radius: 14px;
}
.live-table td {
  border-bottom: none;
  padding: 14px 16px;
  vertical-align: top;
}
.live-date {
  color: #c9a63a;
}

/* =========================================
   Forms
========================================= */
form {
  display: inline-block;
  text-align: left;
  max-width: 500px;
  width: 100%;
}
form label {
  display: block;
  margin-bottom: 10px;
  text-align: left;
}
input,
textarea {
  width: 100%;
  padding: 12px 14px;
  color: #111;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 10px;
}
textarea {
  min-height: 140px;
}
button.btn {
  cursor: pointer;
  display: block;
  margin: 20px auto;
}

/* Contact page alignment */
#contact .container {
  text-align: center;
}
#contact h2 {
  display: block;
  margin: 0 0 20px;
  text-align: center;
}
#contact form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  max-width: 640px;
  margin: 0 auto;
  text-align: left;
}
#contact form label {
  margin: 14px 0 6px;
  font-weight: 700;
  color: #222;
}
#contact input,
#contact textarea {
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 12px;
}
#contact textarea {
  min-height: 180px;
  resize: vertical;
}
#contact .btn.primary {
  display: inline-block;
  align-self: center;
  margin: 22px auto 0;
}

/* ===== Contact: 送信結果の通知カード ===== */
#form-status {
  display: none; /* 初期は非表示 */
  margin: 16px auto 24px;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.1);
  font-size: 16px;
  line-height: 1.7;
}
#form-status.is-show {
  display: block;
}
#form-status .title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;

  letter-spacing: 0.02em;
  margin: 0 0 6px;
}
#form-status .desc {
  color: #333;
  margin: 0;
}

/* 成功（はっきりグリーン） */
#form-status.ok {
  background: #f0fff4;
  border-color: #b6e2c8;
}
#form-status.ok .title {
  color: #0f5132;
}
#form-status.ok .icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #0f5132;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

/* エラー（赤系） */
#form-status.err {
  background: #fff5f5;
  border-color: #f3c2c2;
}
#form-status.err .title {
  color: #842029;
}
#form-status.err .icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #842029;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

/* =========================================
   Breadcrumbs（全ページ統一）+ 固定ヘッダー逃げ
========================================= */
.breadcrumbs {
  text-align: left;
  font-size: 14px;
  color: #555;
  max-width: 1100px;
  margin: 0 auto 8px !important;
  padding: 0 16px !important;
  box-sizing: border-box !important;
}
.breadcrumbs ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.breadcrumbs li {
  opacity: 0.9;
}
.breadcrumbs li + li::before {
  content: "›";
  margin: 0 6px;
  opacity: 0.6;
}
.breadcrumbs a {
  color: #225cab;
  text-decoration: none;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}

/* 固定ヘッダー回避量（ヘッダー直下に見える基準値） */
main.section.offset-top {
  padding-top: 112px !important;
}
@media (max-width: 920px) {
  main.section.offset-top {
    padding-top: 128px !important;
  }
}

/* パンくず直後の最初の見出しとの間隔を固定 */
.breadcrumbs + h1,
.breadcrumbs + h2 {
  margin-top: 8px !important;
}

/* パンくず無しページ（例：プロフィール）でも先頭見出しの開始位置を揃える */
main.section.offset-top h1:first-of-type,
main.section.offset-top h2:first-of-type {
  margin-top: 12px !important;
  padding: 0 16px;
  box-sizing: border-box;
}

/* MEDIAの“上詰まり”を微補正（他ページと見た目揃え） */
section#media .container.media-grid > h2:first-child {
  margin-top: 16px !important;
}

/* =========================================
   追加の安全系（iframe比率ボックス）
========================================= */
.video {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
}
.video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Hero：index専用（1600x800 / 2:1 クロスフェード） [REPLACE v20251028] */
#hero,
section#hero {
  padding-top: 0 !important;
}

#hero .hero-media {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 1; /* 2:1表示（indexのみ） */
  height: auto;
  min-height: 0;
  overflow: hidden;
  background: none;
}

/* IMGを2枚重ねてフェード（IMG/OBJECT-FIT運用のままでOK） */
#hero .hero-media .hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 0%;
  opacity: 0;
  will-change: transform, opacity;

  /* ①ゆるズーム＋②クロスフェード（速度は下の 6s を調整） */
  animation:
    heroZoom_21 18s ease-in-out infinite alternate,
    heroXfade_21 6s ease-in-out infinite;
}
#hero .hero-media .hero-img.a {
  /* ズームは同位相、フェードだけ0s遅延（先にAを見せる） */
  animation-delay: 0s, 0s;
  z-index: 1;
}
#hero .hero-media .hero-img.b {
  /* フェードだけ半周期遅らせて交互に表示（6sなら3s） */
  animation-delay: 0s, 3s;
  z-index: 2;
}

/* ズーム（Ken Burns） */
@keyframes heroZoom_21 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.06);
  }
}
/* クロスフェード本体（速さはフェード側の6sに依存） */
@keyframes heroXfade_21 {
  0%,
  35% {
    opacity: 1;
  }
  45%,
  90% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* 動きの軽減を尊重。ただし force-motion がhtmlに付いてたら動かす */
@media (prefers-reduced-motion: reduce) {
  html:not(.force-motion) #hero .hero-media .hero-img {
    animation: none !important;
    opacity: 1 !important;
  }
  html:not(.force-motion) #hero .hero-media .hero-img.b {
    opacity: 0 !important;
  }
}
/* =========================================
   Hero（index）：画像の上にコピーを重ねる
========================================= */
#hero .hero-media.hero-main {
  position: relative;
}

/* 画像の上に乗るオーバーレイ */
#hero .hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;   /* 下寄せ */
  justify-content: center; /* 横方向は中央寄せ（左寄せにしたければ flex-start） */
  padding: 0 0 40px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.15) 45%,
    rgba(0, 0, 0, 0) 100%
  );
  pointer-events: none;    /* 背景扱いなのでクリックはスルー */
}

/* 中のテキストブロック */
#hero .hero-copy-main {
  text-align: left;
  color: #fff;
  max-width: 800px;
  pointer-events: auto;    /* テキスト選択などは許可 */
}

/* 小さなタグライン */
.hero-tagline {
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin: 0 0 6px;
  opacity: 0.9;
}

/* メインの名前 */
#hero .hero-copy-main h1 {
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: 0.08em;
  margin: 0 0 4px;
}

/* サブコピー */
.hero-sub {
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 6px 0 0;
  opacity: 0.9;
}

/* スマホでは少しだけ余白を増やす */
@media (max-width: 720px) {
  #hero .hero-overlay {
    padding-bottom: 28px;
  }
  #hero .hero-copy-main h1 {
    font-size: clamp(32px, 8vw, 42px);
  }
  .hero-sub {
    font-size: 12px;
  }
}

/* ===== ここまで差し替え ===== */

/* News の h1 だけ中央揃えに戻す */
.news-wrap > h1 {
  text-align: center !important;
}

/* ===== About ページ調整（2025-10-23） ===== */

/* パンくず＋H1の位置を全ページで統一（.section二重の上パディング殺し） */
main.section.offset-top > .section:first-child {
  padding-top: 0 !important;
}

/* コンテナは中央寄せを強制（念のため） */
.container.about {
  text-align: center !important;
}

/* プロフィール表の枠・中央配置を強制 */
.profile-table {
  background: #fff !important;
  border: 1px solid rgba(0, 0, 0, 0.12) !important;
  border-radius: 14px !important;
  padding: 14px 18px !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08) !important;
  display: inline-block !important; /* 親がtext-align:centerなので中央に来る */
  margin: 0 auto !important;
}
.profile-table th,
.profile-table td {
  padding: 8px 10px !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
}
.profile-table tr:last-child th,
.profile-table tr:last-child td {
  border-bottom: none !important;
}
.profile-table th {
  width: 120px;
  text-align: right !important;
  white-space: nowrap;
}
.profile-table td {
  text-align: left !important;
}

/* バイオグラフィー（点を消して整形） */
.bio-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 24px auto 0 !important;
  max-width: 900px; /* 好みで 760〜1000px の間で調整可 */
  text-align: left; /* 本文は読みやすく左寄せ */
}
.bio-list li {
  padding: 10px 0;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.15);
}
.bio-list li:last-child {
  border-bottom: none;
}
.bio-list strong {
  display: inline-block;
  width: 5em; /* 年の桁をそろえる */
}

/* 本文エリアの横幅を News に統一（900px） */
main .container {
  max-width: 900px !important;
}

/* 余白バランス（任意・お好みで） */
@media (min-width: 1024px) {
  main .container {
    width: 92%;
  } /* 端の余白は現状維持 */
}

/* プロフィール：写真を左、表を右に（見出しとSNSは従来のまま） */
.profile-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  justify-content: center;
  margin: 18px auto 0;
  max-width: 900px;
  text-align: left; /* 中身は読みやすく左寄せ */
}
.profile-flex .photo {
  flex: 0 0 300px;
  text-align: center;
}
.profile-flex .photo img {
  width: 100%;
  max-width: 320px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}
.profile-flex .profile-table {
  flex: 1 1 460px;
  /* 既存で inline-block になっていても横並び可能 */
}

/* スマホ縦積み */
@media (max-width: 720px) {
  .profile-flex {
    flex-direction: column;
    align-items: center;
  }
}
