/* haru-citrus-lp.css | 春柑橘お楽しみ箱LP用スタイル */

/* ===== スコープリセット ===== */
.haru-lp *,
.haru-lp *::before,
.haru-lp *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.haru-lp img {
  display: block;
  max-width: 100%;
}

.haru-lp a {
  text-decoration: none;
}

.haru-lp ul,
.haru-lp ol {
  list-style: none;
}

.haru-lp details summary {
  list-style: none;
}

.haru-lp details summary::-webkit-details-marker {
  display: none;
}

/* ===== ラッパー ===== */
.haru-lp {
  width: 100%;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #3A2E1E;
  background: #FDFAF5;
  overflow-x: hidden;
}

/* ===== コンテナ ===== */
.haru-lp .lp-container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== ボタン ===== */
.haru-lp .lp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 24px;
  border-radius: 50px;
  padding: 14px 32px;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.haru-lp .lp-btn--primary {
  background: linear-gradient(135deg, #E8792A, #C05E1A);
  color: #fff;
  box-shadow: 0 4px 20px rgba(232, 121, 42, 0.35);
}

.haru-lp .lp-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232, 121, 42, 0.45);
}

.haru-lp .lp-btn--cta {
  background: linear-gradient(135deg, #fff, #FFF8EF);
  color: #C05E1A;
  font-size: 24px;
  padding: 18px 48px;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.15);
}

.haru-lp .lp-btn--cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.20);
}

/* ===== セクション共通 ===== */
.haru-lp .lp-section {
  padding: 80px 0;
}

.haru-lp .lp-section--alt {
  background: #FFF8EF;
}

.haru-lp .lp-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #E8792A;
  background: #FFF3E0;
  border: 1px solid #FFD9A8;
  border-radius: 50px;
  padding: 4px 16px;
  margin-bottom: 12px;
}

.haru-lp .lp-label--light {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  color: #E8792A;
}

.haru-lp .lp-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: #3A2E1E;
  margin-bottom: 16px;
  line-height: 1.4;
}

.haru-lp .lp-title--light {
  color: #E8792A;
}

.haru-lp .lp-desc {
  color: #7A6A54;
  margin-bottom: 48px;
  font-size: 16px;
}

/* ===== 追随ナビバナー ===== */
.haru-lp .lp-sticky-nav {
  position: fixed;
  top: 40%;
  right: 16px;
  bottom: auto;
  left: auto;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border: 1px solid #FFE4C4;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(100, 60, 10, 0.15);
  transform: translateY(-50%) translateX(150%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.haru-lp .lp-sticky-nav.is-visible {
  transform: translateY(-50%) translateX(0);
}

.haru-lp .lp-sticky-nav__inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 6px;
  padding: 12px;
}

.haru-lp .lp-sticky-nav__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
  color: #7A6A54;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.25s;
  white-space: nowrap;
}

.haru-lp .lp-sticky-nav__item:hover {
  background: #FFF3E0;
  color: #E8792A;
}

.haru-lp .lp-sticky-nav__item--cta {
  background: linear-gradient(135deg, #E8792A, #C05E1A);
  color: #fff !important;
  padding: 8px 20px;
  box-shadow: 0 2px 10px rgba(232, 121, 42, 0.35);
}

.haru-lp .lp-sticky-nav__item--cta:hover {
  background: linear-gradient(135deg, #F08A3A, #D06E2A);
  color: #fff;
  transform: translateY(-1px);
}

.haru-lp .lp-sticky-nav__item.is-active {
  background: #FFF3E0;
  color: #E8792A;
}

/* ===== ヒーロー ===== */
.haru-lp .hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 100px 24px 80px;
  background-image: url('https://ito-noen.co.jp/asset/img/purchase/seika/pic_seika-intro_pc.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* 白透過オーバーレイ */
.haru-lp .hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 252, 245, 0.82);
  z-index: 0;
}

.haru-lp .hero__inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  text-align: center;
}

.haru-lp .hero__badge {
  display: inline-block;
  background: linear-gradient(135deg, #B5D99C, #6BAE4A);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  padding: 5px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(107, 174, 74, 0.3);
}

.haru-lp .hero__eyebrow {
  font-size: 24px;
  color: #E8792A;
  font-weight: 500;
  margin-bottom: 12px;
}

.haru-lp .hero__title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 700;
  color: #3A2E1E;
  line-height: 1.25;
  margin-bottom: 16px;
}

