@charset "utf-8";
/* CSS Document */
.under_mv{
  background: url(../../img/mv.png) no-repeat center;
  background-size: cover;
}
.article {
  padding: 30px 0;
}

.rec_list {
  display: flex;
  gap: 50px 30px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.rec_card {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 321px;
  width: 100%;
  &[href=""]{
    pointer-events: none;
  }
}
.rec_img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 234px;
  border: 1px solid #ccc;
  padding: 20px;
}
.rec_name{
  font-weight: bold;
  font-size: var(--fs-20);
  margin-top: 20px;
  text-decoration: underline;
}
.rec_card:hover,.rec_card[href=""] {
  .rec_name{
    text-decoration: none;
  }
}
.rec_sub{
  font-weight: bold;
  margin-top: 10px;
}
.com_nav{
  margin-top: 90px;
}
@media screen and ( max-width: 1023px ) {
}
@media screen and ( max-width: 767px ) {
  
.rec_list {
  flex-direction: column;
  align-items: center;
  gap:30px;
}
.rec_img {
  height: 175px;
}
.rec_name{
  margin-top: 10px;
}
.rec_sub{
  margin-top: 0px;
}
}