@charset "utf-8";
/* ===================================================================
 style.css
  - breakpoint: max-width: 767px / min-width: 768px
======================================================================*/
.pageTitle {
  padding: 50px 0;
  font-size: 3.2rem;
  line-height: 1.5;
  text-align: center;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .f_main {
    padding-top: 50px;
  }
  .pageTitle {
    padding: 20px 0;
    font-size: 2rem;
    
  }
}

/*----------------------------------------------------------
 newsSection
------------------------------------------------------------*/
.f_inner .newsSection:first-child {
  padding-top: 80px;
}
@media screen and (max-width: 767px) {
  .f_inner .newsSection:first-child {
    padding-top: 30px;
  }
}

/*----------------------------------------------------------
 imageList
------------------------------------------------------------*/
.imgList > li p {
  margin-top: 10px;
  font-size: 1.4rem;
}

@media screen and (min-width: 768px) {
  .imgList {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .imgList > li {
    width: calc((100% - 6%) / 3);
  }
  .imgList > li p {
    margin-top: 10px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .imgList > li + li {
    margin-top: 30px;
  }
}

/*----------------------------------------------------------
 table
------------------------------------------------------------*/
.table {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .table th,
  .table td {
    padding: 30px 5px;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
  }
  .table tr th:first-child { width: 30%; }
  .table tr td:nth-child(3) { width: 18%; }
}
@media screen and (max-width: 767px) {
  .table tr {
    display: block;
    padding: 15px 0;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
  }
  .table th,
  .table td {
    display: block;
    font-size: 1.4rem;
  }
}
