@charset "utf-8";
/* CSS Document */
.under_mv{
  background: url(../img/mv.png) no-repeat center;
  background-size: cover;
}
.product {
  display: flex;
  flex-wrap: wrap;
  gap: 20px calc((1024px - (189px * 5)) / 4);
  position: relative;
  padding: 50px 0;
}
.pro_card{
  max-width: 189px;
  width: calc(50% - 5px);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pro_head {
  font-size: var(--fs-24);
  color: var(--red);
  width: 100%;
}
.pro_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: absolute;
  right: 0;
  top: 50px;
  height: 40px;
  color: var(--red);
  border: 1px solid var(--red);
  padding: 5px 10px;
  font-weight: bold;
}
.pro_name {
  text-align: center;
  font-weight: bold;
  margin-top: 10px;
}

.point_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 60px;
  color: var(--red);
  border: 1px solid var(--red);
  padding: 5px 10px;
  font-weight: bold;
  max-width: 328px;
  width: 100%;
  margin: 20px auto 0;
  font-size: var(--fs-20);
}
main{
  padding-bottom: 90px;
}
.btn_box{
  width: 100%;
  display: flex;
  justify-content: center;
}
@media screen and ( max-width: 1023px ) {
}
@media screen and ( max-width: 767px ) {

.product {
  gap: 20px 10px;
}
.pro_card{
  max-width: none;
}
.pro_btn {
  position: static;
  width: calc(50% + -4px);
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
}
}