/* --------------------------------
   基本設定（index.css 準拠）
-------------------------------- */
body, .container {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 20px;
}
.container {
    margin: 0 20px;
}
.sp-only::before {
  content: " ";
}

/* --------------------------------
   タイトル
-------------------------------- */
.title {
    text-align: right;   			/* 画像を右寄せ */
    margin-bottom: 0;    			/* h3との隙間をなくす */
}
.title img {
    height: auto;
}
h1 {
    font-weight: 700;
    font-size: 40px;
    text-align: center;
    line-height: 1.5;
    margin: 0px 0 0px;
    padding: 0 5px;
}

/* --------------------------------
   セクション見出し
-------------------------------- */
h2 {
    font-size: 1.2em;
    font-weight: 700;
    border-bottom: 2px solid #333;
    padding-bottom: 5px;
    margin: 60px 0 20px;
}
.section-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 1.2em;
    text-align: center;
    line-height: 1.5;
    margin: 60px 0 30px;
    padding: 0 5px;
}
/* --------------------------------
   画像
-------------------------------- */
.event-image {
    text-align: center;
    margin-bottom: 40px;
}
.event-image img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* --------------------------------
   店舗情報
-------------------------------- */
.shop {
    margin-bottom: 25px;
}
.shop-name {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 1.0em;
}
.shop-note {
    font-size: 0.7em;
    font-weight: 400;
    margin-left: 5px;
}
.shop-note::before {
    content: "  👑";
}
.shop-address {
    font-size: 0.8em;
    color: #333;
    margin-top: 5px;
}

/* --------------------------------
   通行規制 
-------------------------------- */

.notice {
    margin-top: 20px;
}
/* 注記 */
.traffic-note {
    margin-top: 20px;
    margin-bottom: 80px;
    font-size: 20px;
}
/* 凡例 */
.traffic-legend {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}
.traffic-legend li {
    display: flex;
    align-items: center;
    margin-bottom: 6px;
    font-size: 0.95em;
}
/* 色付きマーク */
.traffic-legend li::before {
    content: "";
    width: 100px;
    height: 22px;
    margin-right: 8px;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
/* 凡例 */
.area-restrict::before {
    background-image: url("../image/kiseiarea.jpg");
}
.area-parade::before {
    background-image: url("../image/houkou_parade.jpg");
}
.area-open::before {
    background-image: url("../image/houkou_car.jpg");
}
/* 説明文 */
.traffic-text {
    margin-top: 15px;
    line-height: 1.7;
}
/* スケジュール */
.traffic-schedule {
    margin-top: 25px;
    margin-bottom: 30px;
}
.schedule-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 1.0em;
    margin-bottom: 4px;
    border-bottom: 2px solid #333;
    display: inline-block;
    padding-bottom: 3px;
}
/* 時間表 */
.schedule-list {
    margin-top: 0;
    display: grid;
    grid-template-columns: 80px 1fr;
    row-gap: 6px;
    font-size: 0.95em;
}
.schedule-list dt {
    font-weight: 700;
}
.schedule-list dd {
    margin: 0;
}

/* --------------------------------
   PC表示（index.css と同じ）
-------------------------------- */
@media screen and (min-width:800px) {
    .container {
        max-width: 1000px;
        margin: 0 auto;
    }
}

/* --------------------------------
   スマホ微調整
-------------------------------- */
@media screen and (max-width:600px) {
    h1 {
        font-size: 27px;
    }
    .section-title {
        font-size: 27px;
    }
}
@media screen and (max-width: 600px) {
  .sp-only::before {
    content: "\A";
    white-space: pre;
  }
}
