body.blog header {
  margin-bottom: 4.8rem;
}
@media screen and (max-width: 768px) {
  body.blog header {
    margin-bottom: 3.2rem;
  }
}
body.blog header h1 {
  margin-bottom: 8rem;
}
@media screen and (max-width: 768px) {
  body.blog header h1 {
    margin-bottom: 4rem;
  }
}
body.blog header .filter {
  background: #f9f9f9;
  border-radius: 1rem;
  overflow: hidden;
}
body.blog header .filter h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 6rem;
  background: #1d1d1d;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  color: #fff;
}
@media screen and (max-width: 768px) {
  body.blog header .filter h2 {
    position: relative;
    justify-content: start;
    font-size: 1.8rem;
    padding: 0 3.2rem;
  }
}
body.blog header .filter h2::before, body.blog header .filter h2::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 2.3rem;
  margin: auto;
  width: 1.8rem;
  height: 0.2rem;
  background: #fff;
  border-radius: 0.1rem;
  transition: transform 0.3s ease-in-out;
}
body.blog header .filter h2.close::before {
  transform: rotate(-90deg);
}
body.blog header .filter form {
  padding: 3.2rem 7.2rem;
}
@media screen and (max-width: 768px) {
  body.blog header .filter form {
    padding: 3.2rem 2.4rem 4rem;
  }
}
body.blog header .filter form .left-lined {
  margin-bottom: 1.8rem;
}
@media screen and (max-width: 768px) {
  body.blog header .filter form .left-lined {
    font-size: 1.6rem;
    margin-bottom: 1.6rem;
  }
}
body.blog header .filter form * + .left-lined {
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  body.blog header .filter form * + .left-lined {
    margin-top: 3.2rem;
  }
}
body.blog header .filter form .dropdown {
  position: relative;
  width: 35rem;
  height: 4.5rem;
  background: #f1f1f1;
}
@media screen and (max-width: 768px) {
  body.blog header .filter form .dropdown {
    width: 100%;
  }
}
body.blog header .filter form .dropdown::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 2rem;
  margin: auto;
  width: 1rem;
  height: 0.7rem;
  background: url("../img/common/select_arrow.svg") center/contain no-repeat;
}
body.blog header .filter form .dropdown select {
  width: 100%;
  height: 100%;
  padding: 0 2rem;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}
body.blog header .filter form .categories {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.6rem 2.4rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  body.blog header .filter form .categories {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem 2.5rem;
  }
}
body.blog header .filter form .categories > li:has(input[value=all]:checked) ~ li {
  opacity: 0.5;
  pointer-events: none;
}
body.blog header .filter form .categories > li label {
  display: flex;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  body.blog header .filter form .categories > li label {
    align-items: start;
    line-height: 1;
    letter-spacing: 0;
  }
}
body.blog header .filter form .categories > li label::before {
  content: "";
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  margin-top: 0.6rem;
  background: #ffffff;
  border: 1px solid #1d1d1d;
  border-radius: 0.2rem;
}
@media screen and (max-width: 768px) {
  body.blog header .filter form .categories > li label::before {
    margin-top: 0.2rem;
  }
}
body.blog header .filter form .categories > li label:has(input:checked)::before {
  background: #1d1d1d url("../img/common/check.svg") center/0.9rem auto no-repeat;
}
body.blog header .filter form .categories > li label input {
  display: none;
}
body.blog header .filter form .button-wrapper {
  justify-content: center;
}
body.blog header .filter form input[type=submit] {
  display: none;
}
@media screen and (max-width: 768px) {
  body.blog main .article-card .text .date {
    margin-bottom: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  body.blog main .article-card .text .title a {
    font-size: 2rem;
  }
}
body.blog main .pagination {
  margin-top: 4.8rem;
}
@media screen and (max-width: 768px) {
  body.blog main .pagination {
    margin-top: 4rem;
  }
}
body.blog main .pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.6rem;
}
body.blog main .pagination .nav-links .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  border-radius: 0.5rem;
  border: 1px solid #8a8a8a;
  color: #1d1d1d;
  font-family: "Albert Sans", sans-serif;
  font-weight: 700;
  line-height: 1;
}
body.blog main .pagination .nav-links .page-numbers.current {
  background: #1d1d1d;
  border: 1px solid #1d1d1d;
  color: #fff;
}
body.blog main .pagination .nav-links .page-numbers.prev, body.blog main .pagination .nav-links .page-numbers.next {
  font-size: 0;
}
body.blog main .pagination .nav-links .page-numbers.prev::before, body.blog main .pagination .nav-links .page-numbers.next::before {
  content: "";
  width: 0.8rem;
  height: 1.4rem;
  background: url("../img/common/pagination_arrow_next.svg") center/contain no-repeat;
}
body.blog main .pagination .nav-links .page-numbers.prev::before {
  transform: rotate(180deg);
}
body.blog main .pagination .nav-links .page-numbers.disabled::before {
  opacity: 0.5;
}

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