/* =========================================================
   news SINGLE PAGE — LAYOUT ONLY
   ※ 色指定は bbiz-single.css に集約
========================================================= */


/* =========================================================
   ▼ カテゴリーボックス（レイアウトのみ）
========================================================= */

.bbiz-category-box {
  width: min(100%, 1000px);
  background-color: #fff;
  padding: 0;
  margin: 0 auto;
}


/* =========================================================
   ▼ 内側（本文エリア）
========================================================= */

.bbiz-inner {
  background: #ffffff;
  padding: 60px;
}


/* =========================================================
   ▼ 見出し・本文（サイズ・余白のみ）
========================================================= */

.bbiz-title {
  font-size: 28px;
  margin-bottom: 10px;
  font-weight: 700;
}

.bbiz-content {
  font-size: 18px;
  line-height: 2;
  margin-bottom: 60px;
}


/* =========================================================
   ▼ サブカテゴリ＋日付（並びのみ）
========================================================= */

.bbiz-subcat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.bbiz-subcat-left {
  width: 280px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  padding: 3px 10px;
  text-align: center;
}

.bbiz-date-right {
  font-size: 14px;
  font-weight: 700;
  font-family: "Jost", sans-serif;
  position: relative;
  padding-right: 14px;
  margin-bottom: 10px;
}


/* =========================================================
   ▼ アイキャッチ
========================================================= */

.bbiz-eyecatch img {
  width: 100%;
  height: auto;
  margin-bottom: 30px;
}


/* =========================================================
   ▼ サブカテゴリーボタン（形状のみ）
========================================================= */

.bbiz-subcat-button-wrapper {
  text-align: center;
  margin: 5px auto;
  width: 100%;
}

.bbiz-subcat-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 16px 60px 16px 40px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  position: relative;
  transition: 0.25s;
  max-width: 90%;
  white-space: nowrap;
}

.bbiz-subcat-button::after {
  content: "›";
  position: absolute;
  right: 20px;
  width: 28px;
  height: 28px;
  background: #fff;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
}


/* =========================================================
   ▼ レスポンシブ
========================================================= */

@media screen and (max-width: 900px) {
  .bbiz-related-items {
    flex-wrap: wrap;
  }
  .bbiz-related-item {
    width: 48%;
  }
}

@media screen and (max-width: 600px) {
  .bbiz-related-items {
    flex-direction: column;
  }
  .bbiz-related-item {
    width: 100%;
  }

  .bbiz-inner {
    padding: 20px;
  }

  .bbiz-subcat-row {
    flex-direction: column;
    gap: 8px;
  }

  .bbiz-subcat-left {
    width: auto;
    margin: 0 auto;
  }

  .bbiz-date-right {
    width: 100%;
    text-align: right;
  }
}

