/* ============================================================
   元 style.css への追加分だけをここに置く。
   オリジナルのCSSは一切書き換えない（UIを崩さないため）。
   ============================================================ */

/* --- リビール演出をCSSだけで完結させる ---
   元CSSの .reveal は opacity:0 で、JSが IntersectionObserver で .in を付けて
   初めて見える作りだった。これは
     ・JSが1行でも失敗すると全ページの本文が消える
     ・threshold は「要素の高さに対する割合」なので、数千pxある作品一覧では
       画面に入っていても発火せず、opacity:0 のままになる
   という二重の危険があった。
   本文の表示をJSに依存させず、登場アニメーションはCSSアニメーションで行う。
   （custom.css は style.css の後に読み込まれるので、同じ詳細度なら後勝ち） */
/* 既定は「見える」。表示をJSやアニメーションの成否に依存させない。 */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
/* JSが生きているときだけ、まだ画面に入っていない要素を隠して登場演出をつける。
   site.js が .in を付ける。3秒経っても付かなければ強制的に付ける保険つき。 */
html.js .reveal:not(.in) { opacity: 0; transform: translateY(34px); }

@media (prefers-reduced-motion: reduce) {
  html.js .reveal:not(.in) { opacity: 1; transform: none; }
  .reveal { transition: none; }
}

/* --- 下層ページの先頭余白 ---
   header と .age-banner はどちらも position:fixed / top:0。
   トップはヒーローの padding-top で逃げているが、下層は自前で空ける必要がある。
   実際の高さは site.js が実測して入れる（スマホではバナーが2行になり高さが変わる）。
   ここの値はJSが動く前の初期値。 */
.hdr-spacer { height: 104px; }

/* --- フッターのFANZAクレジット表記 ---
   API利用規約上の表示なのでリンク自体は消さない。
   下線は出さず、周りの文字と同じ見た目にする（ホバーでだけ色が変わる）。 */
.foot-copy .credit-link {
  color: inherit;
  text-decoration: none;
}
.foot-copy .credit-link:hover { color: var(--accent); }

/* --- カテゴリカード：A案（タイポグラフィ型・絵文字なし） --- */
.cat-card {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.cat-body { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.cat-eye {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  opacity: 0.85;
}
.cat-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cat-count {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--accent);
  letter-spacing: 0.03em;
  flex-shrink: 0;
}
/* ホバーで左からゴールドが差し込む */
.cat-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.25s;
}
.cat-card:hover::before { transform: scaleY(1); }

/* --- 女優カード：顔写真を丸く収める --- */
.ac-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}
.ac-avatar { overflow: hidden; }

/* --- パンくず ---
   見出し（.sec-header）と左端を揃える。
   .light-sec などの余白が padding:72px 40px なので、左は 40px に合わせる。 */
.breadcrumb {
  padding: 16px 40px 0;
  font-size: 0.74rem;
  color: var(--text-light);
  letter-spacing: 0.01em;
  line-height: 1.6;
}
.breadcrumb a { color: var(--text-mid); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep {
  color: var(--accent);
  margin: 0 2px;          /* 空きすぎないよう詰める */
  font-weight: 700;
}

/* --- ページ送り --- */
.pager {
  display: flex; gap: 8px;
  justify-content: center; flex-wrap: wrap;
  margin: 8px auto 0;
}
.pager a, .pager span {
  min-width: 42px; text-align: center;
  padding: 9px 14px;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  border: 1px solid var(--border-light);
  background: var(--bg-white);
  color: var(--text-mid);
  border-radius: 3px;
  transition: all 0.25s;
}
.pager a:hover { border-color: var(--accent); color: var(--accent); }
.pager .current {
  background: var(--accent); border-color: var(--accent);
  color: var(--dark);
}
.pager-info {
  text-align: center;
  font-size: 0.7rem;
  color: var(--text-light);
  letter-spacing: 0.08em;
  margin-top: 14px;
}

/* --- タグ列（関連リンク） --- */
.taglist { display: flex; flex-wrap: wrap; gap: 7px; }
.taglist a {
  display: inline-block;
  padding: 6px 13px;
  font-size: 0.73rem;
  color: var(--text-dark);
  text-decoration: none;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  border-radius: 2px;
  transition: all 0.25s;
}
.taglist a:hover { background: var(--accent); color: var(--dark); border-color: var(--accent); }

/* --- 作品個別ページ --- */
.item-wrap {
  max-width: 1400px; margin: 0 auto;
  padding: 0 40px;
  display: grid; grid-template-columns: minmax(0,1fr) 320px;
  gap: 40px; align-items: start;
}
.item-title {
  font-size: 1.35rem; font-weight: 900;
  line-height: 1.55; margin-bottom: 18px;
  color: var(--text-dark);
}
.item-jacket {
  width: 100%; aspect-ratio: 770/518;
  object-fit: cover; border-radius: 3px;
  box-shadow: var(--shadow);
  display: block;
}
.item-side {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 3px;
  padding: 20px 18px;
  box-shadow: var(--shadow);
  position: sticky; top: 90px;
}
.side-title {
  font-size: 0.62rem; letter-spacing: 0.24em;
  color: var(--accent); font-weight: 700;
  text-transform: uppercase; margin-bottom: 12px;
}
.spec-row {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 9px 0; font-size: 0.76rem;
  border-bottom: 1px solid var(--border-light);
}
.spec-row span:first-child { color: var(--text-light); flex-shrink: 0; }
.spec-row span:last-child { text-align: right; color: var(--text-dark); }
/* 作品ページのCTA。
   文字の見た目は .btn-gold（トップのボタン）に合わせる。
   横幅いっぱいにしたいので display:block だけ変えている。 */
.cta-gold {
  display: block; text-align: center;
  padding: 15px 20px; margin: 22px 0;
  background: var(--accent);
  border: 2px solid var(--accent);
  color: var(--dark);
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700; font-size: 0.8rem; letter-spacing: 0.12em;
  text-decoration: none;
  transition: all 0.3s;
}
.cta-gold:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  transform: translateY(-2px);
}

