/* =============================================================
   components/actress.css
   女優詳細ページ固有スタイル（actress.php）
   ============================================================= */

/* ─── ページ見出しエリア ─── */
.actress-page-heading {
  padding: 28px var(--content-pad) 24px;
  text-align: center;
  background: #FFFFFF;
}

.actress-page-heading__title {
  font-family: var(--font-ui);
  font-size: var(--text-page-title);  /* 24px */
  font-weight: var(--fw-medium);
  color: var(--color-black);
  line-height: 1.3;
}

.actress-page-heading__sub {
  font-size: var(--text-grid-title);  /* 14px */
  font-weight: var(--fw-regular);
  color: var(--color-text-sub);
  margin-top: 8px;
  line-height: 1.6;
}

/* ─── プロフィールヒーロー ─── */

/* 上部エリア: 写真（左）＋名前（右）の横並び */
.actress-hero__top {
  background: var(--color-bg-actress-prof);  /* #FEF1DC */
  padding: 24px var(--content-pad);
  display: flex;
  align-items: center;
  gap: 16px;
}

.actress-hero__photo {
  width: var(--actress-detail-photo);   /* 140px */
  height: var(--actress-detail-photo);  /* 140px */
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  display: block;
  background: #E8E8E8;
  flex-shrink: 0;
}

.actress-hero__no-image {
  width: var(--actress-detail-photo);
  height: var(--actress-detail-photo);
  border-radius: 50%;
  background: #E8E8E8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #BBBBBB;
  font-size: 56px;
  line-height: 1;
  flex-shrink: 0;
}

/* 名前ブロック（ふりがな＋氏名） */
.actress-hero__name {
  flex: 1;
  min-width: 0;
}

.actress-hero__ruby {
  font-family: var(--font-ui);
  font-size: var(--text-actress-ruby-d);  /* 12px */
  color: var(--color-text-muted);
  margin-bottom: 4px;
}

.actress-hero__title {
  font-family: var(--font-ui);
  font-size: var(--text-actress-name-d);  /* 24px */
  font-weight: var(--fw-medium);
  color: var(--color-black);
  line-height: 1.3;
}

/* プロフィール情報エリア */
.actress-hero__profile {
  background: var(--color-bg-warm);  /* #FFFBF1 */
  padding: 16px var(--content-pad);
}

/* ─── プロフィール情報テーブル ─── */
.actress-prof {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.actress-prof__row {
  display: flex;
  gap: 8px;
  font-size: var(--text-actress-ruby-d);  /* 12px */
  line-height: 1.7;
  color: var(--color-text);
}

.actress-prof__key {
  flex-shrink: 0;
  width: 72px;
  color: var(--color-text-sub);
}

.actress-prof__val {
  flex: 1;
  min-width: 0;
  word-break: break-word;
}

/* ─── 作品セクション ─── */
.actress-works {
  padding-bottom: 20px;
}

.actress-works__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 0 0;
}

/* ─── Type-D: 画像→バッジ間スペース（base 20px → 10px） ─── */
.actress-works .product-hero-card__info {
  padding-top: 10px;
  min-height: 0;
}

/* ─── Type-D: 横長画像の右トリミング ─── */
.product-hero-card__image.is-landscape {
  object-position: right center;
}

/* ─── Type-D: ★評価フォントサイズ（+2px → 13px）、タイトル→★ -5px ─── */
.actress-works .product-hero-card__stars {
  font-size: 13px;
  margin-top: 3px;   /* base 8px → -5px */
}

/* ─── Type-D: ボタングループスペーシング（★→ボタン +15px / 購入下 +10px） ─── */
.actress-works .product-hero-card__btn-group {
  margin-top: 20px;    /* base 30px → 5px → +15px = 20px */
  padding-bottom: 45px;  /* base 30px → +15px */
}

/* ─── セクション見出し下のデコレーションライン非表示 ─── */
.actress-works .section-header__line {
  display: none;
}

/* ─── トップに戻るボタン中央揃え（detail.css 非ロードのため actress.css で定義） ─── */
.detail-back-wrap {
  display: flex;
  justify-content: center;
  padding: 20px 0 50px;
}

/* ─── 女優テーブルの女優名リンク（detail.php） ─── */
.detail-table__val a {
  color: var(--color-text);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ─── 女優セクションリンク（detail.php 同じ女優の作品見出し） ─── */
.actress-section-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 1px;
}

/* 動画モーダル（detail.css 135-173 の複製。actress.php は detail.css を読まないため移植・search.css と同内容）
   is-locked は base.css 300 に既存・共通 */
.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9000;
  align-items: center;
  justify-content: center;
}
.video-modal.is-active {
  display: flex;
}
.video-modal-inner {
  width: 92vw;
  max-width: 720px;
}
.video-modal-frame {
  width: 100%;
  height: 275px;
  border: none;
  display: block;
  background: #000;
}
.video-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 32px;
  color: white;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  background: none;
  border: none;
  cursor: pointer;
}
