@CHARSET "UTF-8";

/* ECサイト販売案内（ec.php）用 — メインCSSに追従 */

.ec-badge {
  display: inline-block;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(120deg, #9b59b6 0%, #e73278 55%, #f39800 100%);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.ec-lead {
  margin: 8px 0 20px;
  line-height: 1.75;
}

.ec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 8px;
}

.ec-card {
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  overflow: hidden;
  background: #fafafa;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.ec-card:hover {
  box-shadow: 0 8px 24px rgba(231, 50, 120, 0.12);
  transform: translateY(-2px);
}

.ec-card-img {
  display: block;
  aspect-ratio: 1 / 1;
  background: linear-gradient(145deg, #fff 0%, #f3f3f8 100%);
}

.ec-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 12px;
}

.ec-card-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ec-card-title {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.5;
  color: #222;
}

.ec-card-cta {
  margin-top: auto;
}

.ec-card-cta a {
  display: block;
  text-align: center;
  background-color: #FF6E0E;
  color: #ffffff !important;
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 700;
  transition: background-color 0.2s ease;
}

.ec-card-cta a:hover {
  background-color: #e65c00;
  color: #ffffff !important;
}

.ec-note {
  margin-top: 24px;
  font-size: 0.9rem;
  color: #555;
  line-height: 1.65;
}