.haru-lp .hero__subtitle {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #E8792A, #F9C74F);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.haru-lp .hero__desc {
  color: #7A6A54;
  font-size: 16px;
  margin-bottom: 36px;
  line-height: 1.9;
}

/* ===== 動画 ===== */
.haru-lp .video-sec {
  background: #FFF8EF;
  padding: 80px 0;
  text-align: center;
}

.haru-lp .video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(100, 60, 10, 0.16);
  max-width: 800px;
  margin: 0 auto;
}

.haru-lp .video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  border: 0;
}

/* ===== おすすめ ===== */
.haru-lp .recommend {
  padding: 80px 0;
  text-align: center;
}

.haru-lp .recommend__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 48px;
}

.haru-lp .recommend__item {
  background: #fff;
  border-radius: 16px;
  padding: 0;
  flex: 1 1 150px;
  max-width: 200px;
  box-shadow: 0 4px 24px rgba(100, 60, 10, 0.10);
  border: 1.5px solid #FFE4C4;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.haru-lp .recommend__item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 40px rgba(100, 60, 10, 0.16);
}

.haru-lp .recommend__icon {
  width: 100%;
  height: auto;
  margin: 0;
  background: #FFF8EF;
  /* 少し背景をつけることで画像が映えるようにする */
}

.haru-lp .recommend__icon img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.haru-lp .recommend__text {
  font-size: 16px;
  line-height: 1.6;
  color: #7A6A54;
  padding: 16px 12px 20px;
  margin: 0;
  flex-grow: 1;
}

.haru-lp .recommend__text strong {
  color: #3A2E1E;
}

/* ===== 品種紹介 ===== */
.haru-lp .varieties {
  background: #FFF8EF;
  padding: 80px 0;
  text-align: center;
}

.haru-lp .varieties__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
  text-align: left;
}

.haru-lp .variety-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(100, 60, 10, 0.10);
  border: 1.5px solid #FFE8CC;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.haru-lp .variety-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 40px rgba(100, 60, 10, 0.16);
}

.haru-lp .variety-card--special {
  border-color: #F9C74F;
  background: linear-gradient(135deg, #fff 80%, #FFFDE7);
}

.haru-lp .variety-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, #F9C74F, #F4811F);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
}

/* 品種画像ラッパー（左70px固定） */
.haru-lp .variety-card__body {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
}

.haru-lp .variety-card__img-wrap {
  flex-shrink: 0;
  width: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
}

.haru-lp .variety-card__img {
  width: 70px;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.haru-lp .variety-card:hover .variety-card__img {
  transform: scale(1.08);
}

.haru-lp .variety-card__text {
  flex: 1;
  min-width: 0;
}

.haru-lp .variety-card__bar {
  height: 4px;
  margin: 0;
  border-radius: 0;
}

.haru-lp .variety-card__name {
  font-family: 'Noto Serif JP', serif;
  font-size: 20px;
  font-weight: 700;
  color: #3A2E1E;
  margin-bottom: 10px;
}

.haru-lp .variety-card__flavor {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.haru-lp .flavor-tag {
  font-size: 14px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 50px;
}

.haru-lp .variety-card__season {
  font-size: 14pxm;
  color: #E8792A;
  background: #FFF8EF;
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 8px;
  font-weight: 500;
}

.haru-lp .variety-card__desc {
  font-size: 16px;
  color: #7A6A54;
  line-height: 1.8;
}

.haru-lp .varieties__note {
  font-size: 0;
  color: #E8792A;
  font-weight: 500;
  text-align: right;
  margin-top: 16px;
}

/* ===== 商品ラインナップ ===== */
.haru-lp .product-lineup {
  margin-top: 64px;
}

.haru-lp .product-lineup__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.haru-lp .product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(100, 60, 10, 0.08);
  border: 1px solid #FFE4C4;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.haru-lp .product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(100, 60, 10, 0.12);
}

.haru-lp .product-card__link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.haru-lp .product-card__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #FFF8EF;
  overflow: hidden;
}

.haru-lp .product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.haru-lp .product-card:hover .product-card__img img {
  transform: scale(1.05);
}

.haru-lp .product-card__info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.haru-lp .product-card__comment {
  font-size: 16px;
  line-height: 1.5;
  color: #7A6A54;
  margin-bottom: 12px;
}

.haru-lp .product-card__comment strong {
  font-size: 16px;
  color: #3A2E1E;
  display: block;
  margin-top: 4px;
}

