/* ========================================
   伊藤農園 先着5名様50%OFF LP スタイル
   全セレクタを #lp-sale-50off でスコープ
   Futureshop独自コメント埋め込み対応
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&family=Zen+Maru+Gothic:wght@400;500;700&display=swap');

/* --- ルートコンテナ：外部CSS完全遮断 --- */
#lp-sale-50off {
  all: initial;
  display: block;
  font-family: 'Noto Sans JP', 'Zen Maru Gothic', sans-serif;
  font-size: 16px;
  color: #1A1A1A;
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  --orange-50: #FFF8F0;
  --orange-100: #FFEDD5;
  --orange-200: #FED7AA;
  --orange-400: #FB923C;
  --orange-500: #F97316;
  --orange-600: #EA580C;
  --orange-700: #C2410C;
  --green-50: #F0FDF4;
  --green-600: #16A34A;
  --green-700: #15803D;
  --red-500: #EF4444;
  --red-600: #DC2626;
  --gold: #D4A017;
  --dark: #1A1A1A;
  --gray-600: #4B5563;
  --gray-400: #9CA3AF;
  --white: #FFFFFF;
}

#lp-sale-50off *,
#lp-sale-50off *::before,
#lp-sale-50off *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

#lp-sale-50off img {
  max-width: 100%;
  height: auto;
  display: block;
  border: none;
}

#lp-sale-50off a {
  text-decoration: none;
  color: inherit;
  background: none;
}

#lp-sale-50off h1,
#lp-sale-50off h2,
#lp-sale-50off h3,
#lp-sale-50off p,
#lp-sale-50off span,
#lp-sale-50off div,
#lp-sale-50off ul,
#lp-sale-50off li,
#lp-sale-50off footer,
#lp-sale-50off section,
#lp-sale-50off strong {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  color: inherit;
  vertical-align: baseline;
  background: transparent;
}

#lp-sale-50off ul {
  list-style: none;
}

#lp-sale-50off strong {
  font-weight: 700;
}

/* --- 共通ユーティリティ --- */
#lp-sale-50off .lp-container {
  max-width: 740px;
  margin: 0 auto;
  width: 100%;
}

#lp-sale-50off .section-padding {
  padding: 60px 20px;
}

#lp-sale-50off .section-title {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 12px;
  line-height: 1.4;
}

#lp-sale-50off .section-subtitle {
  text-align: center;
  font-size: 16px;
  color: var(--gray-600);
  margin-bottom: 40px;
  line-height: 1.7;
}

/* --- 緊急バー --- */
#lp-sale-50off .urgency-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999999;
  background: linear-gradient(90deg, var(--red-600), var(--orange-600));
  color: var(--white);
  text-align: center;
  padding: 8px 16px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

#lp-sale-50off .urgency-text span {
  display: inline-block;
  animation: lp50-blink 1.5s step-end infinite;
}

#lp-sale-50off .urgency-btn {
  display: inline-block;
  background: var(--white);
  color: var(--red-600);
  padding: 5px 18px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-decoration: none;
}

#lp-sale-50off .urgency-btn:hover {
  background: #FFE44D;
  color: var(--dark);
  transform: scale(1.05);
}

#lp-sale-50off .urgency-btns {
  display: flex;
  gap: 8px;
  align-items: center;
}

#lp-sale-50off .urgency-btn--login {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--white);
}

#lp-sale-50off .urgency-btn--login:hover {
  background: var(--white);
  color: var(--red-600);
}

@keyframes lp50-urgencyPulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.85
  }
}

@keyframes lp50-blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0
  }
}

/* --- ヒーローセクション --- */
#lp-sale-50off .hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('https://mikan.itembox.design/item/images/top/180ml_g_top.jpg') center center / cover no-repeat;
  overflow: hidden;
  padding-top: 40px;
}

#lp-sale-50off .hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
  z-index: 1;
}

#lp-sale-50off .hero-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  background: var(--white);
}

#lp-sale-50off .hero-circle:nth-child(1) {
  width: 300px;
  height: 300px;
  top: -80px;
  right: -80px
}

#lp-sale-50off .hero-circle:nth-child(2) {
  width: 200px;
  height: 200px;
  bottom: 10%;
  left: -60px
}

