.recommend_facility {
  margin-bottom: 16px;
  padding: 32px 24px;
  background-color: #fff;
  border-radius: 8px;
}
@media screen and (max-width: 750px) {
  .recommend_facility {
    margin-top: 16px;
    margin-bottom: 0;
    padding: 16px 12px;
    border-radius: 0;
  }
}
.recommend_facility__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 751px) {
  .recommend_facility__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media screen and (max-width: 750px) {
  .recommend_facility__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.recommend_facility__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border: 1px solid #C2C2C2;
  border-radius: 8px;
}
@media screen and (min-width: 751px) {
  .recommend_facility__item {
    width: calc((100% - 16px) / 2);
  }
}
.recommend_facility__thumb {
  background-color: #E2F0EF;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 751px) {
  .recommend_facility__thumb {
    height: 250px;
  }
}
@media screen and (max-width: 750px) {
  .recommend_facility__thumb {
    height: 200px;
  }
}
.recommend_facility__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.recommend_facility__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 12px 8px 8px;
}
.recommend_facility__title, .recommend_facility__title a {
  font-weight: 700;
  font-size: 24px;
  line-height: 35px;
  color: #0E5645 !important;
  text-decoration: underline;
}
@media screen and (max-width: 750px) {
  .recommend_facility__title, .recommend_facility__title a {
    font-size: 18px;
    line-height: 26px;
  }
}
.recommend_facility__description {
  margin-top: 4px;
  font-weight: 500;
  font-size: 16px;
}
.recommend_facility__tag {
  margin-bottom: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
}
.recommend_facility__tag dt,
.recommend_facility__tag dd {
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  line-height: 27px;
  font-weight: 500;
  padding: 0 12px;
  border-radius: 30px;
  border: 1px solid #0E5645;
}
@media screen and (max-width: 750px) {
  .recommend_facility__tag dt,
  .recommend_facility__tag dd {
    line-height: 23px;
  }
}
.recommend_facility__tag dt {
  background-color: #0E5645;
  color: #FFFFFF;
}
.recommend_facility__tag dd {
  color: #05372B;
}

.recommend_facility__btn {
  margin-top: auto;
  padding: 8px;
}
.recommend_facility__btn .recommend_btn__detail {
  display: block;
  position: relative;
  padding: 8px 16px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 50px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  background-color: #1c7e67;
  color: #fff !important;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  text-decoration: none;
  width: 100%;
  -webkit-box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.08);
          box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 750px) {
  .recommend_facility__btn .recommend_btn__detail {
    padding: 8px 12px;
  }
}
.recommend_facility__btn .recommend_btn__detail:after {
  content: "";
  position: absolute;
  display: block;
  width: 8px;
  height: 8px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  right: 16px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
@media screen and (max-width: 750px) {
  .recommend_facility__btn .recommend_btn__detail:after {
    right: 12px;
  }
}