.header {
  display: flex;
  align-items: center;
  justify-content : space-between;
  padding: 12px 16px;
}

.header h2 a {
  text-decoration: none;
  color: #333
}



.nav {
  display: flex;
  gap: 20px;
}

.nav a {
  text-decoration: none;
  color: #333;
}

.nav-category {
  display: block;
  font-weight: bold;
  padding: 10px 5px 5px;
  background-color: #f8f9fa;
}

.nav-sub-item {
  display: block;
  padding-left: 25px;
  line-height: 2.5;
}

.sample-card {
  display: block;
  width: 280px;
  margin: 20px auto;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  color: #333;
  background: #f7f7f7;
  transition: transform 0.2s;
}

.sample-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0,0,0,1);
}

.sample-card.free {
  border: 2px solid #4caf50;
}

.sample-card.paid {
  border: 2px solid #ff9800;
}

/*ディスリコード*/
.content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px 20px;
}

.content h2 {
  text-align: center;
}

/* heroを基準にする */
.hero {
  margin-bottom: 20px;
}

.hero h2 {
  text-align: center;
}

.hero h3 {
  text-align: center;
}

.hero-box {
  width: fit-content;
  margin: 0 auto;
}

/* 画像は元サイズで中央 */
.hero-image {
  display: block;
  margin: 0 auto;
  max-width: 100%; /* スマホだけはみ出し防止 */
  max-height: 600px;
  object-fit: cover;
}

/* ボタンはhero基準で左揃え */
.sound-link {
  margin-top: 20px;
}

/* スタッフ会話ボタンの見た目 */
.play-staff-btn {
  display: block;
  width: 100%;
  padding: 10px;
  font-size: 20px;
  border-radius: 6px;
  border: 1px solid #7fbf9a;
  background: #e8f5ee;
  color: #1f4d3a;
  text-align: center;
  box-sizing: border-box;
  cursor: pointer;
  line-height: 1.5;
}

/*ホバー時*/
.play-staff-btn:hover {
  background: #d9efe3;
}

/*ゲスト会話ボタン*/
.play-guest-btn {
  display: block;
  width: 100%;
  padding: 10px;
  font-size: 20px;
  border-radius: 6px;
  border: 1px solid #7fa9d6;
  background: #eaf2fb;
  color: #1f3f66;
  text-align: center;
  box-sizing: border-box;
  cursor: pointer;
  line-height: 1.5;
}

.play-guest-btn:hover {
  background: #dbe9f8;
}

/*音で覚える英会話*/
.jp-text {
  display: none;
  margin-top: 8px;
  font-size: 14px;
  color: #333;
}

.jp-toggle {
  margin-top: 10px;
  padding: 4px 8px;
  font-size: 12px;
  cursor: pointer;
}

h2.hero {
  text-align: center;
}

h3.scene {
  text-align: center;
}

ul.scene {
  list-style: none !important;
  padding-left: 0;
}

ul.scene li {
  list-style: none;
}

ul.scene a{
  display: block;
  text-decoration: none;
  background-color: #f8f9fa;
  border: 2px solid #007bff;
  border-radius: 15px;
  padding: 15px;
  margin-bottom: 15px;
  color: #333;
  font-weight: bold;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0,1);
}

.footer {
  margin-top: 60px;
  padding: 20px 10px;
  background: #f5f5f5;
  text-align: center;
  font-size: 14px;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.footer-nav a {
  text-decoration: none;
  color: #333;
}

.footer-nav a:hover {
  text-decoration: underline;
}

.footer h3 {
  text-align: left;
}
//トップページのリンクの表示方法
/* ===== 一覧全体 ===== */
.scene-list {
  max-width: 560px;
  margin: 0 auto;
  padding: 10px 14px 40px;
}

/* ===== カード ===== */
.scene-card {
  display: flex;
  align-items: center;
  gap: 14px;

  margin-bottom: 14px;
  padding: 12px;

  border-radius: 16px;
  text-decoration: none;
  color: #333;
  background: #f7f7f7;

  transition: 0.2s;//変化のスピードを抑える
}

.scene-card:hover {
  transform: translateY(-3px);//少し浮き上がらせる
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}

/* ===== 画像 ===== */
.scene-thumb {
  width: 92px;
  height: 92px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}

/* ===== 右側情報 ===== */
.scene-info {
  display: flex;
  flex-direction: column;
}

.scene-title {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 4px;
}

.scene-desc {
  font-size: 13px;
  color: #666;
}

/* ===== 無料 ===== */
.scene-card.free {
  border: 2px solid #4caf50;
}

/* ===== 有料 ===== */
.scene-card.paid {
  border: 2px solid #ff9800;
  position: relative;
}

/* 🔒 有料ぼかし（軽め） */
.scene-card.paid .scene-thumb {
  filter: brightness(0.85);
}

