/*
 * Hephaestusによる“百景夜行”の美の法典 Ver. 1.0
 */

.character-stage-container {
    max-width: 800px;
    margin: 60px auto 30px auto;
    position: relative;
    background-color: #fff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-radius: 16px;
    padding: 30px;
}
#character-stage {
    min-height: 110px; /* キャラクター非表示時も高さを確保 */
    transition: all 0.5s ease;
}
#character-stage .commentary { margin-bottom: 0; }
#character-stage .commentary img { width: 80px; height: auto; }
#character-stage .bubble { font-size: 1.15em; line-height: 1.9; }

#character-summon-btn {
    position: absolute;
    bottom: 20px;
    right: 25px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    border: 3px solid #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8em; /* アイコンのサイズをフォントサイズで指定 */
    font-weight: bold;
    line-height: 1;
}

/* ★★【ここが最終進化】SVGという難解な呪文を捨て、 universally-recognized な “リフレッシュ” の象形文字を刻む ★★ */
#character-summon-btn::before {
    content: '↻';
}

#character-summon-btn:hover {
    background-color: var(--accent-color);
    transform: rotate(180deg) scale(1.1);
}

/* ★★ 召喚ボタン内部に鋳込んだ SVG は、完全に殲滅する ★★ */
#character-summon-btn svg {
    display: none;
}
