/* ============================
   リセット＆基本
============================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  background: #ffffff;
  color: #333;
  padding-top: 70px;
  overflow-x: hidden;
}

.wrap {
  width: 1100px;
  margin: 0 auto;
}

/* ============================
   ヘッダー
============================ */
header {
  width: 100%;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid #eee;
}

.logo {
  font-size: 20px;
  font-weight: 700;
}

.logo {
  text-decoration: none;
  color: inherit;
}

.pc-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

.pc-nav a {
  color: #4B2E05;
  font-weight: 600;
  text-decoration: none;
}

/* ハンバーガー */
.menu-btn {
  width: 32px;
  height: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  padding: 0;
  border: none;
  background: transparent;
}

.menu-btn div {
  width: 100%;
  height: 3px;
  background: #333;
}

@media (max-width: 900px) {
  .pc-nav {
    display: none;
  }
}

@media (min-width: 901px) {
  .menu-btn {
    display: none;
  }
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: none;
  z-index: 1050;
}

.menu-panel {
  position: fixed;
  top: 0;
  right: -200px;
  width: 200px;
  height: 100vh;
  background: #ffffff;
  padding: 60px 20px;
  transition: 0.3s;
  z-index: 1100;
}

.menu-panel.open {
  right: 0;
}

.menu-panel a {
  display: block;
  margin-bottom: 20px;
  text-decoration: none;
  color: #333;
}

/* ============================
   ヒーロー
============================ */
.hero-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
}

.hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 1;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  z-index: 2;
}

.hero-title {
  font-size: clamp(28px, 8vw, 48px);
  font-weight: 600;
}

.hero-sub {
  font-size: clamp(16px, 3.5vw, 26px);
}

.nowrap {
  white-space: nowrap;
}

/* ============================
   セクション
============================ */
section {
  padding: 80px 0;
}

.sec-flex {
  display: flex;
  align-items: center;
  gap: 50px;
}

.sec-flex img {
  width: 480px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.sec-text {
  flex: 1;
  font-size: 18px;
  line-height: 1.9;
}

.reverse {
  flex-direction: row-reverse;
}

/* ============================
   お知らせ
============================ */
.news {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-size: 24px;
  margin-bottom: 40px;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.news-item {
  padding: 16px 20px;
  background: #faf7f2;
  border-radius: 8px;
  transition: 0.2s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.news-item:hover {
  transform: translateY(-2px);
}

.news-date {
  font-size: 13px;
  color: #888;
  margin-bottom: 6px;
}

.news-text {
  font-size: 16px;
  line-height: 1.6;
}

/* ============================
   メニューカード（修正ポイント）
============================ */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.menu-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* ★ここが修正 */
.menu-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;   /* ←切れない */
  background: #f5f5f5;
  display: block;
}

.menu-card-body {
  padding: 16px 18px 22px;
}

.menu-card-body h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 600;
}

.menu-card-body p {
  margin: 0;
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

/* ============================
   フッター
============================ */
footer {
  background-color: #fff;
  padding: 24px 16px;
  margin-top: 60px;
  color: #5c3b1e;
  text-align: center;
}

/* （以下省略なしでそのまま） */

.footer-flex {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
}

.footer-menu,
.footer-info,
.footer-map {
  flex: 1;
  min-width: 250px;
}

.footer-title {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 16px;
  color: #8b4513;
}

footer a {
  color: #5c3b1e;
  text-decoration: none;
}

footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer address {
  margin-top: 40px;
  font-size: 14px;
  color: #666;
}

/* ============================
   レスポンシブ
============================ */
@media (max-width: 900px) {

  .wrap {
    width: 100%;
    padding: 0 16px;
  }

  .sec-flex {
    flex-direction: column;
    gap: 24px;
  }

  .sec-flex img {
    width: 100%;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .hero-image {
    aspect-ratio: 1 / 1;
  }

  .footer-flex {
    flex-direction: column;
    align-items: center;
  }
}

/* ============================
   改行制御（お知らせ用）
============================ */
.sec-text p {
  word-break: keep-all;
  overflow-wrap: normal;
}

.news-content {
  word-break: keep-all;
  overflow-wrap: normal;
  line-break: strict;
}