/* === ファンタジー・アカデミック テーマ === */

body {
    font-family: 'Noto Serif JP', "Georgia", "Palatino", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #1f2229;
    color: #e0e0e0; 
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 1vw;
    box-sizing: border-box; 
}
h1 { 
    /* ▼▼▼ 変更点: 6.5vw -> 6vw に変更 ▼▼▼ */
    font-size: 6vw;
    /* ▲▲▲ 変更ここまで ▲▲▲ */
    text-align: center;
    margin-bottom: 5vw;
    color: #e6c170;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.hidden { display: none !important; }


/* ★★★ START: タイトル画面 ★★★ */
#title-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90vw;
    margin-top: 10vh;
}
.title-button {
    width: 80%;
    padding: 4vw;
    margin-top: 4vw;
    border: 2px solid #e6c170;
    border-radius: 0; 
    cursor: pointer;
    font-size: 5vw;
    font-family: inherit; 
    font-weight: 700; 
    background-color: #4a4e5a;
    color: #f0e8d9; 
    box-shadow: none; 
    transition: box-shadow 0.2s ease, background-color 0.2s ease;
}
.title-button:active, .title-button:hover {
    box-shadow: 0 0 8px #e6c170;
    background-color: #5a5e6a;
    transform: none; 
}
/* ★★★ END: タイトル画面 ★★★ */


/* ★★★ START: ストーリー トグルスイッチ ★★★ */
#story-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5vw;
    font-size: 4vw;
    color: #f0e8d9;
}
#story-toggle label {
    margin-left: 2vw;
    cursor: pointer;
}
.switch {
    position: relative;
    display: inline-block;
    width: 12vw; 
    height: 6.8vw;
}
.switch input { 
    opacity: 0;
    width: 0;
    height: 0;
}
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #333; 
    transition: .4s;
    border-radius: 6.8vw;
}
.slider:before {
    position: absolute;
    content: "";
    height: 5.2vw;
    width: 5.2vw;
    left: 0.8vw;
    bottom: 0.8vw;
    background-color: #e6c170; 
    transition: .4s;
    border-radius: 50%;
}
input:checked + .slider {
    background-color: #8c2a3e; 
}
input:checked + .slider:before {
    transform: translateX(5.2vw);
}
/* ★★★ END: ストーリー トグルスイッチ ★★★ */


/* ★★★ START: ルールモーダル ★★★ */
#rule-modal {
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.75); 
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 3vw;
    box-sizing: border-box;
}
#rule-content {
    background-color: #f0e8d9;
    color: #3b2e26;
    padding: 5vw;
    border-radius: 0; 
    border: 4px solid #8c5a3e;
    width: 90%;
    max-height: 80vh; 
    overflow-y: auto; 
    box-shadow: 0 10px 25px rgba(0,0,0,0.5); 
}
#rule-content h2 {
    font-size: 5.5vw;
    text-align: center;
    margin-top: 0;
    margin-bottom: 4vw;
    color: #8c2a3e; 
}
#rule-content ul {
    padding-left: 5vw;
    font-size: 3.8vw;
    line-height: 1.6;
}
#rule-content ul li {
    margin-bottom: 2.5vw;
}
#rule-content ul ul {
    margin-top: 1.5vw;
}
#rule-content ul ul li {
    font-size: 3.5vw;
    margin-bottom: 1vw;
}
#close-rule-button {
    width: 100%;
    padding: 3vw;
    margin-top: 4vw;
    border: 2px solid #e6c170; 
    border-radius: 0;
    cursor: pointer;
    font-size: 4.5vw;
    font-family: inherit;
    font-weight: 700;
    background-color: #5a4a4e; 
    color: #f0e8d9;
    transition: box-shadow 0.2s ease, background-color 0.2s ease;
}
#close-rule-button:hover {
    box-shadow: 0 0 8px #e6c170;
    background-color: #6a5a5e;
}
/* ★★★ END: ルールモーダル ★★★ */


