    body {
      font-family: 'Noto Sans JP', sans-serif;
      margin: 0;
      color: #333;
    }
   
   #contents {
      width: 100%;
      margin: 0 auto;
    }
    .mv {
      background: url('images/facilities_main.jpg') no-repeat center center;
      background-size: cover;
      height: 280px;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .mv_text {
      text-align: center;
      color: black;
    }
    .mv_text h1 {
      font-size: 2rem;
      margin: 0;
      letter-spacing: 0.1em;
    }
    .mv_text p {
      font-size: 0.875rem;
      margin: 0.5rem 0 0;
      letter-spacing: 0.2em;
    }
    .content_block {
      max-width: 1100px;
      margin: 40px auto;
      padding: 0 20px;
    }
    .gallery_list {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-start;
      gap: 30px;
      padding: 0;
      list-style: none;
    }
    .gallery_list li.large {
      width: calc(66.666% - 20px);
    }
    .gallery_list a {
      display: block;
      text-decoration: none;
      color: #333;
    }
    .gallery_list img {
      width: 100%;
      height: auto;
      display: block;
      border: 1px solid #ddd;
    }
    .description {
      display: block;
      font-size: 0.85rem;
      text-align: center;
      color: #666;
      margin-top: 0.3rem;
      line-height: 1.4;
      text-align: left;
    }
.gray-background {
  background-color: #f4f4f4; /* グレー背景 */
  padding: 40px 0;
}

.gray-background {
  background-color: #f4f4f4;
  padding: 60px 0;
}
.front_lobby_bg {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  text-align: center;
}

/* 背景を左からセクションにかけて出す */
.front_lobby_bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  margin-top: 100px;
  width: 75vw;                /* 背景幅を調整可能（例：60%） */
  height: 90%;
  background-color: #eef3f6;  /* 画像に近い淡いグレー */
  z-index: 0;
}

/* 前面に出す要素 */
.front_lobby_bg > * {
  position: relative;
  z-index: 1;
}

/* 画像中央表示 */
.feature_image_wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.feature_img {
  width: 100%;
  max-width: 960px; /* 画像最大幅（調整可能） */
  height: auto;
}

/* ラベル（フロント・ロビー） */
.feature_label {
  background-color: #004225; /* 緑系カラー */
  color: white;
  padding: 6px 16px;
  margin-top: -32px;
  font-weight: bold;
  font-size: 1rem;
  display: inline-block;
  border-radius: 2px;
}
/* ← この部分を調整して「ズレ」感を出す */
.lobby_text {
  margin-top: 40px; /* ← ここで画像より下にズラす */
}

.lobby_text h2 {
  font-size: 1.6rem;
  color: #004400;
  border-left: 6px solid #004400;
  padding-left: 10px;
  margin-bottom: 20px;
}

.lobby_text p {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
  .front_lobby_block.row-layout {
    flex-direction: column;
  }
  .front_lobby_block .half {
    width: 100%;
  }
  .lobby_text {
    margin-top: 20px; /* スマホでは少しのズレだけ */
  }
}
.feature_label {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #00512e;
  color: white;
  padding: 0.5em 1.5em;
  font-weight: bold;
}

.feature_text {
  padding: 1em;
  font-size: 13px;
  color: #333;
  text-align: left;
}
    @media screen and (max-width: 768px) {
      .gallery_list li,
      .gallery_list li.large {
        width: 100%;
      }
    }
.gallery_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2列表示 */
  gap: 30px;
  justify-content: center; /* ← 中央寄せ */
  list-style: none;
  padding: 0;
}

.gallery_list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.gallery_list img {
  width: 100%;        /* コンテナに合わせて拡大 */
  max-width: 400px;   /* 最大幅を指定（必要に応じて調整） */
  height: auto;       /* アスペクト比を保つ */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* 任意の影 */
}
.image-block {
  position: relative;
  margin: 40px 0;
}

/* 背景をページ右端から出す */
.image-block::before {
  content: "";
  position: absolute;
  top: 150px;
  right: 0;
  width: 70vw;  /* 画面右端から */
  height: 60%;
  background-color: #f0f0f0;
  z-index: 0;
}

.image-inner {
  display: flex;
  gap: 40px;
  justify-content: center;
  position: relative;
  z-index: 1; /* 背景より前面に */
  padding: 40px 20px;
  flex-wrap: wrap; /* モバイル対応可 */
}

.image-item {
  max-width: 350px;
  text-align: center;
}

.image-item img {
  width: 100%;
  height: auto;
}

.caption {
  display: block;
  font-weight: bold;
  background-color: #00512e;
  color: white;
}

.description {
  font-size: 14px;
  color: #333;
  margin-top: 5px;
  text-align: left;
} 
.image-block2 {
  position: relative;
  margin: 40px 0;
}

.image-inner2 {
  display: flex;
  gap: 40px;
  justify-content: center;
  position: relative;
  z-index: 1; /* 背景より前面に */
  padding: 40px 20px;
  flex-wrap: wrap; /* モバイル対応可 */
}

.image-item2 {
  max-width: 350px;
  text-align: center;
}

.image-item img2 {
  width: 100%;
  height: auto;
}

.caption2 {
  display: block;
  font-weight: bold;
  background-color: #00512e;
  color: white;
}

.description2 {
  font-size: 14px;
  color: #333;
  margin-top: 5px;
  text-align: left;
} 
    /* Footer */
    footer{background:var(--dark);color:var(--light);padding:2rem 1rem;}
    .footer-nav{display:flex;flex-wrap:wrap;gap:1.5rem;justify-content:center;margin-bottom:1rem;font-size:.875rem;list-style: none;}
    .footer-nav a{color:var(--light);}

    .copyright{text-align:center;font-size:.75rem;}
@media screen and (max-width: 768px) {
    .image-item {
      max-width: max-content;
      text-align: center;
    }
    .image-item2 {
      max-width: max-content;
      text-align: center;
    }
  }

