@charset "UTF-8";
/* CSS Document */


/*--  cont1  --*/

#cont1 .cont-inner {
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px 0 80px;
}
@media screen and (max-width: 980px) {
  #cont1 .cont-inner {
    display: flex;
    flex-direction: column-reverse;
    padding: 0 0 40px;
  }
}
#cont1 .news {
  flex-basis: 780px;
}
@media screen and (max-width: 980px) {
  #cont1 .news {
    flex-basis: auto;
  }
}
#cont1 .news-item .flex-box {
  border-top: solid 1px #E3E3E3;
  gap: 20px;
  padding: 20px;
}
@media screen and (max-width: 980px) {
  #cont1 .news-item .flex-box {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 8px;
  }
}
#cont1 .news .news-item:last-child .flex-box {
  border-bottom:  solid 1px #E3E3E3;
}
#cont1 .news .flex-box > img {
  border-radius: 10px;
  width: 242px;
  line-height: 1;
}
@media screen and (max-width: 980px) {
  #cont1 .news .flex-box > img {
    width: 40%;
  }
}
#cont1 .news .data {
  font-weight: 300;
  font-size: 18px;
  margin-bottom: 10px;
}
@media screen and (max-width: 980px) {
  #cont1 .news .data {
    font-size: 14px;
    margin-bottom: 0;
  }
}
#cont1 .news .data .tag {
  border-radius: 20px;
  background: #00B7BD;
  color: #fff;  
  display: inline-block;
  text-align: center;
  line-height: 1.4;
  width: 160px;
  margin-left: 10px;
  font-size: 14px;
  font-family: 'Noto Sans JP';
  padding: 2px 0;
}
@media screen and (max-width: 980px) {
  #cont1 .news .data .tag {
    font-size: 12px;
    width: auto;
    padding: 2px 20px;
    margin-left: 0;
  }
}
#cont1 .news ul {
  flex-basis: calc(100% - 282px);
}
@media screen and (max-width: 980px) {
  #cont1 .news ul {
    flex-basis: calc(60% - 40px);
    line-height: 1.8;
  }
}
#cont1 .news .btn {
  width: 40px;
}

/* フィルターボタン */
.filter-buttons {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 980px) {
  .filter-buttons {
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
  }
}
.filter-buttons button {
  cursor: pointer;
  width: 180px;
  margin-bottom: 20px;
  border: 1px solid #E3E3E3;
  box-shadow: 0px 0px 30px 0px #0000000D;
  color: #00B7BD;
  background-color: #fff;
}
@media screen and (max-width: 980px) {
  .filter-buttons button {
    flex-basis: 48%;
    width: 48%;
    margin-bottom: 0;
    font-size: 14px;
  }
}
.filter-buttons button:hover {
  background: linear-gradient(92.28deg, #60A2D8 0%, #5DD8DA 100%);
  color: #fff;
}
.filter-buttons button.active {
  background: linear-gradient(92.28deg, #60A2D8 0%, #5DD8DA 100%);
  color: #fff;
}

/*--  filter  --*/

.news-item {
  display: initial;
}
.hidden {
  display: none;
}

/*--  pagination  --*/

.pagination {
  margin-top: 20px;
  text-align: center;
}

.pagination button {
  background-color: #fff;
  border: 1px solid #E3E3E3;
  margin: 0 4px;
  cursor: pointer;
  box-shadow: 0px 0px 30px 0px #0000000D;
  font-size: 16px;
  color: #00B7BD;
  border-radius: 20px;
  padding: 10px 16px;
}

.pagination button.active {
  background: linear-gradient(92.28deg, #60A2D8 0%, #5DD8DA 100%);
  color: #fff;
}