.Recommends {
  position: relative;
  overflow-y: hidden;
}
.Recommends__fail {
  text-align: center;
  margin-top: 70px;
}
.Recommends__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media screen and (max-width: 750px) {
  .Recommends__items {
    grid-template-columns: 1fr;
  }
}
.Recommends__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  box-sizing: border-box;
  border: 1px solid #ccc;
  padding: 10px;
}
@media screen and (max-width: 750px) {
  .Recommends__item {
    width: auto;
  }
}
.Recommends__thumb {
  position: relative;
  padding-top: 61.8557%;
}
.Recommends__thumb > img {
  position: absolute;
  top: 0;
  left: 0;
}
.Recommends__thumb__loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  width: 20px;
  height: 20px;
  border: 3px solid #ccc;
  border-top: 3px solid black;
  border-radius: 50%;
  animation: Recommends__thumb__loading .5s linear infinite;
}
@keyframes Recommends__thumb__loading {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
.Recommends__thumb img {
  width: 100%;
  object-fit: cover;
}
.Recommends__thumb__location {
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #000;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  line-height: 1;
  padding: 6px 9px;
}
.Recommends__top {
  padding: 0 10px;
}
.Recommends__bottom {
  padding: 0 10px;
}
.Recommends__new {
  font-size: 13px;
  color: #fff;
  background-color: #000;
  margin-right: 5px;
  padding: 4px;
}
.Recommends__date {
  display: inline-block;
  margin-bottom: 10px;
  line-height: 1;
  color: #0181a1;
  font-size: 14px;
  font-weight: bold;
}
.Recommends__title {
  font-weight: bold;
  margin-bottom: 10px;
  white-space: pre-wrap;
}
.Recommends__desc {
  font-size: 14px;
}
.Recommends__btn {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  background-color: #0181a1;
  font-size: 14px;
  padding: 8px 20px;
}
.Recommends .Recommends__btn {
  color: #fff;
}
.Recommends__btn::before {
  content: "";
	display: inline-block;
	width: 6px;
	height: 6px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg);
	margin-right: 10px;
}
.Recommends__btn:not(:first-of-type) {
  margin-top: 10px;
}
.Recommends__btn--pdf::after {
  content: "";
	display: inline-block;
	vertical-align: middle;
	width: 16px;
	height: 16px;
	background: url(/ew/pewbct/etc/designs/panasonic/common-clientlibs/images/ga2012_icn_pdf.gif);
	background-size: cover;
	margin-left: 5px;
}
.Recommends__more {
  all: unset;
  box-sizing: border-box;
  position: absolute;
  bottom: 0;
  display: block;
  width: 100%;
  border: 1px solid #ccc;
  background-color: #fff;
  box-shadow: 0 -20px 20px 20px rgba(255, 255, 255, 0.8);
  text-align: center;
  padding: 12px;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  color: #0181a1;
}
.Recommends__more.Recommends__more--open {
  box-shadow: none;
  position: static;
  margin-top: 30px;
}
.Recommends__more span::after {
  content: "";
	display: inline-block;
  vertical-align: middle;
	width: 8px;
	height: 8px;
	border-top: 2px solid #0181a1;
	border-right: 2px solid #0181a1;
	transform: rotate(135deg);
	margin-left: 10px;
  margin-bottom: 8px;
}
.Recommends__more.Recommends__more--open span::after {
  transform: rotate(-45deg);
  margin-bottom: -2px;
}