@charset "UTF-8";
/***********************共通設定************************/
#footer {
  /* 751- */
}
@media all and (min-width: 751px) {
  #footer {
    margin-top: 120px;
  }
}

/*----------------------------------------------------
mainList
----------------------------------------------------*/
#mainList {
  margin-top: 35px;
  /* 751- */
}
#mainList li {
  margin-top: 20px;
}
#mainList li:first-child {
  margin-top: 0;
}
#mainList li a {
  display: block;
}
#mainList li a:hover {
  text-decoration: none;
}
#mainList h2 {
  margin-top: 0.6em;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.039em;
}
@media all and (min-width: 751px) {
  #mainList {
    margin-top: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #mainList li {
    width: 48.17%;
    margin-top: 30px;
  }
  #mainList li:first-child, #mainList li:nth-child(2) {
    margin-top: 0;
  }
  #mainList h2 {
    margin-top: 1em;
    font-size: 20px;
  }
  #mainList h2 span {
    position: relative;
    display: inline-block;
  }
  #mainList h2 span::before {
    position: absolute;
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    width: 0%;
    height: 1px;
    bottom: -2px;
    left: 50%;
    right: 50%;
    background: #2D2D2D;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #mainList a:hover h2 span::before {
    width: 100%;
    left: 0%;
    right: 0%;
  }
  #mainList a picture {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #mainList a:hover picture {
    opacity: 0.8;
  }
}