@charset "UTF-8";

/***********************************
  シリーズカテゴリカード用CSS
  - 商品一覧に差し込むカテゴリカード
  - 既存の商品カードと同等の見た目を実現
  @since 2026-04-07
***********************************/

/* ========================================
   カテゴリカードの基本構造
   ======================================== */

/* 
 * .product クラスを持つことで WooCommerce の商品グリッドに参加。
 * WooCommerce デフォルトの商品カード幅・マージンを継承する。
 */
.asuka-series-card {
  position: relative;
}

.asuka-series-card__link {
  display: flex;
  flex-direction: column;
  text-align: center;
  height: 100%;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease-in-out;
}

.asuka-series-card__link:hover {
  opacity: 0.8;
}

/* ========================================
   画像部分
   - 既存の商品画像と同じ1:1比率に合わせる
   ======================================== */
.asuka-series-card__img-wrap {
  position: relative;
  margin: auto;
  width: 100%;
  overflow: hidden;
}

.asuka-series-card__img-wrap::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  opacity: 0;
  transition: 0.3s opacity ease-in-out;
  mix-blend-mode: multiply;
  background-color: rgb(129 129 129 / 20%);
  z-index: 1;
}

.asuka-series-card__link:hover .asuka-series-card__img-wrap::before {
  opacity: 1;
}

.asuka-series-card__img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100%;
  height: auto;
  display: block;
}

/* ========================================
   コンテンツ部分
   ======================================== */
.asuka-series-card__content {
  padding-top: 10px;
  text-align: left;
}

/* シリーズバッジ */
.asuka-series-card__badge {
  display: inline-block;
  background-color: #595757;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 2px 8px;
  letter-spacing: 0.05em;
  line-height: 1.4;
  margin-bottom: 6px;
  font-family: var(--ff-accent, 'Roboto Condensed', sans-serif);
}

/* タイトル - 既存のc-product-ttlに合わせる */
.asuka-series-card__title {
  text-align: left;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.3;
  padding-top: 4px;
  margin: 0;
  color: #262626;
}

/* 説明文 */
.asuka-series-card__text {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.6;
  color: #666;
  margin-top: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* CTAボタン */
.asuka-series-card__cta {
  display: inline-block;
  margin-top: 10px;
  padding: 6px 20px;
  background-color: #262626;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-align: center;
  transition: opacity 0.3s ease-in-out;
  line-height: 1.4;
}

.asuka-series-card__link:hover .asuka-series-card__cta {
  opacity: 0.85;
}


/* ========================================
   レスポンシブ（SP）
   ======================================== */
@media screen and (max-width: 767px) {
  .asuka-series-card__title {
    font-size: 1.3rem;
    padding-top: 6px;
  }

  .asuka-series-card__text {
    font-size: 1.1rem;
    margin-top: 4px;
  }

  .asuka-series-card__badge {
    font-size: 1rem;
    padding: 1px 6px;
  }

  .asuka-series-card__cta {
    font-size: 1.1rem;
    padding: 5px 16px;
    margin-top: 8px;
  }
}
