@charset "utf-8";
/* CSS Document */
.under_mv{
  background: url(../img/mv.png) no-repeat center;
  background-size: cover;
}
.com_list {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 40px auto 100px;
  max-width: 1024px;
  width: 90%;
  flex-wrap: wrap;
}
.com_card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 30px 40px 50px;
  border: 1px solid #ccc;
  &:hover {
    opacity: 1;
  }
}
.com_head {
  font-size: var(--fs-20);
  font-weight: bold;
}
.com_btn{
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 223px;
  width: 100%;
  height: 43px;
  color: var(--red);
  border: 1px solid var(--red);
  text-align: center;
  margin-top: 10px;
  transition: .3s;
}
.com_card:hover .com_btn{
  color: #fff;
  background: var(--red);
}
@media screen and ( max-width: 1023px ) {
}
@media screen and ( max-width: 767px ) {

}