.list_box {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 300px auto;
}
.nav a,
.nav .title {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav .title {
  font-weight: bold;
  font-size: 25px;
  color: #ffffff;
  background-color: #bc1d18;
}
.nav .sub_title {
  position: relative;
  font-weight: 400;
  font-size: 20px;
  color: #000000;
}
.nav .sub_title::after {
  content: ">";
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translate(0, -50%);
}
.nav .sub_title_now {
  background-color: #f09c99;
}
.lists {
  margin-left: 30px;
  min-height: 480px;
}
.lists .title {
  display: flex;
  justify-content: start;
  padding-bottom: 8px;
  border-bottom: 1px solid #7c0000;
}
.lists .title p {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 24px;
  color: #da332e;
}
.article_list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 42px;
  border-bottom: 1px solid #e8e8e8;
}
.article_list a:hover p {
  color: #ff0000;
}
.article_list .sub_title {
  display: flex;
  align-items: center;
}
.article_list .sub_title::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  background-color: #fe0000;
  border-radius: 50%;
  margin-right: 12px;
}