.archives > * + * {
  margin-top: 60px;
}

.archive {
  container-type: inline-size;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 300px 40px 1fr;
  grid-template-columns: 300px 1fr;
  gap: 40px;
}
@media screen and (max-width: 1320px) {
  .archive {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .archive__img {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 306px;
            flex: 1 1 306px;
  }
  .archive__img img {
    width: 100%;
  }
  .archive__entity {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 50%;
            flex: 1 0 50%;
  }
}
@media screen and (max-width: 768px) {
  .archive {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .archive__entity {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.archive a {
  display: contents;
  color: inherit;
}
.archive__entity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.archive__meta {
  margin-bottom: 1em;
}
.archive__meta time {
  display: block;
  font-size: 0.85rem;
  margin-top: 1.5em;
}
.archive__heading {
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  margin-bottom: 0.5em;
}
.archive__text {
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-size: 1.1rem;
}
.archive__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.7em;
}
.archive__tags .tag {
  border-radius: 1em;
  display: inline-block;
  background-color: #b39149;
  color: #fff;
  font-size: 0.9rem;
  line-height: 1;
  padding: 0.35em 1em;
}

* + .pagination {
  margin-top: 80px;
}

.pagination {
  font-size: 1.1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}
.pagination a {
  color: #000;
  width: 24px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.pagination a.current {
  background: #484848;
  color: #fff;
}
.pagination .previous span,
.pagination .next span {
  --w: 4px;
  content: "";
  width: 10px;
  height: 19px;
  background: #484848;
}
.pagination .previous span {
  clip-path: polygon(calc(100% - var(--w) / 2) 0, 100% calc(var(--w) / 2), var(--w) 50%, 100% calc(100% - var(--w) / 2), calc(100% - var(--w) / 2) 100%, 0 50%);
}
.pagination .next span {
  clip-path: polygon(0 calc(var(--w) / 2), calc(var(--w) / 2) 0, 100% 50%, calc(var(--w) / 2) 100%, 0 calc(100% - var(--w) / 2), calc(100% - var(--w)) 50%);
}

.pageContainer {
  --gap: min(5vw, 60px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: var(--gap);
  margin-block: 30px 180px;
}
@media screen and (max-width: 768px) {
  .pageContainer {
    --gap: 60px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.mainContents {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.sidebarContents {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 min(25%, 305px);
          flex: 0 1 min(25%, 305px);
}
.sidebarContents > * + * {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .sidebarContents > * + * {
    margin-top: 30px;
  }
}

.sidebarWidget__heading {
  font-size: 1rem;
  color: #001b4d;
  background-color: #f5f5f7;
  font-weight: 500;
  padding: 10px;
  margin-bottom: 0;
}
.sidebarWidget__list {
  border-top: 1px solid #bbbbbb;
}
.sidebarWidget__list > li {
  list-style: none;
  border-bottom: 1px solid #bbbbbb;
}
.sidebarWidget__list > li a {
  display: block;
  padding-block: 10px;
  line-height: 2;
  font-size: 0.95rem;
  color: #000;
}
.sidebarWidget__list > li a.link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5em;
  position: relative;
}
.sidebarWidget__list > li a.link::before {
  content: "";
  width: 0.5em;
  height: 0.5em;
  background: currentColor;
  position: relative;
  top: 0.75em;
  left: 0;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.sidebarWidget__list > li a:hover {
  opacity: 0.7;
}
.sidebarWidget__list > li a:hover.link::before {
  left: 0.1em;
}

.searchform {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.searchform input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border: 1px solid #a4a4a4;
  border-radius: 3px;
  padding: 6px;
}
.searchform button {
  border-radius: 3px;
  background: #f5f5f7;
  border: 1px solid #a4a4a4;
  min-width: 60px;
  width: 60px;
}

.formedSelect {
  color: #001b4d;
  background-color: #f5f5f7;
  position: relative;
}
.formedSelect::after {
  --w: 2px;
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  width: 0.9em;
  height: 0.5em;
  background: #001b4d;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: none;
  clip-path: polygon(calc(var(--w) / 2) 0, 50% calc(100% - var(--w)), calc(100% - var(--w) / 2) 0, 100% calc(var(--w) / 2), 50% 100%, 0 calc(var(--w) / 2));
}
.formedSelect select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  width: 100%;
  font-size: 1rem;
  color: #001b4d;
  background-color: #f5f5f7;
  font-weight: 500;
  padding: 10px;
}
.formedSelect select option {
  font-size: 0.95em;
  color: #000;
}

.postThumbnail {
  text-align: center;
  margin-bottom: 40px;
}
.postThumbnail img {
  max-width: 100%;
}

.postBody > * + * {
  margin-top: 2em;
  line-height: 2.3;
}
.postBody + .archive__tags {
  margin-top: 70px;
}

.postFooter {
  margin-top: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 6px;
}
.postFooter li {
  list-style: none;
}
.postFooter a {
  color: #000;
  padding: 5px;
  line-height: 1.23;
}
@media screen and (max-width: 768px) {
  .postFooter a {
    padding-inline: 15px;
  }
}
.postFooter a:hover {
  opacity: 0.7;
}
.postFooter__prev a, .postFooter__next a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
.postFooter__prev a::before, .postFooter__next a::before {
  --w: 4px;
  content: "";
  display: block;
  background-color: #222;
  width: 11px;
  height: 20px;
  clip-path: polygon(calc(100% - var(--w) / 2) 0, 100% calc(var(--w) / 2), var(--w) 50%, 100% calc(100% - var(--w) / 2), calc(100% - var(--w) / 2) 100%, 0 50%);
}
.postFooter__next a::before {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.mainHeading {
  font-size: 1.15rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 80px;
}
.mainHeading__text {
  font-weight: 500;
  margin-bottom: 0px;
}