:root {
    --primary-color: #b58a55;
    --secondary-color: #efe5d3;
    --base-color: #f7f4e9;
    --char-color: #3a2f2f;
    --fig-base-color: #faf7f0;
    --high-temp-color: #b34332;
    --low-temp-color: #2a4c7c;

}

body {
    font-family: "Yu Mincho", "Hiragino Mincho ProN", "MS Mincho", serif;
    background: var(--base-color);
    padding: 20px;
    color: var(--char-color);
    line-height: 1.7;
}

h1 {
    text-align: center;
    margin-bottom: 25px;
    letter-spacing: 4px;
    font-size: 1.5rem;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
    padding-bottom: 6px;
}

a {
    color: var(--char-color);
}

.subhead {
    text-align: right;
    margin-top: -10px;
    margin-bottom: 10px;
    font-size: 0.8rem;
}

.footer {
    margin-top: 10px;
}

/* ----- テーブル（明治風） ----- */
.table-container {
    width: 100%;
    overflow-x: auto;
    border: 2px solid var(--primary-color);
    background: var(--fig-base-color);
}

table {
    border-collapse: collapse;
    width: 100%;
    min-width: 800px;
    font-size: 1rem;
}

th,
td {
    border: 1px solid var(--primary-color);
    padding: 8px 6px;
    text-align: center;
}

th.city {
    background: var(--secondary-color);
    font-weight: bold;
    letter-spacing: 2px;
}

.high {
    color: var(--high-temp-color);
    font-weight: 700;
}

.low {
    color: var(--low-temp-color);
    font-weight: 700;
}

@media (max-width: 600px) {
    table {
        font-size: 12px;
        min-width: 600px;
    }

    th,
    td {
        padding: 4px;
    }
}