/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 22 2026 | 02:39:59 */
/* ==========================================================================
   共通 カードグリッドレイアウト
   ========================================================================== */
  .c-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(24px, 3.5vw + 10px, 48px);
    margin-bottom: clamp(80px, 8vw + 20px, 120px);
  }

  /* ==========================================================================
   共通 カードコンポーネント
   ========================================================================== */
  .c-card {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border: 1px solid #d9d9d9;
    text-decoration: none;
    color: inherit;
    /* ホバー時の浮き上がり用トランジション */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  /* マイクロインタラクション（ホバー時） */
  .c-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  }

  .c-card:hover .c-card__img {
    transform: scale(1.05);
  }

  /* 画像エリア */
  .c-card__thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 1.5;
    /* 画像の比率を統一（3:2） */
    overflow: hidden;
  }

  .c-card__thumb picture {
    width: 100%;
    height: 100%;
  }

  .c-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* ホバー時の拡大用トランジション */
    transition: transform 0.5s ease;
  }

  /* コンテンツエリア */
  .c-card__content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: clamp(22px, 2vw + 16px, 28px);
  }

  .c-card__title {
    font-size: clamp(18px, 1vw + 12px, 21px);
    font-weight: 700;
    color: #333333;
    margin-bottom: clamp(24px, 2vw + 16px, 32px);
    line-height: 1.4;
    text-wrap: unset;
  }

  /* タイトル下の赤い短いライン */
  .c-card__title::after {
    content: "";
    display: block;
    width: clamp(200px, 3vw + 18px, 264px);
    height: 1px;
    background-color: #e60012;
    margin-top: clamp(12px, 1vw + 8px, 16px);
    margin-left: calc(clamp(22px, 2vw + 16px, 28px) * -1);
  }

  /* 定義リスト（詳細情報） */
  .c-card__dl {
    display: flex;
    flex-direction: column;
    margin-top: 0;
    /* コンテンツが少ない場合も下揃えに */
  }

  .c-card__row {
    display: flex;
    align-items: flex-start;
    padding: clamp(12px, 1vw + 8px, 16px) 0;
    border-bottom: 1px dotted #cccccc;
  }

  .c-card__row:first-child {
    padding-top: 0;
  }

  .c-card__row:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .c-card__dt {
    width: clamp(64px, 5vw + 44px, 80px);
    flex-shrink: 0;
    font-size: clamp(12px, 0.5vw + 10px, 14px);
    color: #666666;
    font-weight: 400;
  }

  .c-card__dd {
    flex: 1;
    font-size: clamp(15px, 0.5vw + 10px, 17px);
    color: #333333;
    line-height: 1.6;
  }

  /* ==========================================================================
   Media Queries (スマホ用上書き)
   ========================================================================== */
  @media (max-width: 767px) {
    .c-card-grid {
      grid-template-columns: 1fr;
      /* スマホは1カラム */
    }
  }