@charset "UTF-8";

.purchase-articles {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 60px 0 0;
}
.purchase-article {
  box-sizing: border-box;
  margin: 0 1.5% 40px;
  padding: 24px;
  width: 30.3%;
  background: #fff;
  border: 1px solid #b9b9b9;
}
.purchase-article a {
  text-decoration: none;
}
.purchase-article .purchase-title {
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", YuGothic, "Yu Gothic", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 150%;
  margin: 32px 0;
  letter-spacing: 0.02em;
}
.purchase-article a .purchase-title {
  color: #222;
}
.purchase-thumbnail {
  aspect-ratio: 4/3;
}
.purchase-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.purchase-price {
  font-weight: bold;
  color: #f10000;
  line-height: 120%;
  text-align: center;
}
.purchase-yen {
  font-size: 32px;
  line-height: 48px;
}
.purchase-more {
  margin: 24px auto 16px;
  padding: 8px 0;
  width: 100%;
  max-width: 160px;
  background: #007ed6;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .purchase-articles {
    justify-content: space-between;
    margin: 40px 2% 0;
  }
  .purchase-article {
    margin: 0 0 20px;
    padding: 10px;
    width: 48.5%;
  }
  .purchase-article .purchase-title {
    margin: 15px 0 10px;
    font-size: 14px;
  }
  .purchase-yen {
    font-size: 20px;
    line-height: 1.2;
  }
  .purchase-more {
    width: 100%;
    font-size: 12px;
    margin: 15px auto 10px;
  }
}