/* --- サンプル画像ギャラリー ---
   画像はFANZAのサーバーから直接読むので、こちらの容量・転送量は増えない。
   ただし1ページ16枚になるため lazy loading は必須。 */
.sample-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 8px;
}
.sample-item {
  display: block;
  overflow: hidden;
  border-radius: 3px;
  border: 1px solid var(--border-light);
  background: var(--bg-gray);
  aspect-ratio: 3 / 2;
  transition: border-color .25s, transform .25s;
}
.sample-item img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .35s;
}
.sample-item:hover { border-color: var(--accent); transform: translateY(-2px); }
.sample-item:hover img { transform: scale(1.06); }

/* --- サンプル画像ビューア ---
   別タブで開くと次を見るのに毎回閉じる必要があるため、その場で左右に送れるようにする。 */
.viewer {
  position: fixed; inset: 0; z-index: 300;
  display: none;
  align-items: center; justify-content: center;
  background: rgba(8, 8, 12, 0.94);
  backdrop-filter: blur(4px);
}
.viewer.open { display: flex; }
.viewer-img {
  max-width: 92vw; max-height: 88vh;
  object-fit: contain;
  border-radius: 3px;
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
}
.viewer button {
  position: absolute;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(91,188,204,.35);
  color: var(--accent);
  cursor: pointer;
  transition: background .2s, border-color .2s;
  line-height: 1;
}
.viewer button:hover { background: rgba(91,188,204,.25); border-color: var(--accent); }
.viewer-prev, .viewer-next {
  top: 50%; transform: translateY(-50%);
  width: 54px; height: 84px;
  font-size: 2.4rem;
  border-radius: 3px;
}
.viewer-prev { left: 16px; }
.viewer-next { right: 16px; }
.viewer-close {
  top: 16px; right: 16px;
  width: 44px; height: 44px;
  font-size: 1.6rem; border-radius: 50%;
}
.viewer-count {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  color: var(--accent);
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 1.1rem; letter-spacing: .12em;
}

/* --- 件数の表示（数字を大きく、単位は小さく、間は詰める） --- */
.count-label {
  margin-top: 12px;
  display: flex; align-items: baseline; gap: 2px;
}
.count-num {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 2.6rem; line-height: 1;
  color: var(--accent);
  letter-spacing: 0.02em;
}
.count-unit {
  font-size: 0.82rem; font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.06em;
}

/* --- 女優プロフィール --- */
.profile-wrap {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  gap: 26px;
  align-items: start;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 3px;
  padding: 24px;
  box-shadow: var(--shadow);
}
.profile-photo {
  width: 148px; height: 148px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-border);
  display: block;
}
/* 1項目あたりの幅が足りないと「B87 / W57 / H86」や日付が折り返して
   レイアウトが崩れるため、最低幅を広めに取り、値は折り返さない。 */
