@charset "UTF-8";

/* ==========================================================================
   Base Styles（全体共通設定）
   ========================================================================== */
body {
    margin: 0;
    padding: 0;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
    background-color: #ffffff;
    color: #000000;
    line-height: 1.6;
}

a {
    color: #000000;
    text-decoration: none;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* ==========================================================================
   Buttons（パキッとした黒ボタン）
   ========================================================================== */
.btn-black {
    display: inline-block;
    background-color: #000000;
    color: #ffffff;
    padding: 10px 30px;
    font-weight: bold;
    font-size: 14px;
    border-radius: 4px;
    text-align: center;
    border: 2px solid #000000; 
    box-sizing: border-box;
    transition: background-color 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.btn-black:hover {
    background-color: #ffffff;  
    color: #000000;           
    transform: translate(-4px, -4px); 
    box-shadow: 4px 4px 0px #000000; 
}

/* ==========================================================================
   Image Frames（画像枠の共通設定）
   ========================================================================== */
.img-frame {
    background-color: #ffffff; 
    position: relative;
    overflow: hidden;
    display: block;
    width: 100%;
}

.img-frame.square {
    aspect-ratio: 1 / 1;
}

.img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
}

.img-frame.shadow {
    border: 1px solid #000000;
    box-shadow: 6px 6px 0px #000000;
}

.footer-logo-frame {
    border: 1px solid #ffffff;
    background-color: #333333;
}

/* ==========================================================================
   Header（ヘッダー・PCベース）
   ========================================================================== */
.main-header {
    background-color: #000000;
    color: #ffffff;
    padding: 60px 20px 40px 20px; 
    position: relative;        
    width: 100%;
    box-sizing: border-box;
    z-index: 1000;
}

.header-inner {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-area {
    margin-top: 10px;    
    margin-bottom: 60px;  
}

.site-logo {
    max-width: 260px;    
    height: auto;
    display: block;
}

.global-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 30px;           
}

.global-nav a {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-decoration: none;
    padding: 4px 12px;          
    border-radius: 2px;         
    transition: background-color 0.15s ease, color 0.15s ease;
}

.global-nav a:hover {
    background-color: #ffffff;  
    color: #000000;             
}

/* PCではスマホ用パーツを隠す */
.menu-checkbox, .menu-btn, .sp-menu-title, .sp-menu-sns, .arrow-btn {
    display: none;
}

/* ==========================================================================
   Common Sections（各セクション共通タイトルなど）
   ========================================================================== */
.section-block {
    margin-bottom: 70px;
    text-align: center;
}

.section-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.section-title .en-sub {
    display: block;
    font-size: 11px;
    font-weight: normal;
    color: #666666;
    margin-top: 2px;
}

.price-tag {
    font-size: 16px;
    font-weight: bold;
    border-bottom: 1px solid #000000;
    padding-bottom: 2px;
    margin-bottom: 10px;
}

/* ==========================================================================
   Profile（プロフィール）
   ========================================================================== */
.profile-card {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
}

.profile-thumb {
    width: 180px;
    flex-shrink: 0;
}

.profile-status {
    flex: 1;
}

.status-price {
    text-align: right;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 4px;
}

.status-table {
    width: 100%;
    border-collapse: collapse;
    border: 2px solid #000000;
}

.status-table th, .status-table td {
    border: 1px solid #000000;
    padding: 6px 12px;
    font-size: 14px;
}

.status-table th {
    background-color: #000000;
    color: #ffffff;
    width: 35%;
    text-align: center;
    font-weight: normal;
}

.status-table td {
    background-color: #ffffff;
}

.status-meta-row {
    display: flex;
    justify-content: space-between; 
    align-items: flex-end;         
    margin-bottom: 6px;  
}

.status-rating {
    display: flex;
    align-items: center;
    gap: 6px;  
    font-size: 14px;
    font-weight: bold;
    color: #333333; 
}

.rating-num {
    font-family: "Helvetica Neue", Arial, sans-serif;
}

.rating-stars {
    letter-spacing: -1px; 
}

/* ==========================================================================
   About（このサイトについて）
   ========================================================================== */
.about-box {
    border: 2px solid #000000;
    padding: 25px;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
    font-size: 15px;
    font-weight: bold;
}

.about-box p {
    margin: 0 0 1em 0;
}
.about-box p:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   Illust / Grid 5cols（一次創作・イラストグリッド）
   ========================================================================== */
.grid-5cols {
    display: grid;
    grid-template-columns: repeat(3, 200px);
    gap: 20px;
    justify-content: center;
}

.grid-5cols .img-frame {
    aspect-ratio: 3 / 4;
    outline: 0px solid #000000;
    transition: outline 0.1s ease;
}

.work-item {
    text-align: center;
}

.work-title {
    font-size: 14px;
    font-weight: bold;
    margin-top: 8px;
    line-height: 1.3;
}

.work-item:hover .img-frame {
    outline: 3px solid #000000;
}

/* ==========================================================================
   Index Sections（PC：ゲーム / ショップ / その他 共通パターン）
   ========================================================================== */
.flex-container, .flex-reverse, .shop-item {
    display: flex;
    max-width: 700px;
    margin: 0 auto 40px auto;
    align-items: center;
    gap: 30px;
    text-align: left;
}

.flex-reverse {
    flex-direction: row-reverse;
    text-align: right;
}

.game-thumb, .shop-thumb, .others-thumb {
    width: 230px;
    flex-shrink: 0;
}

.game-detail, .shop-detail, .others-detail {
    flex: 1;
}

.game-detail p, .shop-detail p, .others-detail p {
    font-size: 15px;
    font-weight: bold;
    margin: 0 0 15px 0;
}

.flex-reverse .btn-black {
    float: right; 
}

/* ==========================================================================
   Comic Section（漫画・Creation内）
   ========================================================================== */
.main-work-title {
    font-size: 28px;
    letter-spacing: 1px;
}

.world-intro-box {
    border: 2px solid #0b5e28; 
    padding: 25px;
    max-width: 650px;
    margin: 0 auto;
    text-align: left;
    font-size: 15px;
    font-weight: bold;
    position: relative;
}

.world-intro-box p {
    margin: 0 0 8px 0;
}
.world-intro-box p:last-of-type {
    margin-bottom: 0;
}

.creation-flex-item {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
    align-items: flex-start;
}

.creation-thumb {
    width: 200px;
    flex-shrink: 0;
}

.manga-aspect .img-frame {
    aspect-ratio: 3 / 4; 
}

.creation-detail {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.creation-detail .price-tag {
    text-align: right;
    width: 100%;
}

.work-sub-title {
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 10px 0;
}

.work-desc {
    font-size: 14px;
    margin: 0 0 20px 0;
    line-height: 1.5;
}

.Creation_A {
    color: #d5045c;
}
.Creation_A:hover {
    color: #870834;
    text-decoration: underline;
}

/* ==========================================================================
   Movie Section（動画横スクロール）
   ========================================================================== */
.movie-year-section {
    margin-bottom: 40px;
    width: 100%;
}

.year-title {
    font-size: 18px;
    font-weight: bold;
    color: #000000;
    margin: 0 0 12px 20px; 
    text-align: left;
}

.movie-scroll-container {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 0 20px 15px 20px; 
    box-sizing: border-box; 
    -webkit-overflow-scrolling: touch;
}

.movie-scroll-container::-webkit-scrollbar {
    height: 4px; 
}
.movie-scroll-container::-webkit-scrollbar-track {
    background: #f1f1f1; 
}
.movie-scroll-container::-webkit-scrollbar-thumb {
    background: #474747; 
}

.movie-scroll-container .movie-item {
    flex: 0 0 180px; 
    text-align: center;
}

.movie-scroll-container .img-frame.square {
    width: 100%;
    aspect-ratio: 1 / 1;
    margin-bottom: 8px;
    overflow: hidden;
}

.movie-scroll-container .img-frame.square img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease; 
}

.movie-scroll-container .movie-item:hover .img-frame.square img {
    transform: scale(1.1); 
}

.movie-scroll-container .movie-item p {
    font-size: 13px;
    font-weight: bold;
    line-height: 1.3;
    white-space: normal;
    margin: 0;
}

/* 🎬 動画アイテム（通常のグリッド用ホバー） */
.movie-grid .movie-item .img-frame {
    overflow: hidden; 
    cursor: pointer;
}
.movie-grid .movie-item .img-frame img {
    transition: transform 0.3s ease; 
}
.movie-grid .movie-item:hover .img-frame img {
    transform: scale(1.1);
}

/* ==========================================================================
   Main character（キャラクターリスト）
   ========================================================================== */
.character-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr); 
    gap: 50px 30px; /* 縦の余白を少し広げるとさらに見やすくなります */
    max-width: 750px; /* 画像を大きくする分、全体の最大幅を少し広げるのがおすすめ */
    margin: 0 auto;
}

