/* ===== ピックアップセクション全体 ===== */
.pickup-heroine {
  padding: 2rem 1rem;
  background-color: #fff;
  text-align: center;
}

/* ===== 動画セクション ===== */
.pickup-video,
.howto-play {
  margin: 2rem auto;
  text-align: center;
}

.pickup-video video,
.howto-play video {
  width: 100%;
  max-width: 720px;
  height: auto;
  margin: 0 auto 1rem;
  display: block;
}

.video-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 1rem;
  color: #d32d25;
}

.video-desc,
.howto-desc {
  font-size: 1rem;
  color: #333;
  margin-top: 0.5rem;
  white-space: pre-wrap;
}

/* ===== 黄色ボタン（画像＋テキスト対応） ===== */
.pickup-buttons {
  margin: 2rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.pickup-btn.yellow {
  position: relative;
  background-color: #fdd835;
  color: #000;
  padding: 1rem 2rem 1rem 4.5rem;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s;
  display: inline-block;
  line-height: 1.4;
  text-align: left;
  margin: 0 auto;
  z-index: 1;
}

.pickup-btn.yellow::before {
  content: "Click!▶";
  position: absolute;
  width: 100px;
  height: 100px;
  background-color: #fdd835;
  border-radius: 50%;
  top: 50%;
  left: 0;
  transform: translate(-35%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: bold;
  color: #000;
  box-shadow: 0 0 0 2px #fdd835;
  z-index: 0;
}

.pickup-btn.yellow:hover {
  background-color: #ffeb3b;
}

/* ボタンが画像のみの場合は余白・背景をリセット */
.pickup-btn.yellow:has(img) {
  background: none;
  padding: 0;
  border-radius: 0;
}

.pickup-btn.yellow:has(img)::before {
  content: none;
}

.pickup-btn.yellow img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===== 丸型リンクボタン（テキスト・画像対応） ===== */
.pickup-links {
  margin: 2rem auto;
  text-align: center;
}

.pickup-links .link-circles {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.pickup-links .link-circles li {
  margin: 0;
}

/* テキストボタンの場合の赤丸 */
.pickup-links .link-circles li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: #d32d25;
  color: #fff;
  border-radius: 50%;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.2;
  padding: 0.5rem;
  text-wrap: balance;
}

/* ホバー時のカラー */
.pickup-links .link-circles li a:hover {
  background-color: #b71c1c;
}

/* 画像リンク時の見た目リセット */
.pickup-links .link-circles li a:has(img) {
  background: none;
  width: auto;
  height: auto;
  padding: 0;
  border-radius: 0;
}

.pickup-links .link-circles li a img {
  max-width: 100px;
  height: auto;
  display: block;
}

/* ===== タイトルボックスと説明ボックス ===== */
.video-title-box {
  background-color: #00ffcc;
  color: #000;
  padding: 0.5rem 1rem;
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.video-desc-box {
  background-color: #aef;
  padding: 1rem;
  margin-top: 0.5rem;
  border-radius: 0.5rem;
}