/* 基本スタイル */
body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fdfdfd; /* 少し明るく */
}

.container {
  max-width: 1100px; /* 少し狭める */
  margin: 0 auto;
  padding: 0 20px;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/* ヘッダー */
.header {
  padding: 20px 0;
  border-bottom: 1px solid #eee;
  background-color: #fff;
}

.header .logo {
  text-align: center;
}

.header .logo img {
  width: 10%;
  max-width: 500px;
}

.saletitle {
  text-align: center;
  margin-top: 40px;
}

/* メインビジュアル */
.main-visual img {
  width: 100%;
}

/* 商品セクション */
.products {
  padding: 50px 0;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px; /* 商品間の余白を広げる */
}

.product-item {
  background-color: #fff;
  border: 1px solid #eaeaea; /* 境界線を少し薄く */
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04); /* デフォルトで少し影 */
  transition: box-shadow 0.3s, opacity 0.8s, transform 0.8s; /* transitionを追加 */
  opacity: 0; /* 初期状態を透明に */
  transform: translateY(30px); /* 少し下に配置 */
}

.product-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.product-item:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08); /* ホバー時の影を強く */
}

.product-item:nth-child(even) {
  flex-direction: row-reverse; /* 偶数番目のアイテムを反転 */
}

.product-item:nth-child(even) .product-item-details {
  text-align: left; /* 反転したアイテムのテキストも左寄せ */
}

.product-item-image {
  flex: 1 1 45%;
  text-align: center;
  position: relative; /* アイコン配置の基準 */
}

.discount-icon {
  position: absolute;
  top: -30px;
  left: -43px;
  width: 120px; /* アイコンのサイズ */
  height: auto;
  z-index: 10;
}

.product-item-details {
  flex: 1 1 55%;
  text-align: left;
  position: relative; /* アイテム番号の配置基準 */
}

.product-image {
  margin-bottom: 20px;
}

.color-variations {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 15px;
  list-style: none;
  padding: 0;
}

.color-variations li {
  width: 50px;
  height: 50px;
  border: 1px solid #ddd;
  cursor: pointer;
  transition: transform 0.2s;
}

.color-variations li:hover {
  transform: scale(1.1);
}

.color-variations li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-category {
  font-size: 60px;
  line-height: 1;
  color: #fad06c;
  margin-bottom: 8px;
  /* text-transform: uppercase; */
  letter-spacing: 0.5px;
  font-family: "azote", serif;
}

.product-name {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.4;
}

.product-description {
  font-size: 15px;
  margin-bottom: 25px;
  line-height: 1.8;
  color: #555;
}

.product-price {
  font-size: 16px;
  color: #888;
  margin-bottom: 25px;
}

.product-price .sale-price {
  font-size: 24px;
  font-weight: bold;
  color: #e60012;
}

.btn {
  display: inline-block;
  background-color: #f97451;
  color: #fff;
  padding: 14px 35px;
  text-decoration: none;
  border-radius: 8px; /* 少し丸く */
  transition: background-color 0.3s, transform 0.3s;
  font-weight: bold;
  width: 25%;
  text-align: center;
}

.btn:hover {
  background-color: #000;
  transform: translateY(-2px);
}

.other {
  text-align: center;
}

.other a {
  display: block;
  margin: 0 auto;
  width: 15%;
  margin-top: 20px;
  padding: 10px;
  background-color: #fad06c;
  color: #fff;
}

.other a:hover {
  background-color: #f97451;
  transform: translateY(-2px);
}

/* フッター */
.footer {
  padding: 50px 0;
  background-color: #f7f7f7;
  color: #555;
  text-align: center;
  margin-top: 50px;
  border-top: 1px solid #eee;
}

/* レスポンシブ対応 */
@media (max-width: 767px) {
  .header .logo img {
    width: 30%;
  }
  .container {
    padding: 0 20px;
  }

  .products {
    padding: 30px 0;
  }

  .product-grid {
    gap: 40px;
  }

  .product-item {
    flex-direction: column;
    padding: 20px;
    gap: 20px;
  }

  .discount-icon {
    top: -10px;
    left: -10px;
    width: 70px; /* スマホ用に少し小さく */
  }

  .product-item-details {
    text-align: center;
    width: 100%; /* 幅を100%に */
  }

  .product-item:nth-child(even) {
    flex-direction: column;
  }

  .product-item:nth-child(even) .product-item-details {
    text-align: center; /* スマホでは偶数番目も中央揃えに */
  }

  .product-category {
    font-size: 40px; /* スマホ用に調整 */
  }

  .product-description {
    text-align: left; /* 説明文は左揃えのまま */
    font-size: 14px;
  }

  .product-name {
    font-size: 18px;
  }

  .product-price .sale-price {
    font-size: 20px;
  }

  .btn {
    width: 85%;
    padding: 12px;
  }

  .other a {
    width: 70%;
  }
}