/* ★★★ START: カスタムアラート ★★★ */
#custom-alert-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.75);
    z-index: 1100; 
}
#custom-alert-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1101;
    background-color: #f0e8d9;
    color: #3b2e26;
    border: 4px solid #8c5a3e; 
    border-radius: 0;
    padding: 5vw;
    width: 80vw;
    max-width: 400px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5); 
}
#custom-alert-title {
    font-size: 5vw;
    font-weight: 700;
    text-align: center;
    margin-top: 0;
    margin-bottom: 4vw;
    color: #8c2a3e; 
}
#custom-alert-message {
    font-size: 3.8vw;
    line-height: 1.6;
    margin-bottom: 5vw;
    white-space: pre-wrap; 
}
#custom-alert-buttons {
    display: flex;
    justify-content: flex-end; 
    gap: 3vw;
}
.custom-alert-button {
    padding: 2.5vw 4vw;
    border: 2px solid #e6c170; 
    border-radius: 0;
    cursor: pointer;
    font-size: 3.5vw;
    font-family: inherit;
    font-weight: 700;
    color: #f0e8d9;
    transition: box-shadow 0.2s ease, background-color 0.2s ease;
}
.custom-alert-button:hover {
    box-shadow: 0 0 8px #e6c170;
}
#custom-alert-ok {
    background-color: #5b7f76; 
}
#custom-alert-ok:hover {
    background-color: #6b8f86;
}
#custom-alert-cancel {
    background-color: #8c2a3e; 
}
#custom-alert-cancel:hover {
    background-color: #a03a4e;
}
/* ★★★ END: カスタムアラート ★★★ */



#game-ui {
    flex-direction: column; 
    align-items: center; 
    gap: 3vw;
    width: 100%;
}

#game-stats {
    width: 90vw;
    background: #3c3f4a;
    padding: 3vw;
    border-radius: 0;
    border: 2px solid #777;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    box-sizing: border-box;
    order: 2; 
}
/* ★ 変更: divのデフォルトマージンを削除 */
#game-stats div { font-size: 4vw; margin-bottom: 0; } 
#game-stats hr { 
    border: none; 
    border-top: 1px solid #e6c170;
    opacity: 0.7;
    margin: 2vw 0; 
}

#requirement-display {
    font-size: 3.8vw;
    font-weight: bold;
    color: #3b2e26; 
    padding: 2vw;
    background-color: #dcd3c3; 
    border-radius: 0;
    border: 1px solid #7c6d5b; 
    margin-bottom: 2vw; /* hrとのマージン */
}
#requirement-display p {
    margin: 0.5vw 0;
    font-size: 3.8vw;
}
#requirement-display p.achieved {
    text-decoration: line-through;
    color: #776e64; 
}

/* ★★★ START: 変更点 (Stats/Button 横並び) ★★★ */
#stats-main-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2vw;
    margin-bottom: 2vw; /* 下のmessage-displayとのマージン */
}

#stats-info-panel {
    flex: 1; /* Statsが残りのスペースを取る */
}
/* Stats項目間のマージン */
#stats-info-panel div {
    margin-bottom: 1.5vw;
}

#stats-button-panel {
    flex: 0 0 40%; /* ボタンが幅40%を取る */
    display: flex;
    flex-direction: column;
    gap: 2vw;
}
/* ★★★ END: 変更点 ★★★ */


#year-display { font-weight: bold; font-size: 5vw; color: #fff; }
#credits-display { font-weight: bold; color: #87ceeb; } 
#gp-display { font-weight: bold; color: #e6c170; } 
#gpa-display { font-weight: bold; color: #90ee90; } 

#message-display { 
    font-size: 3.4vw; 
    color: #ff6b6b; 
    font-weight: bold; 
    margin-top: 1vw; /* 上の横並びコンテナとのマージン */
}

/* ★ 変更: ボタンのスタイル調整 */
#skip-button, #cancel-complete-button {
    width: 100%; /* 親の幅に合わせる */
    padding: 2.5vw; /* 少し小さく */
    margin-top: 0; /* gapで制御 */
    border: 2px solid #e6c170; 
    border-radius: 0;
    cursor: pointer;
    font-size: 3.5vw; /* 少し小さく */
    font-family: inherit;
    font-weight: 700;
    color: #f0e8d9;
    transition: box-shadow 0.2s ease, background-color 0.2s ease;
}
#skip-button:hover, #cancel-complete-button:hover {
    box-shadow: 0 0 8px #e6c170;
}
#skip-button { background-color: #8c2a3e; } 
#skip-button:hover { background-color: #a03a4e; }
#cancel-complete-button { background-color: #5b7f76; }
#cancel-complete-button:hover { background-color: #6b8f86; }