#lp-sale-50off .hero-circle:nth-child(3) {
  width: 150px;
  height: 150px;
  top: 40%;
  right: 5%
}

#lp-sale-50off .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #000;
  padding: 40px 20px;
  max-width: 640px;
}

#lp-sale-50off .hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 6px 24px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  animation: lp50-fadeInDown 0.8s ease-out;
}

#lp-sale-50off .hero-date {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
  opacity: 0.9;
  animation: lp50-fadeInDown 0.8s ease-out 0.2s both;
}

#lp-sale-50off .hero-main-copy {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 12px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
  animation: lp50-fadeInUp 0.8s ease-out 0.3s both;
}

#lp-sale-50off .hero-main-copy .highlight-50 {
  display: inline-block;
  font-size: 3.5rem;
  color: var(--red-600);
  text-shadow: 0 0 30px rgba(255, 228, 77, 0.5), 0 2px 10px rgba(0, 0, 0, 0.3);
  animation: lp50-glowPulse 2s ease-in-out infinite;
}

@keyframes lp50-glowPulse {

  0%,
  100% {
    text-shadow: 0 0 30px rgba(255, 228, 77, 0.5), 0 2px 10px rgba(0, 0, 0, 0.3)
  }

  50% {
    text-shadow: 0 0 50px rgba(255, 228, 77, 0.8), 0 2px 20px rgba(0, 0, 0, 0.3)
  }
}

#lp-sale-50off .hero-sub-copy {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 24px;
  line-height: 1.7;
  animation: lp50-fadeInUp 0.8s ease-out 0.5s both;
}

#lp-sale-50off .hero-limit-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red-600);
  color: var(--white);
  padding: 12px 32px;
  border-radius: 8px;
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  box-shadow: 0 4px 20px rgba(220, 38, 38, 0.4);
  animation: lp50-fadeInUp 0.8s ease-out 0.6s both, lp50-bounceSubtle 2s ease-in-out infinite 1.4s;
  margin-bottom: 32px;
}

@keyframes lp50-bounceSubtle {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-4px)
  }
}

/* カウントダウン */
#lp-sale-50off .countdown-wrapper {
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 24px 20px;
  margin-bottom: 28px;
  animation: lp50-fadeInUp 0.8s ease-out 0.7s both;
}

#lp-sale-50off .countdown-label {
  font-size: 16px;
  opacity: 0.8;
  margin-bottom: 12px;
  letter-spacing: 0.1em;
}

#lp-sale-50off .countdown {
  display: flex;
  justify-content: center;
  gap: 12px;
}

#lp-sale-50off .countdown-item {
  text-align: center;
}

#lp-sale-50off .countdown-number {
  display: block;
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  min-width: 70px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 12px 8px;
}

#lp-sale-50off .countdown-unit {
  display: block;
  font-size: 12px;
  margin-top: 6px;
  opacity: 0.7;
  letter-spacing: 0.1em;
}

#lp-sale-50off .countdown-sep {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  padding-top: 12px;
  opacity: 0.6;
}

#lp-sale-50off .hero-cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, #FFE44D, #FFD700);
  color: var(--dark);
  padding: 16px 48px;
  border-radius: 50px;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
  transition: all 0.3s ease;
  animation: lp50-fadeInUp 0.8s ease-out 0.9s both;
}

#lp-sale-50off .hero-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5);
}

/* --- Whyセクション --- */
#lp-sale-50off .why-section {
  background: var(--white);
  position: relative;
}

#lp-sale-50off .why-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

#lp-sale-50off .why-quote {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--orange-700);
  margin-bottom: 28px;
  line-height: 1.6;
  position: relative;
  padding: 0 20px;
}

#lp-sale-50off .why-quote::before,
#lp-sale-50off .why-quote::after {
  content: '\201C';
  font-size: 3rem;
  color: var(--orange-200);
  position: absolute;
  font-family: Georgia, serif;
}

#lp-sale-50off .why-quote::before {
  top: -20px;
  left: 0;
}

#lp-sale-50off .why-quote::after {
  bottom: -40px;
  right: 0;
  content: '\201D';
}

