/****************************
* カテゴリーページのファーストビュー
****************************/

/* common.css の .sub-fv__title は単体で中央に絶対配置される想定。
   ここではタイトルとカテゴリー名をまとめて中央に置きたいので、
   親側で位置を持ち、タイトルの絶対配置は解除する。 */
.sub-fv__heading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.sub-fv__heading .sub-fv__title {
  position: static;
  transform: none;
}

/* 何の一覧かを示す見出しなので、タイトルより一段小さく */
.sub-fv__category {
  display: inline-block;
  margin: 16px 0 0;
  padding: 4px 20px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: #fff;
}

@media screen and (max-width: 500px) {
  .sub-fv__category {
    margin-top: 12px;
    padding: 3px 16px;
    font-size: 13px;
  }
}