.character-card {
    display: flex;
    gap: 30px;       
    text-align: left;
    align-items: flex-start;
}

.character-thumb-wrap {
    width: 190px;      
    flex-shrink: 0;
}

.character-thumb-wrap .img-frame.square.shadow {
    aspect-ratio: 1 / 1;
    box-shadow: 6px 6px 0px #000000;
}

.character-status {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; 
}

.char-price-row {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    margin-bottom: 8px; 
    width: 100%;
}

.char-table {
    width: 100%;
    border-collapse: collapse;
    border: 2px solid #000000; 
    height: auto;
}

.char-table th, .char-table td {
    border: 1px solid #000000;
    padding: 6px 10px; 
    font-size: 13px;
    font-weight: bold;
    line-height: 1.4;
}

.char-table th {
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    width: 25%; 
    font-weight: bold;
    white-space: nowrap;
}

.char-table td {
    background-color: #ffffff;
}

/* ==========================================================================
   Game Playlist（作品内オーディオ風ゲームUI）
   ========================================================================== */
.game-playlist {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    width: 100%;
    max-width: 680px; 
    margin: 0 auto 40px auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.game-track-item {
    width: 100%;
    text-align: center;
}

.game-track-thumb {
    width: 100%;
    margin-bottom: 15px;
}
.game-track-thumb .img-frame {
    aspect-ratio: 16 / 9;
    width: 100%;
    background-color: #cccccc;
}

.game-track-title {
    font-size: 19px;
    font-weight: bold;
    margin: 0 0 12px 0;
    color: #000000;
}

.audio-player-ui {
    width: 100%;
    margin-bottom: 20px;
}
.player-seekbar {
    position: relative;
    width: 100%;
    height: 20px;
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}
.seekbar-line {
    width: 100%;
    height: 1px;
    background-color: #000000;
}
.seekbar-pointer {
    position: absolute;
    left: 35%;
    width: 8px;
    height: 8px;
    background-color: #000000;
    border-radius: 50%;
    transform: translateX(-50%);
}
.player-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
}
.player-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.player-btn svg {
    width: 100%;
    height: 100%;
    fill: #000000;
}

