
/* 右コンテンツ用 最上部 コンセプト関連 CSS */
.concept-section {
  position: relative;
  overflow: hidden;
  text-align: center;
  color: #fff;
  height: 175px; /* ←親の高さ基準で 70% */
}
/* 背景用の画像を絶対配置に */
.concept-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;  /* 高さ150pxの枠にきれいに収める */
  z-index: 1;
}
/* テキストを前面に */
.concept-inner {
  position: relative;
  z-index: 2;
  padding: 3px;   /* 高さ150pxに収めるので余白は控えめに */
}
.concept-inner h2 {
  margin-bottom: 10px;
  font-size: 1.5em;
  color: #222;
}
.concept-lead {
  font-size: 1em;
  line-height: 1.6;
  color: #333;
  margin-bottom: 20px;
}
.concept-button {
  display: inline-block;
  background-color: #e573b8;
  color: #fff;
  padding: 12px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}
.concept-button:hover {
  background-color: #d05fa1;
}
/* 右コンテンツ用 二段目 リリース関連 CSS */
.release-section {
  width: 100%;          /* right-contents-25 に追随 */
  max-width: none;      /* ←900pxは外す */
  margin: 0 auto;       /* センター寄せを残したいならそのまま */
  padding: 10px 0px 30px 0px; /* 上 右 下 左 */
}
.release-section h2 {
  margin-bottom: 17px;
  text-align: center;
}
.release-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}
.release-grid2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
}
.release-grid3 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
}
.release-card {
  background: #fff;
  border: 1px solid #ddd;
  padding: 10px 2px 5px 2px; /* 上 右 下 左 */
  width: calc(33.333% - 13.33px);
  box-sizing: border-box;
  border-radius: 6px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
  background: #f9f9f9; /* ごく薄いグレー */
  text-align: center;
}
.jacket{
  width: 100%;        /* 親に追随 */
  max-width: 150px;   /* ただし大きくなりすぎない上限 */
  height: auto;       /* 縦横比維持 */
  display: block;
  margin: 0 auto 12px;
}
.release-card h3 {
  font-size: 15px;        /* ←固定pxで引き締め感UP */
  font-weight: bold;
  margin: 8px 0 10px;     /* ↑画像との間:8px、↓テキストとの間:10px */
  color: #333;
}
.intro-text {
  text-align: left;
  max-width: 90%;
  margin: 0 auto 12px auto;
  font-size: 14px;
  color: #333;
}
.track-count {
  font-size: 13px;
  color: #666;
  margin-top: 10px;
  margin-bottom: 10px;
  text-align: center;
}
.release-card audio {
  width: 100%;
  height: 28px;
  margin-bottom: 3px;  /* ← ここを小さくする */
}
.detail-button {
  display: inline-block;
  font-size: 14px;
  color: #fff;
  background: #0078d7;
  text-decoration: none;
  border-radius: 6px;
  padding: 4px 14px;
  margin: 0 0 3px;
  transition: background-color 0.2s;
}
.track-list {
  margin-top: 10px;
}
.release-card {
  position: relative; /* ポップアップをこの中に固定 */
}
/* 右コンテンツ用 ３段目 ニュース・更新情関連 CSS */
.news-section {
  background: #fafafa;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  padding: 6px 40px;
  margin: 0 0 25px;
}
.news-inner {
  margin: 0 auto;
}
.news-section h2 {
  margin-bottom: 20px;
  text-align: center;
  color: #333;
}
.news-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  color: #444;
}
.news-list li {
  margin-bottom: 7px;
  line-height: 1.6;
}
.news-list .date {
  font-weight: bold;
  margin-right: 0.5em;
  color: #0078d7;
}
.news-list li a {
  color: #0078d7;
  text-decoration: none;
}
.news-list li a:hover {
  text-decoration: underline;
}

