@charset "UTF-8";

.bl_pickup_list {
  display: flex;
  flex-wrap: wrap;
}

.bl_pickup_item {
  width: calc((100% / 2) - (15px / 2 ));
  /* padding: 8px 6px; */
  border-radius: 6px;
  -webkit-box-shadow: 0.8rem 0.8rem 1.2rem rgb(0 0 0 / 5%), -0.8rem -0.8rem 1.2rem #fff;
  box-shadow: 0px 0px 6px rgb(0 0 0 / 20%);
  transition: all ease .3s;
  margin-bottom: 15px;
}

.bl_pickup_item:not(:nth-child(2n)) {
  margin-right: 15px;
}

.bl_pickup_item:hover {
  opacity: .7;
}

.bl_pickup_item_img {
  position: relative;
  transition: .3s ease;
}

.bl_pickup_item_txtBox {
  padding: 10px 40px 0;
  height: 65px;
  text-align: center;
}

.bl_pickup_item_txt {
  font-size: 18px;
  font-weight: bold;
  color: #ed1e79;
  line-height: 1.3;
  overflow: hidden;
  text-align: left;
  display: inline-block;
}