/* 全体のベース設定（Yuiの背景イラストを適用） */
body {
    background-image: url('ch09.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    color: #333;
    margin: 0;
    min-height: 100vh;
    display: flex;
    align-items: center; /* 垂直方向の中央揃え */
    justify-content: flex-end; /* 水平方向は右寄せ */
    padding: 20px;
    box-sizing: border-box;
}

/* 操作カードの設定（完全に独立させて右側に配置） */
.container {
    width: 100%;
    max-width: 400px; /* カード幅を狭くしてYuiの顔を避ける */

    /* --- 決定的な変更点 --- */
    /* 背景を完全に不透明な白にする（イラストは透けない） */
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;

    border-radius: 16px;
    margin-right: 80px; /* 右側の余白を固定 */
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
}

/* カード内の文字設定 */
.card-content h2 {
    margin-top: 0;
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.card-content p {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* ボタン設定 */
.btn-launch {
    display: inline-block;
    padding: 12px 28px;
    background-color: #0066cc;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1rem;
    transition: background-color 0.2s;
    box-shadow: 0 4px 10px rgba(0, 102, 204, 0.3);
}

.btn-launch:hover {
    background-color: #004d99;
}

/* レスポンシブ対応（スマホ表示では中央寄せに） */
@media (max-width: 900px) {
    body {
        justify-content: center;
        align-items: flex-end; /* 下部に配置 */
    }
    .container {
        margin-right: 0;
        margin-bottom: 40px;
        max-width: 90%;
    }
}