@charset "utf-8";
/* CSS Document */

/* テーブル全体の基本設定 */
.tour_info {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    font-size: 0.95em;
    line-height: 1.5;
    background-color: #ffffff; /* ベースを白に設定 */
}

/* ヘッダー：濃いグレー背景に白文字 */
.tour_info thead th, 
.tour_info thead td {
    background-color: #333333;
    color: #ffffff;
    font-weight: bold;
    padding: 12px;
    border: 1px solid #444444;
    text-align: center;
}

/* 目的地（th）：薄いグレーで濃淡をつける */
.tour_info tbody th {
    background-color: #f8f9fa; /* 目的地のみグレー */
    border: 1px solid #dddddd;
    padding: 12px;
    text-align: center;
    width: 20%;
    font-size: 1.2em;
    font-weight: bold;
    color: #333333;
}

/* 各セル（td）：純白にしてコントラストを強調 */
.tour_info tbody td {
    background-color: #ffffff; /* 他のマスは白 */
    border: 1px solid #dddddd;
    padding: 12px;
    vertical-align: middle;
    text-align: center;
}

/* 乗り継ぎ駅・最寄り駅のテキストサイズ：1.2em */
.tour_info .station-name {
    font-size: 1.2em;
    font-weight: bold;
    display: block;
    margin-top: 5px;
}

/* 路線バッジ */
.line-badge {
    display: inline-block;
    padding: 2px 12px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.85em;
    margin: 2px 0;
    color: #ffffff;
}

/* ロンドン地下鉄 公式カラー設定 */
.line-central { background-color: #e32017; }
.line-circle { background-color: #ffd300; color: #000; }
.line-district { background-color: #00782a; }
.line-bakerloo { background-color: #b36305; }
.line-northern { background-color: #000000; }
.line-piccadilly { background-color: #003688; }
.line-jubilee { background-color: #a0a5a9; }

/* 乗り継ぎなしの表示用 */
.no-change { color: #888; font-size: 1.0em; }
