@charset "utf-8";
/* CSS Document */
.under_mv{
  background: url(../img/mv.png) no-repeat center;
  background-size: cover;
}
.content{
  padding-top: 60px;
}
.cont_inner {
  max-width: 1024px;
  width: 90%;
  margin: auto;
}
.cont_block{
  margin-top: 60px;
}
.cont_choke{
  max-width: 944px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.cont_bnr {
  display: flex;
  font-size: 2.4rem;
  background: #000;
  color: #fff;
  padding: 20px 40px;
  @media screen and ( max-width: 767px ) {
    font-size: 2rem;
  }
}
.com_list {
  display: flex;
  justify-content: center;
  gap:50px 30px;
  margin: 70px auto 100px;
  max-width: 1024px;
  width: 90%;
  flex-wrap: wrap;
}
.com_card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 0px 40px 40px;
  border: 1px solid #ccc;
  &:hover {
    opacity: 1;
  }
}
.com_icon{
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  background: var(--red);
  width: 67px;
  height: 67px;
  margin-top: -32.5px;
}
.com_head {
  font-size: var(--fs-20);
  font-weight: bold;
  text-align: center;
}
.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 ) {

}