@charset "utf-8";
/* CSS Document */
.ul-archive {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 15px 2%;
}
.card-box {
  position: relative;
  width: 49%;
}
.card-box a {
  position: relative;
  background: #f8f9fa;
  display: block;
  padding: 5px 5px 23px;
  height: 100%;
  box-shadow: 0 0 2px #a9a9a9;
}
.card-thumbnail{
  position: relative;
  margin-bottom: 10px;
}
.card-cate_outer {
  position: absolute;
  top: 5px;
  left: 5px;
  color: #fff;
  font-size: 1.1rem;
  background: hsl(0deg 0% 3% / 50%);
}
.card-cate {
  position: relative;
  padding: 2px 5px;
  margin-right: 2px;
  background: hsl(0deg 0% 3% / 50%);
}
.card-thumbnail img {
  display: block;
  width: 100%;
  height: 90px;
  object-fit: cover;
}
.card-date {
  color: #a9a9a9;
  text-align: right;
  font-size: 1.2rem;
  line-height: 1.2;
  position: absolute;
  right: 5px;
  bottom: 5px;
}
.card-ttl {
  font-size: 1.5rem;
  font-weight: bold;
}
/* 以下PC
=======================================
======================================= */
/* ここに768px以上の範囲のスタイルを記述 768~1024pxが適用範囲 */
@media screen and (min-width: 768px) {
.ul-archive {
    gap: 30px 1%;
}
  .card-box {
    position: relative;
    width: 32.5%;
  }
  .card-thumbnail img {
    height: 180px;
}
}
/* 
@media screen and (min-width: 1025px) {
  ここに1025px以上の範囲のスタイルを記述 1025以上適用範囲
}
 */