@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap');

body {
  font-family: 'Noto Sans JP', sans-serif;
  margin: 0;
  background-color: #fffbee;
  color: #333;
  line-height: 1.7;
  text-align: center;
}

/* ─────────── ヘッダー ─────────── */
.site-header {
  text-align: center;
  padding: 40px 15px 25px;
  background-color: #7fa86d; /* フッターと同じ色 */
  border-radius: 0 0 24px 24px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.site-header h1 {
  font-size: 2rem;
  color: #f8fff2;
  margin-bottom: 6px;
  white-space: nowrap;
}

.tagline {
  font-size: 1.05rem;
  color: #f8fff2;
  letter-spacing: 0.05em;
  line-height: 1.2; /* ← 行間詰め */
  margin: 4px 0 0;
}

.subtagline {
  font-size: 0.9rem;
  color: #f8fff2;
  margin-top: 0; /* ← 詰める */
  letter-spacing: 0.03em;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  max-width: 95vw;
}

.tagline-en {
  font-size: 1.05rem;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  letter-spacing: 0.06em;
  margin-top: 2px;
  line-height: 1.3;
  color: rgba(255, 255, 240, 0.85); /* ← 柔らかいクリーム系 */
  text-shadow: 0 0 6px rgba(255, 255, 230, 0.4); /* ← ふわっとぼかす魔法✨ */
}



@media (max-width: 600px) {
  .site-header h1 {
    font-size: 1.7rem;
  }

  .tagline {
    font-size: 1rem;
    line-height: 1.15;
  }

  .subtagline {
    font-size: 0.85rem;
    line-height: 1.1;
  }

  .tagline-en {
    font-size: 0.95rem; /* ← スマホでは自然に2行ギリギリ */
    margin-top: 1px;
    line-height: 1.25;
  }
}


/* ─────────── トップイメージ ─────────── */
.hero-img {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  border-bottom: 3px solid #a9c7a0;
}

.intro {
  background-color: #faf8f2;
  padding: 25px 15px;
}

.intro-text {
  max-width: 700px;
  margin: 20px auto;
  font-size: 1.05rem;
  color: #4b4b4b;
}

/* ─────────── 動画 ─────────── */
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  width: 100vw;
  margin: 0 calc(-50vw + 50%);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ─────────── メッセージ ─────────── */
.honey-message {
  background-color: #faf8f2;
  padding: 60px 20px;
  text-align: center;
  border-radius: 18px;
  margin: 60px auto;
  max-width: 750px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.honey-message .en-main {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.25rem;
  color: #6b4f2a;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

.honey-message .jp-lead {
  font-size: 1rem;
  color: #4b3d2a;
  margin-bottom: 10px;
  font-weight: 500;
}

.honey-message .en-sub {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.9rem;
  color: #6f6b5a;
  opacity: 0.85;
  margin-top: 4px;
  margin-bottom: 14px;
}

.honey-message .jp-main {
  font-size: 1rem;
  color: #3a3327;
  line-height: 1.8;
}

@media (max-width: 600px) {
  .honey-message {
    padding: 40px 15px;
  }
  .honey-message .en-main {
    font-size: 1.05rem;
  }
  .honey-message .en-sub {
    font-size: 0.85rem;
  }
}

/* ─────────── 商品 ─────────── */
.products {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin: 50px auto;
  max-width: 900px;
}

.product {
  background: #fffef9;
  border-radius: 14px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  overflow: hidden;
  max-width: 420px;
  transition: transform 0.3s ease;
}

.product:hover {
  transform: translateY(-3px);
}

.product-img {
  width: 100%;
  height: auto;
  display: block;
}

.product-info {
  padding: 18px 20px 25px;
}

.product-title {
  font-size: 1.3rem;
  color: #4b3d2a;
  margin-bottom: 6px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
}

.roman {
  font-size: 0.9rem;
  color: #7a6c59;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.06em;
  margin-top: -6px;
  margin-bottom: 10px;
  text-align: center;
  display: block;
}

.product-desc {
  font-size: 0.95rem;
  color: #3a3327;
  line-height: 1.8;
}

.price {
  display: inline-block;
  margin-top: 6px;
  color: #6b4f2a;
  font-weight: 600;
  background: #f8f3e6;
  padding: 2px 8px;
  border-radius: 6px;
}

/* ─────────── ストーリー ─────────── */
.story {
  background-color: #f8f8f0;
  padding: 50px 25px;
  text-align: center;
  border-radius: 16px;
  margin: 60px auto;
  max-width: 850px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.story h2 {
  color: #7fa86d;
  font-size: 1.6rem;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  margin-bottom: 4px;
}

.story .en-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  color: #7fa86d;
  margin-bottom: 25px;
  letter-spacing: 0.03em;
}

.story p {
  font-size: 1.05rem;
  color: #3e3e3e;
  line-height: 1.9;
  margin-bottom: 18px;
}

.story .en {
  display: block;
  font-family: "Cormorant Garamond", serif;
  color: #6b6b6b;
  font-size: 0.95rem;
  margin-top: 3px;
  letter-spacing: 0.04em;
}

/* ─────────── 取扱店 ─────────── */
.shops {
  background: #fdfbf6;
  padding: 50px 20px;
  border-top: 2px solid #a9c7a0;
}

.shops h2 {
  color: #6a7b59;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  margin-bottom: 20px;
}

.shop-intro {
  font-size: 1rem;
  color: #4b3d2a;
  margin-bottom: 35px;
  line-height: 1.9;
}

.shop-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 700px;
  text-align: left;
}

.shop-list li {
  background: #fff;
  padding: 16px 20px;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.05);
  margin-bottom: 15px;
  line-height: 1.7;
}

.shop-list a {
  color: #7fa86d;
  text-decoration: none;
}

.shop-list a:hover {
  text-decoration: underline;
}

/* ─────────── フッター ─────────── */
footer {
  background-color: #7fa86d;
  color: #fff;
  padding: 25px 10px;
  font-size: 0.9rem;
}

footer a {
  color: #fff;
  text-decoration: none;
  margin: 0 8px;
  transition: opacity 0.2s ease;
}

footer a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

footer .copy {
  margin-top: 10px;
  font-size: 0.8rem;
  opacity: 0.8;
}

/* ─────────── モバイル共通 ─────────── */
@media (max-width: 768px) {
  .product-card {
    max-width: 90%;
  }
  .intro-text,
  .story p {
    font-size: 1rem;
  }
  .story .en {
    font-size: 0.9rem;
  }
}

/* ─────────── 蜂アニメーション ─────────── */
.bee-fly {
  position: fixed;
  bottom: 10px;
  right: -40px;
  font-size: 1.5rem;
  opacity: 0.8;
  animation: beeMove 20s linear infinite;
  z-index: 999;
  pointer-events: none;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
}

@keyframes beeMove {
  0% {
    transform: translateX(0) translateY(0) rotate(0deg);
  }
  25% {
    transform: translateX(-30vw) translateY(-10vh) rotate(10deg);
  }
  50% {
    transform: translateX(-60vw) translateY(2vh) rotate(-10deg);
  }
  75% {
    transform: translateX(-90vw) translateY(-8vh) rotate(15deg);
  }
  100% {
    transform: translateX(-120vw) translateY(0) rotate(0deg);
  }
}

.footer-flowers {
  position: relative;
  height: 100px;
  background: transparent;
  overflow: hidden;
}

.flower {
  position: absolute;
  bottom: 0;
  font-size: 1.3rem;
  opacity: 0;
  animation: bloom 6s ease-in forwards;
}

@keyframes bloom {
  0% { transform: scale(0.2) translateY(10px); opacity: 0; }
  60% { opacity: 1; transform: scale(1.1) translateY(0); }
  100% { transform: scale(1) opacity(1); }
}
