@charset "utf-8";
.Window_list .card {
  color: #fff;
  width: 95%;
  margin: auto;
  background: #182987;
  padding: 1px;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  text-align: center;
}
.Window_list .card {
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  background: #182987; 
}
.Window_list .card:hover {
  background: #fff; 
}
.Window_list .card .card_inner {
  height: 450px;
  background: #182987;
}
.Window_list .card .card_inner .ContactBox_Title {
  margin-bottom: 30px;
}
.Window_list .card .card_inner .Contact_tel {
  margin-top: 15px;
}
.Window_list .card .card_inner dl {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.Window_list .card .card_inner dl i {
  font-size: 7rem;
}
.Window_list .card .card_inner a {
  color: #fff;
  transition: .5s;
}
.Window_list .card .card_inner a:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .Window_list .card .card_inner {
    height: 270px;
  }
  .Window_list .card .card_inner .ContactBox_Title {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  .Window_list .card .card_inner dl i {
    font-size: 4rem;
  }
}