@charset "UTF-8";

/* ▼▼▼ リセットCSS & 基本設定 ▼▼▼ */
body,
h1,
h2,
h3,
p,
ul,
li,
figure {
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  background-color: #f4f7f6;
  color: #333;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.7;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* ▼▼▼ ヘッダー (完全中央寄せ) ▼▼▼ */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 0 20px;
}

.logo,
.logo a {
  display: flex;
  align-items: center;
  height: 100%;
}

.logo img {
  height: 40px;
  width: auto;
}

nav {
  display: flex;
  gap: 30px;
}

nav a {
  font-size: 14px;
  font-weight: bold;
  color: #555;
  text-transform: uppercase;
  position: relative;
}

nav a:hover {
  color: #2d9e65;
}

@media (max-width: 600px) {
  .header-inner {
    gap: 20px;
    justify-content: space-between;
  }

  nav {
    gap: 15px;
  }

  nav a {
    font-size: 11px;
  }
}

/* ▼▼▼ ヒーローセクション ▼▼▼ */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 80px 20px 40px;
  background: #2d9e65;
  color: #fff;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/kv.png');
  background-size: cover;
  background-position: center;
  filter: blur(20px) brightness(0.6);
  z-index: 1;
  transform: scale(1.1);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 800px;
  text-align: center;
  animation: fadeIn 1s ease;
}

/* ▼▼▼ キャッチコピー (レイヤー構造に変更) ▼▼▼ */
.catch-copy {
  position: relative;
  /* 重ね合わせの基準 */
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  text-align: center;
  margin-bottom: 20px;
  z-index: 10;
}

/* 追加：背景の「ダークホース」 */
.catch-copy .bg-text {
  display: block;
  font-size: 30px;
  /* スマホでのサイズ */
  color: rgba(0, 0, 0, 0.2);
  /* 黒の透かし */
  line-height: 1;
  margin-bottom: -30px;
  /* 下の文字に被せるためのネガティブマージン */
  position: relative;
  z-index: 1;
  /* 奥に配置 */
  letter-spacing: 0.1em;
  transform: scaleY(1.2);
  /* 少し縦長にしてインパクトを出す */
  /* 縁取りをつけて視認性を上げる（お好みで） */
}

/* メイン：競馬ゲームの超大穴 */
.catch-copy .main-text {
  position: relative;
  z-index: 2;
  /* 手前に配置 */
  font-size: 18px;
  /* スマホでのサイズ */
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
  line-height: 1.2;
  display: inline-block;
}

/* サブ：スゴロク×ハクスラ... */
.catch-copy .sub-text {
  position: relative;
  z-index: 2;
  display: block;
  font-size: 12px;
  color: #ffdd55;
  margin-top: -5px;
  white-space: nowrap;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
}

/* PC表示 (768px以上) の調整 */
@media (min-width: 768px) {
  .catch-copy .bg-text {
    font-size: 60px;
    /* PCでは巨大に */
    margin-bottom: -26px;
    /* 被り具合を調整 */
  }

  .catch-copy .main-text {
    font-size: 34px;
  }

  .catch-copy .sub-text {
    font-size: 20px;
    margin-top: 2px;
  }
}

/* KV画像 */
.kv-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  margin-bottom: 30px;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

/* ▼▼▼ ストアバナー ▼▼▼ */
.store-banner {
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 30px;
  border-radius: 12px;
  background: repeating-linear-gradient(45deg,
      #ffcc00,
      #ffcc00 10px,
      #ffdb4d 10px,
      #ffdb4d 20px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  padding: 15px 25px;
  border: 3px solid #fff;
}

.store-banner ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

/* アイコン */
.banner-item.icon-area img {
  width: 84px;
  height: 84px;
  border-radius: 18px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  display: block;
  border: 2px solid #fff;
}

/* テキストエリア */
.banner-item.text-area {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 1.2;
}

.text-line {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  white-space: nowrap;
  text-shadow:
    3px 0 0 #fff, -3px 0 0 #fff,
    0 3px 0 #fff, 0 -3px 0 #fff,
    2px 2px 0 #fff, -2px -2px 0 #fff,
    2px -2px 0 #fff, -2px 2px 0 #fff;
}

.green-text {
  color: #009900;
}

.orange-text {
  color: #ff4500;
}

.size-s {
  font-size: 20px;
}

.size-l {
  font-size: 22px;
  letter-spacing: 0.05em;
}

.size-m {
  font-size: 18px;
  letter-spacing: 0;
}

/* ボタンエリア */
.banner-item.btn-area {
  display: flex;
  gap: 10px;
}

.banner-item.btn-area a {
  display: block;
  transition: transform 0.2s;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.5));
}

.banner-item.btn-area a:hover {
  transform: scale(1.05);
}

