@charset "UTF-8";


/* schedulImg
-----------------------------------------------*/
.schedulImg {
  margin-top: 60px;
}
.schedulImg img.sp {
  margin: 0 auto;
  display: none;
}
@media screen and (max-width: 600px) {
  .schedulImg {
    margin-top: 40px;
  }
  .schedulImg img.pc {
    display: none;
  }
  .schedulImg img.sp {
    display: block;
  }
}


/* section
-----------------------------------------------*/
section {
  margin-top: 60px;
}
section h2 {
  font-size: 18px;
}
section table {
  margin-top: 22px;
}
section table tr {
  border-bottom: 1px solid #e5e5e5;
}
section table tr:first-child {
  border-top: 1px solid #e5e5e5;
}
section table th,
section table td {
  font-size: 16px;
  padding: 30px;
  vertical-align: top;
}
section table th {
  white-space: nowrap;
  background-color: #f8f8f8;
}
section table td {
  width: 100%;
}
@media screen and (max-width: 750px) {
  section {
    margin-top: 40px;
  }
  section h2 {
    font-size: 18px;
  }
  section table {
    margin-top: 20px;
  }
  section table th,
  section table td {
    font-size: 13px;
    padding: 23px 20px;
  }
}