@charset "UTF-8";

.block-user{
  display: flex;
  flex-wrap: wrap;
}
.block-user .block{
  border: 5px solid #eee;
  box-sizing: border-box;
  margin: 0 4% 50px 0;
  padding: 40px 3%;
  width: calc((100% - 4%) / 2);
}
.block-user .block:nth-of-type(even){
  margin-right: 0;
}
.block-user .block h2{
  font-size: 2.6rem;
}
.block-user .block a.link{
  color: #0e214e;
  display: inline-block;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1em;
  margin-top: 30px;
  text-decoration: underline;
}
.block-user .block a.link:hover{
  text-decoration: none;
}
@media screen and (max-width:767px) { 
  .block-user{
    display: block;
  }
  .block-user .block{
    border: 5px solid #eee;
    margin: 0 0 50px;
    padding: 30px 3%;
    width: 100%;
  }
  .block-user .block:last-child{
    margin-bottom: 0;
  }
  .block-user .block h2{
    font-size: 2.0rem;
  }
}




















