
/* ==========================
   商品説明カード（EC-CUBE4.2）
========================== */

.product-card.luxe {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #e6ebf2;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  font-size: 1rem; /* 約14px */
  color: #333;
  line-height: 1.7;
  overflow: hidden;
}

/* セクション */
.product-card .card-section {
  padding: 18px 22px;
  border-bottom: 1px solid #eef1f6;
	font-size: 0.875rem;
}

.product-card .card-section:last-child {
  border-bottom: none;
}

/* 見出し */
.product-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #1f3a5f;
  position: relative;
}

/* 見出し左アクセント */
.product-card h3::before {
  content: "";
  width: 4px;
  height: 18px;
  background: #3b82f6;
  border-radius: 2px;
  margin-right: 6px;
}

/* アイコンバッジ */
.product-card .icon.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  font-size: 16px;
  background: #eef4ff;
  border-radius: 50%;
}

/* リスト（EC-CUBE初期CSS対策） */
.product-card ul {
  margin: 0;
  padding-left: 18px;
  list-style: disc;
}

.product-card li {
  margin-bottom: 4px;
  list-style-position: outside;
}

/* 注釈文 */
.product-card p {
  margin: 0;
}

.product-card .note {
  margin-top: 5px;
  font-size: 0.875rem; /* 約13px */
  color: #666;
}

/* 発送セクション強調 */
.product-card .card-section.highlight {
  background: linear-gradient(0deg, #f8fbff, #ffffff);
}

/* ==========================
   スマホ対応
========================== */
@media screen and (max-width: 600px) {
  .product-card.luxe {
    font-size: 1rem;
    border-radius: 10px;
  }

  .product-card .card-section {
    padding: 14px 16px;
  }

  .product-card h3 {
    font-size: 1.175rem;
  }
  .product-card p {
    font-size: 1rem;
  }

  .product-card .icon.badge {
    width: 24px;
    height: 24px;
    font-size: 14px;
  }
}
/* ==========================
   文字調整部分のみ
========================== */
.product-card.luxe {
  font-weight: 500;
  color: #222;
}

.product-card h3 {
  font-weight: 700;
}

.product-card p {
  font-weight: 500;
}

.product-card .note {
  font-weight: 400;
  color: #000;
}

/* ===============================
   slick スライダー：左右チラ見せ用（修正版）
   =============================== */

/* はみ出し許可 */
.ec-sliderRole,
.main_visual,
.slick-list {
  overflow: visible;
}

/* 画像の基本設定 */
.main_visual img {
  width: 100%;
  height: auto;
  display: block;
}

/* スライド間余白 */
.main_visual .item {
  padding: 0 5px;
}
.main-visual .slick-slide {
	opacity: 0.8;
	transform: scale(0.9);
	transition: opacity 0.3s ease, transform 0.3s ease;
}
.main-visual .slick-active {
	opacity: 1;
	transform: scale(1);
	transition: opacity 0.3s ease, transform 0.3s ease;
}
