body {
  font-family: "Rounded Mplus 1c", "Noto Sans JP", sans-serif;
  margin: 0;
  background-color: #fffaf4;
  color: #4b3f33;
  line-height: 1.8;
}

/* ヘッダー */
header {
  background-color: #f4b6a6;
  color: white;
  text-align: center;
  padding: 15px 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

header h1 {
  margin: 0;
  font-size: 1.8em;
  letter-spacing: 0.05em;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: opacity 0.2s;
}

nav a:hover {
  opacity: 0.7;
}

/* ヒーローエリア */
#hero {
  background: url("images/hero.jpg") center/cover no-repeat;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-text {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 30px 40px;
  border-radius: 16px;
}

.hero-text h2 {
  font-size: 2em;
  color: #805c40;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  background-color: #f4b6a6;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background-color: #e49b8d;
}

/* セクション */
section {
  padding: 60px 20px;
  text-align: center;
}

/* メニュー */
.menu-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.item {
  width: 240px;
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 20px;
  transition: transform 0.2s;
}

.item:hover {
  transform: translateY(-4px);
}

.item img {
  width: 100%;
  border-radius: 12px;
}

/* フッター */
footer {
  background-color: #f4b6a6;
  color: white;
  text-align: center;
  padding: 15px 0;
  font-size: 0.9em;
  margin-top: 50px;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .menu-items {
    flex-direction: column;
    align-items: center;
  }
}