#game-board {
    display: grid;
    grid-template-columns: repeat(15, 6vw);
    grid-template-rows: repeat(15, 6vw);
    border: 2px solid #e6c170; 
    background-color: #333; 
    width: 90vw; 
    height: 90vw;
    order: 1;
    position: relative;
}
#game-board.locked {
    pointer-events: none;
}

.tile {
    width: 5.8vw; 
    height: 5.8vw;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: inset 1px 1px 3px rgba(0,0,0,0.4);
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4vw; 
    font-weight: bold;
    color: #000;
    text-align: center;
    overflow: hidden;
    white-space: pre-wrap;
    word-break: break-all;
    line-height: 1.1; 
    cursor: default;
    transition: transform 0.2s ease-out, opacity 0.2s ease-out, filter 0.1s ease-out, box-shadow 0.1s ease-out; 
}

/* プレビューハイライト */
.tile.tile-preview {
    filter: brightness(1.5) saturate(1.2);
    transform: scale(1.05);
    box-shadow: 0 0 10px #fff, 0 0 5px #fff;
    z-index: 10;
    position: relative;
}

.tile.tile-pop {
    transform: scale(1.4);
    opacity: 0;
}

/* ★★★ START: 変更点 (タイル色 - 彩度UP) ★★★ */
/* 授業タイル (淡い色) */
.class-tile { 
    color: #111; 
    border: 2px solid #e6c170; 
    box-shadow: 0 0 3px #e6c170; 
    font-weight: bold;
}
.class-tile.color-0 { background-color: #f5baba; border-color: #e6c170; } /* 淡い赤 */
.class-tile.color-1 { background-color: #c8f0c8; border-color: #e6c170; } /* 淡い緑 */
.class-tile.color-2 { background-color: #c0e3f5; border-color: #e6c170; } /* 淡い青 */
.class-tile.color-3 { background-color: #f5f0c8; border-color: #e6c170; } /* 淡い金 */
.class-tile.color-4 { background-color: #e2ccf0; border-color: #e6c170; } /* 淡い紫 */

/* 通常タイル (彩度UP) */
.tile.color-0 { background-color: #e65050; } /* 鮮やかな赤 */
.tile.color-1 { background-color: #77c277; } /* 鮮やかな緑 */
.tile.color-2 { background-color: #62b0d6; } /* 鮮やかな青 */
.tile.color-3 { background-color: #e6c155; } /* 鮮やかな金 */
.tile.color-4 { background-color: #b288d9; } /* 鮮やかな紫 */
/* ★★★ END: 変更点 ★★★ */


.tile.empty {
    background-color: transparent;
    border: none;
    box-shadow: none;
    cursor: default;
}

.play-phase .tile[class*="color-"] { cursor: pointer; }
.cancellation-phase .class-tile { cursor: not-allowed; }

/* ポップアップUI */
.popup {
    position: absolute; 
    font-size: 5vw; 
    font-weight: 700; 
    padding: 1vw 2vw;
    border-radius: 0; 
    z-index: 100;
    pointer-events: none;
    animation: fadeUpAndOut 0.8s ease-out forwards;
    color: #222; 
    border: 2px solid #fff; 
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5), inset 0 0 5px rgba(255, 255, 255, 0.3);
    text-shadow: 0px 0px 2px rgba(255,255,255,0.5); 
}

/* プレビューのポップアップ */
.preview-popup {
    position: absolute;
    font-size: 4vw; 
    font-weight: bold;
    background-color: rgba(0, 0, 0, 0.75); 
    color: white;
    padding: 1vw 1.5vw;
    border-radius: 0; 
    border: 1px solid rgba(255,255,255,0.5);
    z-index: 50; 
    pointer-events: none; 
}

.count-popup { }
.grade-popup { }

/* ポップアップ背景 */
.popup-pink {
    background: radial-gradient(circle, #ffdde1 0%, #ee9ca7 100%);
}
.popup-orange {
    background: radial-gradient(circle, #fcd19d 0%, #f78e3c 100%);
}
.popup-green {
    background: radial-gradient(circle, #d4fcd3 0%, #86e084 100%);
}
.popup-blue {
    background: radial-gradient(circle, #dbefff 0%, #87CEEB 100%);
}


@keyframes fadeUpAndOut {
    0% { transform: translateY(0); opacity: 1; }
    80% { transform: translateY(-15px); opacity: 1; } 
    100% { transform: translateY(-20px); opacity: 0; }
}


/* ★★★ START: 変更点 (リザルト画面のレイアウト) ★★★ */
#result-screen-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90vw;
    margin: 3vh 0; /* 上下のマージン */
}
#result-screen-wrapper.hidden { display: none !important; }

/* 「卒業おめでとう！」 */
#final-result-message { 
    font-size: 7vw; 
    font-weight: 700;
    margin-bottom: 2vh;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
#final-result-message.clear { color: #e6c170; } /* 金色 */
#final-result-message.over { color: #8c2a3e; } /* 緋色 */

/* 「成績通知表」のUI */
#grade-report {
    width: 100%; /* 親ラッパーが幅を制御 */
    box-sizing: border-box;
    background-color: #f0e8d9;
    color: #3b2e26;
    padding: 3vw;
    border-radius: 0;
    border: 4px solid #8c5a3e; 
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
/* 「成績通知表」のH2 */
#grade-report h2 { 
    font-size: 6vw; /* 2番目に大きく */
    font-weight: 700;
    text-align: center;
    color: #3b2e26;
    margin-top: 0;
    margin-bottom: 2vw;
}

/* ▼▼▼ 変更点: 称号 (h3) のスタイルを追加 ▼▼▼ */
#grade-report h3 {
    font-size: 5vw; /* h2 (6vw) より少し小さく */
    font-weight: 700;
    text-align: center;
    color: #8c2a3e; /* メインの赤色 */
    margin-top: 1vw;
    margin-bottom: 3vw;
    /* アニメーションで見栄えを良くする（任意） */
    opacity: 0;
    transform: scale(0.9);
    animation: fadeInTitle 0.5s ease-out 0.3s forwards;
}

@keyframes fadeInTitle {
    to {
        opacity: 1;
        transform: scale(1);
    }
}
/* ▲▲▲ 変更ここまで ▲▲▲ */


#grade-report.hidden { display: none; } /* (これは残しておく) */

#final-summary p { font-size: 4vw; }
/* 単位数の分母 (/ 140) を非表示 */
#final-summary p span + span {
    display: none;
}

#grade-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 3vw;
    font-size: 3vw; 
}
#grade-table th, #grade-table td {
    border: 1px solid #8c5a3e; 
    padding: 1.5vw;
    text-align: left;
}
#grade-table th { background-color: #dcd3c3; } 

#restart-button {
    width: 100%;
    margin-top: 3vw;
    padding: 3vw;
    font-size: 4vw;
    cursor: pointer;
    background-color: #5b7f76; 
    color: #f0e8d9;
    border: 2px solid #e6c170; 
    border-radius: 0;
    font-family: inherit;
    font-weight: 700;
    transition: box-shadow 0.2s ease, background-color 0.2s ease;
}
#restart-button:hover {
    box-shadow: 0 0 8px #e6c170;
    background-color: #6b8f86;
}

/* Xシェアボタン */
#x-share-button {
    display: block; /* <a>タグをブロック要素に */
    width: 100%;
    padding: 3vw;
    margin-top: 3vw;
    border: 2px solid #55acee; /* X (Twitter) Blue */
    border-radius: 0;
    cursor: pointer;
    font-size: 4vw;
    font-family: inherit;
    font-weight: 700;
    color: #f0e8d9;
    background-color: #1DA1F2;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box; /* paddingを含める */
    transition: box-shadow 0.2s ease, background-color 0.2s ease;
}
#x-share-button:hover {
    box-shadow: 0 0 8px #55acee;
    background-color: #1a91da;
}
/* ★★★ END: 変更点 ★★★ */

/* ▼▼▼ 変更点: 画像保存ボタンのスタイルを追加 ▼▼▼ */
#download-image-button {
    width: 100%;
    margin-top: 3vw;
    padding: 3vw;
    font-size: 4vw;
    cursor: pointer;
    background-color: #4CAF50; /* 目立つ緑色 */
    color: #f0e8d9;
    border: 2px solid #81C784; 
    border-radius: 0;
    font-family: inherit;
    font-weight: 700;
    transition: box-shadow 0.2s ease, background-color 0.2s ease;
}
#download-image-button:hover {
    box-shadow: 0 0 8px #81C784;
    background-color: #45a049;
}
#download-image-button:disabled {
    background-color: #777;
    border-color: #999;
    cursor: not-allowed;
    opacity: 0.8;
}
/* ▲▲▲ 変更ここまで ▲▲▲ */


