@charset "UTF-8";

/* ==========================================================================
   game_top.html 独自スタイル
   （common.css の設定を上書きせず、メインコンテンツのみを装飾します）
   ========================================================================== */

/* セクション見出し：CATEGORYの高さに合わせるためマージンを調整 */
.section-title {
    font-size: 1rem;
    font-weight: 500;
    padding: 8px 12px;
    background: var(--bg-light); /* common.css の変数を使用 */
    border-radius: 4px;
    border-left: 4px solid var(--accent-color); /* common.css の変数を使用 */
    margin: 0 0 15px 0;
}

/* 2つ目以降のセクション見出しに上マージンを追加 */
.section-title.next {
    margin-top: 25px;
}

/* 各項目のコンテナ */
.content-box {
    padding: 0 10px;
    margin-bottom: 30px;
}

/* リストアイテムのレイアウト */
.list-item {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

/* リストのアイコン画像 */
.list-item img {
    margin-right: 10px;
}

/* リスト内のリンク（太字を解除・下線を追加） */
.list-item a {
    color: var(--accent-color);
    text-decoration: underline; /* 下線を追加 */
    font-weight: normal;        /* 太字を解除 */
}

.list-item a:hover {
    text-decoration: none;      /* ホバー時に下線を消す（お好みで） */
}

/* ステータスタグ（Update / 休止中） */
.status-tag {
    font-size: 0.7rem;
    font-weight: bold;
    margin-left: 8px;
    padding: 2px 6px;
    border-radius: 3px;
}

/* Updateタグ：赤背景に白文字 */
.status-tag.update {
    color: #fff;
    background: #e74c3c;
}

/* 休止中タグ：白背景に赤枠・赤文字 */
.status-tag.closed {
    color: #e74c3c;
    border: 1px solid #e74c3c;
    background: #fff;
}

/* 広告・バナー表示エリア */
.ad-container {
    margin-top: 40px;
    text-align: center;
}

/* スマホ表示用の微調整 */
@media (max-width: 768px) {
    .section-title {
        margin-top: 15px;
    }
}