body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    /* Prevents extra space below the image */
}

#arch {
    width: 500px
}

header {
    background-color: #012476;
    color: #fff;
    text-align: center;
    padding: 1em 0;
}

section {
    margin: 20px;
}

footer {
    background-color: #012476;
    color: #fff;
    text-align: center;
    padding: 1em 0;
    bottom: 0;
    width: 100%;
}

/* table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    overflow-x: auto;
    display: block;
}

th,
td {
    border: 1px solid #ddd;
    padding: 12px 15px;
    text-align: left;
    width: 120px;
}

th {
    background-color: #333;
    color: #fff;
} */
/* TABLE は表示を block にしない */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

/* テーブルの横スクロールは外側の div で対応 */
.table-wrapper {
    overflow-x: auto;
}

/* 列幅は固定しない、または後から個別指定 */
th,
td {
    border: 1px solid #ddd;
    padding: 12px 15px;
    text-align: left;
    width: 10%; /* PCではこの幅まで広がります */
    min-width: 120px; /* 最小幅を120pxに設定 */
    
}

/* 必要なら th だけ幅指定 */
th {
    background-color: #333;
    color: #fff;
}
td img {
    width: 100%;
    height: auto;
    display: block; /* 不要な余白を防ぐためにおすすめ */
}

/* オプション：画像や音声プレイヤーの幅制限
td img,
td audio {
    width: 100%;
    max-width: 180px;
} */

/* tbody tr:hover {
    background-color: #f5f5f5;
} */

audio {
    width: 100%;
}