.haru-lp .product-card__price {
  font-size: 16px;
  font-weight: 700;
  color: #E8792A;
  margin-top: auto;
  font-family: 'Montserrat', sans-serif;
}

.haru-lp .product-card__price span {
  font-size: 0.75rem;
  font-weight: 400;
  color: #7A6A54;
  margin-left: 4px;
}

.haru-lp .product-card__action {
  margin-top: auto;
  background: #FFF3E0;
  color: #E8792A;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  padding: 8px;
  border-radius: 50px;
  transition: background 0.3s ease, color 0.3s ease;
}

.haru-lp .product-card:hover .product-card__action {
  background: #E8792A;
  color: #fff;
}

/* ===== 産地 ===== */
.haru-lp .origin {
  position: relative;
  width: 100%;
  padding: 120px 0;
  overflow: hidden;
}

.haru-lp .origin__bg {
  position: absolute;
  inset: 0;
}

.haru-lp .origin__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.haru-lp .origin__overlay {
  position: absolute;
  inset: 0;
}

.haru-lp .origin__content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.haru-lp .origin__desc {
  font-size: 16px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
}

.haru-lp .origin__feats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.haru-lp .origin__feat {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #fff;
}

.haru-lp .origin__feat-icon {
  font-size: 1.3rem;
}

/* ===== レビュー ===== */
.haru-lp .reviews {
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
}

.haru-lp .reviews__wrap {
  overflow: hidden;
  margin-top: 48px;
  position: relative;
}

