

/* プログレスバーのスタイル */
.progress-bar-container {
    background-color: #f4f4f4;
    border-radius: 5px;
    margin: 20px 20px;
    width: 100%;
    height: 20px;
}

.progress-bar {
    background-color: #007BFF;
    height: 100%;
    width: 0; /* 初期幅 */
    border-radius: 5px;
    transition: width 0.3s ease; /* アニメーションを追加 */
}


/* 各セクションのスタイル */
section {
    margin: 20px;
    padding: 20px;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#progress-container {
    margin-top: 30px;
}

section h2 {
    font-size: 22px;
    color: #333;
}

section p {
    margin-top: 10px;
    font-size: 16px;
}

/* ボタンのスタイル */
.menu-container {
    text-align: center; /* ボタンを中央揃え */
    margin-top: 20px; /* 上に余白を追加 */
}

.button {
    display: inline-block; /* ボタンをインラインブロックに */
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.button:hover {
    background-color: #0056b3;
}