/* ===========================================
   game.html 専用スタイル
   =========================================== */

/* ヒーロー */
.game-hero {
  padding: 80px 24px 40px;
  text-align: center;
}
.game-hero-inner {
  max-width: 880px;
  margin: 0 auto;
}
.game-hero-title {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.25;
  margin: 16px 0 24px;
}
.game-hero-lead {
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  line-height: 1.9;
  color: #555;
  margin: 0;
}

/* タイトル別カード */
.game-release {
  padding-bottom: 56px;
}
.game-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 24px;
  align-items: center;
}
.game-card-reverse {
  grid-template-columns: 1fr 1.1fr;
}
.game-card-reverse .game-card-visual { order: 2; }
.game-card-reverse .game-card-text { order: 1; }

.game-card-visual {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
  background: #0b0b14;
}
.game-card-visual img {
  width: 100%;
  height: auto;
  display: block;
}

.game-card-text {
  padding: 8px 0;
}
.game-card-headline {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  line-height: 1.35;
  margin: 0 0 18px;
}
.game-card-lead {
  font-size: 1rem;
  line-height: 1.85;
  color: #555;
  margin: 0 0 18px;
}
.game-card-points {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  border-left: 3px solid #b9e4d0;
  padding-left: 16px;
}
.game-card-points li {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #444;
}

/* ストアボタン */
.game-card-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.btn-store {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 12px 24px;
  border-radius: 14px;
  text-decoration: none;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  min-width: 180px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-store:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}
.btn-store .store-name {
  font-size: 1.05rem;
  line-height: 1.1;
}
.btn-store .store-sub {
  font-size: 0.78rem;
  font-weight: 500;
  opacity: 0.85;
  margin-top: 2px;
}
.btn-dlsite {
  background: linear-gradient(135deg, #ff8a8a, #ff5a5a);
  color: #fff;
}
.btn-googleplay {
  background: linear-gradient(135deg, #4ad08e, #2fa66a);
  color: #fff;
}
.btn-coming {
  background: #e9e9ef;
  color: #6b6b78;
  cursor: default;
}
.btn-coming:hover {
  transform: none;
  box-shadow: none;
}

/* 締めピッチ */
.game-pitch {
  text-align: center;
  padding: 40px 24px 80px;
}
.game-pitch-inner {
  max-width: 720px;
  margin: 0 auto;
}
.game-pitch-lead {
  font-size: 1rem;
  line-height: 1.9;
  color: #555;
  margin: 12px 0 28px;
}

/* レスポンシブ */
@media (max-width: 820px) {
  .game-card,
  .game-card-reverse {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .game-card-reverse .game-card-visual { order: 0; }
  .game-card-reverse .game-card-text { order: 0; }
}
