@charset "utf-8";
.wrap_newface {
  padding: 0 30px 30px;
}
.box_newface {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.item_newface {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  row-gap: 15px;
  padding-inline: 15px;
  padding-bottom: 20px;
  border: 1px solid #aaa;
  cursor: pointer;
}
.item_newface .img_box {
  aspect-ratio: 4/3;
  margin-inline: -15px;
}
.item_newface .img_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease-out;
}
.item_newface:hover .img_box img {
  opacity: 0.8;
}
.item_newface:hover .newface_name::before {
  opacity: 1;
}
.newface_data {
  display: flex;
  align-items: baseline;
  column-gap: 10px;
}
.newface_name {
  position: relative;
  color: #fb489b;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
}
.newface_name span {
  font-size: 16px;
  vertical-align: middle;
}
.schedule_data {
  display: flex;
  column-gap: 10px;
}
.schedule_data .tit_type5 {
  flex: 1;
}
.scheduleData_today,
.scheduleData_tomorrow {
  width: 110px;
  height: 30px;
  text-align: center;
  vertical-align: middle;
}
.scheduleData_today {
  color: #fff;
  background: #fa338f;
  line-height: 30px;
}
.scheduleData_tomorrow {
  box-sizing: border-box;
  border: 2px solid #fa338f;
  color: #fa338f;
  font-weight: bold;
  line-height: 26px;
}