.game-track-footer {
    display: flex;
    justify-content: space-between; 
    align-items: flex-start;
    text-align: left;
    width: 100%;
    margin-top: 10px;
}

.game-track-meta {
    flex: 1;
    padding-right: 15px;
}
.game-track-meta p {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.6;
    margin: 0 0 4px 0;
}

/* ==========================================================================
   SNS & Footer（共通）
   ========================================================================== */
.sns-links {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.sns-circle {
    width: 100px;
    height: 100px;
    background-color: #cccccc;       
    border-radius: 50%; 
    overflow: hidden; 
    display: block;
    transition: transform 0.2s ease;
}

.sns-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sns-circle:hover {
    transform: scale(1.08); 
}

.main-footer {
    background-color: #000000;
    color: #ffffff;
    padding: 40px 20px 20px 20px;
}

.footer-inner {
    max-width: 800px;
    margin: 0 auto;
}

.receipt-area {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 60px;
    margin-bottom: 40px;
}

.receipt-logo {
    width: 120px;
}

.receipt-calc {
    width: 200px;
}

.receipt-table {
    width: 100%;
    border-collapse: collapse;
}

.receipt-table th, .receipt-table td {
    padding: 4px 0;
    font-size: 15px;
    font-weight: bold;
}

.receipt-table th {
    text-align: left;
}

.receipt-table td {
    text-align: right;
}

.copyright {
    text-align: center;
    font-size: 11px;
    border-top: 1px solid #333333;
    padding-top: 20px;
    color: #888888;
}

.sp-menu-webbox {
    margin: 20px auto 15px auto;
    padding: 0;
    max-width: 500px;
    box-sizing: border-box;
}
.webbox-link {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #ffffff;
    color: #000000;
    text-decoration: none;
    border: 2px solid #000000;
    padding: 10px 12px;
    font-size: 17px;
    font-weight: bold;
    position: relative;
    box-shadow: 4px 4px 0px #000000;
    transition: transform 0.1s ease, box-shadow 0.1s ease;
}
.webbox-link:active {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px #000000;
}
.webbox-tag {
    background-color: #000000;
    color: #ffffff;
    font-size: 11px;
    padding: 2px 6px;
    letter-spacing: 0.5px;
    text-align: center;
    flex-shrink: 0;
}
.webbox-text {
    flex: 1;
    line-height: 1.2;
}


/* ==========================================================================
   📱 Responsive Styles（スマホ専用設定：画面幅 768px 以下）
   ========================================================================== */
@media screen and (max-width: 768px) {
    
    body {
        padding-top: 100px; 
        font-size: 18px;
    }

    /* ─── ヘッダー固定 & スマホメニュー ─── */
    .main-header {
        position: fixed;
        top: 0;
        left: 0;
        padding: 20px;
    }

    .header-inner {
        flex-direction: row;   
        justify-content: space-between;
        align-items: center;
        position: relative;
    }

    .logo-area {
        margin-bottom: 0;
    }
    .site-logo {
        max-width: 180px;
    }

    .menu-btn {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 20px;
        cursor: pointer;
        z-index: 1100;
    }

    .menu-btn span {
        display: block;
        width: 100%;
        height: 3px;
        background-color: #ffffff;
        transition: all 0.3s ease;
    }

    .global-nav {
        display: block;
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.4);
        transition: right 0.3s ease;
        z-index: 1050;
    }

    .nav-menu-box {
        position: absolute;
        top: 90px;
        right: 20px;
        background-color: #ffffff;
        color: #000000;
        width: 280px;
        padding: 20px;
        border: 2px solid #000000;
        box-shadow: 8px 8px 0px #000000;
        box-sizing: border-box;
    }

    .menu-checkbox:checked ~ .global-nav {
        right: 0;
    }

    .menu-checkbox:checked ~ .menu-btn span:nth-child(1) {
        transform: translateY(8.5px) rotate(45deg);
    }
    .menu-checkbox:checked ~ .menu-btn span:nth-child(2) {
        opacity: 0;
    }
    .menu-checkbox:checked ~ .menu-btn span:nth-child(3) {
        transform: translateY(-8.5px) rotate(-45deg);
    }

    .sp-menu-title, .sp-menu-sns {
        display: block;
        text-align: center;
    }
    .sp-menu-title h3 {
        margin: 0;
        font-size: 18px;
        font-weight: bold;
        line-height: 1.3;
    }
    .border-double {
        font-size: 12px;
        color: #000000;
        margin: 10px 0;
        letter-spacing: -1px;
        overflow: hidden;
        white-space: nowrap;
    }

    .global-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 5px 0;
    }
    .global-nav ul li {
        width: 100%;
        border-bottom: 1px solid #eeeeee;
    }
    .global-nav ul li:last-child {
        border-bottom: none;
    }
    .global-nav a {
        color: #000000;
        font-size: 18px;
        font-weight: bold;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 0;
        width: 100%;
        transition: padding-left 0.2s ease;
    }

    .global-nav ul li a:hover {
        padding-left: 8px; 
    }
    .global-nav ul li a .arrow-btn {
        transition: transform 0.2s ease, background-color 0.2s, color 0.2s;
    }
    .global-nav ul li a:hover .arrow-btn {
        transform: scale(1.05) translateX(-5px); 
    }
    .global-nav ul li a:hover .arrow-btn:not(.active) {
        background-color: #000000;
        color: #ffffff;
    }

    .arrow-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 22px;
        border: 1px solid #000000;
        border-radius: 12px;
        font-size: 14px;
        background-color: #ffffff;
    }
    .arrow-btn.active {
        background-color: #000000;
        color: #ffffff;
    }

    .sp-menu-sns .sp-sns-links {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-top: 5px;
    }
    .global-nav .sp-sns-links a {
        width: 65px;
        height: 45px;
        aspect-ratio: 1 / 1;      
        background-color: #000000; 
        border-radius: 0;          
        overflow: hidden;
        display: block;
        transition: opacity 0.2s ease;
    }
    .global-nav .sp-sns-links a img {
        width: 100%;
        height: 100%;
        object-fit: contain;      
        background-color: #000000;
        display: block;
    }
    .global-nav .sp-sns-links a:hover {
        opacity: 0.7;            
    }

    /* ─── 共通フォントサイズ・タイトル調整 ─── */
    .section-title { font-size: 28px; }
    .section-title .en-sub { font-size: 13px; }
    .status-table th, .status-table td, .about-box, .game-detail p, .shop-detail p, .others-detail p { font-size: 15px; }
    .status-rating { font-size: 16px; }
    .status-price { font-size: 22px; }

    /* ─── プロフィール ─── */
    .profile-card {
        flex-direction: column; 
        align-items: center; 
        gap: 24px; 
        padding: 0 20px;
        box-sizing: border-box;
    }
    .profile-thumb {
        width: 160px;
        flex-shrink: 0;
    }
    .profile-thumb .img-frame {
        width: 100%;
        aspect-ratio: 1 / 1; 
    }
    .profile-status {
        width: 100%;
        box-sizing: border-box;
    }
    .status-meta-row {
        width: 100%;
    }

    /* ─── 一次創作イラスト（3列グリッド） ─── */
    .grid-5cols {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;                             
        padding: 0 10px;                      
    }
    .work-title {
        font-size: 17px;
    }

    /* ─── 漫画（Comic / Creation）上揃え・横並び ─── */
    .creation-flex-item {
        display: flex !important;
        flex-direction: row !important;   
        align-items: flex-start !important; /* 上揃えキープ */
        text-align: left !important;
        gap: 20px !important;             
        justify-content: space-between !important;
        width: 100% !important;
        padding: 0 10px !important;       
        box-sizing: border-box !important;
    }
    .creation-thumb {
        width: 160px !important;         
        flex-shrink: 0 !important;
    }
    .creation-info-block {
        flex: 1 !important;                
        min-width: 0 !important;          
    }
    .creation-price-row {
        justify-content: flex-end !important; 
    }
    .price-line {
        display: block !important;            
    }

    /* ─── ゲーム / ショップ / その他共通（画像上・文字下・一列に縦並び） ─── */
    .flex-container, 
    .flex-reverse, 
    .shop-item {
        flex-direction: column !important; 
        align-items: center !important;    
        gap: 20px !important;              
        text-align: left !important;       
        padding: 0 15px !important;        
        box-sizing: border-box !important;
        margin-bottom: 50px !important;    
    }
    .game-thumb, .shop-thumb, .others-thumb {
        width: 200px !important;           
        flex-shrink: 0 !important;
    }
    .game-detail, .shop-detail, .others-detail {
        width: 100% !important;
        box-sizing: border-box !important;
        display: flex !important;
        flex-direction: column !important;
        /* ★ボタンを右に寄せるために親要素を制御 */
        align-items: flex-end !important; 
    }
    .game-detail .price-tag, .shop-detail .price-tag, .others-detail .price-tag {
        width: 100% !important;
        text-align: left !important;       
        font-size: 18px !important;
        border-bottom: 1px solid #000000 !important;
        padding-bottom: 4px !important;
        margin-bottom: 12px !important;
    }
