@charset "utf-8";

#contents .select-block {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 75px;
  padding-top: 75px;
  border-top: 3px solid #0099cc;
}
#contents .select-block a {
  width: 48%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 35px;
  border: 1px solid #0099df;
  border-radius: 10px;
  box-sizing: border-box;
  transition: 0.4s;
}
#contents .select-block a img {
  width: 80%;
  max-width: 400px;
}
#contents .select-block a p {
  width: 100%;
  color: #0099df;
  font-size: 18px;
  text-align: center;
  font-weight: bold;
}
#contents .select-block a p strong {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 70px;
  color: #fff;
  background-color: #0099df;
  border-radius: 12px;
  border: 1px solid #0099df;
  margin-top: 40px;
  margin-bottom: 10px;
  transition: 0.4s;
  font-size: 20px;
}

#contents .select-block a:hover {
  text-decoration: none;
  background-color: rgba(0, 153, 223, 0.1);
}

#contents .select-block a:hover p strong {
  background-color: #fff;
  color: #0099df;
}

@media screen and (max-width: 767px) {
  #contents .select-block {
    margin-top: 60px;
    padding-top: 40px;
    flex-wrap: wrap;
    justify-content: center;
  }
  #contents .select-block a {
    width: 100%;
    padding: 15px;
    margin-bottom: 30px;
  }
}
