@charset "utf-8";
/* 全体コンテナ */
.contentsInner {
    max-width: 1000px;
    margin: 0 auto;
}

/* フレックスボックスで地図とテーブルを横並びに */
.timetable {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

/* 左側：地図エリア */
.map {
    flex: 0 0 280px;
}

.map img {
    width: 100%;
    height: auto;
}

/* 右側：ダイヤ情報エリア */
.timetableDetail {
    flex: 1;
}

/* 見出し */
.timetableTtl {
    color: #004494; /* 濃い青 */
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.timetableTtl::before {
    content: "▶";
    margin-right: 8px;
}

/* テーブルレイアウト */
.table-content {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.table-wrap {
    flex: 1;
}

.table-timetable {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    text-align: center;
}

/* ヘッダー部分 */
.table-timetable thead th {
    background-color: #5b74b8; /* 青紫色のヘッダー */
    color: #fff;
    padding: 10px;
    border: 1px solid #ccc;
}

.table-timetable tbody th {
    background-color: #f2f6ff;
    border: 1px solid #ccc;
    padding: 8px;
    color: #333;
}

.table-timetable td {
    border: 1px solid #ccc;
    padding: 10px 5px;
}

/* 出発・到着の背景色 */
.table-timetable td.dep {
    background-color: #fdbd30; /* オレンジ */
}

.table-timetable td.arr {
    background-color: #a0c238; /* 黄緑 */
}

/* 注釈 */
.notes {
    color: #333;
    line-height: 1.6;
    margin-top: 15px;
}

