/* ============================================================
   kuronegiプロダクション 公式サイト 共通CSS
   モック: _reference/kuronegi-site-mock-v31.jsx を正として再現
   ============================================================ */

:root {
  --paper: #F7F4EF;
  --sumi: #1C1A1E;
  --sumi-soft: #5C5560;
  --line: #E2DAD2;
  --rose: #C94F72;
  --white: #FFFFFF;
  --mincho: 'Yu Mincho', 'Hiragino Mincho ProN', 'Noto Serif JP', serif;
  --gothic: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'Noto Sans JP', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--sumi);
  font-family: var(--gothic);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

button { font-family: inherit; }

h1, h2, h3, p, ul, dl, dd, figure { margin: 0; }
ul { padding: 0; list-style: none; }

.serif { font-family: var(--mincho); }

/* アンカー着地位置(固定ナビ分) */
[id] { scroll-margin-top: 64px; }

/* ============ 固定ナビ ============ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  transition: background-color 0.3s, color 0.3s;
}

/* トップページ: ヒーロー上は透過+白文字 */
.site-nav.over-hero { background: transparent; color: #FFFFFF; }
.site-nav.over-hero.scrolled {
  background: rgba(247, 244, 239, 0.55);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: var(--sumi);
}

/* 下層ページ: 常に半透明の生成り背景 */
.site-nav.solid {
  background: rgba(247, 244, 239, 0.72);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: var(--sumi);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  padding: 0;
  text-decoration: none;
}
.nav-brand .nav-logo { width: 30px; height: 30px; border-radius: 6px; }
.nav-brand .nav-title {
  font-family: var(--mincho);
  font-weight: 600;
  letter-spacing: 0.06em;
  font-size: 15px;
}

.nav-right { display: flex; align-items: center; gap: 20px; }

.nav-links { display: none; }
@media (min-width: 768px) {
  .nav-links { display: flex; gap: 20px; }
}
.nav-links a {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: inherit;
  text-decoration: none;
}

.nav-back {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--sumi);
  text-decoration: none;
}

.nav-logo-sm { width: 28px; height: 28px; border-radius: 6px; }

/* ブロック型メニューアイコン(2x2グリッド) */
.menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  color: inherit;
}
.block-icon {
  display: grid;
  grid-template-columns: 8px 8px;
  gap: 4px;
  padding: 4px;
}
.block-icon span {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: currentColor;
}
.block-icon span:last-child { background: var(--rose); }

/* ============ 全画面ブロックメニュー ============ */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  flex-direction: column;
  overflow: auto;
  background: rgba(247, 244, 239, 0.97);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.menu-overlay.open { display: flex; }

.menu-overlay-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
}
.menu-overlay-brand { display: flex; align-items: center; gap: 8px; }
.menu-overlay-brand img { width: 30px; height: 30px; border-radius: 6px; }
.menu-overlay-brand span { font-family: var(--mincho); font-weight: 600; font-size: 15px; }

.menu-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--sumi);
  font-size: 28px;
  line-height: 1;
  padding: 4px;
}

.menu-overlay-body {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0 20px 32px;
}