.profile-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0 28px;
}
.profile-facts .spec-row {
  padding: 9px 0;
  gap: 16px;
  align-items: baseline;
}
.profile-facts .spec-row span:first-child {
  font-size: 0.72rem;
  white-space: nowrap;
}
.profile-facts .spec-row span:last-child {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 700;
}
.profile-lead {
  font-size: .82rem; line-height: 1.9; color: var(--text-mid);
  margin-bottom: 16px;
}
.profile-lead b { color: var(--accent); font-weight: 700; }

/* --- 独自の集計ページ（ランキング表） --- */
.stat-table { width: 100%; border-collapse: collapse; font-size: .82rem; }
.stat-table th, .stat-table td {
  padding: 11px 12px; border-bottom: 1px solid var(--border-light); text-align: left;
}
.stat-table th {
  font-size: .68rem; letter-spacing: .12em; color: var(--accent);
  text-transform: uppercase; font-weight: 700; white-space: nowrap;
}
/* 数値セルは左寄せ。見出しと同じ位置に揃えないと、
   列ごとに数字の位置がバラついて読み取りにくい。 */
.stat-table td.statnum {
  text-align: left; white-space: nowrap;
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 1.05rem; color: var(--text-dark);
}
.stat-table tr:hover td { background: var(--accent-dim); }
.stat-table a { color: var(--text-dark); text-decoration: none; font-weight: 700; }
.stat-table a:hover { color: var(--accent); }
.stat-bar {
  display: inline-block; height: 6px; background: var(--accent);
  border-radius: 3px; vertical-align: middle; margin-right: 8px; min-width: 2px;
}
.table-scroll { overflow-x: auto; }

@media (max-width: 900px) {
  .profile-wrap { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .profile-facts { text-align: left; width: 100%; }
  /* スマホでは年齢確認バナーと紹介文を左寄せにする（中央寄せだと読みにくい） */
  /* 元は1文をそのまま流していたので「…ご遠慮く / ださい。」と半端に折り返していた。
     18+ の右に、文単位で2行に割る。 */
  /* 元CSSは600px以下で flex-direction:column にしている。縦並びだと
     align-items:center が「横方向の中央寄せ」になり、左寄せ指定が効かない。
     横並びに戻したうえで左寄せする。 */
  .age-banner {
    text-align: left;
    flex-direction: row; align-items: center; justify-content: flex-start;
  }
  .age-banner > div {
    text-align: left;
    display: flex; align-items: center; gap: 8px;
  }
  .age-badge { margin-right: 0; flex: 0 0 auto; }
  .age-text > span { display: block; line-height: 1.55; }
  .profile-lead { text-align: left; }
  .viewer-prev, .viewer-next { width: 44px; height: 68px; font-size: 2rem; }
  .viewer-prev { left: 8px; }
  .viewer-next { right: 8px; }
  .count-num { font-size: 2.1rem; }
  .sample-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 6px; }
  .item-wrap { grid-template-columns: 1fr; padding: 0 20px; gap: 24px; }
  .item-side { position: static; }
  .breadcrumb { padding: 12px 20px 0; }
  .cat-count { font-size: 1.25rem; }
  .hdr-spacer { height: 92px; }
}
@media (max-width: 560px) {
  .breadcrumb { padding: 10px 14px 0; }
  .item-wrap { padding: 0 14px; }
  .item-title { font-size: 1.1rem; }
}

/* ページを作っていない女優は、リンクではなく素のタグとして出す（404防止） */
.tag-plain {
  display: inline-block;
  padding: 6px 13px;
  font-size: .73rem;
  color: var(--text-mid);
  background: var(--bg-gray);
  border: 1px solid var(--border-light);
  border-radius: 2px;
  margin: 0 4px 4px 0;
}

/* --- 固定ページ（サイトについて／プライバシーポリシー） --- */
/* 中央寄せ。max-width だけだと左に寄ってしまう。 */
.doc-wrap { max-width: 860px; margin: 0 auto; }
.doc-block { margin-bottom: 40px; }
.doc-title {
  font-size: 1.05rem; font-weight: 900; color: var(--text-dark);
  padding-bottom: 10px; margin-bottom: 16px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}
.doc-block p { font-size: .84rem; line-height: 2; color: var(--text-mid); margin-bottom: 14px; }
.doc-note {
  background: var(--accent-dim);
  border-left: 3px solid var(--accent);
  padding: 14px 18px; border-radius: 2px;
}
.doc-list { margin: 0 0 14px; padding-left: 1.2em; }
.doc-list li { font-size: .84rem; line-height: 2; color: var(--text-mid); }