.banner-item.btn-area img {
  height: 60px;
  width: auto;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .store-banner {
    width: 95%;
    padding: 20px 10px;
  }

  .store-banner ul {
    flex-direction: column;
    gap: 15px;
  }

  .size-s {
    font-size: 16px;
  }

  .size-l {
    font-size: 27px;
  }

  .size-m {
    font-size: 21px;
  }

  .banner-item.btn-area {
    width: 100%;
    justify-content: center;
    align-items: center;
  }

  .banner-item.btn-area img {
    height: 55px;
    width: auto;
    object-fit: contain;
  }
}

/* ▼▼▼ コンテンツセクション共通 ▼▼▼ */
section {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 24px;
  color: #2d9e65;
  margin-bottom: 40px;

  /* 以前の指定を削除 */
  /* position: relative; */
  /* display: inline-block; */
  /* left: 50%; */
  /* transform: translateX(-50%); */

  /* 新しい指定 */
  font-weight: bold;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
  /* 幅をコンテンツに合わせる */
}

.section-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 4px;
  background: #2d9e65;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* NEWS */
.news-list {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.news-item {
  border-bottom: 1px solid #eee;
  padding: 15px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: baseline;
}

.news-item:last-child {
  border-bottom: none;
}

.news-date {
  font-size: 12px;
  color: #2d9e65;
  font-weight: bold;
  font-family: monospace;
  background: #e8f5e9;
  padding: 2px 8px;
  border-radius: 4px;
}

.news-text {
  font-size: 14px;
  flex: 1;
  color: #333;
}

.twitter-link {
  display: block;
  text-align: center;
  margin-top: 20px;
  color: #1da1f2;
  font-size: 14px;
  font-weight: bold;
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.about-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.about-card:hover {
  transform: translateY(-5px);
}

.about-card h3 {
  color: #2d9e65;
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: bold;
}

.about-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.8;
}

.more-btn {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: bold;
  color: #fff;
  background: #2d9e65;
  box-shadow: 0 4px 10px rgba(45, 158, 101, 0.3);
}

.more-btn:hover {
  background: #258555;
  box-shadow: 0 6px 15px rgba(45, 158, 101, 0.4);
}

/* Footer */
footer {
  background: #333;
  padding: 40px 20px;
  text-align: center;
  font-size: 12px;
  color: #aaa;
}

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

.footer-nav a {
  color: #ccc;
}

.footer-nav a:hover {
  color: #fff;
}

.streaming-badge {
  display: inline-block;
  margin-top: 15px;
  padding: 8px 25px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: 0.05em;
  backdrop-filter: blur(4px);
}

/* 2カラムレイアウト */
.news-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.col-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  font-size: 18px;
  color: #333;
  border-bottom: 2px solid #ddd;
  padding-bottom: 10px;
  margin-bottom: 20px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.col-title .sub {
  font-size: 12px;
  font-weight: normal;
  color: #888;
}

/* ニュースアイテム共通 */
.news-item {
  border-bottom: 1px solid #eee;
  margin-bottom: 0;
  background: #fff;
  transition: background 0.2s;
}

.news-item:first-child {
  border-top: 1px solid #eee;
}

/* ▼ 開閉式 (details) のスタイル ▼ */
details.news-item summary {
  padding: 15px 10px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  position: relative;
}

details.news-item summary::-webkit-details-marker {
  display: none;
}

details.news-item:hover {
  background: #fafafa;
}

/* 開閉アイコン */
.icon-open {
  margin-left: auto;
  font-size: 10px;
  color: #aaa;
  transition: transform 0.3s;
  padding-top: 4px;
}

details[open] .icon-open {
  transform: rotate(180deg);
}

/* ▼ 固定式 (div) のスタイル ▼ */
.news-item.static {
  padding: 15px 10px;
}

.summary-inner {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

/* ▼ 共通パーツ（日付・タグ・タイトル） ▼ */
.news-item .date {
  font-family: monospace;
  font-size: 12px;
  color: #999;
  padding-top: 2px;
  flex-shrink: 0;
}

.news-item .tag {
  font-size: 10px;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 4px;
  color: #fff;
  flex-shrink: 0;
  margin-top: 1px;
}

/* タグの色分け */
.tag-green {
  background: #2d9e65;
}

.tag-blue {
  background: #1da1f2;
}

.tag-red {
  background: #e53935;
}

.tag-gray {
  background: #757575;
}

.news-item .title {
  font-size: 14px;
  font-weight: bold;
  color: #333;
  line-height: 1.5;
}

/* ▼ 展開される本文 ▼ */
.news-body {
  padding: 10px 10px 20px 40px;
  font-size: 13px;
  color: #555;
  line-height: 1.8;
  animation: fadeIn 0.3s ease;
}

.news-body p {
  margin-bottom: 10px;
}

.news-body ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 10px;
}

.news-body a {
  color: #1da1f2;
  text-decoration: underline;
}

/* ▼ スマホ対応（1列にする） ▼ */
@media (max-width: 768px) {
  .news-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  details.news-item summary,
  .summary-inner {
    flex-wrap: wrap;
  }

  .news-body {
    padding: 10px;
    background: #f9f9f9;
    border-radius: 4px;
  }
}

/* ▼▼▼ ニュース下部のXリンクエリア ▼▼▼ */
.news-footer {
  margin-top: 40px;
  text-align: center;
  border-top: 1px dashed #ddd;
  padding-top: 30px;
}

.news-note {
  font-size: 13px;
  color: #666;
  margin-bottom: 15px;
}

.news-note a {
  color: #1da1f2;
  font-weight: bold;
}

.twitter-link {
  display: inline-block;
  color: #fff;
  background: #1da1f2;
  padding: 10px 25px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(29, 161, 242, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}

.twitter-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(29, 161, 242, 0.4);
  opacity: 1;
}

/* ▼▼▼ キャラクター紹介エリアのスタイル (極小版) ▼▼▼ */
.feature-chara-grid {
  flex: 1.2;
  display: grid;
  /* PC: 8列にして極小表示 */
  grid-template-columns: repeat(8, 1fr);
  gap: 8px;
  /* 間隔を詰める */
  padding: 15px;
  background: #f9f9f9;
  /* 全体の背景色 */
  border-radius: 12px;
  border: 1px solid #eee;
}

.chara-icon {
  aspect-ratio: 1 / 1;
  /* 正方形 */

  /* ▼▼▼ 修正：背景色を画像(bg.png)に変更 ▼▼▼ */
  background: url('../charas/bg.png') center center no-repeat;
  background-size: cover;
  background-color: #e0e0e0;
  /* 画像がない場合の保険（少し濃いグレー） */
  /* ▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲ */

  border-radius: 4px;
  /* 角丸を小さく */
  overflow: hidden;
  border: 1px solid #ccc;
  /* 枠線を少し濃く */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
  cursor: pointer;
}

.chara-icon:hover {
  transform: scale(1.2);
  /* ホバー時に大きく拡大 */
  z-index: 10;
  /* 最前面へ */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border-color: #2d9e65;
  /* ホバー時に枠線を緑に */
}

.chara-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* リンクボタン */
.feature-link-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 8px 20px;
  background: #2d9e65;
  color: #fff;
  border-radius: 30px;
  font-weight: bold;
  font-size: 13px;
  box-shadow: 0 3px 8px rgba(45, 158, 101, 0.3);
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
}

