@charset "UTF-8";

/* ============================================================
   非常措置ページ（Emergency）専用スタイル
   ============================================================ */

.emergency-page {
    background-color: #fcfaf5;
    padding: 180px 0 120px;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.emergency-page .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- 💡 タイトルエリアの中央揃えと装飾 --- */
.emergency-page .section-title {
    text-align: center;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.emergency-page .section-title .title-inner {
    display: inline-flex;
    align-items: center; 
    justify-content: center;
    gap: 30px;
    font-size: 28px;
    font-weight: 900;
    color: #4a3728;
    line-height: 1;
}

/* タイトルの横の緑の棒 */
.emergency-page .section-title .title-inner::before,
.emergency-page .section-title .title-inner::after {
    content: "";
    width: 6px;
    height: 35px;
    background-color: #08A66C;
    border-radius: 10px;
}

.emergency-page .section-title span:not(.title-inner) {
    display: block;
    font-size: 14px;
    color: #08A66C;
    margin-top: 10px; 
    letter-spacing: 0.15em;
    font-weight: 700;
}

/* --- 導入文エリア --- */
.info-intro {
    text-align: center;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 40px;
    border: 2px solid #fff;
    margin-bottom: 60px;
}

.edition-tag {
    display: inline-block;
    background: #4a3728;
    color: #fff;
    padding: 5px 20px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 20px;
}

.origin-title {
    font-size: 24px;
    font-weight: 900;
    color: #4a3728;
    margin-bottom: 20px;
}

.origin-text {
    font-size: 16px;
    font-weight: bold;
    color: #555;
    line-height: 1.8;
}

/* --- 💡 「自宅待機」メッセージの中央揃え --- */
.rule-box {
    text-align: center; /* ボックス全体を中央揃え */
    margin-bottom: 40px;
}

.rule-main-msg {
    font-size: 20px;
    font-weight: 900;
    color: #333;
    margin-bottom: 30px;
    padding: 15px;
    background: #fff;
    border-radius: 10px;
    display: inline-block; /* 内容に合わせて幅を縮める */
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.rule-main-msg strong {
    color: #d63031; /* 赤色で強調 */
    font-size: 1.2em;
}

/* --- タイムテーブル --- */
.time-table-wrapper {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    max-width: 700px;
    margin: 0 auto;
}

.time-table {
    width: 100%;
    border-collapse: collapse;
}

.time-table th {
    background: #08A66C;
    color: #fff;
    padding: 15px;
    font-weight: 900;
}

.time-table td {
    padding: 18px;
    border-bottom: 1px solid #eee;
    text-align: center;
    font-weight: bold;
    color: #4a3728;
}

/* --- 💡 在園中に発令された場合（余白の追加） --- */
.emergency-section {
    margin-top: 100px; /* 上に大きな余白を追加 */
}

.section-title-sub {
    text-align: center;
    font-size: 24px;
    font-weight: 900;
    color: #4a3728;
    margin-bottom: 35px;
}

.pick-up-box {
    background: #ffd700;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 40px;
    border: 3px dashed #4a3728;
}

.pick-up-msg {
    font-size: 22px;
    font-weight: 900;
    color: #4a3728;
    margin: 0;
}

.emergency-notes {
    max-width: 700px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
}

.emergency-notes li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 20px;
    font-weight: bold;
    color: #555;
    line-height: 1.6;
}

.emergency-notes li::before {
    content: "⚠️";
    position: absolute;
    left: 0;
    font-size: 20px;
}

/* --- スマホ対応 --- */
@media screen and (max-width: 768px) {
    .emergency-page { padding-top: 140px; }
    .emergency-page .section-title .title-inner { font-size: 22px; gap: 15px; }
    .origin-title { font-size: 20px; }
    .rule-main-msg { font-size: 16px; width: 100%; }
    .emergency-section { margin-top: 60px; }
}