@charset "UTF-8";
@font-face {
  font-family: "MyYuGothicM";
  font-weight: normal;
  src: local("YuGothic-Medium"), local("Yu Gothic Medium"), local("YuGothic-Regular");
  /* 游ゴシックMediumが存在しないWindows8.1用 */
}
@font-face {
  font-family: "MyYuGothicM";
  font-weight: bold;
  src: local("YuGothic-Bold"), local("Yu Gothic Bold");
  /* PostScript Nameを認識できないChrome用にFull Nameを指定 */
}
/* カラー変数定義
-----------------------------------------------------------------*/
/* カラー変数定義
-----------------------------------------------------------------*/
.maintenanceList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 40px;
}
@media print, screen and (max-width: 767px) {
  .maintenanceList {
    margin: 0 20px;
  }
}

.maintenanceList_node {
  width: 25%;
  width: calc((100% - 120px) / 4);
  margin: 60px 40px 0 0;
}
.maintenanceList_node:nth-of-type(1), .maintenanceList_node:nth-of-type(2), .maintenanceList_node:nth-of-type(3), .maintenanceList_node:nth-of-type(4) {
  margin-top: 0;
}
.maintenanceList_node:nth-of-type(4n) {
  margin-right: 0;
}
@media print, screen and (min-width: 768px) and (max-width: 1024px) {
  .maintenanceList_node {
    width: calc((100% - 60px) / 4);
    margin: 60px 20px 0 0;
  }
}
@media print, screen and (max-width: 767px) {
  .maintenanceList_node {
    width: 48%;
    width: calc((100% - 10px) / 2);
    margin: 40px 0 0 0;
  }
  .maintenanceList_node:nth-of-type(1), .maintenanceList_node:nth-of-type(2) {
    margin-top: 0;
  }
  .maintenanceList_node:nth-of-type(3), .maintenanceList_node:nth-of-type(4) {
    margin: 40px 0 0 0;
  }
  .maintenanceList_node:nth-of-type(2n) {
    margin-left: 10px;
  }
}

.maintenanceList_img {
  position: relative;
  padding: 0 0 77.3%;
  overflow: hidden;
}
.maintenanceList_img img {
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.maintenanceList_name {
  line-height: 1.5;
  margin: 20px 0 0;
}
@media print, screen and (max-width: 767px) {
  .maintenanceList_name {
    margin: 10px 0 0;
  }
}