@charset "utf-8";
/* CSS Document */

.coord-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 30px 15px;
  font-family: "Noto Sans JP", sans-serif;
  box-sizing: border-box;
}

.coord-title {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 25px;
  border-bottom: 2px solid #333;
  display: inline-block;
  padding-bottom: 5px;
}

/* --- 各コーデカード --- */
.coord-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  margin-bottom: 35px;
  padding: 20px 15px;
  overflow: hidden; /* &#9989;はみ出し防止 */
  box-sizing: border-box;
}

.coord-banner img {
  width: 100%;
  max-width: 500px; /* ← ここで実サイズ以上に拡大しない */
  height: auto;
  display: block;
  object-fit: contain;
  margin: 0 auto; /* 中央寄せ */
}

/* --- コーデ名 --- */
.coord-name-title {
  font-size: 1.3rem;
  font-weight: bold;
  color: #333;
  text-align: center;
  margin-top: 15px;
  margin-bottom: 10px;
  line-height: 1.4;
}

/* --- コーデ説明文 --- */
.coord-text {
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
  text-align: center;
  margin: 10px 0 22px;
}

/* --- 商品リスト --- */
.coord-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  box-sizing: border-box;
}

.coord-item {
  width: 48%;
  max-width: 240px;
  text-align: center;
  box-sizing: border-box;
}

.coord-item img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  object-fit: cover;
  display: block;
}

.coord-name {
  font-size: 0.95rem;
  margin-top: 8px;
  color: #333;
}

.coord-price {
  font-weight: bold;
  color: #c00;
  margin-top: 3px;
  font-size: 0.95rem;
}
.coord-pricep {
  font-weight: bold;
  color: #000000;
  margin-top: 3px;
  font-size: 0.95rem;
}
/* --- 3つ版 --- */
.items-3 .coord-item {
  width: 31%;
  max-width: 200px;
}

/* --- PC調整 --- */
@media screen and (min-width: 768px) {
  .coord-section {
    padding: 50px 30px;
  }

  .coord-title {
    font-size: 2rem;
  }

  .coord-card {
    padding: 30px 25px;
  }

  .coord-name-title {
    font-size: 1.5rem;
  }

  .coord-text {
    font-size: 1.1rem;
  }
}
/* --- 割引 --- */

.coord-off {
  font-size: 0.85rem;
  color: #fff;
  background: #c00;
  display: inline-block; /* ← 横幅を内容に合わせる！ */
  padding: 2px 6px;
  border-radius: 4px;
  margin-top: 6px;
  margin-bottom: 4px;
  font-weight: bold;
  margin-left: 4px; /* 左に少し寄せる */
}
.coord-pro {
  font-size: 0.85rem;
  color: #000000;
  background: #FFFFFF;
  display: inline-block; /* ← 横幅を内容に合わせる！ */
  padding: 2px 6px;
  border-radius: 4px;
  margin-top: 6px;
  margin-bottom: 4px;
  font-weight: bold;
  margin-left: 4px; /* 左に少し寄せる */
}
