@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700&display=swap");
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: url("../font/NotoSansJP-Regular-after.woff") format("woff"), url("../font/NotoSansJP-Regular-after.eot") format("eot");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  src: url("../font/NotoSansJP-Black-after.woff") format("woff"), url("../font/NotoSansJP-Black-after.eot") format("eot");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  src: url("../font/NotoSansJP-Bold-after.woff") format("woff"), url("../font/NotoSansJP-Bold-after.eot") format("eot");
  font-display: swap;
}
#form {
  width: 100%;
  max-width: 400px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#form #s-box {
  width: 78.5%;
  height: auto;
  padding: 0 6px;
  border-radius: 2px;
  border: solid 3px #eaeaea;
  outline: 0;
  font-size: 1.2rem;
  line-height: 2.2;
}
#form #s-btn-area {
  width: 20%;
  height: auto;
  background: none;
  color: #666;
  border: none;
  font-size: 20px;
  outline: 0;
  background-color: black;
  position: relative;
  right: 0;
  bottom: 0;
  border-radius: 5px;
  font-size: 1.2rem;
  color: #fff;
  line-height: 31px;
  text-align: center;
}
.category-list-title {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.category-list {
  width: 100%;
  display: flex;
  justify-content: start;
  align-items: center;
  margin: 0 0 10px;
}
@media screen and (max-width: 1000px) {
  .category-list {
    justify-content: space-around;
    flex-wrap: wrap;
  }
}
.category-list li {
  width: 23.5%;
  min-width: 170px;
  margin-bottom: 8px;
  margin-right: 10px;
}
@media screen and (max-width: 1000px) {
  .category-list li {
    width: 48%;
    min-width: unset;
  }
}
.category-list li img {
  width: 35px;
  margin-right: 3px;
}
@media screen and (max-width: 600px) {
  .category-list li img {
    width: 24px;
  }
}
.category-list li span {
  display: contents;
}
.category-list li a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 10px 8px 0px;
  border-radius: 30px;
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
}
@media screen and (max-width: 800px) {
  .category-list li a {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 600px) {
  .category-list li a {
    padding: 6px 10px 6px 0px;
  }
}
.category-list li:first-of-type a {
  background-color: #fd9289;
}
.category-list li:nth-child(2) a {
  background-color: #ffbc57;
}
.category-list li:nth-child(3) a {
  background-color: #57bcb2;
}
.category-list li:last-of-type a {
  background-color: #6eb9f7;
}

.subcategory-list {
  margin-bottom: 10px;
}
.subcategory-list ul {
  display: flex;
}
@media screen and (max-width: 600px) {
  .subcategory-list ul {
    flex-wrap: wrap;
  }
}
.subcategory-list ul li {
  width: -moz-fit-content;
  width: fit-content;
  background: #b9b9b9;
  color: #fff;
  margin-right: 11px;
  padding: 0 20px;
  font-size: 1.8rem;
  border-radius: 20px;
  white-space: nowrap;
}
@media screen and (max-width: 800px) {
  .subcategory-list ul li {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 600px) {
  .subcategory-list ul li {
    margin-bottom: 4px;
  }
}

.category-title {
  display: flex;
  font-size: 2rem;
  font-weight: bold;
  align-items: center;
  margin: 0 0 10px;
  padding-bottom: 4px;
  border-bottom: 1px dashed;
}
.category-title img {
  width: 4rem;
  height: auto;
  margin-right: 5px;
}

.tag-list {
  margin-bottom: 20px;
}
.tag-list h2 {
  margin-bottom: 5px;
}
.tag-list ul {
  display: flex;
}
@media screen and (max-width: 1000px) {
  .tag-list ul {
    flex-wrap: wrap;
  }
}
.tag-list ul li {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.4rem;
  color: gray;
  margin-right: 11px;
  border: 1px solid gray;
  border-radius: 20px;
}
@media screen and (max-width: 1000px) {
  .tag-list ul li {
    margin-bottom: 4px;
  }
}
.tag-list ul li a {
  display: inline-block;
  padding: 0 15px 0 12px;
}
.tag-list ul li a::before {
  content: "# ";
}

.post-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media screen and (max-width: 1000px) {
  .post-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.post-list .post-item {
  position: relative;
  width: 100%;
  padding: 4.5% 5%;
  margin: 0 20px 20px 0;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.16);
  border-top: 5px solid #0d5da2;
}
.post-list .post-item .post-link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.post-list .post-item a:hover {
  opacity: 0.8;
}
.post-list .post-item .post-thumbnail img {
  width: 100%;
}
.post-list .post-item .post-category {
  margin: 10px 0;
}
.post-list .post-item .post-category .category-name {
  padding: 1px 5px;
  border: 1px solid;
  border-radius: 5px;
  color: #fff;
}
@media screen and (max-width: 600px) {
  .post-list .post-item .post-category .category-name {
    font-size: 1.2rem;
  }
}
.post-list .post-item .post-title {
  margin-bottom: 5px;
  font-size: 1.45rem;
  font-weight: bold;
}
.post-list .post-item p.content {
  font-size: 1.2rem;
  line-height: 1.5;
}
.post-list .post-item .tag-wrap {
  width: 100%;
  border: 1px dashed gray;
  border-right: none;
  border-left: none;
}
.post-list .post-item .post-tags {
  display: contents;
  margin-top: 5px;
}
.post-list .post-item .post-tags span.tag-name {
  margin-right: 3px;
  line-height: 2;
  color: gray;
}
.post-list .post-item .post-tags span.tag-name::before {
  content: "#";
}
.post-list .post-item span.date {
  display: block;
  width: 100%;
  margin-top: 5px;
  padding: 3px 0 5px 20px;
  background-image: url(../img/icon/time.png);
  background-position: left 0px center;
  background-repeat: no-repeat;
  background-size: 16px 16px;
}

.area-sidebar-wrap {
  display: flex;
  justify-content: space-between;
  margin: 15px auto 0;
}
@media screen and (max-width: 800px) {
  .area-sidebar-wrap {
    display: block;
  }
}
.area-sidebar-wrap .post-area {
  width: 76.5%;
}
@media screen and (max-width: 800px) {
  .area-sidebar-wrap .post-area {
    width: 100%;
  }
}
.area-sidebar-wrap .main-sidebar {
  width: 20.5%;
}
@media screen and (max-width: 800px) {
  .area-sidebar-wrap .main-sidebar {
    width: 100%;
    margin-top: 50px;
  }
}

#sidebar h2 {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  padding: 0.4em 0.7em 0.4em 0em;
  background-color: #ffffff;
  font-size: 2rem;
  font-weight: bold;
}
#sidebar h2::before {
  display: inline-block;
  width: 5px;
  height: 1.5em;
  margin-right: 0.5em;
  background-color: #0d5da2;
  content: "";
}
#sidebar h3 {
  margin: 0 0 15px !important;
  line-height: 2.2;
  border-top: 3px solid #0d5da2;
  border-bottom: 2px dotted #0d5da2;
}
#sidebar .search-wrap {
  margin-bottom: 10px;
}
#sidebar .posts {
  margin-bottom: 50px;
}
#sidebar .posts.popular-posts .popular-post .thumbnail {
  position: relative;
}
#sidebar .posts.popular-posts .popular-post .thumbnail .ranking-number {
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: #e60033;
  color: #fff;
  padding: 4px 8px;
  font-weight: bold;
}
#sidebar .posts h3 {
  margin: 15px 0;
  font-size: 1.8rem;
  font-weight: bold;
}
@media screen and (max-width: 600px) {
  #sidebar ul {
    width: 100%;
  }
}
#sidebar ul li {
  margin-bottom: 15px;
}
@media screen and (max-width: 800px) {
  #sidebar ul li a {
    display: flex;
    justify-content: space-between;
  }
  #sidebar ul li a .thumbnail {
    width: 36.5%;
  }
  #sidebar ul li a .post-meta {
    width: 61.5%;
  }
}
#sidebar ul li .post-category .category-name {
  padding: 1px 5px;
  border: 1px solid;
  border-radius: 5px;
  font-size: 1.1rem;
  color: #fff;
}
#sidebar ul li h4.title {
  margin-bottom: 2px;
  font-size: 1.4rem;
  line-height: 1.5;
}
#sidebar ul li .excerpt {
  font-size: 1rem;
}
#sidebar img {
  width: 100%;
}
#sidebar img.pc {
  display: block;
  margin: 0 0 20px;
}
@media screen and (max-width: 800px) {
  #sidebar img.pc {
    display: none;
  }
}
#sidebar img.sp {
  display: none;
}
@media screen and (max-width: 800px) {
  #sidebar img.sp {
    display: block;
    max-width: 500px;
    margin: 30px 0;
  }
}
#sidebar .article_latest ul.article_latest_list {
  margin: 10px 0 20px;
}
#sidebar .article_latest ul.article_latest_list li {
  display: block;
  width: 100%;
  margin-bottom: 12px;
}
@media screen and (max-width: 1000px) {
  #sidebar .article_latest ul.article_latest_list li {
    display: flex;
    max-width: unset;
    justify-content: space-between;
  }
}
#sidebar .article_latest ul.article_latest_list li .latest_image {
  width: 100%;
}
@media screen and (max-width: 1000px) {
  #sidebar .article_latest ul.article_latest_list li .latest_image {
    width: 38%;
  }
}
#sidebar .article_latest ul.article_latest_list li .latest_text_box {
  width: 100%;
  margin-top: 3px;
}
@media screen and (max-width: 1000px) {
  #sidebar .article_latest ul.article_latest_list li .latest_text_box {
    width: 60%;
  }
}
#sidebar .article_latest ul.article_latest_list li .latest_text_box .latest_title a {
  display: block;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.05rem;
}
#sidebar .article_latest ul.article_latest_list li .latest_meta {
  display: block;
  font-size: 1.2rem;
  line-height: 1;
}
#sidebar .wp-block-categories-list li {
  margin-bottom: 10px;
  position: relative;
  padding: 0px 0px 0px 1em;
}
#sidebar .wp-block-categories-list li::before {
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
  width: 0px;
  height: 0px;
  border: 0.3em solid transparent;
  border-left: 0.4em solid #3388dd;
  content: "";
}/*# sourceMappingURL=category.css.map */