/* ---------------------------------------------------------------- フッター
   サイトが増えても入るよう、姉妹サイトを独立した1列にした。
   そのぶんジャンルは2列ぶち抜きをやめて1列に戻している。
   並びは サイト説明 → ジャンル → コンテンツ → 姉妹サイト。 */
.foot-more {
  display: inline-block; margin-top: 16px;
  font-size: .7rem; color: rgba(91,188,204,.75);
  text-decoration: none; letter-spacing: .04em; font-weight: 300;
  transition: color .3s;
}
.foot-more:hover { color: var(--accent); }
.foot-meta {
  list-style: none; display: flex; flex-wrap: wrap; gap: 6px 18px;
  margin-top: 18px; padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.05);
}
.foot-meta a {
  font-size: .72rem; color: #888; text-decoration: none;
  font-weight: 300; transition: color .3s;
}
.foot-meta a:hover { color: var(--accent); }

@media (max-width: 960px) {
  /* 元CSSがここで 1fr 1fr になる。4列ぶんが2段に折り返る。 */
  .foot-sister { margin-top: 0; }
}

/* -------------------------------------------------------- ヒーローのメイン画像
   元テンプレはここに同心円のSVGしか置いておらず、用意されていた絵が
   どこからも参照されていなかった。同心円は絵と重なるので shell.py 側で外した。

   ぼかしと透過は画像に焼き込んである（tools/make_hero.py）。
   CSSのマスクや drop-shadow は使わない。drop-shadow は暗い背景の上だと
   白いモヤに見えて「透過が効いていない」ように映る。 */
.hero-decoration { opacity: 1; }          /* 元は 0.55。絵まで色褪せるので解除 */
.hero-visual {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  /* 幅だけで大きさを決めると、画面が縦に短いときに絵が入りきらず、
     .hero の overflow:hidden で**頭が切れる**（2026-08-15に発生）。
     入れ物（.hero-decoration＝ヒーロー高さの78%）いっぱいを与えたうえで
     object-fit:contain に任せ、幅・高さの狭いほうに合わせて縮める。 */
  width: 86%; max-width: 470px; height: 100%;
  display: block; line-height: 0;
}
.hero-visual img {
  width: 100%; height: 100%;
  object-fit: contain;
  /* 下端の曲線をKPI帯の手前に置きたいので、縮むときは下を基準にする */
  object-position: center bottom;
  display: block;
}

/* 本文（.hero-title 等）は fadeUp で 0.2〜0.8s ずらして出てくる。
   画像だけアニメーションが無く即表示だったため、画像が先に出て見えていた。
   見出しと同じ 0.35s に合わせる。
   .hero-visual は translate(-50%,-50%) で中央寄せしているので、
   汎用の fadeUp を使うとその位置指定を上書きして飛んでしまう。専用に持つ。 */
