.hero {
  height: 100vh;

  /* 背景画像：パスをシンプルに */
  background-image: url("./injau.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #fff;
}


/* 暗いオーバーレイで読みやすくする */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 600px;
  padding: 20px;
}

.hero h1 {
  font-size: 3rem;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.8;
}

.hero-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #f8f3e8;
  color: #333;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
}
/* ============= Concept ============= */
.concept {
  padding: 80px 20px;
  background-color: #f8f3e8;
}

.concept-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
}

.concept-text {
  flex: 1;
}

.concept-text h2 {
  font-size: 1.4rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.concept-text h3 {
  font-size: 1.9rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.concept-text p {
  line-height: 1.9;
  font-size: 0.98rem;
}

.concept-image {
  flex: 1;
}

.concept-image img {
  width: 100%;
  border-radius: 16px;
  display: block;
  object-fit: cover;
}

/* スマホ表示 */
@media (max-width: 768px) {
  .concept-inner {
    flex-direction: column;
  }

  .concept {
    padding: 60px 16px;
  }

  .concept-text h3 {
    font-size: 1.6rem;
  }
}
/* ============= Menu ============= */
.menu {
  padding: 80px 20px;
  background-color: #fff;
  text-align: center;
}

.menu h2 {
  font-size: 1.8rem;
  margin-bottom: 40px;
  letter-spacing: 0.1em;
}

.menu-cards {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.menu-card {
  width: 300px;
  background: #fdfaf5;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}

.menu-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 16px;
}

.menu-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.menu-card .price {
  font-weight: bold;
  margin-bottom: 8px;
}

.menu-card .desc {
  font-size: 0.9rem;
  line-height: 1.6;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .menu {
    padding: 60px 16px;
  }
}
/* ============= Gallery ============= */
.gallery {
  padding: 80px 20px;
  background-color: #f8f3e8;
}

.gallery h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 40px;
  letter-spacing: 0.1em;
}

.gallery-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}

/* スマホ表示 */
@media (max-width: 768px) {
  .gallery {
    padding: 60px 16px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item img {
    height: 220px;
  }
}
/* ============= Voice ============= */
.voice {
  padding: 80px 20px;
  background-color: #fff;
}

.voice h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 40px;
  letter-spacing: 0.1em;
}

.voice-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

.voice-item {
  background: #fdfaf5;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}

.stars {
  color: #e6b422;
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.comment {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 10px;
}

.name {
  font-size: 0.85rem;
  color: #666;
}

/* スマホ表示 */
@media (max-width: 768px) {
  .voice-list {
    grid-template-columns: 1fr;
  }
}
/* ============= Access ============= */
.access {
  padding: 80px 20px;
  background-color: #f8f3e8;
}

.access h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 40px;
  letter-spacing: 0.1em;
}

.access-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.access-info {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.8;
}

.access-info h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.access-map {
  flex: 1;
  overflow: hidden;
}

.access-map iframe {
  width: 100%;
  max-width: 100%;      /* 念のため */
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
  display: block;
}

/* フッター */
.footer {
  padding: 24px 20px;
  text-align: center;
  font-size: 0.85rem;
  background-color: #fff;
  color: #777;
}

/* スマホ表示 */
@media (max-width: 768px) {
  .access {
    padding: 60px 16px;
  }

  .access-inner {
    flex-direction: column;
  }
}

