  .matching_wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
  }

  .matching_box {
    width: calc(50% - 20px);
    border: 1px solid #333;
    margin: 0px 10px 20px 10px;
    padding: 10px 15px;
  }

  .matching_box a {
    display: flex;
    align-items: flex-start;
  }
  .matching_box a h2 {
    border-bottom: 1px solid #333;
    color: #333;
    font-size: 2.2rem;
    font-weight: bold;
    line-height: 1.4;
    margin: 0px 0px 10px 0px;
    padding: 0px 0px 10px 0px;
    
  }
  .matching_box a .corp {
    font-size: 1.6rem;
    line-height: 1.4;
    font-weight: bold;
  }
  .matching_box a img {
    margin-right: 15px;
  }
  
  @media screen and (max-width: 999px) {
    .matching_box {
      width: calc(100% - 20px);
    }
  }
  @media screen and (max-width: 639px) {
    .matching_box a h2 {
      font-size: 2rem;
    }
  }