.menu-blocks {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.menu-block {
  display: block;
  text-align: left;
  border-radius: 16px;
  padding: 20px;
  color: #FFF;
  border: none;
  cursor: pointer;
  min-height: 108px;
  box-shadow: 0 6px 18px rgba(28, 26, 30, 0.12);
  text-decoration: none;
  transition: transform 0.15s;
}
.menu-block:active { transform: scale(0.95); }
.menu-block.span-2 { grid-column: span 2; }
.menu-block .en {
  font-family: var(--mincho);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.menu-block.span-2 .en { font-size: 24px; }
.menu-block .jp { font-size: 11px; margin-top: 4px; opacity: 0.9; }
.menu-block .sub { font-size: 10px; margin-top: 8px; opacity: 0.85; }

.menu-overlay-foot {
  padding: 0 24px 32px;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-align: center;
  color: #9A93A0;
}

/* メニューブロック/フッターのブランドカラー */
.bg-news { background: linear-gradient(135deg, #C94F72, #E07A97); }
.bg-concept { background: linear-gradient(135deg, #37313D, #5C5560); }
.bg-model { background: linear-gradient(120deg, #6B5387 0%, #D14D77 55%, #5E86A3 100%); }
.bg-goods { background: linear-gradient(135deg, #8E6FA8, #C9B3DC); }
.bg-policy { background: linear-gradient(135deg, #7BA05B, #A8C48A); }
.bg-contact { background: linear-gradient(135deg, #1C1A1E, #4A4350); }

/* ============ 共通フッター ============ */
.site-footer {
  background: var(--sumi);
  color: #B9B2BC;
  padding: 48px 24px;
}
.site-footer .inner { max-width: 960px; margin: 0 auto; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { width: 44px; height: 44px; border-radius: 6px; }
.footer-brand .name { font-family: var(--mincho); color: var(--paper); font-weight: 600; }
.footer-brand .en { font-size: 10px; margin-top: 2px; letter-spacing: 0.15em; }

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 24px;
  row-gap: 4px;
  margin-top: 32px;
}
.footer-links a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  text-decoration: none;
  color: inherit;
}
.footer-links a .en {
  font-family: var(--mincho);
  font-size: 17px;
  font-weight: 600;
  color: var(--paper);
  letter-spacing: 0.08em;
}
.footer-links a .jp { font-size: 10px; margin-left: 8px; color: #8E8792; }

.footer-note { font-size: 11px; line-height: 24px; margin-top: 32px; }
.footer-note a { color: #B9B2BC; text-decoration: none; }
.footer-note .copyright { margin-top: 12px; color: #7E7683; }

/* ============ セクション見出し ============ */
.section-title { margin-bottom: 24px; }
.section-title .en {
  font-family: var(--mincho);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.12em;
}
.section-title .jp {
  font-size: 11px;
  margin-top: 2px;
  color: var(--rose);
  letter-spacing: 0.25em;
}

/* ============ 汎用ボタン ============ */
.btn-dark {
  display: inline-block;
  background: var(--sumi);
  color: var(--paper);
  border: none;
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
}
.btn-dark.lg { padding: 12px 28px; font-size: 14px; font-weight: 400; }

/* ============ トップ: HERO ============ */
.hero {
  position: relative;
  overflow: hidden;
  height: 100dvh;
  min-height: 480px;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}
/* 横長画面(PC)は縦長の元画像の上下が大きく削られるため、顔が収まるよう基準位置を上寄りにする。
   スマートフォン(幅768px未満)は現状の見え方を変えないためこの上書きを適用しない */
@media (min-width: 768px) {
  .hero-img { object-position: center top; }
}
.hero-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 112px 24px 40px;
  background: linear-gradient(180deg, transparent, rgba(28, 26, 30, 0.55));
}
.hero-overlay .inner { max-width: 960px; margin: 0 auto; }
.hero-copy {
  font-family: var(--mincho);
  color: #FFF;
  font-size: clamp(25px, 5vw, 40px);
  line-height: 1.55;
  font-weight: 600;
  text-shadow: 0 1px 12px rgba(28, 26, 30, 0.4);
}
.hero-badge {
  display: inline-block;
  margin-top: 16px;
  padding: 4px 12px;
  font-size: 10px;
  border-radius: 999px;
  letter-spacing: 0.05em;
  background: rgba(255, 255, 255, 0.85);
  color: var(--sumi);
}
.hero-scroll {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.8);
}

/* ============ トップ: NEWS ============ */
.section { padding: 56px 24px; }
.section .inner, .section-inner { max-width: 960px; margin: 0 auto; }

.news-list li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: 16px;
  row-gap: 4px;
  padding: 14px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--line);
}
.news-date {
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  color: var(--sumi-soft);
  min-width: 88px;
}
.news-tag {
  font-size: 9px;
  padding: 2px 8px;
  border-radius: 999px;
  letter-spacing: 0.15em;
  border: 1px solid var(--rose);
  color: var(--rose);
}
.news-more { margin-top: 24px; }

/* ============ トップ: CONCEPT ============ */
.concept {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 64px 24px;
  text-align: center;
}
.concept .inner { max-width: 720px; margin: 0 auto; }
.concept-lead {
  font-family: var(--mincho);
  font-size: clamp(17px, 3vw, 22px);
  line-height: 2;
  font-weight: 600;
}
.concept p.body {
  margin: 24px auto 0;
  font-size: 14px;
  line-height: 28px;
  color: var(--sumi-soft);
  max-width: 460px;
  text-align: left;
}
.concept p.body + p.body { margin-top: 16px; }
.concept-close {
  font-family: var(--mincho);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.9;
  margin-top: 36px;
}
.br-sm { display: none; }
@media (min-width: 640px) { .br-sm { display: inline; } }

/* ============ トップ: MODEL帯 ============ */
.model-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}
.model-band {
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  overflow: hidden;
  color: #FFF;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s;
}
.model-band:active { transform: scale(0.99); }
@media (min-width: 640px) {
  .model-band { flex-direction: row; }
  .model-band.reverse { flex-direction: row-reverse; }
}
.model-band-photo {
  position: relative;
  aspect-ratio: 3 / 4;
  max-height: 460px;
  overflow: hidden;
}
@media (min-width: 640px) {
  .model-band-photo { width: 40%; flex-shrink: 0; }
}
.model-band-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.model-band-body {
  flex: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
@media (min-width: 640px) { .model-band-body { padding: 32px; } }
.model-roman { font-size: 10px; letter-spacing: 0.3em; opacity: 0.85; }
.model-name {
  font-family: var(--mincho);
  font-size: 26px;
  font-weight: 600;
  margin-top: 4px;
}
.model-kana { font-size: 12px; margin-left: 12px; opacity: 0.85; font-family: var(--gothic); font-weight: 400; }
.model-copy {
  font-family: var(--mincho);
  font-size: clamp(19px, 3vw, 24px);
  line-height: 1.7;
  font-weight: 600;
  white-space: pre-line;
  margin-top: 16px;
}
.model-desc {
  font-size: 12px;
  margin-top: 16px;
  line-height: 24px;
  opacity: 0.92;
  max-width: 400px;
}
.model-chips {
  display: flex;
  gap: 8px;
  margin-top: 20px;
  flex-wrap: wrap;
  align-items: center;
}
.model-chips span {
  font-size: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}
.model-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  background: #FFF;
  color: var(--sumi);
  box-shadow: 0 3px 12px rgba(28, 26, 30, 0.18);
}

/* モデルごとのグラデーション */
.grad-shino { background: linear-gradient(135deg, #6B5387 0%, #9B7FB8 60%, #C9B3DC 100%); }
.grad-rua { background: linear-gradient(135deg, #D14D77 0%, #EE7B9E 60%, #FFB9CB 100%); }
.grad-yukino { background: linear-gradient(135deg, #5E86A3 0%, #8FB4CC 60%, #CFE3EE 100%); }
.photobg-shino { background: linear-gradient(160deg, #CBB6D8, #EFE6F0); }
.photobg-rua { background: linear-gradient(160deg, #F5BECB, #FFEDEF); }
.photobg-yukino { background: linear-gradient(160deg, #C3D8E5, #F0F6F9); }

/* ============ トップ/モデル: GOODSカード ============ */
.goods-section {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 56px 24px;
}
.goods-section .inner { max-width: 960px; margin: 0 auto; }
.goods-feature {
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
}
@media (min-width: 640px) { .goods-feature { flex-direction: row; } }
.goods-cover {
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  aspect-ratio: 3 / 4;
  background: linear-gradient(160deg, #CBB6D8, #F2E9E2);
  box-shadow: 4px 6px 18px rgba(28, 26, 30, 0.15);
  font-size: 12px;
  color: #8E6FA8;
}
.goods-coming {
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--rose);
}
.goods-feature h3 {
  font-family: var(--mincho);
  font-size: 20px;
  font-weight: 600;
  margin-top: 4px;
}
.goods-feature .note {
  font-size: 12px;
  margin-top: 8px;
  line-height: 24px;
  color: var(--sumi-soft);
}
.goods-cats {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.goods-cat-link {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12px;
  color: var(--sumi-soft);
  border: 1px solid var(--line);
  background: transparent;
  text-decoration: none;
  cursor: pointer;
}

/* ============ トップ: POLICY ============ */
.policy-list {
  font-size: 12px;
  line-height: 28px;
  color: var(--sumi-soft);
  max-width: 620px;
}
.policy-list li + li { margin-top: 8px; }

/* ============ 下層ページ共通 ============ */
.page-header {
  padding: 96px 24px 32px;
  max-width: 960px;
  margin: 0 auto;
}
.page-header.narrow { max-width: 720px; }
.page-header .en {
  font-family: var(--mincho);
  font-size: 34px;
  font-weight: 600;
  letter-spacing: 0.12em;
}
.page-header .jp {
  font-size: 11px;
  margin-top: 4px;
  color: var(--rose);
  letter-spacing: 0.25em;
}
.page-header .lead {
  font-size: 14px;
  margin-top: 20px;
  line-height: 28px;
  color: var(--sumi-soft);
  max-width: 520px;
}

.page-back { padding: 40px 24px; text-align: center; }

/* ============ グッズ一覧ページ ============ */
.goods-tabs-wrap { padding: 0 24px; max-width: 960px; margin: 0 auto; }
.goods-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.goods-tab {
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12px;
  background: transparent;
  color: var(--sumi-soft);
  border: 1px solid var(--line);
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
}
.goods-tab.active {
  background: var(--sumi);
  color: var(--paper);
  border-color: var(--sumi);
}

.goods-grid-wrap { padding: 32px 24px; max-width: 960px; margin: 0 auto; }
.goods-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (min-width: 640px) { .goods-grid { grid-template-columns: 1fr 1fr 1fr; } }
.goods-card {
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
}
.goods-card-cover {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.goods-card-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.goods-card-cover .ph-text {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(28, 26, 30, 0.35);
}
.goods-status {
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 9px;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--sumi-soft);
}
.goods-status.coming { background: var(--rose); color: #FFF; }
.goods-card-body { padding: 12px; }
.goods-card-body .model { font-size: 10px; color: var(--sumi-soft); }
.goods-card-body h3 { font-size: 12px; margin-top: 2px; line-height: 20px; font-weight: 600; }
.goods-card-body .price { font-size: 11px; margin-top: 6px; color: var(--rose); }
.goods-card-body .note { font-size: 10px; margin-top: 6px; line-height: 16px; color: var(--sumi-soft); }
.goods-empty {
  font-size: 14px;
  padding: 40px 0;
  text-align: center;
  color: var(--sumi-soft);
}

.about-section {
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: 48px 24px;
}
.about-section .inner { max-width: 960px; margin: 0 auto; }
.shop-btn {
  display: inline-block;
  margin-top: 28px;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 14px;
  background: var(--line);
  color: var(--sumi-soft);
  cursor: default;
  text-decoration: none;
}
.shop-note { font-size: 11px; margin-top: 10px; line-height: 24px; color: var(--sumi-soft); }

/* ============ お知らせ一覧ページ ============ */
.news-articles {
  padding: 0 24px 48px;
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.news-article {
  border-radius: 16px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
}
.news-article .meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.news-article h2 {
  font-family: var(--mincho);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.6;
  margin-top: 8px;
}
.news-article .body {
  font-size: 14px;
  margin-top: 12px;
  line-height: 28px;
  color: var(--sumi-soft);
}

/* ============ お問い合わせページ ============ */
.contact-form-wrap {
  padding: 0 24px 48px;
  max-width: 720px;
  margin: 0 auto;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-label {
  font-size: 12px;
  color: var(--sumi-soft);
  display: block;
  margin-bottom: 6px;
}
.form-label .req { color: var(--rose); }

.contact-types { display: flex; flex-direction: column; gap: 8px; }
.contact-type input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.contact-type span {
  display: block;
  text-align: left;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 14px;
  background: var(--white);
  color: var(--sumi);
  border: 1px solid var(--line);
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
}
.contact-type input:checked + span {
  background: var(--sumi);
  color: var(--paper);
  border-color: var(--sumi);
}
.contact-type input:focus-visible + span {
  outline: 2px solid var(--rose);
  outline-offset: 2px;
}

.field {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 14px;
  color: var(--sumi);
  width: 100%;
  outline: none;
  font-family: inherit;
}
.field:focus { border-color: var(--rose); }
textarea.field { resize: vertical; line-height: 1.7; }

.field-error {
  font-size: 11px;
  margin-top: 6px;
  color: var(--rose);
}
.field-error[hidden] { display: none; }

.agree-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
  padding: 16px;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  cursor: pointer;
}
.agree-row.checked { border-color: var(--rose); }
.agree-row input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.agree-box {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: transparent;
  border: 1px solid var(--line);
  color: #FFF;
  font-size: 12px;
  margin-top: 1px;
}
.agree-row.checked .agree-box {
  background: var(--rose);
  border-color: var(--rose);
}
.agree-row input:focus-visible ~ .agree-box {
  outline: 2px solid var(--rose);
  outline-offset: 2px;
}
.agree-text { font-size: 12px; line-height: 24px; color: var(--sumi-soft); }

.submit-btn {
  padding: 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  background: var(--rose);
  color: #FFF;
  cursor: pointer;
  transition: opacity 0.2s;
}
.submit-btn:disabled {
  background: var(--line);
  color: var(--sumi-soft);
  cursor: default;
}

.contact-alt { font-size: 11px; line-height: 24px; color: var(--sumi-soft); }
.contact-alt a { color: var(--rose); text-decoration: none; }

.sent-panel {
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
}
.sent-panel[hidden] { display: none; }
.sent-panel .title { font-family: var(--mincho); font-size: 20px; font-weight: 600; }
.sent-panel .body {
  font-size: 14px;
  margin-top: 12px;
  line-height: 28px;
  color: var(--sumi-soft);
}
.sent-panel .btn-dark { margin-top: 24px; }
.contact-form[hidden] { display: none; }

/* ============ モデル個別ページ ============ */
.model-hero {
  position: relative;
  overflow: hidden;
  height: 76vh;
  min-height: 440px;
}
.model-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.model-hero-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 112px 24px 36px;
  background: linear-gradient(180deg, transparent, rgba(28, 26, 30, 0.6));
}
.model-hero-overlay .inner { max-width: 720px; margin: 0 auto; color: #FFF; }
.model-hero-overlay .roman { font-size: 10px; letter-spacing: 0.3em; opacity: 0.9; }
.model-hero-overlay h1 {
  font-family: var(--mincho);
  font-size: clamp(26px, 5vw, 36px);
  font-weight: 600;
  margin-top: 4px;
}
.model-hero-overlay .copy {
  font-family: var(--mincho);
  font-size: clamp(18px, 3.4vw, 24px);
  line-height: 1.7;
  font-weight: 600;
  white-space: pre-line;
  margin-top: 16px;
  text-shadow: 0 1px 10px rgba(28, 26, 30, 0.4);
}

.model-section { padding: 48px 24px; max-width: 720px; margin: 0 auto; }
.model-section-white {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 48px 24px;
}
.model-section-white .inner { max-width: 720px; margin: 0 auto; }

.profile-desc { font-size: 14px; line-height: 28px; color: var(--sumi-soft); }
.profile-table { margin-top: 28px; }
.profile-table > div {
  display: flex;
  flex-wrap: wrap;
  column-gap: 24px;
  padding: 12px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--line);
}
.profile-table dt {
  font-size: 12px;
  padding-top: 2px;
  color: var(--sumi-soft);
  min-width: 72px;
}
.profile-table dd { flex: 1; min-width: 180px; }

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-item .ph-text {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-align: center;
  padding: 0 8px;
  color: rgba(28, 26, 30, 0.38);
}
.gallery-item { cursor: pointer; }
.gallery-item.no-img { cursor: default; }

/* ============ ギャラリー拡大表示(ライトボックス) ============ */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(20, 18, 20, 0.92);
  touch-action: pan-y;
}
.gallery-lightbox.open { display: flex; }
.gallery-lightbox .lightbox-img {
  max-width: calc(100vw - 32px);
  max-height: calc(100vh - 32px);
  object-fit: contain;
  border-radius: 8px;
}
.gallery-lightbox button {
  position: absolute;
  background: rgba(255, 255, 255, 0.14);
  border: none;
  color: #FFF;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.gallery-lightbox button:active { transform: scale(0.92); }
.lightbox-close {
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
}
.lightbox-prev, .lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 26px;
}
.gallery-lightbox button.lightbox-prev:active,
.gallery-lightbox button.lightbox-next:active { transform: translateY(-50%) scale(0.92); }
.lightbox-prev { left: 12px; }
.lightbox-next { right: 12px; }
.lightbox-prev[hidden], .lightbox-next[hidden] { display: none; }

.sns-list { display: flex; flex-direction: column; gap: 10px; }
.sns-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-radius: 16px;
  font-size: 14px;
  color: #FFF;
  text-decoration: none;
}
.sns-link .arrow { opacity: 0.9; }
.sns-pending {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-radius: 16px;
  font-size: 14px;
  background: var(--line);
  color: var(--sumi-soft);
}
.sns-pending .label { font-size: 11px; }

.model-goods-section {
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: 48px 24px;
}
.model-goods-section .inner { max-width: 720px; margin: 0 auto; }
.model-goods-cover {
  width: 130px;
  color: rgba(28, 26, 30, 0.4);
  font-size: 11px;
}
.model-goods-section h3 {
  font-family: var(--mincho);
  font-size: 19px;
  font-weight: 600;
  margin-top: 4px;
}
.model-goods-section .btn-dark { margin-top: 16px; }

/* 画像が無い場合のプレースホルダ(JSが .no-img を付与) */
.ph-frame .ph-text { display: none; }
.ph-frame.no-img img { display: none; }
.ph-frame.no-img .ph-text { display: block; }

/* オブジェクト位置ユーティリティ(モックのfocus値) */
.focus-shino img { object-position: center 22%; }
.focus-rua img { object-position: center 18%; }
.focus-yukino img { object-position: center 20%; }

/* アニメーション控えめ設定 */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
