@charset "utf-8";
/* CSS Document */
* {
  box-sizing: border-box;
}
a {
  color: #333;
}
main#category_main {
  margin: 150px auto 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 73%;
  align-items: flex-start;
}
main#category_main h1 {
  width: 100%;
  text-align: center;
  margin-bottom: 30px;
}
section.articles_index {
  width: 73%;
}
section.articles_index .articles_box {
  width: 100%;
  margin-bottom: 150px;
  position: relative;
}
section.articles_index .articles_box:last-child {
  margin-bottom: 0;
}
section.articles_index h2 {
  font-size: 30px;
  font-family: "Sawarabi Mincho", serif;
  margin-bottom: 30px;
}
section.articles_index .articles_box p {
  font-size: 15px;
  line-height: 1.5em;
}
time.date {
  /* float: right; */
  /* transform: translate(0, -30px); */
  font-weight: bold;
  position: absolute;
  right: 0;
  top: 15px;
}
.articles_index_thumbnail {
  width: 100%;
  margin-bottom: 60px;
  display: inline-block;
}
.articles_index_thumbnail figure {
  margin-top: 0;
  width: 100%;
}
figure img {
  width: 100%;
  height: auto;
  display: block;
}
#sidebar {
  width: 23%;
  margin: 0;
}
#sidebar h2 {
  font-size: 20px;
  border-bottom: 2px solid #333;
  margin-bottom: 25px;
  padding-bottom: 10px;
  font-weight: bold;
}
#sidebar ul {
  margin-bottom: 60px;
}
#sidebar ul li {
  font-size: 15px;
}
#pager_navigation {
  width: 100%;
  margin-top: 80px;
}
.news_link_l.sp {
  display: none;
}
#pager_navigation.sp {
  display: none;
}
#pager_navigation.pc {
  display: block;
}
@media screen and (max-width: 1200px) {
  main#category_main {
    width: 100%;
    align-items: flex-start;
    padding: 0 20px;
  }
  section.articles_index {
    width: 73%;
  }
}
@media screen and (max-width: 768px) {
  main#category_main {}
  #sidebar {
    width: 100%;
    margin-top: 100px;
  }
  section.articles_index {
    width: 100%;
  }
  time.date {
    float: right;
    transform: translate(0, -30px);
    font-weight: bold;
    /* position: absolute; */
    /* right: 0; */
    top: 15px;
  }
  #sidebar ul {
    display: block !important;
  }
  #pager_navigation.sp {
    display: block;
  }
  #pager_navigation.pc {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  section.articles_index h2 {
    font-size: 25px;
  }
  .news_link_l.sp {
    display: block;
  }
  .news_link_l a {
    color: #ccc;
    font-size: 17px;
  }
  #pager_navigation.sp {
    display: block;
  }
  #pager_navigation.pc {
    display: none;
  }
}