/* ▼▼▼ 変更点: <a>タグの .title-button 用スタイル ▼▼▼ */
a.title-button {
    text-decoration: none;
    text-align: center;
    box-sizing: border-box; /* padding計算を正しくするため */
}
/* ▲▲▲ 変更ここまで ▲▲▲ */

/* ▼▼▼【変更点】ランキング表示のスタイルを追加 ▼▼▼ */

#ranking-display {
    width: 100%;
    box-sizing: border-box;
    background-color: #f0e8d9; /* 成績表と同じ背景色 */
    color: #3b2e26;
    padding: 3vw;
    border-radius: 0;
    border: 4px solid #8c5a3e; /* 成績表と同じ枠線 */
    margin-top: 4vw; /* 成績表との間隔 */
}
#ranking-display.hidden {
    display: none !important; /* hidden クラスで非表示 */
}

#ranking-display h2 {
    font-size: 6vw; /* 成績表のH2と同じサイズ */
    font-weight: 700;
    text-align: center;
    color: #3b2e26;
    margin-top: 0;
    margin-bottom: 2vw;
}

/* 成績表のテーブルとスタイルを共通化 */
#ranking-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 3vw;
    font-size: 3vw; 
}
#ranking-table th, #ranking-table td {
    border: 1px solid #8c5a3e; 
    padding: 1.5vw;
    text-align: left;
}
#ranking-table th { 
    background-color: #dcd3c3; /* 成績表のthと同じ背景色 */
}

