body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background: #fdfdfd;
  }
  
  .header {
    background: #6b4f3b;
    color: white;
    text-align: center;
    padding: 2em 1em;
  }

  .nav ul {
  list-style: none;         /* ● を消す */
  padding: 0;
  margin: 1em 0;
  display: flex;            /* 横並び */
  justify-content: center;
  gap: 2em;                 /* リンクの間隔 */
}

.nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: color 0.3s ease;
}

.nav a:hover {
  color: #ffddaa;           /* ホバーで色が変わる（お好みで） */
}

.menu {
  padding: 2em 1em;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.menu h2 {
  font-size: 1.8em;
  margin-bottom: 1em;
}

.menu-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2em;
}

.menu-item {
  width: 250px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%; /* 高さを揃える準備 */
  transition: transform 0.3s ease;
}

.menu-item:hover {
  transform: translateY(-5px);
}

.menu-item img {
  width: 100%;
  height: 180px; /* ✅ 画像の高さを固定 */
  object-fit: cover; /* 画像が枠内にフィットする */
  display: block;
}

.menu-item h3 {
  margin: 0.5em 0 0.2em;
  font-size: 1.2em;
  flex-shrink: 0;
}

.menu-item p {
  font-size: 0.9em;
  padding: 0 1em 1em;
  color: #555;
  flex-grow: 1; /* 高さ調整 */
}
  
  .hero {
    text-align: center;
    padding: 3em 1em;
    background: #f5f3f0;
  }
  
  .hero h2 {
    font-size: 1.5em;
    margin-bottom: 1em;
  }
  
  .hero button {
    padding: 0.8em 2em;
    font-size: 1em;
    background: #6b4f3b;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .about, .faq {
    padding: 2em 1em;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .faq dt {
    font-weight: bold;
    margin-top: 1em;
  }
  
  .faq dd {
    margin-left: 1em;
    margin-bottom: 1em;
  }
  
  .contact {
    background: #f7f3ef;
    padding: 3em 1.5em;
    margin: 0 auto 4em;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
  }
  
  .contact h2 {
    text-align: center;
    margin-bottom: 1.5em;
    font-size: 1.6em;
  }
  
  .contact form {
    display: flex;
    flex-direction: column;
    gap: 1em;
  }
  
  .contact input,
  .contact textarea {
    width: 100%;
    padding: 0.8em 1em;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
  }
  
  .contact textarea {
    min-height: 120px;
    resize: vertical;
  }
  
  .contact button {
    padding: 0.9em;
    font-size: 1.1em;
    background-color: #6b4f3b;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .contact button:hover {
    background-color: #5a3f2f;
  }
  
  .footer {
    background: #eee;
    text-align: center;
    padding: 1em;
    font-size: 0.9em;
  }
  
  /* アニメーション */
  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
    visibility: hidden;
  }
  
  .fade-in.active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }

.about-points-campaign {
  display: flex;
  gap: 30px;
  margin: 50px auto;
  max-width: 720px;       /* セクション幅の上限 */
  justify-content: center; /* 全体中央寄せ */
  padding: 0 10px;
  box-sizing: border-box;
  flex-wrap: nowrap;
}

/* キャンペーン部分 */
.campaign-area {
  flex: 0 1 250px;  /* 幅は250px程度に */
  background: #fce6d4;
  border: 2px solid #d2691e;
  border-radius: 8px;
  padding: 20px;
  color: #a14f0b;
  font-weight: bold;
  box-sizing: border-box;
}

/* 当店＋こだわりのまとまり */
.about-points-area {
  flex: 1 1 400px;          /* 残り幅をしっかり使う */
  display: flex;
  flex-direction: column;   /* 縦に並べる */
  gap: 20px;
}

.about-area,
.points-area {
  background: #fff8f0;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: center;
}

/* こだわりリスト */
.points-area ul {
  list-style: none;
  padding-left: 0;
  margin-top: 10px;
}

.points-area li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  font-size: 1rem;
  text-align: left;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

.points-area li::before {
  content: "✔";
  color: #d2691e;
  position: absolute;
  left: 0;
  top: 0;
}

.reviews-items {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.review-item {
  flex: 1 1 200px;
  text-align: center;
  margin-bottom: 20px;
}

.review-item img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #d2691e;
  margin-bottom: 10px;
}

.review-item p {
  font-weight: 600;
  color: #5a3a0f;
}
  
  /* レスポンシブ対応 */
  @media (max-width: 768px) {
    .hero h2 {
      font-size: 1.2em;
    }
  
    .hero button {
      width: 80%;
    }
  
    .about, .faq {
      padding: 1em;
    }

    .nav ul {
        display: flex;
        justify-content: center;
        gap: 2em;
        list-style: none;
        padding: 0;
        margin-top: 1em;
      }
      
      .nav a {
        color: white;
        text-decoration: none;
        font-weight: bold;
        transition: color 0.3s ease;
      }
      
      .nav a:hover {
        color: #ffdeba;
      }

      html {
        scroll-behavior: smooth;
      }

      .menu-items {
  flex-direction: column;
  align-items: center;
  }

  @media (max-width: 768px) {
  .about-points-campaign {
    flex-direction: column;
  }
  .campaign-area,
  .about-points-area {
    min-width: 100%;
  }
  .reviews-items {
    flex-direction: column;
  }
  .review-item {
    margin-bottom: 30px;
  }
}
  }