/* game-common.css — ゲームページ共通スタイル（説明文・おすすめゲーム） */

/* ===== ゲーム説明セクション ===== */
.game-info-section {
  max-width: 680px;
  margin: 2rem auto 0;
  padding: 0 1rem 3rem;
  font-family: 'Hiragino Maru Gothic Pro', 'BIZ UDPGothic', 'Noto Sans JP', sans-serif;
}

.game-info-card {
  background: #fff;
  border-radius: 20px;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 4px 20px rgba(160,140,80,0.10);
  margin-bottom: 1.25rem;
}

.game-info-intro {
  background: linear-gradient(135deg, #F5F0E5, #FFF3E6);
  border-left: 5px solid #F6A04D;
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  font-size: 1rem;
  color: #3A3A3A;
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.game-info-intro strong { color: #D4820A; }

.game-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

@media (max-width: 480px) {
  .game-info-grid { grid-template-columns: 1fr; }
}

.game-info-item {
  background: #FFFDF7;
  border-radius: 14px;
  padding: 1rem 1.1rem;
  border: 1.5px solid #E0D8C4;
}

.game-info-item-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #D4820A;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.game-info-item-body {
  font-size: 0.9rem;
  color: #3A3A3A;
  line-height: 1.7;
}

.game-info-parent {
  background: #f0fdf4;
  border-radius: 14px;
  padding: 1.1rem 1.25rem;
  border-left: 4px solid #4ade80;
}

.game-info-parent-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #166534;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.game-info-parent-body {
  font-size: 0.88rem;
  color: #374151;
  line-height: 1.75;
}

/* ===== おすすめゲームセクション ===== */
.recommended-section {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 1rem 3rem;
  font-family: 'Hiragino Maru Gothic Pro', 'BIZ UDPGothic', 'Noto Sans JP', sans-serif;
}

.recommended-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #3A3A3A;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.recommended-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.85rem;
}

.recommended-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #fff;
  border-radius: 14px;
  padding: 0.9rem 1rem;
  text-decoration: none;
  color: #3A3A3A;
  box-shadow: 0 2px 12px rgba(160,140,80,0.09);
  border: 1.5px solid #E0D8C4;
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}

.recommended-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(160,140,80,0.18);
  border-color: #F6A04D;
}

.recommended-card-icon { font-size: 1.75rem; flex-shrink: 0; }

.recommended-card-text { display: flex; flex-direction: column; gap: 0.1rem; }

.recommended-card-name {
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.3;
  color: #3A3A3A;
}

.recommended-card-age {
  font-size: 0.72rem;
  color: #D4820A;
  font-weight: 600;
}

/* ===== ホームリンク（共通） ===== */
.home-link-btn {
  position: fixed;
  top: 14px;
  left: 14px;
  background: white;
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: bold;
  color: #6b7280;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  z-index: 9999;
  transition: color 0.15s;
}
.home-link-btn:hover { color: #3A3A3A; }