/* 順位カラムを中央揃え・太字に */
#ranking-table td:first-child { 
    text-align: center;
    font-weight: bold;
}

/* 自分のスコアをハイライトする用のスタイル（JavaScriptで直接適用） */
#ranking-table tr.my-score {
    background-color: #e6c170; /* 金色 */
    color: #3b2e26;
    font-weight: bold;
}


/* ★★★ START: 横画面対応 (PCなど) ★★★ */
@media (orientation: landscape) {

    body {
        padding: 1vh; 
    }
    h1 {
        font-size: 4.5vh; 
        margin-bottom: 1.5vh;
    }

    #title-screen {
        margin-top: 5vh;
        width: 50vw; 
        max-width: 600px;
    }
    .title-button {
        padding: 2vh;
        font-size: 2.5vh;
        margin-top: 2vh;
    }
    #story-toggle {
        font-size: 2.2vh;
        margin-bottom: 2vh;
    }
    .switch { width: 10vh; height: 5.6vh; }
    .slider { border-radius: 5.6vh; }
    .slider:before {
        height: 4.4vh; width: 4.4vh;
        left: 0.6vh; bottom: 0.6vh;
    }
    input:checked + .slider:before {
        transform: translateX(4.4vh);
    }

    /* カスタムアラートのPC用スタイル */
    #custom-alert-modal {
        padding: 2vw;
        max-width: 450px;
    }
    #custom-alert-title {
        font-size: 1.5rem;
        margin-bottom: 1.5vw;
    }
    #custom-alert-message {
        font-size: 1rem;
        margin-bottom: 2vw;
    }
    #custom-alert-buttons {
        gap: 1vw;
    }
    .custom-alert-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }


    #game-ui {
        flex-direction: row; 
        align-items: flex-start; 
        justify-content: center; 
        gap: 2vw; 
        width: 100%;
    }

    :root {
        --board-size: 88vh; 
        --tile-size: calc(var(--board-size) / 15);
    }
    #game-board {
        width: var(--board-size);  
        height: var(--board-size); 
        grid-template-columns: repeat(15, var(--tile-size));
        grid-template-rows: repeat(15, var(--tile-size));
    }
    .tile {
        width: 100%; 
        height: 100%;
        font-size: 1.2vh; 
        border-width: 1px; 
    }
    .class-tile {
        font-size: 1.1vh; 
    }


    #game-stats {
        width: 350px; 
        height: var(--board-size); 
        padding: 1.5vw;
        box-sizing: border-box;
        overflow-y: auto; 
    }
    
    /* ★ 変更: PCレイアウトでは縦積みに戻す */
    #game-stats div { 
        font-size: 1.05rem; 
        margin-bottom: 0.5rem; /* divのデフォルトマージンを戻す */
    }
    #stats-main-row {
        display: block; /* 横並びを解除 */
        margin-bottom: 0;
    }
    #stats-info-panel div {
        margin-bottom: 0.5rem; /* divのデフォルトマージンを戻す */
    }
    #stats-button-panel {
        display: block; /* flex解除 */
    }
    #skip-button, #cancel-complete-button {
        font-size: 1rem;
        padding: 12px;
        width: 100%;
        margin-top: 0.5rem; /* gapの代わり */
    }
    /* ★ 変更ここまで */

    #requirement-display p {
        font-size: 1rem; 
        margin: 0.25rem 0;
    }
    #requirement-display p.achieved {
        text-decoration-thickness: 1px;
    }

    #year-display { font-size: 1.4rem; }
    #message-display { font-size: 0.85rem; }
    
    .preview-popup {
        font-size: 1.8vh; 
        padding: 0.5vh 1vh;
        border-radius: 0; 
    }
    
    .popup {
        font-size: 3vh; 
    }

    #rule-modal { padding: 2vh; }
    #rule-content {
        width: 60vw;
        max-width: 800px;
        max-height: 85vh;
    }
    #rule-content h2 { font-size: 1.8rem; font-weight: 700; }
    #rule-content ul { font-size: 1rem; }
    #rule-content ul ul li { font-size: 0.9rem; }
    #close-rule-button { font-size: 1.1rem; }

    /* ★ 変更: リザルト画面のPC用スタイル */
    #result-screen-wrapper {
        margin-top: 2vh;
        width: 80vw;
        max-width: 1000px;
    }
    #final-result-message { 
        font-size: 4.5vh; 
        margin-bottom: 1.5vh;
    }
    #grade-report {
        width: 100%;
        max-width: 1000px;
        margin: 0 auto; /* 左右マージンを削除 */
        padding: 2vw;
    }
    #grade-report h2 { 
        font-size: 1.8rem; /* 1.8rem (元のサイズ) に戻す */
        margin-bottom: 1.5vh;
    }
    #grade-report h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5vh;
    }
    #final-summary p { font-size: 1.1rem; }
    #grade-table { font-size: 0.9rem; }
    #restart-button { 
        font-size: 1.1rem; 
        padding: 1.5vh;
    }
    #x-share-button {
        padding: 1.5vh;
        font-size: 1.1rem;
        margin-top: 1.5vh;
    }
    /* ▼▼▼ 変更点: 画像保存ボタンのPC用スタイル ▼▼▼ */
    #download-image-button {
        padding: 1.5vh;
        font-size: 1.1rem;
        margin-top: 1.5vh;
    }
    /* ▲▲▲ 変更ここまで ▲▲▲ */

    #ranking-display {
        padding: 2vw;
        margin-top: 2vh;
    }
    #ranking-display h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5vh;
    }
    #ranking-table {
        font-size: 0.9rem;
    }
}
/* ★★★ END: 横画面対応 (PCなど) ★★★ */


/* ▲▲▲ ランキングのスタイル ここまで ▲▲▲ */