#lp-sale-50off .why-desc {
  text-align: center;
  color: var(--gray-600);
  font-size: 16px;
  line-height: 1.9;
  max-width: 560px;
  margin: 0 auto 36px;
}

#lp-sale-50off .why-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

#lp-sale-50off .why-feature {
  text-align: center;
  padding: 28px 16px;
  background: var(--orange-50);
  border-radius: 16px;
  transition: transform 0.3s ease;
}

#lp-sale-50off .why-feature:hover {
  transform: translateY(-4px);
}

#lp-sale-50off .why-feature-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 12px;
  border-radius: 50%;
  overflow: hidden;
}

#lp-sale-50off .why-feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#lp-sale-50off .why-feature-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--orange-700);
  margin-bottom: 8px;
}

#lp-sale-50off .why-feature-text {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* --- ステップセクション --- */
#lp-sale-50off .steps-section {
  background: linear-gradient(180deg, var(--green-50) 0%, var(--white) 100%);
}

#lp-sale-50off .steps-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}

#lp-sale-50off .steps-wrapper::before {
  content: '';
  position: absolute;
  left: 36px;
  top: 40px;
  bottom: 40px;
  width: 3px;
  background: linear-gradient(180deg, var(--green-600), var(--orange-500));
  border-radius: 3px;
}

#lp-sale-50off .step-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  position: relative;
}

#lp-sale-50off .step-number {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--green-600), var(--green-700));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
  position: relative;
  z-index: 1;
}

#lp-sale-50off .step-item:nth-child(2) .step-number {
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

#lp-sale-50off .step-item:nth-child(3) .step-number {
  background: linear-gradient(135deg, var(--red-500), var(--red-600));
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

#lp-sale-50off .step-content {
  padding-top: 8px;
}

#lp-sale-50off .step-label {
  font-size: 20px;
  color: var(--gray-400);
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

#lp-sale-50off .step-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--dark);
}

#lp-sale-50off .step-desc {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.6;
}

#lp-sale-50off .step-link {
  display: inline-block;
  margin-top: 8px;
  color: var(--orange-600);
  font-weight: 700;
  font-size: 14px;
  border-bottom: 1px solid var(--orange-600);
  transition: opacity 0.3s;
}

#lp-sale-50off .step-link:hover {
  opacity: 0.7;
}

/* --- 対象商品セクション --- */
#lp-sale-50off .products-section {
  background: var(--white);
  position: relative;
}

#lp-sale-50off .products-section .section-title {
  color: var(--orange-700);
}

#lp-sale-50off .products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

#lp-sale-50off .product-card {
  display: block;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}

#lp-sale-50off .product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

#lp-sale-50off .product-card .sale-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--red-600);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 900;
  z-index: 2;
  letter-spacing: 0.05em;
}

#lp-sale-50off .product-img-wrapper {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: #F9FAFB;
}

#lp-sale-50off .product-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

#lp-sale-50off .product-card:hover .product-img-wrapper img {
  transform: scale(1.05);
}

#lp-sale-50off .product-info {
  padding: 16px;
}

#lp-sale-50off .product-comment {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 12px;
}

#lp-sale-50off .product-btn {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  color: var(--white);
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 20px;
  font-weight: 700;
  transition: all 0.3s ease;
}

#lp-sale-50off .product-card:hover .product-btn {
  background: linear-gradient(135deg, var(--orange-600), var(--orange-700));
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.3);
}

#lp-sale-50off .products-grid .product-card:nth-child(5) {
  grid-column: 1 / -1;
  max-width: calc(50% - 10px);
  margin: 0 auto;
}

/* --- 注意事項セクション --- */
#lp-sale-50off .caution-section {
  background: #FFFBEB;
}

#lp-sale-50off .caution-box {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

#lp-sale-50off .caution-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 900;
  color: var(--red-600);
  margin-bottom: 20px;
}

#lp-sale-50off .caution-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.7;
}

#lp-sale-50off .caution-list li::before {
  content: '\26A0';
  position: absolute;
  left: 0;
  top: 0;
}

/* --- クロージングセクション --- */
#lp-sale-50off .closing-section {
  background: url('https://mikan.itembox.cloud/item/images/teiki/pages/000000000353-14-xl.jpg') center center / cover no-repeat;
  color: var(--dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}

