body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-align: center;
    width: 400px; /* PCサイズ */
}

h1 {
    font-size: 24px;
    margin-bottom: 20px;
}

.question-box {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 16px;
}

.question-button {
    background-color: #4f377d;
    color: white;
    padding: 15px 25px;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.question-button:hover {
    background-color: #7457ad;
}

/* ======== スマホ対応のメディアクエリ ========= */
@media screen and (max-width: 600px) {
    .container {
        padding: 20px;

        margin: 15px;
    }

    h1 {
        font-size: 28px; /* タイトル大きめ */
    }

    .question-box {
        font-size: 20px; /* 質問テキストも大きく */
        min-height: 150px; /* ボックスも広げる */
        padding: 30px;
    }

    .question-button {
        font-size: 20px; /* ボタン文字も大きく */
        padding: 20px 30px; /* ボタンサイズUP */
    }
}