/* 右コンテンツ用 ４段目 ジャンルから探す関連 CSS */
.genre-section {
  background-color: #f4f4f4;
  padding: 6px 20px;
  margin-bottom: 20px;
}
.genre-inner {
  margin: 0 auto;
  text-align: center;
}
.genre-section h2 {
  color: #222;
  margin-bottom: 20px;
}

.genre-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start; /* ←ここを変更 */
  margin-bottom: 15px;
}
.genre-card {
  position: relative;
  display: block;
  width: calc(33.333% - 13.33px);
  height: 160px;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: 0 0 5px rgba(0,0,0,0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}
/* ホバー演出 */
.genre-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* 下部だけを暗くするオーバーレイに変更 */
.genre-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 2));
  z-index: 0;
}
.genre-card .genre-content {
  position: absolute;
  bottom: -8px; /* 下端から10pxの位置に */
  left: 0;
  right: 0;
  padding: 10px 15px 15px;  /* 上10px, 左右15px, 下15px */
  z-index: 1;
  text-align: left;
}

/* 見出し */
.genre-card h3 {
  font-size: 15px;
  margin: 0;                 /* 下の余白もゼロに */
  font-weight: bold;
  line-height: 1.2;          /* 高さを詰める */
}
/* 説明文 */
.genre-card p {
  font-size: 13px;
  margin: 4px 0 0;           /* 上にちょっとだけ余白 */
  color: #eee;
  line-height: 1.4;          /* 読みやすく */
}
.genre-card h3,
.genre-card p {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

/* 各ジャンルごとの背景画像例 */
.genre-shinsho {
  background-image: url("/common/img/top/ga_shinsho.jpg");
}
.genre-electronic {
  background-image: url("/common/img/top/ga_electronic.jpg");
}
.genre-cinematic {
  background-image: url("/common/img/top/ga_cinematic.jpg");
}
.genre-comical {
  background-image: url("/common/img/top/ga_comical.jpg");
}
.genre-healing {
  background-image: url("/common/img/top/ga_healing.jpg");
}
.genre-jazz {
  background-image: url("/common/img/top/ga_smoothjazz.jpg");
}
.genre-news {
  background-image: url("/common/img/genre_news.jpg");
}
.genre-bossa {
  background-image: url("/common/img/top/ga_tropical.jpg");
}
.genre-pops {
  background-image: url("/common/img/top/ga_pops.jpg");
}
.genre-rock {
  background-image: url("/common/img/top/ga_rock.jpg");
}
.genre-latin {
  background-image: url("/common/img/top/ga_latin.jpg");
}
.genre-world {
  background-image: url("/common/img/top/ga_world.jpg");
}
.genre-wa {
  background-image: url("/common/img/top/ga_wa.jpg");
}
.genre-rekishi {
  background-image: url("/common/img/top/ga_rekishi.jpg");
}
.genre-jingle {
  background-image: url("/common/img/top/ga_jingle.jpg");
}
.genre-card.genre-card--purpose::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: #356178 !important;
  z-index: 0;
}
.sence-news {
  background-image: url("/common/img/top/sc_news.jpg");
}
.sence-use_sports {
  background-image: url("/common/img/top/sc_use_sports.jpg");
}
.sence-use_tec {
  background-image: url("/common/img/top/sc_use_tec.jpg");
}
.sence-use_docu_social {
  background-image: url("/common/img/top/sc_use_docu_social.jpg");
}
.sence-use_docu_nature {
  background-image: url("/common/img/top/sc_use_docu_nature.jpg");
}
.sence-use_docu_human {
  background-image: url("/common/img/top/sc_use_docu_human.jpg");
}
.sence-use_docu_history {
  background-image: url("/common/img/top/sc_use_docu_history.jpg");
}
.sence-use_variety {
  background-image: url("/common/img/top/sc_use_variety.jpg");
}
.sence-use_lifestyle {
  background-image: url("/common/img/top/sc_use_lifestyle.jpg");
}
.sence-use_kids {
  background-image: url("/common/img/top/sc_use_kids.jpg");
}
.sence-use_weather {
  background-image: url("/common/img/top/sc_use_weather.jpg");
}
.sence-use_drama_cinema {
  background-image: url("/common/img/top/sc_use_drama_cinema.jpg");
}
.sence-use_promotion {
  background-image: url("/common/img/top/sc_use_promotion.jpg");
}
.sence-use_store {
  background-image: url("/common/img/top/sc_use_store.jpg");
}
.sence-use_store {
  background-image: url("/common/img/top/sc_use_store.jpg");
}
.sence-use_filler_bgm {
  background-image: url("/common/img/top/sc_use_filler_bgm.jpg");
}

