/* リセットCSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ボディの基本設定 */
body {
  font-family: 'Arial', sans-serif;
  background-color: #f5f5f5;
  color: #333;
}

/* ヘッダー */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #6f4f37; /* カフェブラウン */
  color: white;
}

header .logo h1 {
  font-size: 2rem;
}

header nav ul {
  list-style: none;
  display: flex;
}

header nav ul li {
  margin: 0 15px;
}

header nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

/* ヒーローセクション */
.hero {
  background-image: url('../img/image1.png');
  background-size: cover;
  background-position: center;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.cta-button {
  background-color: #f8c88c; /* 明るいキャラメル */
  padding: 10px 20px;
  color: #6f4f37;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.cta-button:hover {
  background-color: #f7b79d; /* 明るいピーチ */
}

/* 特徴セクション */
.features {
  display: flex;
  justify-content: space-around;
  padding: 50px 10%;
  background-color: #fff;
}

.feature {
  width: 30%;
  text-align: center;
}

.feature img {
  width: 50%;
  height: 50%;
  border-radius: 8px;
  margin-bottom: 15px;
}

.feature h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.feature p {
  font-size: 1rem;
}
/* フッター */
footer {
  text-align: center;
  padding: 20px;
  background-color: #6f4f37;
  color: white;
}