body {
  margin: 0;
  font-family: 'Noto Serif JP', serif;
  background-color: #F9F7F1;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  padding: 16px 32px;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo {
  font-size: 24px;
  color: #4B6043;
  font-weight: bold;
}

.nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}

.nav a {
  text-decoration: none;
  color: #4B6043;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav a:hover {
  color: #8D6748;
}
.hero {
  background-image: url("moricafe/images/main.jpg"); /* 画像名が違ったらここ直してね！ */
  background-size: cover;
  background-position: center;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #fff;
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4); /* 背景を少し暗くして文字見やすく */
}

.hero-text {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.hero-btn {
  background-color: #4B6043;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.hero-btn:hover {
  background-color: #8D6748;
}
.concept {
  background-color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.concept-inner {
  max-width: 800px;
  margin: 0 auto;
  color: #333;
}

.concept h2 {
  font-size: 2rem;
  color: #4B6043;
  margin-bottom: 24px;
}

.concept p {
  font-size: 1.1rem;
  line-height: 1.8;
}
body.fade-out{
  opacity: 0;
  transition: opacity 0.5s ease ;
}
/* ===== メニューセクション ===== */
.menu-section {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.3s;
}

.menu-section h1 {
  text-align: center;
  font-size: 2.5rem;
  margin: 40px 0;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ===== メニューアイテムのレイアウト ===== */
.menu-list {
  display: flex;
  flex-wrap: wrap;  /* アイテムを折り返して並べる */
  justify-content: center;  /* メニューを中央揃え */
  gap: 40px;
  padding: 40px 20px;
}

.menu-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 250px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  background-color: #fff;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* 追加分もここに */
}

.menu-item img:hover {
  transform: scale(1.05);
}
.menu-info p {
  font-size: 1rem;
  margin: 5px 0;
  color: #777;
}
.menu-item img {
  width: 100%;
  height: auto;
  border-radius: 8px; /* 角をちょっと丸くしてオシャレに */
}

.price {
  font-weight: bold;
  color: #4B6043;
  font-size: 1.2rem;
  margin-top: 10px;
}
.contact {
  background-color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.contact h1 {
  font-size: 2.5rem;
  color: #4B6043;
  margin-bottom: 40px;
}

form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

form label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #4B6043;
}

form input,
form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

form button {
  background-color: #4B6043;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

form button:hover {
  background-color: #8D6748;
}
