/* ---------------------------------------------------
	common
------------------------------------------------------ */
/* ---------------------------------------------------
		archive
------------------------------------------------------ */
.archive {
  padding: 0 0 80px;
}

.category-list {
  gap: 20px;
  font-size: 1.5rem;
  letter-spacing: 0;
  line-height: 1.2;
  justify-content: flex-start;
  text-align: center;
}
.category-list li {
  width: calc(20% - 16px);
}
.category-list li a {
  display: block;
  height: 100%;
  padding: 15px;
  border: 1px solid #BEBEBE;
}
@media (any-hover: hover) {
  .category-list li a:hover {
    background: #F6F6F6;
    opacity: 1;
  }
}
.category-list li a.current {
  background: #F6F6F6;
}

.archive-list {
  margin-top: 60px;
  gap: 30px 0;
  letter-spacing: 0.03em;
  justify-content: flex-start;
}
.archive-list .list-item {
  width: 30.5%;
  max-width: 260px;
  margin-right: 4.2%;
}
.archive-list .list-item:nth-of-type(3n), .archive-list .list-item:last-of-type {
  margin-right: 0;
}
.archive-list .list-item .eyecatch img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.archive-list .list-item .time {
  display: block;
  margin-top: 12px;
  color: #9B9B9B;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.2;
}
.archive-list .list-item .title {
  position: relative;
  margin-top: 5px;
  padding-right: 20px;
}
.archive-list .list-item .title::after {
  content: "";
  position: absolute;
  right: 5px;
  top: 50%;
  display: block;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  border-top: 1px solid #888;
  border-right: 1px solid #888;
  transform: rotate(45deg);
}

.page-navi {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 50px;
  font-size: 2rem;
  line-height: 1;
}
.page-navi .page-numbers {
  position: relative;
  display: inline-block;
  padding: 1px 5px;
  color: #9B9B9B;
  vertical-align: middle;
}
.page-navi .page-numbers.current {
  color: #333;
  font-weight: bold;
}
.page-navi .page-numbers.next, .page-navi .page-numbers.prev {
  width: 16px;
  height: 16px;
  padding: 0;
  text-align: left;
  text-indent: -9999px;
}
.page-navi .page-numbers.next::after, .page-navi .page-numbers.prev::after {
  content: "";
  position: absolute;
  left: 2px;
  top: 0;
  bottom: 0;
  display: block;
  width: 8px;
  height: 8px;
  margin: auto 0;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  transform: rotate(45deg);
}
.page-navi .page-numbers.prev {
  transform: rotate(-180deg);
}

@media (max-width: 810px) {
  .archive {
    padding-bottom: 20px;
  }
  .page-navi {
    margin-top: 60px;
  }
}
@media (max-width: 640px) {
  .category-list {
    gap: 4px;
  }
  .category-list li {
    width: calc(33.333% - 4px);
  }
  .category-list li a {
    height: 100%;
    padding: 10px 5px;
  }
  .archive-list {
    margin-top: 60px;
    gap: 20px 14px;
    letter-spacing: 0.03em;
    justify-content: space-between;
  }
  .archive-list .list-item {
    width: calc(50% - 7px);
    max-width: 100%;
    margin-right: 0;
  }
  .archive-list .list-item .time {
    margin-top: 10px;
  }
  .archive-list .list-item .title {
    margin-top: 5px;
    padding-right: 20px;
    font-size: 1.4rem;
  }
  .archive-list .list-item .title::after {
    right: 3px;
  }
}
/* ---------------------------------------------------
	single
------------------------------------------------------ */
.single {
  padding: 0 0 80px;
}
.single article {
  margin-bottom: 0;
}

.entry-header .time {
  display: inline-block;
  margin-right: 16px;
  padding-top: 2px;
  color: #AEAEAE;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-align: center;
  vertical-align: middle;
}
.entry-header .cat {
  display: inline-block;
  padding: 6px 24px 4px;
  border: 1px solid #BEBEBE;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  vertical-align: middle;
}
.entry-header .entry-title {
  padding: 10px 0 30px;
  border-bottom: 1px solid #BEBEBE;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.03em;
}

.entry-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  justify-content: center;
  line-height: 1;
}
.entry-footer .btn-prev,
.entry-footer .btn-next {
  width: 16px;
}
.entry-footer .btn-prev a,
.entry-footer .btn-next a {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  text-align: left;
  text-indent: -9999px;
}
.entry-footer .btn-prev a::before,
.entry-footer .btn-next a::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  margin-left: -4px;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  transform: rotate(45deg);
}
.entry-footer .btn-prev a::before {
  transform: rotate(-135deg);
}