.hero-visual {
  opacity: 0;
  animation: heroVisualIn 0.9s ease 0.35s forwards;
}
@keyframes heroVisualIn {
  from { opacity: 0; transform: translate(-50%, calc(-50% + 26px)); }
  to   { opacity: 1; transform: translate(-50%, -50%); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-visual { animation-duration: .01s; animation-delay: 0s; }
}

/* ---------------------------------------------- 作品ページの出演者欄（畳み）
   企画作品の6人程度はそのまま出す（クリックで各女優ページへ飛べるほうが便利）。
   総集編は46人になることがあり枠に収まらないので、そこだけ畳む。
   以前は先頭5名で打ち切っていたため、「その女優の作品」から飛んでも
   本人が居ないように見えていた。 */
.cast-more { margin-top: 8px; }
.cast-more > summary {
  cursor: pointer; list-style: none;
  font-size: .74rem; color: var(--accent);
  padding: 5px 0; user-select: none;
}
.cast-more > summary::-webkit-details-marker { display: none; }
.cast-more > summary::after { content: " ▼"; font-size: .6rem; }
.cast-more[open] > summary::after { content: " ▲"; }
.cast-more > summary:hover { text-decoration: underline; }
.cast-more > .taglist { margin-top: 6px; }


/* ------------------------------------------------ 広告であることの明示（PR表記）
   アフィリエイトリンクは広告。景品表示法のステマ規制（2023年10月施行）で、
   広告であると一般消費者が判別できる表示が必要になった。
   フッターだけだと見つけにくいので、全ページの本文先頭にも出す。 */
.pr-notice {
  display: flex; align-items: center; gap: 7px;
  margin: -10px 0 20px; font-size: .68rem; color: var(--text-light);
}
.pr-badge {
  flex: 0 0 auto; font-size: .6rem; font-weight: 700; letter-spacing: .08em;
  color: #5bbccc; border: 1px solid #5bbccc; border-radius: 2px; padding: 1px 6px;
}


/* ------------------------------------------- about / privacy の体裁
   この2ページだけ、暗いヒーロー＋波＋白いカードの構成に戻す。
   下層ページと同じ平らな見た目だと、規約系の長文が読みにくい。 */
.doc-hero {
  min-height: 0;                 /* 元の .hero は 100vh あり高すぎる */
  /* パンくずの下に来るので、上は詰めてよい。下は波が重なるぶん少し残す。 */
  padding: 64px 40px 78px;
  display: block;
}
.doc-hero-title { font-size: clamp(2rem, 4.2vw, 3.2rem); margin-bottom: 0; }
.doc-sec { padding-top: 8px; }
.doc-wrap { max-width: 950px; margin: 0 auto; }
/* 各項目を白いカードにする */
.doc-block {
  background: var(--bg-white);
  border-radius: 4px;
  box-shadow: var(--shadow);
  padding: 34px 42px;
  margin-bottom: 26px;
}
.doc-title {
  border-bottom: 1px solid var(--border-light);
  border-left: 4px solid var(--accent);
  padding: 0 0 12px 14px;
  margin-bottom: 20px;
}
@media (max-width: 900px) {
  .doc-hero { padding: 40px 18px 54px; }
  .doc-block { padding: 24px 20px; }
}


/* --- 作品ページのジャケット ---
   素人系のジャケットは縦長(590x800)。横長の枠に入れると上下が切れるので、
   縦長のときだけ全体を見せる（site.js が .portrait を付ける）。 */
.item-jacket.portrait { object-fit: contain; background: var(--bg-gray); }

/* --- KPIラベルの視認性 ---
   元CSSは #444。ほぼ黒の背景（#0a0a0f）に対してコントラスト比 2.0:1 しかなく、
   ほとんど読めなかった。サイト説明文（.hero-desc）と同じ #aaa に揃える（8.5:1）。 */
.stat-label { color: #aaa; }

/* --- 姉妹サイト（フッター）---
   全ページに出る。作品ページのサイドバーはFANZAへのCTAの真下なので、
   そこには置かない（収益になるクリックを分散させないため）。 */
.foot-sister .foot-links { display: flex; flex-direction: column; gap: 4px; }
.foot-sister .self { color: var(--text-light); opacity: .6; }

/* --- フッターの「サイトについて／プライバシーポリシー」---
   元は横並びで、姉妹サイトの一覧と字の大きさも色も違って揃わなかった。
   同じ .foot-links の見た目（縦並び・同じ字送り）に合わせる。 */
.foot-meta {
  display: flex; flex-direction: column; gap: 4px;
  margin-top: 18px; list-style: none;
}
.foot-meta li a {
  /* 姉妹サイト側（.foot-links a）と同じ 0.75rem / #aaa / font-weight:300 */
  font-size: 0.75rem;
  color: #aaa;
  font-weight: 300;
  text-decoration: none;
  transition: color .3s;
}
.foot-meta li a:hover { color: var(--accent); }

/* --- ジャケットをFANZAへのリンクにする ---
   「大きく見たい」で押す人が多いので、押せることが分かるようにする。
   拡大・縮小以外の加工は規約で禁じられているので、画像そのものには触らない。
   重ねるのは画像の外側の枠と、下辺に出る文字だけ。 */
.item-jacket-link {
  display: block; position: relative; text-decoration: none;
  line-height: 0;                      /* 画像の下の余白を消す */
}
.item-jacket-link .item-jacket { transition: opacity .25s; }
.item-jacket-link:hover .item-jacket { opacity: .88; }
.item-jacket-hint {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 10px 14px;
  background: linear-gradient(transparent, rgba(0,0,0,.72));
  color: #fff; font-size: .78rem; font-weight: 700;
  letter-spacing: .04em; line-height: 1.4;
  text-align: right;
  opacity: 0; transition: opacity .25s;
}
.item-jacket-link:hover .item-jacket-hint,
.item-jacket-link:focus-visible .item-jacket-hint { opacity: 1; }
/* 触って操作する端末はホバーが無いので、最初から出しておく */
@media (hover: none) {
  .item-jacket-hint { opacity: 1; }
}
