@charset "utf-8";
/* ------------------------------------- */
/*mv*/
/* ------------------------------------- */
.mv{
  background: url(../img/network/main.jpg) no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 600px) {
  .mv{
    background:url(../img/network/main_sp.jpg) no-repeat;
    background-position: center;
    background-size: cover;
  }
}
/* ------------------------------------- */
/*リンクリスト*/
/* ------------------------------------- */
.link-list{
  padding-bottom:150px;
}
.link-list p{
  line-height: 1.8;
}
.link-list .link-wrap{
  display: flex;
  flex-wrap: wrap;
  margin-top:40px;
}
.link-list .link-wrap .box{
  width: calc(25% - 22.5px);
  margin-right: 30px;
  margin-bottom:30px;
}
.link-list .link-wrap .box:nth-of-type(4n){
  margin-right:0;
}
.link-list .link-wrap .box a{
  display: block;
  width:100%;
  padding-top:100%;
  background:#fff;
  outline: 1px solid #e8e8e8;
  position: relative;
  transition: 0.3s;
  border-radius: 10px;
  margin-bottom:15px;
}
.link-list .link-wrap .box a:hover{
  outline:3px solid #54a734;
}
.link-list .link-wrap .box a img{
  width: auto;
  max-width: 84%;
  position:absolute;
  top:50%;
  left:50%;
  transform: translate(-50%,-50%);
}
.link-list .link-wrap .ttl{
  line-height: 1.5;
}
/* ------------------------------------- */
/*準備中の場合*/
.link-list .link-wrap p.message{
  width: 100%;
  margin: 0 auto 50px;
  text-align: center;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
}
@media screen and (max-width: 600px) {
  .link-list{
    padding-bottom:80px;
  }
  .link-list .link-wrap .box{
    width: calc(50% - 15px);
  }
  .link-list .link-wrap .box:nth-of-type(even){
    margin-right:0;
  }
}