/***  color ***/
/***  border ***/
/*** font ***/
/*** sp size ***/
#filter {
  padding: 100px 0 25px;
}
#filter .layout {
  max-width: 1000px;
  padding: 30px;
  border-radius: 20px;
  background-color: #f6f6f6;
}
#filter .layout h3 {
  font-size: 20px;
  padding-bottom: 20px;
}
#filter .layout .filterTags {
  display: flex;
  justify-content: space-between;
}
#filter .layout .filterTags .tagList {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
#filter .layout .filterTags .newsTag input {
  display: none;
}
#filter .layout .filterTags .newsTag span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 20px;
  color: #003C87;
  cursor: pointer;
  border: 1px solid #003C87;
  background-color: #fff;
  border-radius: 1000px;
}
#filter .layout .filterTags .newsTag input[type=checkbox]:checked + span {
  color: #fff;
  background-color: #003C87;
}
#filter .layout .filterTags .filterActions {
  flex-shrink: 0;
  display: flex;
  gap: 10px;
  margin-left: 20px;
  padding-left: 20px;
  border-left: 1px solid #ccc;
}
#filter .layout .filterTags .filterActions button[type=submit] {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 20px;
  color: #fff;
  cursor: pointer;
  border: 1px solid #003C87;
  background-color: #003C87;
  border-radius: 1000px;
}
#filter .layout .filterTags .filterActions .reset {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 20px;
  color: #003C87;
  cursor: pointer;
  border: 1px solid #003C87;
  background-color: #fff;
  border-radius: 1000px;
}
@media screen and (max-width: 750px) {
  #filter {
    padding: 8vw 0 6.67vw;
  }
  #filter .layout {
    max-width: 95%;
    padding: 5.33vw;
  }
  #filter .layout h3 {
    font-size: 4.27vw;
    padding-bottom: 2.67vw;
  }
  #filter .layout .filterTags {
    display: block;
  }
  #filter .layout .filterTags .tagList {
    gap: 2.67vw;
  }
  #filter .layout .filterTags .newsTag span {
    padding: 1.07vw 5.33vw;
    font-size: 3.2vw;
  }
  #filter .layout .filterTags .filterActions {
    justify-content: center;
    gap: 2.67vw;
    margin: 5.33vw 0 0;
    padding: 5.33vw 0 0;
    border-top: 1px solid #ccc;
    border-left: none;
  }
  #filter .layout .filterTags .filterActions button[type=submit] {
    padding: 1.07vw 5.33vw;
    font-size: 3.2vw;
  }
  #filter .layout .filterTags .filterActions .reset {
    padding: 1.07vw 5.33vw;
    font-size: 3.2vw;
  }
}

#newsTable {
  padding-bottom: 50px;
}
#newsTable .layout {
  padding: 0;
  max-width: 1000px;
}
#newsTable .layout .newsBox {
  padding-bottom: 50px;
}
#newsTable .layout .newsBox a {
  width: 100%;
  padding: 25px 0;
  border-bottom: 1px solid #ccc;
  display: flex;
  align-items: center;
  position: relative;
}
#newsTable .layout .newsBox a::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 20px;
  height: 20px;
  margin: auto;
  background: url("../img/icon_arrow.svg") no-repeat center;
  background-size: 100% 100%;
}
#newsTable .layout .newsBox .newsDate {
  margin-right: 30px;
}
#newsTable .layout .newsBox .newsTag {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 20px;
  color: #003C87;
  border: 1px solid #003C87;
  background-color: #fff;
  border-radius: 1000px;
  margin-right: 30px;
}
#newsTable .layout .newsBox .newsTitle {
  display: inline-block;
  width: 70%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 750px) {
  #newsTable {
    padding-bottom: 5.33vw;
  }
  #newsTable .layout {
    padding: 0 20px;
  }
  #newsTable .layout .newsBox {
    padding-bottom: 10.67vw;
    display: block;
    font-size: 3.73vw;
  }
  #newsTable .layout .newsBox a {
    display: inline-block;
    padding: 2.67vw 0;
  }
  #newsTable .layout .newsBox a::after {
    width: 4.8vw;
    height: 4.8vw;
  }
  #newsTable .layout .newsBox .newsDate {
    margin-right: 10px;
  }
  #newsTable .layout .newsBox .newsTag {
    display: inline-block;
    padding: 0.53vw 2.67vw;
    font-size: 3.2vw;
    margin: 0 0 1.33vw 0;
  }
  #newsTable .layout .newsBox .newsTitle {
    width: 94%;
    white-space: normal;
  }
}

#newsData {
  padding: 50px 0;
}
#newsData .newsThumb {
  text-align: center;
}
#newsData .newsMeta {
  display: flex;
  max-width: 1000px;
  margin: 0 auto 30px;
}
#newsData .newsMeta .newsDate {
  margin-right: 20px;
  line-height: 2;
  font-size: 12px;
  color: #666;
}
#newsData .newsMeta .newsCategory {
  display: flex;
}
#newsData .newsMeta .newsCategory li {
  line-height: 1;
}
#newsData .newsContent {
  max-width: 1000px;
  margin: 0 auto;
  line-height: 1.8;
}
#newsData .newsContent a {
  color: #003C87;
  text-decoration: underline;
}
@media screen and (max-width: 750px) {
  #newsData .newsMeta {
    margin-bottom: 8vw;
  }
  #newsData .newsMeta .newsDate {
    margin-right: 5.33vw;
    font-size: 3.2vw;
  }
  #newsData .newsMeta .newsCategory {
    display: flex;
  }
  #newsData .newsMeta .newsCategory li {
    line-height: 1;
  }
}

/*# sourceMappingURL=news.css.map */
