/* ===========================================
   共通設定
=========================================== */
body {
  margin: 0;
  font-family: "Zen Maru Gothic", "Hiragino Sans", Meiryo, sans-serif;
  background: #fdf9f3;
  color: #333;
  line-height: 1.8;
}

/* ===========================================
   ヘッダー
=========================================== */
.site-header {
  background: #fff;
  border-bottom: 3px solid #c9b07e;
}
.logo {
  margin: 0;
  padding: 20px 0 10px;
  text-align: center;
  font-size: 1.8rem;
  color: #6a5636;
}
.nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 10px;
}
.nav a {
  color: #6a5636;
  text-decoration: none;
  font-weight: bold;
  padding: 6px 14px;
  border-radius: 20px;
  transition: background 0.3s;
}
.nav a:hover,
.nav a.active {
  background: rgba(201,176,126,0.25);
}

/* ===========================================
   ヒーロー
=========================================== */
.hero {
  position: relative;
  text-align: center;
  overflow: hidden;
}
.hero img {
  width: 100%;
  height: auto;
  display: block;
  border-bottom: 6px solid #e2d5b4;
}
.hero-text {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  text-shadow: 0 2px 5px rgba(0,0,0,0.4);
}
.hero-text h2 {
  font-size: 2.4rem;
  margin: 0;
}
.hero-text p {
  font-size: 1.1rem;
}

/* ===========================================
   写真＋説明の横並び
=========================================== */
.ham-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
}

.ham-box {
  flex: 1 1 45%;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease;
}
.ham-box:hover {
  transform: translateY(-5px);
}
.ham-box img {
  width: 100%;
  height: auto;
  display: block;
}
.ham-text {
  padding: 20px;
}
.ham-text h3 {
  color: #6a5636;
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.ham-text p {
  color: #444;
  margin-bottom: 20px;
}

/* ===========================================
   ボタン
=========================================== */
.btn {
  display: inline-block;
  background: #c9b07e;
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 25px;
  transition: background 0.3s ease;
}
.btn:hover {
  background: #a88c59;
}

/* ===========================================
   フッター
=========================================== */
footer {
  text-align: center;
  background: #fff;
  padding: 30px;
  color: #6a5636;
  border-top: 1px solid #e2d5b4;
}

/* ===========================================
   レスポンシブ対応
=========================================== */
@media screen and (max-width: 768px) {
  .ham-container {
    flex-direction: column;
    align-items: center;
  }
  .ham-box {
    flex: 1 1 100%;
    max-width: 500px;
  }
}