@charset "UTF-8";

/* =========================================================
   Wrapper Reset & Variables
========================================================= */
#fs-fo1-wrapper {
  width: 100%;
  margin: 0 auto;
  font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif !important;
  font-size: 16px !important;
  color: #333 !important;
  line-height: 1.6 !important;
  box-sizing: border-box;
  background-color: #fafafa !important;
  /* Premium colors for Ito Noen */
  --primary: #e65100;
  --secondary: #ff9800;
  --accent: #d32f2f;
  --bg-color: #fafafa !important;
  --white: #ffffff;
  --text-main: #333;
  --text-light: #666;
}

#fs-fo1-wrapper * {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif !important;
}

/* 1199px以上の際は750px表示、1199px以下の際は100%表示 */
@media (min-width: 1199px) {
  #fs-fo1-wrapper {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    background-color: var(--white) !important;
  }
}

/* =========================================================
   Hero Section
========================================================= */
#fs-fo1-wrapper .hero {
  position: relative;
  text-align: center;
  background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
  padding: 50px 20px;
  border-bottom: 5px solid var(--primary);
}

#fs-fo1-wrapper .hero-label {
  display: inline-block;
  background-color: var(--accent) !important;
  color: var(--white) !important;
  font-weight: bold !important;
  font-size: 15px !important;
  padding: 6px 20px;
  border-radius: 24px;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 6px rgba(211, 47, 47, 0.2);
}

#fs-fo1-wrapper .hero h1 {
  font-size: 32px !important;
  color: var(--primary) !important;
  font-weight: 700 !important;
  margin-bottom: 20px;
  line-height: 1.4 !important;
  letter-spacing: 0.03em;
}

#fs-fo1-wrapper .price-box {
  background: var(--white);
  display: inline-block;
  padding: 24px 32px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(230, 81, 0, 0.15);
  margin-top: 10px;
  position: relative;
}

#fs-fo1-wrapper .price-box::before {
  content: "お一人様1回限り";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary);
  color: var(--white) !important;
  font-size: 12px !important;
  font-weight: bold !important;
  padding: 4px 12px;
  border-radius: 12px;
  white-space: nowrap;
}

#fs-fo1-wrapper .price-box .normal-price {
  font-size: 16px !important;
  color: var(--text-light) !important;
  display: block;
  margin-bottom: 4px;
}

#fs-fo1-wrapper .price-box .normal-price span {
  text-decoration: line-through;
  font-weight: bold !important;
}

#fs-fo1-wrapper .price-box .special-price {
  font-size: 40px !important;
  color: var(--accent) !important;
  font-weight: bold !important;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  line-height: 1 !important;
}

#fs-fo1-wrapper .price-box .special-price span {
  font-size: 20px !important;
  color: var(--text-main) !important;
}

@media (max-width: 600px) {
  #fs-fo1-wrapper .hero h1 {
    font-size: 24px !important;
  }

  #fs-fo1-wrapper .price-box .special-price {
    font-size: 32px !important;
  }

  #fs-fo1-wrapper .price-box .special-price span {
    font-size: 16px !important;
  }
}

/* =========================================================
   Products Section (Easily Updatable Grid)
========================================================= */
#fs-fo1-wrapper .products-section {
  padding: 50px 20px;
  background: var(--bg-color);
}

#fs-fo1-wrapper .section-title {
  text-align: center;
  font-size: 24px !important;
  color: var(--primary) !important;
  margin-bottom: 30px;
  font-weight: bold !important;
  border-bottom: 3px solid var(--primary);
  display: inline-block;
  padding-bottom: 8px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

#fs-fo1-wrapper .products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 600px) {
  #fs-fo1-wrapper .products-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

#fs-fo1-wrapper .product-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  border: 1px solid #f0f0f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#fs-fo1-wrapper .product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(230, 81, 0, 0.1);
  border-color: #ffccbc !important;
}

#fs-fo1-wrapper .product-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-color: #fafafa !important;
  position: relative;
  overflow: hidden;
}

#fs-fo1-wrapper .product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

#fs-fo1-wrapper .product-card:hover .product-img-wrap img {
  transform: scale(1.05);
}

#fs-fo1-wrapper .product-info {
  padding: 20px;
}

#fs-fo1-wrapper .product-name {
  font-size: 18px !important;
  font-weight: bold !important;
  color: var(--primary) !important;
  margin-bottom: 10px;
  line-height: 1.4 !important;
  display: flex;
  align-items: center;
}

#fs-fo1-wrapper .product-name::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 18px;
  background: var(--secondary);
  border-radius: 3px;
  margin-right: 8px;
}