@media (max-width: 810px) {
  .single {
    padding: 75px 0 20px;
  }
  .entry-header .time {
    margin-right: 16px;
    padding-top: 2px;
    font-size: 1.6rem;
    letter-spacing: 0.03em;
  }
  .entry-header .cat {
    padding: 6px 15px 4px;
    font-size: 1.5rem;
  }
  .entry-header .entry-title {
    padding: 15px 0 30px;
    font-size: 2.2rem;
    letter-spacing: 0.03em;
  }
  .entry-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    justify-content: center;
    line-height: 1;
  }
  .entry-footer .btn-prev,
  .entry-footer .btn-next {
    width: 16px;
  }
  .entry-footer .btn-prev a,
  .entry-footer .btn-next a {
    position: relative;
    display: inline-block;
    width: 16px;
    height: 16px;
    vertical-align: middle;
    text-align: left;
    text-indent: -9999px;
  }
  .entry-footer .btn-prev a::before,
  .entry-footer .btn-next a::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    display: block;
    width: 8px;
    height: 8px;
    margin-top: -4px;
    margin-left: -4px;
    border-top: 1px solid #333;
    border-right: 1px solid #333;
    transform: rotate(45deg);
  }
  .entry-footer .btn-prev a::before {
    transform: rotate(-135deg);
  }
}
/* ---------------------------------------------------
	wp_common
------------------------------------------------------ */
.entry-content {
  width: 100%;
  margin: 0 auto;
  padding: 40px 0;
  /* gutenberg */
}
.entry-content img {
  max-width: 100%;
  height: auto;
}
.entry-content p {
  display: block;
  margin: 1em 0 2em;
  line-height: 2.1;
}
.entry-content a {
  text-decoration: underline;
}
.entry-content div {
  margin: 28px 0;
}
.entry-content strong {
  font-weight: bold;
}
.entry-content strong span {
  font-weight: bold;
}
.entry-content em {
  font-style: italic;
}
.entry-content blockquote {
  display: block;
  -webkit-margin-before: 1em;
  -webkit-margin-after: 1em;
  -webkit-margin-start: 40px;
  -webkit-margin-end: 40px;
}
.entry-content .aligncenter {
  display: block;
  margin: 0 auto;
}
.entry-content .alignright {
  float: right;
  margin: 0 0 10px 10px;
}
.entry-content .alignleft {
  float: left;
  margin: 0 10px 10px 0;
}
.entry-content .has-text-align-center {
  text-align: center;
}
.entry-content .has-text-align-right {
  text-align: right;
}
.entry-content h1 {
  margin: 2em auto 1em;
  padding: 0;
  color: #333;
  font-size: 3.2rem;
  line-height: 1.5;
  text-align: left;
}
.entry-content h2 {
  position: relative;
  max-width: 100%;
  margin: 1.5em auto 1em;
  padding-bottom: 0.25em;
  border-bottom: 1px dotted #BEBEBE;
  font-size: 2.4rem;
  line-height: 1.5;
  text-align: left;
  z-index: 1;
}
.entry-content h3 {
  position: relative;
  margin: 1em auto 20px;
  padding-left: 1.5em;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.3125;
}
.entry-content h3:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  display: block;
  width: 1em;
  height: 0;
  margin-top: 0.25em;
  border-top: 1px solid #919191;
}
.entry-content h4 {
  margin: 1em auto;
  color: #333;
  font-size: 1.125em;
  font-weight: bold;
}
.entry-content h5 {
  margin: 1em auto;
  color: #333;
  font-weight: bold;
}
.entry-content h5:after {
  content: "";
  display: block;
  width: 1em;
  height: 0;
  border-top: 1px solid;
}
.entry-content h6 {
  margin-bottom: 0.5em;
  color: #333;
  font-size: 0.875em;
  font-weight: bold;
}
.entry-content table {
  margin: 1em 0;
}
.entry-content table th,
.entry-content table td {
  padding: 22px 20px 20px;
  border-top: 1px solid #BEBEBE;
  border-bottom: 1px solid #BEBEBE;
  line-height: 2.1;
  letter-spacing: 0;
}
.entry-content table p {
  margin: 0;
}
.entry-content ul {
  margin: 1em 0;
  list-style: disc;
  padding-left: 1.5em;
}
.entry-content ul li {
  list-style: disc;
}
.entry-content ol {
  margin: 1em 0;
  list-style: decimal;
  padding-left: 1.5em;
}
.entry-content ol li {
  list-style: decimal;
}
.entry-content pre {
  font-family: monospace, monospace;
  font-size: 1em;
}
.entry-content code,
.entry-content kbd,
.entry-content samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
.entry-content sub,
.entry-content sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
.entry-content sub {
  bottom: -0.25em;
}
.entry-content sup {
  top: -0.5em;
}
.entry-content legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}
.entry-content progress {
  vertical-align: baseline;
}
.entry-content pre {
  background: #eee;
  font-family: "Courier 10 Pitch", Courier, monospace;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}
.entry-content code,
.entry-content kbd,
.entry-content tt,
.entry-content var {
  font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  font-size: 15px;
  font-size: 0.9375rem;
}
.entry-content abbr,
.entry-content acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}
.entry-content mark,
.entry-content ins {
  background: #fff9c0;
  text-decoration: none;
}
.entry-content big {
  font-size: 125%;
}
.entry-content details {
  display: block;
}
.entry-content summary {
  display: list-item;
}
.entry-content template {
  display: none;
}
.entry-content dfn,
.entry-content cite,
.entry-content em,
.entry-content i {
  font-style: italic;
}
.entry-content blockquote {
  padding: 0 1em;
  background: #fff;
  border-left: 4px solid #ddd;
}
.entry-content embed,
.entry-content iframe,
.entry-content object {
  max-width: 100%;
}
.entry-content .wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}
.entry-content .wp-caption img[class*=wp-image-] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.entry-content .wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}
.entry-content .wp-caption-text {
  text-align: center;
}
.entry-content .gallery {
  margin-bottom: 1.5em;
}
.entry-content .gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
}
.entry-content .gallery-columns-2 .gallery-item {
  max-width: 50%;
}
.entry-content .gallery-columns-3 .gallery-item {
  max-width: 33.33%;
}
.entry-content .gallery-columns-4 .gallery-item {
  max-width: 25%;
}
.entry-content .gallery-columns-5 .gallery-item {
  max-width: 20%;
}
.entry-content .gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}
.entry-content .gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}
.entry-content .gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}
.entry-content .gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}
.entry-content .gallery-caption {
  display: block;
}
.entry-content .wp-block-gallery {
  padding-left: 0;
  list-style: none;
}
.entry-content .wp-block-gallery li {
  list-style: none;
}
.entry-content .wp-block-button__link {
  text-decoration: none;
}

@media (max-width: 810px) {
  .entry-content table {
    max-width: 100%;
    width: 100% !important;
  }
}