
/* 全体設定 */
html {
    /* 画面サイズに合わせてベースの文字サイズを微調整 */
    font-size: 16px; 
}

@media screen and (min-width: 480px) {
    html { font-size: 18px; } /* DOOGEEなど少し大きな画面では少し文字を大きくする */
}

body {
    margin: 0; padding: 0;
    background-color: #000;
    color: #e0e0e0;
    font-family: 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
    line-height: 1.6;
    -webkit-text-size-adjust: 100%; /* iPhoneでの文字サイズ自動調整を防止 */
}

/* コンテナ：画面幅いっぱいになりすぎず、かつ小さすぎないように */
.container {
    width: 90%; /* 画面の90%を使う */
    max-width: 500px; /* 広がりすぎを防止 */
    margin: 0 auto;
    padding: 20px 0;
}

/* タイトル：画面幅に応じて伸縮 */
.glitch-title {
    font-size: 1.8rem;
    color: #ffd700;
    text-align: center;
    letter-spacing: 0.2em;
    text-shadow: 2px 2px #ff0000, -2px -2px #0000ff;
    margin: 20px 0;
}

/* 章選択カード：スマホでの押しやすさを重視 */
.chapter-card {
    background: #111;
    border: 1px solid #333;
    border-radius: 12px;
    margin-bottom: 20px;
    display: flex;
    align-items: center; /* 縦中央 */
    overflow: hidden;
    text-decoration: none;
    min-height: 90px;
}

.chapter-thumb {
    width: 90px;
    height: 90px;
    flex-shrink: 0; /* 画像が潰れないように固定 */
    background-size: cover;
    background-position: center;
}

.chapter-body {
    padding: 12px 15px;
    flex: 1;
}

.chapter-body h2 {
    margin: 0;
    font-size: 1rem;
    color: #ffd700;
}

.chapter-body p {
    margin: 4px 0 0;
    font-size: 0.75rem;
    color: #aaa;
    line-height: 1.4;
}
/* ミナクルショップ用バナー */
.shop-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #d3381c, #ffd700); /* 鮮やかな赤と金のグラデーション */
    color: #000 !important;
    padding: 15px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(211, 56, 28, 0.4);
    transition: transform 0.2s;
}

.shop-banner:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(211, 56, 28, 0.6);
}

.shop-icon {
    font-size: 1.5rem;
    margin-right: 15px;
}

.shop-text { text-align: left; }
.shop-text strong { display: block; font-size: 1.1rem; }
.shop-text p { margin: 0; font-size: 0.7rem; opacity: 0.8; }

/* --- ミナクルショップ用バナー設定 --- */
.shop-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #d3381c, #ffd700); /* 鮮やかな赤と金のグラデーション */
    color: #000 !important;
    padding: 15px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(211, 56, 28, 0.4);
    transition: transform 0.2s;
    max-width: 400px;
    margin: 0 auto;
}

.shop-banner:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(211, 56, 28, 0.6);
}

.shop-icon {
    font-size: 1.5rem;
    margin-right: 15px;
}

.shop-text {
    text-align: left;
}

.shop-text strong {
    display: block;
    font-size: 1.1rem;
    line-height: 1.2;
}

.shop-text p {
    margin: 0;
    font-size: 0.75rem;
    opacity: 0.9;
}