/* ★説明文テキストが右揃えにならないよう、100%幅で左テキストを維持 */
    .game-detail p, .shop-detail p, .others-detail p {
        width: 100% !important;
        text-align: left !important;
        font-size: 14px !important;
        line-height: 1.6 !important;
        margin-bottom: 15px !important;
    }
    .flex-reverse .btn-black {
        float: none !important;            
        align-self: flex-start !important; 
    }
    .btn-black {
        display: inline-block !important;
        width: auto !important;
        padding: 10px 24px !important;
        /* ★確実な右寄せのための余白調整 */
        margin-left: auto !important; 
        margin-right: 0 !important;
    }
    /* ─── 動画スクロール・グリッド ─── */
    .movie-scroll-container .movie-item {
        flex: 0 0 150px; 
    }
    .movie-grid {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important; 
        gap: 15px 10px !important;
        padding: 0 10px !important;
    }
    .movie-grid .movie-item {
        display: block !important; 
    }
    main:not(.movie-page-container) .section-block > .movie-grid .movie-item:nth-child(n+7) {
        display: none !important;
    }

    /* ─── メインキャラクターカード（画像上・文字下・一列に縦並び） ─── */
    .character-grid {
        grid-template-columns: 1fr !important; 
        gap: 50px 0px !important;              
        padding: 0 15px !important;
        box-sizing: border-box;
    }
    .character-card {
        flex-direction: column !important; 
        align-items: center !important;    
        gap: 15px !important;              
    }
    .character-thumb-wrap {
        width: 160px !important; 
        flex-shrink: 0 !important;
    }
    .character-status {
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .char-price-row {
        width: 100% !important;
        justify-content: flex-end !important;
        margin-bottom: 6px !important;
    }
    .char-table {
        width: 100% !important;
    }
    .char-table th {
        width: 28% !important;
        padding: 8px 6px !important;
    }
    .char-table td {
        padding: 8px 12px !important;
        font-size: 13px !important; 
    }

    /* ─── オーディオ風ゲームUI ─── */
    .game-playlist {
        max-width: 500px; 
    }
}