#fs-fo1-wrapper .product-desc {
  font-size: 14px !important;
  color: var(--text-light) !important;
  line-height: 1.6 !important;
}

/* =========================================================
   Features Section (商品のこだわり)
========================================================= */
#fs-fo1-wrapper .features-section {
  padding: 50px 20px 20px;
  background: var(--white);
}

#fs-fo1-wrapper .features-list {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}


/* =========================================================
   Features Section Updates for Image Layout
========================================================= */
#fs-fo1-wrapper .feature-item {
  display: flex;
  gap: 24px;
  background: #fff8e1;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  align-items: center;
}

#fs-fo1-wrapper .feature-item:nth-child(even) {
  flex-direction: row-reverse;
}

#fs-fo1-wrapper .feature-image {
  flex: 0 0 40%;
  border-radius: 8px;
  overflow: hidden;
}

#fs-fo1-wrapper .feature-image img {
  width: 100%;
  height: auto;
  display: block;
}

#fs-fo1-wrapper .feature-text {
  flex: 1;
}

#fs-fo1-wrapper .feature-number {
  font-size: 32px !important;
  font-weight: 700 !important;
  color: var(--secondary) !important;
  line-height: 1 !important;
  border-bottom: 3px solid var(--primary);
  padding-bottom: 4px;
  height: fit-content;
  display: inline-block;
  margin-bottom: 12px;
}

#fs-fo1-wrapper .feature-text h3 {
  font-size: 20px !important;
  color: var(--primary) !important;
  margin-bottom: 12px;
  font-weight: bold !important;
}

#fs-fo1-wrapper .feature-text p {
  font-size: 15px !important;
  color: var(--text-main) !important;
  line-height: 1.7 !important;
}

@media (max-width: 600px) {

  #fs-fo1-wrapper .feature-item,
  #fs-fo1-wrapper .feature-item:nth-child(even) {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
  }

  #fs-fo1-wrapper .feature-image {
    flex: none;
    width: 100%;
  }
}

/* =========================================================
   Sticky CTA Banner
========================================================= */
#fs-fo1-wrapper .fixed-cta-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-top: 3px solid var(--primary);
  padding: 16px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: 99999; /* Futureshopの既存スマホフッターより前に出すため高く設定 */
  display: flex;
  justify-content: center;
  align-items: center;
}

#fs-fo1-wrapper .fixed-cta-container {
  width: 100%;
  max-width: 750px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

#fs-fo1-wrapper .fixed-cta-text {
  text-align: left;
}

#fs-fo1-wrapper .fixed-cta-text .normal {
  font-size: 13px !important;
  color: var(--text-light) !important;
  display: block;
  margin-bottom: 2px;
}

#fs-fo1-wrapper .fixed-cta-text .normal span {
  text-decoration: line-through;
}

#fs-fo1-wrapper .fixed-cta-text .special {
  font-size: 24px !important;
  color: var(--accent) !important;
  font-weight: bold !important;
  line-height: 1 !important;
  display: flex;
  align-items: center;
  gap: 8px;
}

#fs-fo1-wrapper .fixed-cta-text .free-shipping {
  font-size: 14px !important;
  background-color: var(--accent) !important;
  color: var(--white) !important;
  padding: 8px 10px;
  border-radius: 20px;
  font-weight: bold !important;
  letter-spacing: 0.05em;
  width: 165px;
}

#fs-fo1-wrapper .firstusercart-button {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  color: var(--white) !important;
  font-weight: bold !important;
  font-size: 18px !important;
  padding: 14px 40px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(230, 81, 0, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

#fs-fo1-wrapper .firstusercart-button svg {
  width: 24px;
  height: 24px;
  pointer-events: none; /* スマホでアイコンをタップした際の誤動作を防ぐ */
}

#fs-fo1-wrapper .firstusercart-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 81, 0, 0.4);
}

/* 追従バナーがメインコンテンツに被らないようにパディングを追加 */
#fs-fo1-wrapper {
  padding-bottom: 100px;
}

@media (max-width: 600px) {
  #fs-fo1-wrapper .fixed-cta-container {
    flex-direction: column;
    gap: 12px;
  }

  #fs-fo1-wrapper .fixed-cta-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  #fs-fo1-wrapper .fixed-cta-text .normal {
    margin-bottom: 0;
  }

  #fs-fo1-wrapper .fixed-cta-container form {
    width: 100%;
  }

  #fs-fo1-wrapper .firstusercart-button {
    width: 100%;
    padding: 16px 20px;
    justify-content: center;
  }

  #fs-fo1-wrapper {
    padding-bottom: 160px;
  }
}