/* 平成レトロ・阿部寛風レスポンシブスタイル */
body {
    font-family: "MS PGothic", "MS Pゴシック", "Osaka", sans-serif;
    line-height: 1.4;
    margin: 20px;
    /* スマホで文字が小さくなりすぎないように調整 */
    -webkit-text-size-adjust: 100%;
}

h1 {
    font-size: 24pt;
    font-weight: bold;
    text-align: center;
}

table {
    border-collapse: separate;
    border-spacing: 2px;
    border: 2px outset #ffffff;
    background-color: #eeeeee;
    /* 追加：スマホで画面からはみ出さない設定 */
    width: 95%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

th {
    border: 2px inset #ffffff;
    padding: 10px;
}

td {
    border: 1px inset #ffffff;
    padding: 8px;
    background-color: #ffffff;
    font-size: 10pt;
    /* 追加：長いURLなどで表が崩れるのを防ぐ */
    word-break: break-all;
}

marquee {
    width: 80%;
    color: #006600;
    font-weight: bold;
    display: block;
    margin: 10px auto;
}

address {
    margin-top: 30px;
    font-style: normal;
    font-size: 9pt;
    text-align: center;
}

/* スマホ用：画面幅が480px以下の時の微調整 */
@media screen and (max-width: 480px) {
    body {
        margin: 10px;
    }
    h1 {
        font-size: 18pt;
    }
    td {
        font-size: 12pt; /* スマホでは少し文字を大きくして読みやすく */
    }
}
