body {
    background-color: #a9d18e;
    margin: 0;
    font-family: sans-serif;
}

/* 中央のコンテンツ共通 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fff;
    padding: 20px;
    box-sizing: border-box;
}

/* ロゴ＋電話番号 横並び */
.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo,
.header-tel {
  max-width: 100%;
  height: auto;
}

.header-logo img {
    max-height: 200px;
}

.header-tel img {
    max-height: 200px;
}

/* 受付時間画像 幅いっぱい */
.header-other img {
    display: block;
    width: 100%;
    height: auto;
    margin-top: 10px;
}

.banner {
  position: relative;
  width: 100%;
  max-width: 1200px;
  aspect-ratio: 800 / 300; /* 元画像の比率（幅/高さ）を指定 */
  overflow: hidden;
  margin: 0 auto;
}

.banner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain; /* 全部表示・切れない */
  opacity: 0;
  transform: scale(1);
  filter: blur(10px);
  transition: opacity 1.2s ease, filter 1.2s ease;
}

.banner img.active {
  opacity: 1;
  filter: blur(0);
}

.tuyomi-img {
  max-width: 100%;
  height: auto;
}




/* ナビ＋地図 */
.index-container {
    display: flex;
    gap: 20px;
    margin-top: 20px; /* 左右マージンは削除して中央揃え */
}

#index-navi {
    flex: 1;
    background: #fff; /* 背景を白に */
    display: flex;
    justify-content: center; /* 縦方向中央寄せ */
    align-items: center;     /* 横方向中央寄せ */
}

/* ナビ内リストの点を消し、余白をリセット */
#index-navi ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

#index-navi li {
    margin: 5px 0; /* ボタンの間隔 */
}

#map {
    flex: 2;
    background: #ddd;
}

.news {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  margin-top: 20px;
}

.news h2 {
  font-size: 1.5em;
  color: #4f6228;
  border-left: 6px solid #a9d18e;
  padding-left: 10px;
  margin-bottom: 15px;
}

.news-item {
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
  display: flex;
  flex-wrap: wrap;
}

.news-date {
  font-size: 0.85em;
  color: #a9d18e;
  font-weight: bold;
  margin-right: 10px;
}

.news-title {
  font-size: 1em;
  color: #333;
}

.news-item:last-child {
  border-bottom: none;
}




/* ---------- スマホ用調整 ---------- */
@media (max-width: 768px) {
    /* ヘッダーのロゴ・電話番号を縦並びに */
    .header-top {
        flex-direction: column;
        text-align: center;
    }

    .header-logo img {
        height: auto;
        max-width: 80%;
    }

    .header-tel img {
        height: auto;
        max-width: 80%;
        margin-top: 10px;
    }

    .index-container {
        flex-direction: column;
    }

    .tuyomi-img {
    	max-width: 95%;   /* 画面幅の70%に縮小 */
    	margin: 10px auto; /* 上下余白＋中央寄せ */
    	display: block;
    }

    /* ナビのボタンを中央寄せ */
    #index-navi {
        padding: 20px 0;
    }

    .news h2 {
        font-size: 1.3em;
    }

    .news-date {
        display: block;
        margin-bottom: 3px;
    }
}

/* === Information セクション（確実に反映させる版）=== */
/* ※ index.css の一番下に貼ってください */
.container .information{
  background: #fff;
  padding: 20px;
  margin: 20px 0 0;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,.08); /* 視認性アップ */
}

.container .information h2{
  color: #4f6228;
  border-left: 6px solid #a9d18e;
  padding-left: 10px;
  margin: 0 0 15px;
  font-size: 1.7em;
}

.container .information .information-item{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
}
.container .information .information-item:last-child{
  border-bottom: none;
}

.container .information .information-date{
  color: #a9d18e;
  font-weight: bold;
  font-size: .9em;
}

.container .information .information-title{
  color: #333;
  font-size: 1em;
}

/* モバイル調整（任意） */
@media (max-width: 768px){
  .container .information h2{ font-size: 1.3em; }
  .container .information .information-date{ display:block; margin-bottom:4px; }
}