.track {
  width: 95%;
  margin: 0 auto;                /* ← 中央寄せ */
  display: flex;                 /* ← 子要素を横並びに */
  justify-content: center;       /* ← 横方向のセンター揃え */
  align-items: center;           /* ← 縦方向のセンター揃え */
  gap: 15px;                     /* ← 子要素間の隙間15px */
  box-sizing: border-box;        /* ← 安全のため */
  margin-bottom: 5px;
}


/* 更新情報の解説ボックス */
.update-info-box {
  width: 100%;
  margin: 10px auto 5px;
  font-size: 14px;
  display: flex;              /* ← 左右に分ける */
  gap: 15px;                  /* カラムの間隔 */
  align-items: flex-start;   /* ★ これが重要：上下の揃えを上に固定 */
  color: #444;
}

/* 左カラム（文章） */
.update-info-left-a {
  width: 35%;
  flex: 1;                    /* 余った幅をすべて使う */
  line-height: 1.7;
}

/* 右カラム（画像） */
.update-info-right-a {
  width: 65%;
  flex-shrink: 0;             /* 画像サイズを維持 */
}

.update-info-left-b {
  width: 30%;
  flex-shrink: 0;             /* 画像サイズを維持 */
}

/* 右カラム（画像） */
.update-info-right-b {
  width: 70%;
  flex: 1;                    /* 余った幅をすべて使う */
  line-height: 1.7;
}

/* 画像は親の幅いっぱいに広げる */
.update-info-right-a img {
  width: 100%;      /* ★ 親要素にフィット */
  height: auto;
  display: block;   /* 余計な隙間防止 */
  border-radius: 6px;
}
/* 画像は親の幅いっぱいに広げる */
.update-info-right-b img {
  width: 100%;      /* ★ 親要素にフィット */
  height: auto;
  display: block;   /* 余計な隙間防止 */
  border-radius: 6px;
}
/* 画像は親の幅いっぱいに広げる */
.update-info-left-b img {
  width: 100%;      /* ★ 親要素にフィット */
  height: auto;
  display: block;   /* 余計な隙間防止 */
  border-radius: 6px;
}
.update-info-box2 {
  width: 100%;
  margin: 0px auto 20px;
  color: #444;
}
.update-info-box2 img {
  width: 100%;      /* ★ 親要素にフィット */
  height: auto;
  display: block;   /* 余計な隙間防止 */
  border-radius: 6px;
}
.update-info-box3 {
  width: 100%;
  margin: 0px auto 0px;
  color: #444;
}
/* 更新情報の解説ボックス */
.update-info-box4 {
  width: 100%;
  margin: -10px auto 15px;
  font-size: 14px;
  display: flex;              /* ← 左右に分ける */
  gap: 15px;                  /* カラムの間隔 */
  align-items: flex-start;   /* ★ これが重要：上下の揃えを上に固定 */
  color: #444;
}
/* 更新情報の解説ボックス */
.banner_xmas {
  width: 100%;
  margin: 20px auto 5px;
  display: flex;              /* ← 左右に分ける */
  align-items: flex-start;   /* ★ これが重要：上下の揃えを上に固定 */
}
.banner_xmas img {
  width: 100%;      /* ★ 親要素にフィット */
  height: auto;
  display: block;   /* 余計な隙間防止 */
  border-radius: 6px;
}