#lp-sale-50off .closing-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.75);
}

#lp-sale-50off .closing-content {
  position: relative;
  z-index: 1;
}

#lp-sale-50off .closing-big {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 20px;
}

#lp-sale-50off .closing-big .em-gold {
  color: var(--orange-600);
}

#lp-sale-50off .closing-message {
  font-size: 16pxrem;
  opacity: 0.85;
  line-height: 1.9;
  margin-bottom: 28px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

#lp-sale-50off .closing-scene {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  padding: 24px 20px;
  margin-bottom: 32px;
  font-size: 16px;
  line-height: 1.8;
}

#lp-sale-50off .closing-cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, #FFE44D, #FFD700);
  color: var(--dark);
  padding: 18px 56px;
  border-radius: 50px;
  font-size: 24px;
  font-weight: 900;
  box-shadow: 0 4px 24px rgba(255, 215, 0, 0.35);
  transition: all 0.3s ease;
  letter-spacing: 0.05em;
}

#lp-sale-50off .closing-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 36px rgba(255, 215, 0, 0.5);
}

#lp-sale-50off .closing-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

#lp-sale-50off .closing-login-btn {
  display: inline-block;
  background: transparent;
  color: var(--dark);
  padding: 14px 56px;
  border-radius: 50px;
  font-size: 24px;
  font-weight: 700;
  border: 2px solid var(--gray-600);
  transition: all 0.3s ease;
  letter-spacing: 0.05em;
}

#lp-sale-50off .closing-login-btn:hover {
  background: var(--orange-600);
  color: var(--white);
  border-color: var(--orange-600);
  transform: translateY(-3px);
}

/* --- フッター --- */
#lp-sale-50off .lp-footer {
  text-align: center;
  padding: 28px 20px;
  background: var(--dark);
  color: var(--gray-400);
  font-size: 0.75rem;
}

/* --- アニメーション --- */
@keyframes lp50-fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes lp50-fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

#lp-sale-50off .fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

#lp-sale-50off .fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- レスポンシブ --- */
/* 1199px以上: コンテナ740px固定 */
@media (min-width: 1199px) {
  #lp-sale-50off .lp-container {
    max-width: 740px;
    width: 100%;
  }
}

/* 1199px未満: コンテナ100% */
@media (max-width: 1198px) {
  #lp-sale-50off .lp-container {
    max-width: 100%;
    width: 100%;
  }
}

/* モバイル調整 */
@media (max-width: 600px) {
  #lp-sale-50off .hero-main-copy {
    font-size: 1.6rem;
  }

  #lp-sale-50off .hero-main-copy .highlight-50 {
    font-size: 2.5rem;
  }

  #lp-sale-50off .hero-limit-badge {
    font-size: 1.05rem;
    padding: 10px 24px;
  }

  #lp-sale-50off .countdown-number {
    font-size: 2rem;
    min-width: 52px;
    padding: 10px 6px;
  }

  #lp-sale-50off .countdown-sep {
    font-size: 1.4rem;
  }

  #lp-sale-50off .why-features {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  #lp-sale-50off .why-quote {
    font-size: 1.1rem;
  }

  #lp-sale-50off .section-title {
    font-size: 24px;
  }

  #lp-sale-50off .products-grid {
    grid-template-columns: 1fr;
  }

  #lp-sale-50off .products-grid .product-card:nth-child(5) {
    max-width: 100%;
  }

  #lp-sale-50off .closing-big {
    font-size: 1.4rem;
  }

  #lp-sale-50off .steps-wrapper::before {
    left: 28px;
  }

  #lp-sale-50off .step-number {
    width: 56px;
    height: 56px;
    font-size: 24px;
  }
}

/* 500px以下: urgency-barのボタンを縦並びにする */
@media (max-width: 500px) {
  #lp-sale-50off .urgency-bar {
    flex-direction: column;
    gap: 8px;
    padding: 12px;
  }

  #lp-sale-50off .urgency-btns {
    flex-direction: column;
    width: 100%;
    gap: 8px;
  }

  #lp-sale-50off .urgency-btn {
    width: 100%;
    max-width: 300px;
    padding: 10px 18px;
  }
}