@font-face {
  font-display: swap;
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: url("../../fonts/NotoSans/noto-sans-jp-v52-japanese-regular.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 900;
  src: url("../../fonts/NotoSans/noto-sans-jp-v52-japanese-900.woff2") format("woff2");
}
html {
  scroll-behavior: smooth;
}

#container {
  position: relative;
}

main {
  margin-top: calc(var(--header-height) * 1.5);
}

.page-title {
  text-align: center;
  width: 100%;
  height: 30vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-title h2 {
  font-size: 4em;
  font-weight: bold;
  color: white;
}
.page-title .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
.page-title .image .image-box {
  position: relative;
  width: 100%;
  height: 100%;
}
.page-title .image .image-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-title .image .image-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.column {
  margin-top: calc(var(--header-height) * 1.5);
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 756px) {
  .column {
    display: flex;
  }
}
.column .post-list {
  width: 100%;
}
@media (min-width: 756px) {
  .column .post-list {
    flex: 1;
    margin-right: 5%;
  }
}
.column .post-list-wrapper .label-block {
  display: flex;
  flex-wrap: wrap;
}
.column .post-list-wrapper .label-block .selected-label {
  display: inline-flex;
  font-size: 1.4em;
  line-height: 1.2;
  font-weight: bold;
  background: #333;
  color: white;
  padding: 0.5em 0.2em 0.5em 1em;
  border-radius: 10px;
  align-items: center;
  transition: opacity 0.5s;
  text-transform: uppercase;
  margin-right: 1em;
}
@media (min-width: 756px) {
  .column .post-list-wrapper .label-block .selected-label {
    font-size: 1.8em;
  }
}
.column .post-list-wrapper .label-block .selected-label:hover {
  opacity: 0.6;
}
.column .post-list-wrapper .label-block .selected-label .delete-button {
  margin-left: 0.5em;
  display: flex;
  align-items: center;
}
.column .post-list-wrapper .label-block .selected-label .delete-button svg {
  width: 1.4em;
  height: 1.4em;
  fill: white;
}
.column .post-list-wrapper .label-block .delete-all {
  margin-left: 1em;
  font-weight: bold;
  font-size: 1.2em;
  transition: color 0.5s;
}
@media (min-width: 756px) {
  .column .post-list-wrapper .label-block .delete-all {
    font-size: 1.6em;
  }
}
.column .post-list-wrapper .label-block .delete-all:hover {
  color: red;
}
.column .post-list .sort {
  margin-top: 3em;
  display: flex;
  justify-content: end;
}
.column .post-list .sort .sort-wrapper .sort-title {
  text-align: right;
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 0.5em;
}
@media (min-width: 756px) {
  .column .post-list .sort .sort-wrapper .sort-title {
    font-size: 1.6em;
  }
}
.column .post-list .sort .sort-wrapper .sort-button {
  position: relative;
  font-size: 1.4em;
}
@media (min-width: 756px) {
  .column .post-list .sort .sort-wrapper .sort-button {
    font-size: 1.6em;
  }
}
.column .post-list .sort .sort-wrapper .sort-button::before, .column .post-list .sort .sort-wrapper .sort-button::before {
  position: absolute;
  content: "";
  pointer-events: none;
}
.column .post-list .sort .sort-wrapper .sort-button::before {
  right: 0;
  display: inline-block;
  width: 2.8em;
  height: 2.8em;
  border-radius: 0 3px 3px 0;
  background-color: #333;
  content: "";
}
.column .post-list .sort .sort-wrapper .sort-button::after {
  position: absolute;
  top: 50%;
  right: 1.4em;
  transform: translate(50%, -50%) rotate(45deg);
  width: 10px;
  height: 10px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  content: "";
}
.column .post-list .sort .sort-wrapper .sort-button select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  min-width: 10em;
  height: 2.8em;
  padding: 0.4em 3.6em 0.4em 0.8em;
  border: 2px solid #333;
  border-radius: 3px;
  color: #333333;
  font-weight: bold;
  cursor: pointer;
}
.column .post-list .sort .sort-wrapper .sort-button select:focus {
  outline: 1px solid #333;
}
.column .post-list .post-list {
  margin-top: 5em;
}
.column .post-list .post-list-title {
  position: relative;
  margin-bottom: 4em;
  padding: 0.8em;
  border-bottom: solid 3px gray;
}
@media (min-width: 756px) {
  .column .post-list .post-list-title {
    border-bottom: solid 5px gray;
  }
}
.column .post-list .post-list-title::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 20%;
  height: 3px;
  background: #333;
}
@media (min-width: 756px) {
  .column .post-list .post-list-title::before {
    height: 5px;
  }
}
.column .post-list .post-list-title h1 {
  font-size: 2.4em;
  font-weight: bold;
  text-transform: uppercase;
}
@media (min-width: 756px) {
  .column .post-list .post-list-title h1 {
    font-size: 3em;
  }
}
.column .post-list .post-list .no-data {
  font-size: 1.6em;
}
.column .post-list .post-list ul li {
  padding-bottom: 2em;
  border-bottom: solid 1px rgb(240, 240, 238);
  margin-bottom: 8em;
}
.column .post-list .post-list ul li:first-child {
  margin-top: 8em;
}
@media (min-width: 756px) {
  .column .post-list .post-list ul li {
    display: flex;
    align-items: stretch;
  }
}
.column .post-list .post-list ul li .thumbnail {
  width: 100%;
}
@media (min-width: 756px) {
  .column .post-list .post-list ul li .thumbnail {
    width: 40%;
  }
}
.column .post-list .post-list ul li .thumbnail a {
  display: block;
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
}
.column .post-list .post-list ul li .thumbnail a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s;
}
.column .post-list .post-list ul li .thumbnail a img:hover {
  transform: scale(1.1);
}
.column .post-list .post-list ul li .text-wrap {
  margin-top: 1em;
}
@media (min-width: 756px) {
  .column .post-list .post-list ul li .text-wrap {
    flex: 1;
    margin-top: 0;
    margin-left: 5%;
  }
}
.column .post-list .post-list ul li .text-wrap .title h3 {
  font-size: 2em;
  font-weight: bold;
  line-height: 1.3;
  transition: color 0.5s;
  cursor: pointer;
}
@media (min-width: 756px) {
  .column .post-list .post-list ul li .text-wrap .title h3 {
    font-size: 2em;
  }
}
.column .post-list .post-list ul li .text-wrap .title h3:hover {
  color: red;
}
.column .post-list .post-list ul li .text-wrap .source {
  margin-top: 1.5em;
}
.column .post-list .post-list ul li .text-wrap .source p {
  font-size: 1.2em;
  font-weight: bold;
  color: gray;
}
@media (min-width: 756px) {
  .column .post-list .post-list ul li .text-wrap .source p {
    font-size: 1.2em;
  }
}
.column .post-list .post-list ul li .text-wrap .date {
  margin-top: 0.5em;
}
.column .post-list .post-list ul li .text-wrap .date p {
  font-size: 1em;
  font-weight: bold;
  color: gray;
}
.column .post-list .paging-wrapper {
  margin-top: 6em;
}
.column .post-list .paging-wrapper ul {
  display: flex;
  justify-content: center;
}
.column .post-list .paging-wrapper ul li {
  margin: 0 0.5em;
}
.column .post-list .paging-wrapper ul li a, .column .post-list .paging-wrapper ul li span {
  display: block;
  padding: 0.5em 1em;
  font-size: 1.6em;
  font-weight: bold;
  border-radius: 5px;
  background: whitesmoke;
}
@media (min-width: 756px) {
  .column .post-list .paging-wrapper ul li a, .column .post-list .paging-wrapper ul li span {
    font-size: 2em;
  }
}
.column .post-list .paging-wrapper ul li span.active {
  color: white;
  background: #333;
}
.column aside {
  width: 100%;
  margin-top: 10em;
}
@media (min-width: 756px) {
  .column aside {
    width: 30%;
    margin-top: 0;
  }
}
.column aside .side-wrapper section {
  margin-top: 4em;
}
.column aside .side-wrapper section:first-child {
  margin-top: 0em;
}
.column aside .side-wrapper .category, .column aside .side-wrapper .member {
  padding: 3em;
  background: whitesmoke;
}
.column aside .side-wrapper .category .title p, .column aside .side-wrapper .member .title p {
  font-size: 2.5em;
  font-weight: bold;
}
.column aside .side-wrapper .category .title p span, .column aside .side-wrapper .member .title p span {
  margin-left: 0.6em;
  font-size: 0.6em;
}
.column aside .side-wrapper .category .list, .column aside .side-wrapper .member .list {
  margin-top: 1em;
}
.column aside .side-wrapper .category .list ul, .column aside .side-wrapper .member .list ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.column aside .side-wrapper .category .list ul li, .column aside .side-wrapper .member .list ul li {
  margin: 0.5em;
  background: white;
  border-radius: 1em;
  flex: 1 1 auto;
}
.column aside .side-wrapper .category .list ul li button, .column aside .side-wrapper .member .list ul li button {
  font-weight: bold;
  display: block;
  width: 100%;
  height: 100%;
  padding: 1em;
  font-size: 1.6em;
  text-align: center;
  text-transform: uppercase;
  transition: color 0.5s;
}
.column aside .side-wrapper .category .list ul li button:hover, .column aside .side-wrapper .member .list ul li button:hover {
  color: red;
}
.column aside .side-wrapper .tags {
  padding: 3em;
  background: whitesmoke;
}
.column aside .side-wrapper .tags .title p {
  font-size: 2.5em;
  font-weight: bold;
}
.column aside .side-wrapper .tags .title p span {
  margin-left: 0.6em;
  font-size: 0.6em;
}
.column aside .side-wrapper .tags .list {
  margin-top: 1em;
}
.column aside .side-wrapper .tags .list ul {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
}
.column aside .side-wrapper .tags .list ul li {
  margin: 0.4em;
  background: white;
  border-radius: 1em;
  flex: 1 1 auto;
}
.column aside .side-wrapper .tags .list ul li button {
  font-weight: bold;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0.5em 1em;
  font-size: 1.4em;
  text-align: center;
  transition: color 0.5s;
}
.column aside .side-wrapper .tags .list ul li button:hover {
  color: red;
}

.scroll-to-top {
  position: fixed;
  right: 5%;
  bottom: 5%;
  width: 10vw;
  height: 10vw;
  max-width: 60px;
  max-height: 60px;
  background: #333;
  border-radius: 1vw;
  z-index: 10000;
  transition: 300ms;
}
.scroll-to-top a svg {
  fill: white;
}/*# sourceMappingURL=post.css.map */