@charset "utf-8";
  /* タブの基本スタイル */
  .tab-itinerary {
    display: inline-block;
    margin: 5px;
    padding: 10px 20px;
    cursor: pointer;
    background-color: lightgray;
    color: black;
    font-weight: bold;
    transition: background-color 0.3s;
  }
  
  /* ★選択されているタブのスタイル（背景を赤、文字を白に） */
  .tab-itinerary.active-tab {
    background-color: red;
    color: white;
  }

  /* 非表示のスケジュール表 */
  .schedule {
    display: none;
  }
  
  /* 表示中のスケジュール表 */
  .active {
    display: block;
  }

  /* テーブルの基本デザイン（ヨルダンの表用） */
  .itinerary {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
  }
  .itinerary th, .itinerary td {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: left;
  }
  .itinerary th { background-color: #f4f4f4; }
  .sp-cap { font-weight: bold;} /* 矢印部分の強調 */
  .hot, .eat { font-size: 0.9em; color: #555; margin-top: 5px; }

