body {
  margin: 0;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  background: #fffaf5;
  color: #5b4a3b;
}

/* ヘッダー */
.site-header {
  background: #fff;
  border-bottom: 1px solid #eadfcf;
}

/* 上段 */
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start; /* ←崩れ防止の核心 */
}

/* ロゴ */
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.logo p {
  margin: 0;
  font-size: 14px;
  color: #9a7c52;
}

.logo h1 {
  margin: 4px 0 0;
  font-size: 34px;
  color: #c79a3b;
}

/* 連絡先 */
.contact {
  text-align: right;
  line-height: 1.6;
}

.contact p {
  margin: 0;
  font-size: 14px;
  color: #8d7353;
}

.contact h2 {
  margin: 4px 0;
  font-size: 28px;
  color: #b57d3b;
}

/* ナビ */
nav {
  display: flex;
  justify-content: center;
  background: #fff7ea;
  border-top: 1px solid #f0e2cc;
}

nav a {
  padding: 14px 24px;
  color: #6b563f;
  text-decoration: none;
}

nav a:hover {
  background: #f3e6d2;
}

/* メイン画像 */
.hero {
  position: relative;
  max-width: 1100px;
  margin: 30px auto;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(120, 90, 40, 0.18);
}

.hero img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

/* テキスト */
.hero-text {
  position: absolute;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  background: rgba(50, 35, 20, 0.7);
  color: white;
  text-align: center;
  padding: 22px 34px;
  border-radius: 16px;
}

.hero-text h2 {
  margin: 0 0 10px;
  font-size: 30px;
}

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

.shop iframe {
  width: 100%;
  max-width: 800px;
  height: 320px;
  display: block;
  margin: 20px auto;
  border-radius: 12px;
}

.shop {
  max-width: 900px;
  margin: 40px auto;
  text-align: center;
}

.shop iframe {
  width: 100%;
  max-width: 800px;
  height: 320px;
  margin-top: 20px;
  border-radius: 12px;
}

.contact-page {
  max-width: 900px;
  margin: 60px auto;
  text-align: center;
  padding: 0 16px;
}

.contact-page h2 {
  font-size: 28px;
  margin-bottom: 16px;
}

.contact-box {
  margin-top: 24px;
  background: #fff;
  border: 1px solid #eadfcf;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 8px 22px rgba(120, 90, 40, 0.12);
}

.contact-box a {
  color: #b57d3b;
  font-weight: bold;
}