@charset "UTF-8";
/* バナー======================================== */
.menu-btn .list-grid1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 1rem;
}

.menu-btn .banner-box {
  flex: 1 1 250px;
  max-width: 300px;
}

.menu-btn .banner-box a {
  display: block;
  text-decoration: none;
}

.menu-btn .banner-bg {
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  padding: 2rem 1rem;
  color: white;
  font-weight: bold;
  text-align: center;
  position: relative;
  box-shadow: 0 0 0 5px white, 0 2px 6px rgba(0, 0, 0, 0.2);
  aspect-ratio: 2 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.6;
}

.menu-btn .list-grid1 .list p {
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.menu-btn .list-grid1 .list {
  padding: 0.5rem;
  border-radius: 21px;
}
/* 見出し======================================== */
main .box1 {
  margin-bottom: 0;
}
h3.menu-h3 {
  border: 1px solid var(--primary-color);
  text-align: center;
  background: #f5f4f3;
  color: #dd4a33;
  margin-top: 7em;
}
/* メニュー======================================== */
/* 画像表示エリアの高さを固定して揃える */
.list-grid1 .list figure {
  margin: -1rem;
  margin-bottom: 0.5rem;
  height: 200px;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}

/* 画像は枠いっぱいに表示（トリミング含む） */
.list-grid1 .list figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 3 / 2; /* アスペクト比を統一したい場合に指定（例: 3:2） */
}
.recommend-menu {
  color: #dd4a33;
  border: 1px solid var(--primary-color);
  border-radius: 8px;
  padding: 0.3em 0.8em;
  font-weight: 700;
  font-size: 1.2em;
  letter-spacing: 0.1em;
}
.list-free {
  margin-top: 3em;
}
/* メニューのカード */
.list-grid1 .list {
  color: #3b535f;
  background-color: #f5f4f3;
}
/* おすすめ======================================== */
h4 {
  font-size: 1.5em;
  margin-top: 0;
  margin-bottom: 0;
}
.price {
  font-weight: 700;
}
/* テキストメニュー======================================== */
.menu-table {
  margin: 0 auto;
  margin-top: 7em;
}

.menu-row {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.menu-block {
  flex: 1 1 45%;
  border: 1px solid #f26860;
  padding: 1rem;
  border-radius: 4px;
  background: #f5f4f3;
}

.menu-block h3 {
  font-size: 1.2rem;
  font-weight: bold;
  color: #f26860;
  border-bottom: 1px solid #f26860;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  text-align: center;
  letter-spacing: 0.1em;
  margin-top: 0;
}

.menu-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-block li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dotted #aaa;
  padding: 0.3em 0;
  font-weight: bold;
  color: #005b78;
}

/* 基本：2列 */
.menu-row {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.menu-block {
  flex: 1 1 45%;
  border: 1px solid #f26860;
  padding: 1rem;
  border-radius: 4px;
}
/* お飲み物======================================== */
main .bg1 h2 {
  margin-bottom: 2em;
}

@media screen and (max-width: 800px) {
  .menu-row {
    flex-direction: column;
  }

  .menu-block {
    flex: 1 1 100%;
  }
}
/* 施設写真======================================== */
/* 全体グリッド */
.photo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin: 2rem auto;
  padding: 0 1rem;
}

/* 個別カード */
.photo-card {
  width: calc(33.333% - 2rem);
  text-align: center;
  font-weight: bold;
  color: #003b4f;
}

/* 写真部分の枠（仮） */
.photo {
  background-image: url("/dining/images/faci01.jpg");
  background-size: cover;
  background-position: center;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #003b4f;
  font-weight: bold;
  font-size: 0.95rem;
  border-radius: 10px;
}
.nikai {
  background-image: url("/dining/images/faci02.jpg");
}
.sankai {
  background-image: url("/dining/images/faci03.jpg");
}

/* ラベル部分 */
.label {
  margin-top: 0.8rem;
  font-size: 0.95rem;
}

/* ★ レスポンシブ対応 */
@media screen and (max-width: 900px) {
  .photo-card {
    width: calc(50% - 2rem);
  }
}

@media screen and (max-width: 600px) {
  .photo-card {
    width: 100%;
  }
}
