/* ============================================
   region-feature 拡張スタイル (bunka専用)
   既存 style-area.area.css の .inner.region-feature を補完
   ============================================ */

/* === SP (max-width: 736px) === */
@media screen and (max-width: 736px) {

  /* Block 1: detail-contents 段落間余白 */
  .inner.region-feature .detail-contents p + p {
    margin-top: 14px;
  }

  /* Block 2: サブ見出し */
  .inner.region-feature .rf-subtitle {
    font-size: 16px;
    font-weight: 700;
    color: #243f96;
    text-align: center;
    margin: 24px 0 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid #d7dbe8;
  }

  /* Block 2: 製品カードグリッド */
  .inner.region-feature .rf-products {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
  }

  .inner.region-feature .rf-product-card {
    background: #fff;
    border: 1px solid #d7dbe8;
    border-left: 4px solid #243f96;
    border-radius: 6px;
    padding: 12px 14px;
  }

  .inner.region-feature .rf-product-name {
    font-size: 15px;
    font-weight: 700;
    color: #243f96;
    margin-bottom: 4px;
  }

  .inner.region-feature .rf-product-desc {
    font-size: 13px;
    line-height: 1.7;
    color: #333;
  }

  /* Block 3: 駅タグ */
  .inner.region-feature .rf-station-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 16px;
  }

  .inner.region-feature .rf-tag {
    display: inline-flex;
    align-items: center;
    height: 28px;
    padding: 0 12px;
    border-radius: 14px;
    background: #243f96;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
  }

  /* Block 3: CTA */
  .inner.region-feature .rf-cta {
    text-align: center;
    margin-top: 14px;
    padding: 14px;
    background: #f0f3ff;
    border-radius: 6px;
  }

  .inner.region-feature .rf-cta p {
    font-size: 14px;
    font-weight: 700;
    color: #243f96;
    line-height: 1.6;
  }
}

/* === PC (min-width: 737px) === */
@media screen and (min-width: 737px) {

  /* Block 1: detail-contents 段落間余白 */
  .inner.region-feature .detail-contents p + p {
    margin-top: 16px;
  }

  /* Block 2: サブ見出し */
  .inner.region-feature .rf-subtitle {
    font-size: 18px;
    font-weight: 700;
    color: #243f96;
    text-align: center;
    margin: 32px 0 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid #d7dbe8;
  }

  /* Block 2: 製品カードグリッド */
  .inner.region-feature .rf-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 28px;
  }

  .inner.region-feature .rf-product-card {
    background: #fff;
    border: 1px solid #d7dbe8;
    border-left: 4px solid #243f96;
    border-radius: 6px;
    padding: 16px 18px;
    transition: box-shadow 0.3s;
  }

  .inner.region-feature .rf-product-card:hover {
    box-shadow: 0 2px 8px rgba(36, 63, 150, 0.15);
  }

  .inner.region-feature .rf-product-name {
    font-size: 16px;
    font-weight: 700;
    color: #243f96;
    margin-bottom: 6px;
  }

  .inner.region-feature .rf-product-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #333;
  }

  /* Block 3: 駅タグ */
  .inner.region-feature .rf-station-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
  }

  .inner.region-feature .rf-tag {
    display: inline-flex;
    align-items: center;
    height: 30px;
    padding: 0 14px;
    border-radius: 15px;
    background: #243f96;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    transition: background-color 0.3s;
  }

  .inner.region-feature .rf-tag:hover {
    background: #3366cc;
  }

  /* Block 3: CTA */
  .inner.region-feature .rf-cta {
    text-align: center;
    margin-top: 18px;
    padding: 18px;
    background: #f0f3ff;
    border-radius: 6px;
  }

  .inner.region-feature .rf-cta p {
    font-size: 15px;
    font-weight: 700;
    color: #243f96;
    line-height: 1.6;
  }
}