.feature-link-btn:hover {
  background: #258555;
  transform: translateY(-2px);
  opacity: 1;
}

/* スマホ対応 */
@media (max-width: 600px) {
  .feature-chara-grid {
    /* スマホ: 6列にして表示 */
    grid-template-columns: repeat(6, 1fr);
    gap: 5px;
    /* 間隔をさらに詰める */
    padding: 10px;
  }
}

/* ▼▼▼ 下部ストア誘導セクション (修正版) ▼▼▼ */
#download-bottom {
  background: #2d9e65;
  /* ヒーローセクションと同じ濃い緑 */
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* 背景に少し模様を入れてリッチにする（オプション） */
#download-bottom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 2px, transparent 2px);
  background-size: 20px 20px;
  /* ドット柄 */
  pointer-events: none;
}

.download-inner {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* 白いセクションタイトル */
.section-title.white-title {
  color: #fff;
}

.section-title.white-title::after {
  background: #fff;
}

/* スマホ対応 */
@media (max-width: 600px) {
  #download-bottom {
    padding: 60px 20px;
  }
}

/* ▼▼▼ 準備中オーバーレイ用CSS ▼▼▼ */

/* 親要素を相対配置にして、カヴァーの基準点にする */
.banner-item.btn-area.store-blocked {
  position: relative;
  /* スマホ等で崩れないよう微調整 */
  z-index: 1;
}

/* 実際に被せるパネル */
.coming-soon-overlay {
  position: absolute;
  top: -5px;
  /* ボタンより少し広めに覆う */
  left: -5px;
  right: -5px;
  bottom: -5px;

  /* デザイン：すりガラス風の暗幕 */
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(3px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);

  /* 文字の配置 */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  z-index: 10;
  /* ボタンより手前に */
  cursor: default;
  /* クリックできないカーソルにする */
}

/* 準備中の文字 */
.coming-soon-overlay .cs-title {
  font-size: 20px;
  font-weight: 900;
  color: #ffdd55;
  /* 黄色で注意を引く */
  letter-spacing: 0.1em;
  margin-bottom: 2px;
  line-height: 1.2;
}