.haru-lp .reviews__wrap::before,
.haru-lp .reviews__wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.haru-lp .reviews__wrap::before {
  left: 0;
  background: linear-gradient(to right, #FDFAF5, transparent);
}

.haru-lp .reviews__wrap::after {
  right: 0;
  background: linear-gradient(to left, #FDFAF5, transparent);
}

.haru-lp .reviews__track {
  display: flex;
  gap: 24px;
  animation: haru-scroll 32s linear infinite;
  width: max-content;
}

.haru-lp .reviews__track:hover {
  animation-play-state: paused;
}

@keyframes haru-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.haru-lp .review-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  width: 340px;
  flex-shrink: 0;
  text-align: left;
  box-shadow: 0 4px 24px rgba(100, 60, 10, 0.10);
  border: 1.5px solid #FFE4C4;
}

.haru-lp .review-card__stars {
  color: #F9C74F;
  font-size: 1.1rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.haru-lp .review-card__text {
  font-size: 16px;
  color: #7A6A54;
  line-height: 1.85;
  margin-bottom: 0;
}

/* ===== 保存方法 ===== */
.haru-lp .storage {
  background: #FFF8EF;
  padding: 80px 0;
  text-align: center;
}

.haru-lp .storage__steps {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 48px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}

.haru-lp .storage__step {
  background: #fff;
  border-radius: 16px;
  padding: 0;
  flex: 1 1 200px;
  max-width: 250px;
  box-shadow: 0 4px 24px rgba(100, 60, 10, 0.10);
  border: 1.5px solid #FFE8CC;
  position: relative;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.haru-lp .storage__step:hover {
  transform: translateY(-5px);
}


.haru-lp .storage__num {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #fff;
  color: #E8792A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
}

.haru-lp .storage__icon {
  width: 100%;
  height: auto;
  margin: 0;
  display: block;
  background: #FFF8EF;
}

.haru-lp .storage__icon img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.haru-lp .storage__sttl {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  padding: 16px 16px 0;
}

.haru-lp .storage__sdesc {
  font-size: 16px;
  color: #7A6A54;
  line-height: 1.75;
  padding: 0 16px 20px;
  flex-grow: 1;
}

.haru-lp .storage__arrow {
  font-size: 1.6rem;
  color: #F4A45A;
  align-self: center;
  flex-shrink: 0;
}

/* ===== FAQ ===== */
.haru-lp .faq {
  padding: 80px 0;
  text-align: center;
}

.haru-lp .faq__list {
  max-width: 720px;
  margin: 48px auto 0;
  text-align: left;
}

.haru-lp .faq__item {
  border: 1.5px solid #FFE4C4;
  border-radius: 16px;
  margin-bottom: 14px;
  background: #fff;
  overflow: hidden;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.haru-lp .faq__item[open] {
  border-color: #F4A45A;
  box-shadow: 0 4px 24px rgba(100, 60, 10, 0.10);
}

.haru-lp .faq__q {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  color: #3A2E1E;
  transition: background 0.3s;
}

.haru-lp .faq__q:hover {
  background: #FFF8EF;
}

.haru-lp .faq__ql {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E8792A, #C05E1A);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}

.haru-lp .faq__arrow {
  margin-left: auto;
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  border-right: 2px solid #E8792A;
  border-bottom: 2px solid #E8792A;
  transform: rotate(45deg);
  transition: transform 0.3s;
}

.haru-lp .faq__item[open] .faq__arrow {
  transform: rotate(-135deg);
}

.haru-lp .faq__a {
  display: flex;
  gap: 14px;
  padding: 0 24px 20px;
  align-items: flex-start;
}

.haru-lp .faq__al {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #FFF3E0;
  color: #E8792A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.haru-lp .faq__a p {
  font-size: 16px;
  color: #7A6A54;
  line-height: 1.8;
}

.haru-lp .faq__link {
  color: #E8792A;
  text-underline-offset: 3px;
}

.haru-lp .faq__link:hover {
  color: #C05E1A;
}

/* ===== CTA ===== */
.haru-lp .cta {
  background: #5A1E00;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.haru-lp .cta__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.haru-lp .cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  filter: brightness(1.5) saturate(0.6);
}

.haru-lp .cta__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(90, 30, 0, 0.85), rgba(155, 59, 0, 0.80));
}

.haru-lp .cta__inner {
  position: relative;
  z-index: 1;
}

.haru-lp .cta__badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #FFE4B5;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.haru-lp .cta__title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.4;
}

.haru-lp .cta__desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 40px;
}

.haru-lp .cta__note {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8rem;
  margin-top: 20px;
}

/* ===== フッター ===== */
.haru-lp .lp-footer {
  background: #1A0E00;
  color: rgba(255, 255, 255, 0.5);
  padding: 32px 0;
  text-align: center;
}

.haru-lp .lp-footer__brand {
  font-family: 'Noto Serif JP', serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 6px;
}

.haru-lp .lp-footer__copy {
  font-size: 0.78rem;
}

/* ===== スクロール進捗バー ===== */
.haru-lp .lp-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  z-index: 9999;
  width: 0%;
  background: linear-gradient(90deg, #E8792A, #F9C74F, #6BAE4A);
  transition: width 0.1s linear;
  pointer-events: none;
}

/* ===== レスポンシブ ===== */
@media (max-width: 768px) {

  .haru-lp .lp-section,
  .haru-lp .video-sec,
  .haru-lp .recommend,
  .haru-lp .varieties,
  .haru-lp .reviews,
  .haru-lp .storage,
  .haru-lp .faq {
    padding: 60px 0;
  }

  .haru-lp .hero {
    flex-direction: column;
    text-align: center;
    padding: 80px 20px 60px;
    min-height: auto;
  }

  .haru-lp .hero__inner {
    max-width: 100%;
  }

  .haru-lp .hero__title {
    font-size: clamp(2.2rem, 8vw, 3rem);
  }

  .haru-lp .hero__img {
    width: min(320px, 88vw);
  }

  .haru-lp .varieties__grid {
    grid-template-columns: 1fr;
  }

  .haru-lp .storage__steps {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .haru-lp .storage__arrow {
    transform: rotate(90deg);
  }

  .haru-lp .storage__step {
    max-width: 100%;
    width: 100%;
  }

  .haru-lp .review-card {
    width: 280px;
  }

  .haru-lp .origin__feats {
    gap: 10px;
  }
}

@media (max-width: 500px) {
  .haru-lp .hero__title {
    font-size: 2.2rem;
  }

  .haru-lp .recommend__item {
    min-width: 130px;
    max-width: 155px;
    padding: 20px 14px;
  }

  .haru-lp .storage__step {
    display: grid;
    grid-template-columns: 120px 1fr;
    grid-template-rows: auto 1fr;
    text-align: left;
  }

  .haru-lp .storage__icon {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    height: 100%;
  }

  .haru-lp .storage__icon img {
    height: 100%;
    object-fit: cover;
  }

  .haru-lp .storage__sttl {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    padding: 16px 16px 4px 12px;
  }

  .haru-lp .storage__sdesc {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    padding: 0 16px 16px 12px;
  }

  .haru-lp .lp-btn--cta {
    font-size: 24px;
    padding: 16px 28px;
  }
}