/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
/* スライドショー */
.hero__slides {
  position: absolute;
  inset: 0;
}
.hero__slide {
  position: absolute;
  inset: 0;
  background: var(--placeholder);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.35);
  font-size: 13px;
  opacity: 0;
  transition: opacity 2.8s ease;
}
.hero__slide.is-active {
  opacity: 1;
}

/* スライドインジケーター（ドット）*/
.hero__dots {
  position: absolute;
  bottom: 28px;
  right: 80px;
  display: flex;
  gap: 10px;
  z-index: 3;
}
.hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.38);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.hero__dot.is-active {
  background: #fff;
  transform: scale(1.25);
}

.hero__dark-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
}
.hero__content-layer {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 56px 80px 36px;
}

/* ロゴ + ラベル */
.hero__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.hero__logo-img {
  height: 68px;
  width: auto;
  display: block;
}
.hero__label-row {
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(255,255,255,0.72);
  font-size: 11px;
  letter-spacing: 0.38em;
}
.hero__line-dec {
  display: block;
  width: 56px;
  height: 1px;
  background: rgba(255,255,255,0.42);
}

/* タイトル */
.hero__middle {
  flex: 1;
  display: flex;
  align-items: center;
  width: 100%;
}
.hero__title {
  font-family: 'Noto Serif JP', serif;
  font-size: 62px;
  font-weight: 400;
  color: #fff;
  line-height: 1.55;
  letter-spacing: 0.06em;
  text-shadow: 0 2px 16px rgba(0,0,0,0.45);
}

/* SCROLL インジケーター + ギフトサムネイル */
.hero__bottom {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
}
.hero__scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.62);
}
.hero__scroll-text {
  font-size: 10px;
  letter-spacing: 0.42em;
}
.hero__scroll-line {
  width: 1px;
  height: 54px;
  background: rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(255,255,255,0.85);
  animation: scroll-anim 1.8s ease-in-out infinite;
}
@keyframes scroll-anim {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* ギフトサムネイル（右下） */
.hero__gift-thumb {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}
.hero__gift-img {
  width: 128px;
  height: 128px;
  background: var(--placeholder);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  text-align: center;
  line-height: 1.5;
}
.hero__gift-label {
  font-size: 10px;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.55);
}

/* ============================================================
   縦書きメッセージ
============================================================ */
.v-message-section {
  padding: 180px 0;
  background: var(--bg-white);
}
.v-message-wrap {
  display: flex;
  flex-direction: row-reverse; /* 右から左（伝統的縦書き） */
  justify-content: center;
  gap: 2.8em;
  padding: 0 40px;
}
.v-message-wrap p {
  writing-mode: vertical-rl;
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  line-height: 2.3;
  color: var(--text-dark);
  white-space: nowrap;
  letter-spacing: 0.12em;
}

/* ============================================================
   私たちが大切にしていること
============================================================ */
.values-section {
  padding: 96px 0;
  background: var(--bg-white);
}
.values-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}
.values-statement {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(18px, 5.5vw, 26px);
  font-weight: 600;
  color: var(--green-dark);
  line-height: 1.75;
  margin: 12px 0 18px;
}
@media (min-width: 768px) {
  .values-statement br { display: none; }
  .values-statement { font-size: clamp(20px, 2vw, 28px); white-space: nowrap; }
}
.values-lead {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.9;
}
.values-line {
  width: 40px;
  height: 2px;
  background: var(--orange);
  margin: 24px auto 0;
}
.values-three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 56px;
}
.value-item {
  padding: 0;
}
.value-item__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 18px;
  display: block;
}
.value-num {
  display: block;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 14px;
}
.value-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 14px;
  line-height: 1.4;
}
.value-text {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.9;
  text-align: left !important;
}
.values-cta {
  text-align: center;
  margin-top: 56px;
}

/* ============================================================
   PRODUCTS（4品種グリッド）
============================================================ */
.variety-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.variety-card {
  display: block;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--border);
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
  text-decoration: none;
  color: inherit;
}
.variety-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.09);
  border-color: var(--green-light);
}
.variety-card__img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}
.variety-card__body {
  padding: 20px 18px 24px;
}
.variety-en {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--green-light);
  margin-bottom: 4px;
}
.variety-badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.variety-badge--green { background: #E8F4D9; color: #3A6B1A; }
.variety-badge--black { background: #2A2040; color: #C8B8F0; }
.variety-badge--red   { background: #FAE8E8; color: #8A2020; }
.variety-badge--pink  { background: #FAE8F4; color: #8A3060; }
.variety-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 8px;
}
.variety-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.8;
}

/* ============================================================
   GIFT / SHOP INFO
============================================================ */
.gift-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.shop-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}
.map-placeholder {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-mid);
  font-size: 13px;
  font-weight: 500;
  min-height: 200px;
  width: 100%;
}
.map-placeholder::before { display: none; }
.season-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* ---- ニュース行 ---- */
.news-row {
  display: grid;
  grid-template-columns: 130px auto 1fr;
  align-items: baseline;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: var(--text-dark);
}
.news-row:hover { color: var(--green-dark); }

/* ============================================================
   レスポンシブ（タブレット〜）
============================================================ */
@media (max-width: 1024px) {
  .season-badge { display: flex; width: fit-content; margin-left: auto; margin-right: auto; }
}
@media (max-width: 960px) {
  .hero__content-layer { padding: 40px 28px 24px; }
  .hero__title { font-size: 38px; }
  .hero__gift-thumb { display: none; }
  .values-three {
    grid-template-columns: 1fr !important;
    padding-top: 32px;
  }
  .value-item {
    padding: 24px 0 !important;
  }
  .v-message-section { padding: 120px 0; }
  .v-message-wrap { gap: 1.6em; padding: 0 20px; }
  .variety-card__img { height: auto !important; }
  .map-placeholder { height: auto !important; aspect-ratio: 4/3; }
}

@media (max-width: 600px) {
  .hero__content-layer { padding: 28px 20px 20px; }
  .hero__title { font-size: 28px; }
  .v-message-section { padding: 80px 0; }
  .v-message-wrap p { font-size: 15px; line-height: 2; }
  .news-row {
    grid-template-columns: auto 1fr !important;
    row-gap: 4px;
  }
  .news-row .news-row-title { grid-column: 1 / -1; }
}

/* SP: 3枚目ヒーロー画像 手前のぶどうをメインに */
@media (max-width: 768px) {
  .hero__slide--harvest {
    background-position: 60% 35% !important;
  }
}