/* 今週末公開予定の文字 */
.coming-soon-overlay .cs-sub {
  font-size: 12px;
  font-weight: bold;
  color: #fff;
}

/* スマホ表示時の微調整 */
@media (max-width: 768px) {
  .coming-soon-overlay {
    top: -10px;
    bottom: -10px;
  }

  .coming-soon-overlay .cs-title {
    font-size: 18px;
  }
}

/* ▼▼▼ KV画像用 Coming Soon オーバーレイ ▼▼▼ */

/* 画像を囲む枠（基準点） */
.kv-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 100%;
}

/* 既存のkv-imageのスタイル調整（マージンを親に移すため） */
.kv-wrapper .kv-image {
  display: block;
  margin-bottom: 0;
  /* 親要素でマージン調整するためリセット */
}

/* 親要素自体に元のマージン設定 */
.kv-wrapper {
  margin-bottom: 30px;
}

/* 被せるオーバーレイ（黒い半透明の幕 + 文字） */
.kv-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  /* 角丸は画像に合わせる */
  border-radius: 12px;

  /* デザイン：全体を少し暗くして文字を目立たせる */
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;

  /* 枠線の内側に光彩を入れてリッチに */
  box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5);
  z-index: 5;
}

/* "COMING SOON..." の文字デザイン */
.kv-overlay .cs-text {
  font-family: 'Noto Sans JP', sans-serif;
  /* もしImpact等の太い英字フォントがあればそちらでも可 */
  font-weight: 900;
  font-size: 6vw;
  /* 画面幅に合わせて可変 */
  color: #fff;
  letter-spacing: 0.1em;

  /* 文字を斜めにして帯っぽくする */
  transform: rotate(-5deg);

  /* 文字の縁取りと影で可読性UP */
  text-shadow:
    3px 3px 0 #000,
    -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000,
    1px 1px 0 #000,
    0 10px 20px rgba(0, 0, 0, 0.5);

  border: 4px solid #fff;
  padding: 10px 40px;
  background: rgba(255, 69, 0, 0.8);
  /* オレンシ色の帯背景 */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* PCサイズでの文字サイズ上限設定 */
@media (min-width: 768px) {
  .kv-overlay .cs-text {
    font-size: 60px;
    /* PCでは大きすぎないように固定 */
  }
}

.tag-gold {
  background: #fbc02d;
  /* 鮮やかなゴールド */
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  /* 文字を見やすく */
}

/* ▼▼▼ ゲーム紹介 (FEATURES) セクション ▼▼▼ */
#features {
  background-color: #fff;
  /* ★修正：背景を白に変更 */
  padding: 80px 20px;
  color: #333;
  /* ★修正：文字色を黒に変更 */
}

.features-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.section-lead {
  text-align: center;
  font-size: 18px;
  color: #666;
  /* ★修正：文字色をグレーに変更 */
  margin-bottom: 60px;
  line-height: 1.8;
  font-weight: bold;
  letter-spacing: 0.05em;
}

/* 各機能ブロック */
.feature-item {
  margin-bottom: 100px;
}

.feature-item:last-child {
  margin-bottom: 0;
}

/* 画像なし（テキストのみ）ブロックの調整 */
.feature-item.text-only {
  margin-bottom: 60px;
  padding: 30px;
  background: #f9f9f9;
  /* ★修正：背景を薄いグレーに変更 */
  border-radius: 12px;
  border: 1px solid #eee;
  /* ★修正：枠線を薄く */
}

/* テキスト部分 */
.feature-text {
  margin-bottom: 25px;
  text-align: center;
}

.feature-text h3 {
  font-size: 24px;
  font-weight: 900;
  color: #2d9e65;
  margin-bottom: 15px;
  display: inline-block;
  border-bottom: 2px solid #2d9e65;
  padding-bottom: 5px;
}

.feature-text h3 .num {
  font-size: 30px;
  margin-right: 10px;
  color: #333;
  /* ★修正：数字の色を黒に変更 */
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.feature-text p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  /* ★修正：本文色を濃いグレーに変更 */
  text-align: justify;
  max-width: 800px;
  margin: 0 auto;
}

/* 画像部分 */
.feature-img {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  /* ★修正：影を薄く */
  border: 1px solid #eee;
  /* ★修正：枠線を薄く */
}

.feature-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.feature-img:hover img {
  transform: scale(1.02);
}

/* ▼ PC表示 (768px以上) の場合のデザイン調整 ▼ */
@media (min-width: 768px) {
  .feature-text {
    text-align: left;
  }

  .feature-text p {
    margin: 0;
    max-width: 100%;
  }
}

/* スマホでは少し小さく */
@media (max-width: 600px) {
  .streaming-badge {
    font-size: 12px;
    padding: 6px 20px;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }


}