   基本設定
------------------------------------ */
body {
  margin: 0;
    padding: 0;
    text-align: center; /* 全体を中央寄せにする */
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  background-color: #e8f4fb;
  color: #333;
  line-height: 1.7;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* ------------------------------------
   ヘッダー
------------------------------------ */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid #dfe6ee;
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 10px 0;
}

.header-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-title {
  font-size: 1.3rem;
  font-weight: bold;
  color: #1e6bb8;
}

.nav-menu {
  display: flex;
  gap: 18px;
}

.nav-link {
  text-decoration: none;
  color: #1e6bb8;
  font-weight: bold;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background 0.2s;
}

.nav-link:hover {
  background: #e8f4fb;
}

@media (max-width: 600px) {
  .header-inner {
    flex-direction: column;
    gap: 8px;
  }
  .nav-menu {
    gap: 12px;
  }
}

/* ------------------------------------
   コンテナ（ページ本体）
------------------------------------ */
.container {
  max-width: 900px;
  margin: 24px auto;
  padding: 24px 16px 48px;
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  border-radius: 8px;
}

/* ------------------------------------
   見出し
------------------------------------ */
.main-title {
  font-size: 2rem;
  font-weight: bold;
  color: #1e6bb8;
  border-left: 8px solid #1e6bb8;
  padding-left: 12px;
  margin-top: 0.5em;
  margin-bottom: 0.2em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon {
  font-size: 1.6rem;
}

.subtitle {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1.5em;
}

/* ------------------------------------
   ボタン
------------------------------------ */
.big-button {
  display: block;
  width: 100%;
  background-color: #1e6bb8;
  color: #fff;
  text-align: center;
  padding: 18px 0;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 10px;
  text-decoration: none;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.big-button:hover {
  opacity: 0.9;
}

/* ------------------------------------
   カード（info-card）
------------------------------------ */
.info-card {
  background: #f4f9ff;
  border: 1px solid #d6e6f5;
  padding: 20px 18px;
  border-radius: 10px;
  margin-top: 2em;
}

.info-card h2 {
  margin-top: 0;
  font-size: 1.2rem;
  color: #1e6bb8;
  border-left: 4px solid #1e6bb8;
  padding-left: 8px;
}

/* ------------------------------------
   /monthly 専用
------------------------------------ */
.date-box {
  background: #fff8d6;
  border-left: 6px solid
}
/* ------------------------------------
   /monthly 専用
------------------------------------ */
.date-box {
  background: #fff8d6;
  border-left: 6px solid #f2c94c;
  padding: 12px 16px;
  border-radius: 6px;
  margin-bottom: 20px;
  font-weight: bold;
}
.flyer-link {
  background: #fff;
  border: 2px dashed #1e6bb8;
  padding: 15px;
  text-align: center;
  border-radius: 10px;
  margin: 20px 0;
}

.flyer-link a {
  color: #1e6bb8;
  font-weight: bold;
  text-decoration: underline;
}

/* お知らせボックス（大切なお知らせ） */
.notice-box {
  background: #fff0f0; /* 薄い赤系で注意を引く */
  border: 1px solid #f5c6cb;
  padding: 20px;
  border-radius: 10px;
  margin: 25px 0;
}

.notice-title {
  color: #d9534f;
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* 献立リスト */
.menu-list {
  list-style: none;
  padding: 0;
}

.menu-list li {
  background: #f8f9fa;
  margin-bottom: 8px;
  padding: 10px 15px;
  border-left: 5px solid #1e6bb8;
  border-radius: 4px;
}

/* 強調テキスト */
.highlight {
  color: #d9534f;
  font-weight: bold;
  font-size: 1.1rem;
  background: linear-gradient(transparent 70%, #ffdfdf 70%);
}

/* フッター注釈 */
.footer-note {
  margin-top: 40px;
  font-size: 0.9rem;
  color: #777;
  border-top: 1px solid #eee;
  padding-top: 20px;
  text-align: center;
}
/* ヒーローエリア全体の調整 */
.hero-section {
    padding: 60px 20px; /* 上下にゆとりを持たせる */
    background-color: #fdfaf0; /* 温かみのある薄いクリーム色 */
    border-radius: 15px; /* 角を丸くして柔らかい印象に */
    text-align: center;
    margin-bottom: 40px;
}

/* タイトルを大きく */
.main-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
}

/* ボタンを並べる */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px; /* ボタン同士の隙間 */
    margin-top: 30px;
}

/* ボタンのデザインを少しリッチに */
.big-button {
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px; /* 丸みのあるボタン */
    font-weight: bold;
    transition: 0.3s;
}

.big-button.primary {
    background-color: #ff9800; /* 目立つオレンジ */
    color: white;
}

.big-button.secondary {
    background-color: #4caf50; /* かだれ会のイメージに近い緑 */
    color: white;
}

.big-button:hover {
    transform: translateY(-3px); /* 浮き上がる演出 */
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
nav ul {
  display: flex;
  justify-content: space-around; /* 均等に配置 */
  padding: 0;
  list-style: none;
}

/* スマホ向けの微調整 */
@media (max-width: 480px) {
    nav ul li a {
    font-size: 14px;      /* 文字を少し小さく（14〜15px程度） */
    letter-spacing: -1px; /* 文字の間隔を少しだけ詰める */
    white-space: nowrap;  /* 絶対に改行させない指定 */
  }
    
    .main-title {
        font-size: 1.8rem; /* スマホではタイトルを少し小さく */
    }
.archive-item {
        flex: 0 0 calc(50% - 8px); /* 1列に2枚にする */

}
}

/* 信頼感を出すバッジのデザイン（HTMLに追加して使う） */
/* --- アーカイブ全体のエリア --- */
#archive {
    margin-top: 50px;
    padding: 20px;
    text-align: center
}

#archive h2 {
    font-size: 1.4rem;
    color: #666;
    margin-bottom: 20px;
}

/* --- 画像を並べるグリッド（ここが重要） --- */
.archive-grid {
  display: flex;
  flex-wrap: wrap;
  /* パソコンでは横に3つ〜4つ並べる設定 */
  justify-content: flex-start;
  gap: 15px; /* チラシ同士の隙間 */
  margin-top: 20px;
}

/* --- 画像1枚あたりのスタイル（「騒がしさ」を消す魔法） --- */
.archive-item img {
 width: 100%;      /* 親の幅いっぱいに広げる */
  height: auto;     /* 高さは自動調整 */
  border: 1px solid #ccc;
  border-radius: 4px; /* 角を少し丸くすると綺麗です */
 box-shadow: 2px 2px 5px rgba(0,0,0,0.1); /* 軽い影をつけて見やすく */
  transition: transform 0.2s; /* マウスを乗せた時の動き */
}
.archive-item {
    /* ★ここがポイント！スマホで「1列」にならないように幅を指定する */
    flex: 0 0 120px; /* 1列に3枚並べる設定 */
    text-decoration: none;            /* でも100pxよりは大きくしない */
}
  

/* --- マウスを乗せた時の動き --- */
.archive-item:hover img {
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.archive-item img:active,
.archive-item img:hover {
    filter: grayscale(0%) opacity(100%);
    transform: scale(1.05);
    border-color: #ff9800;  /* 枠線の色を変える */
}

/* 全体を中央に寄せ、幅を整える */
.event-info-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: left; /* 中身は読みやすく左揃え */
    padding: 20px;
}

/* 見出しのデザインを統一して整列させる */
.event-info-container h2 {
    font-size: 1.25rem;
    border-bottom: 2px solid #f0ad4e; /* オレンジの線で区切り */
    padding-bottom: 5px;
    margin-top: 30px;
    color: #333;
}

/* 各項目の内容に少し余白を作る */
.info-content {
    padding: 10px 0 10px 15px;
}

/* 献立のリストを横に並べる（スマホでは縦） */
.menu-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
}

.menu-list li {
    background: #fff4e5;
    padding: 5px 15px;
    border-radius: 20px;
    border: 1px solid #f0ad4e;
}

/* 補足説明の文字を少し小さくして静かにさせる */
.sub-text {
    font-size: 0.85rem;
    color: #777;
}

/* 強調テキスト（限定50食） */
.highlight {
    color: #d9534f;
    font-weight: bold;
    margin-top: 10px;
}
/* アーカイブ全体のコンテナ */
.archive-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px; /* 画像同士の隙間 */
    justify-content: center; /* 中央寄せ */
}

/* 各チラシ画像の設定 */
.archive-container img {
    width: 120px; /* 画像の幅を小さく指定 */
    height: auto;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: transform 0.2s;
}

/* ホバー時に少し大きくする演出（任意） */
.archive-container img:hover {
    transform: scale(1.1);
}
@media (min-width: 768px) {
    /* PC・タブレット向けのレイアウト */
    .main-content-flex {
        display: flex;
        align-items: flex-start;
        gap: 20px;
    }
    
    .schedule-info {
        flex: 1; /* 開催日エリア */
    }
    
    .important-notice {
        flex: 1; /* お知らせエリア */
    }
}