/* 全体のベース */
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
}

/* ヘッダー */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 32px;
    background-color: #f8f1e4;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* ロゴテキスト */
.header-title {
    font-size: 24px;
    font-weight: bold;
    color: #5c3d2e;
    margin: 0;
}

/* ナビ */
.header-list {
    list-style: none;
    display: flex;
    gap: 24px;
    margin: 0;
    padding: 0;
}

.header-item a {
    text-decoration: none;
    color: #5c3d2e;
    font-weight: 500;
}

.header-item a:hover {
    color: #a47451;
}

.hero {
  position: relative;
  background-image: url('back-image.jpeg');
  background-size: cover;
  background-position: center;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3); /* 少し暗くするオーバーレイ */
}

.hero-content {
  position: relative;
  text-align: center;
  color: #fff;
  z-index: 1;
}

.hero-title {
  font-size: 48px;
  margin-bottom: 12px;
}

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 24px;
}

.hero-btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #fff;
  color: #5c3d2e;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.hero-btn:hover {
  background-color: #f1e6d0;
}

.concept {
  padding: 80px 24px;
  background-color: #fffdf9;
  text-align: center;
}

.concept-title {
  font-size: 36px;
  color: #5c3d2e;
  margin-bottom: 24px;
}

.concept-text {
  font-size: 18px;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
  color: #333;
}

.menu {
  background-color: #fdfaf6;
  padding: 80px 24px;
  text-align: center;
}

.menu-title {
  font-size: 36px;
  color: #5c3d2e;
  margin-bottom: 48px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.menu-item {
  background-color: #fff;
  padding: 16px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.menu-item img {
  width: 100%;
  border-radius: 4px;
  margin-bottom: 12px;
}

.menu-item h3 {
  margin: 8px 0 4px;
  color: #5c3d2e;
}

.menu-item p {
  color: #333;
  font-weight: bold;
}

.access {
  padding: 80px 24px;
  background-color: #fffdf9;
  text-align: center;
}

.access-title {
  font-size: 36px;
  color: #5c3d2e;
  margin-bottom: 24px;
}

.access-info {
  font-size: 18px;
  color: #333;
  margin-bottom: 32px;
  line-height: 1.6;
}

.access-map img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.footer {
  background-color: #5c3d2e;
  color: #fff;
  text-align: center;
  padding: 24px 0;
  font-size: 14px;
}

@media (max-width: 768px) {
  /* ヘッダー */
  .header-list {
    flex-direction: column;
    gap: 12px;
  }

  /* ヒーロー */
  .hero-title {
    font-size: 32px;
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-btn {
    padding: 12px 24px;
    font-size: 16px;
  }

  /* メニュー */
  .menu-grid {
    grid-template-columns: 1fr;
  }

  /* コンセプト */
  .concept-text {
    font-size: 16px;
    padding: 0 12px;
  }

  /* アクセス情報 */
  .access-info {
    font-size: 16px;
  }
}
