@charset "UTF-8";
/* ============================================ */
/* topics（archive）
/* ============================================ */
/* ===== top-area ===== */
#top-area .bg {
  position: absolute;
  left: 0;
  top: -70px;
  display: block;
  width: 1600px;
  transform: translate(-65%, 0);
}

@media screen and (max-width: 768px) {
  #top-area .bg {
    top: -40px;
    width: 1000px;
  }
}
@media screen and (max-width: 600px) {
  #top-area .bg {
    top: -30px;
    width: 800px;
  }
}
/* =====  ===== */
#list {
  margin: 160px 0 0;
}
#list .wrap {
  padding: 0 0 0 150px;
}
#list .list-title {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  gap: 10px;
  color: var(--color-white);
}
#list .list-title .en {
  display: block;
  width: 30px;
}
#list .list-title .ja {
  display: block;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  writing-mode: vertical-rl;
}
#list .slash:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -100px;
  display: block;
  width: 1px;
  height: 170px;
  background: var(--color-white);
  transform-origin: bottom;
  transform: rotate(35deg);
}
#list .topics-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#list .topics-list .item {
  width: 100%;
  padding: 25px 35px;
  border: solid 1px var(--color-blue);
  background: var(--color-white);
  border-radius: 15px;
}
#list .topics-list .item a {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  padding: 0 130px 0 0;
}
#list .topics-list .item .img {
  position: relative;
  width: 195px;
  height: auto;
  aspect-ratio: 3/2;
  flex-shrink: 0;
}
#list .topics-list .item .img:has(.no-img) {
  border: solid #ddd 1px;
}
#list .topics-list .item .img img {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  transform: translate(-50%, -50%);
}
#list .topics-list .item .text {
  width: 100%;
}
#list .topics-list .item .tag {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--color-white);
  font-weight: 500;
  background: var(--color-grad-blue);
  padding: 0 1.5em 0.1em;
  margin: 0 1em 0 0;
  border-radius: 1em;
}
#list .topics-list .item .date {
  display: inline-block;
  color: var(--color-blue);
  font-family: var(--fontfamily-en);
  margin: 0.5em 0 0;
}
#list .topics-list .item .title {
  margin: 1em 0 0;
}
#list .topics-list .item .read-more {
  position: absolute;
  right: 35px;
  top: 50%;
  transform: translate(0, -50%);
}
#list .link {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 50px 0 0 auto;
}

@media (hover: hover) {
  #list .topics-list .item a:hover .img img {
    transform: translate(-50%, -50%) scale(1.1);
  }
}
@media screen and (max-width: 1024px) {
  #list .wrap {
    padding: 0 0 0 130px;
  }
  #list .slash:after {
    height: 140px;
  }
  #list .topics-list .item a {
    padding: 0;
  }
  #list .topics-list .item .img {
    width: 160px;
  }
  #list .topics-list .item .read-more {
    position: relative;
    inset: 0;
    transform: none;
    margin: 20px 0 0;
  }
}
@media screen and (max-width: 768px) {
  #list {
    margin: 30px 0 0;
  }
  #list .wrap {
    padding: 0 0 0 100px;
  }
  #list .list-title {
    gap: 5px;
  }
  #list .list-title .en {
    width: 21px;
  }
  #list .list-title .ja {
    font-size: 16px;
    font-size: 1rem;
  }
  #list .slash:after {
    bottom: -80px;
    height: 120px;
  }
  #list .topics-list .item {
    padding: 30px;
  }
  #list .topics-list .item a {
    flex-direction: column;
  }
  #list .topics-list .item .img {
    width: 100%;
  }
  #list .topics-list .item .read-more {
    position: relative;
    inset: 0;
    transform: none;
    margin: 20px 0 0;
  }
}
@media screen and (max-width: 600px) {
  #list .wrap {
    padding: 0;
  }
  #list .list-title {
    position: relative;
    align-items: center;
    gap: 20px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 0 40px;
  }
  #list .list-title .en {
    width: 55.3px;
  }
  #list .list-title .ja {
    writing-mode: horizontal-tb;
  }
  #list .slash::after {
    height: 80px;
    left: calc(100% + 10px);
    bottom: -20px;
  }
  #list .link {
    margin: 50px auto 0;
  }
}
/* ===== Pagination ===== */
.pagination {
  margin: 50px auto 0;
  text-align: center;
  /* ← */
  /* → */
}
.pagination .nav-links {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: var(--fontfamily-en);
  text-decoration: none;
  background: var(--color-white);
  color: var(--color-blue);
  border: 1px solid var(--color-blue);
  transition: 0.3s ease;
  position: relative;
}
.pagination .page-numbers:hover {
  background: var(--color-blue);
  color: var(--color-white);
}
.pagination .page-numbers.current {
  background: var(--color-blue);
  color: var(--color-white);
  pointer-events: none;
}
.pagination .prev,
.pagination .next {
  font-size: 0;
}
.pagination .prev::before,
.pagination .next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  transition: 0.3s ease;
}
.pagination .prev:hover::before,
.pagination .next:hover::before {
  border-color: var(--color-white);
}
.pagination .prev::before {
  border-left: 2px solid var(--color-blue);
  border-bottom: 2px solid var(--color-blue);
  transform: translate(-40%, -50%) rotate(45deg);
}
.pagination .next::before {
  border-right: 2px solid var(--color-blue);
  border-top: 2px solid var(--color-blue);
  transform: translate(-60%, -50%) rotate(45deg);
}

@media screen and (max-width: 768px) {
  .pagination {
    margin: 30px auto 0;
  }
}
/* ============================================ */
/* topics（single）
/* ============================================ */
#article {
  margin: 50px 0 0;
}
#article .flex-wrap {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  justify-content: space-between;
}
#article .text-frame {
  width: calc(100% - 520px);
  padding: 55px;
  background: var(--color-white);
  border: solid 1px var(--color-blue);
  border-radius: 15px;
}
#article .text-frame .date {
  display: inline-block;
  color: var(--color-blue);
  font-family: var(--fontfamily-en);
  margin: 0 0 1.5em;
}
#article .text-frame .text {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2;
  word-break: break-all;
}
#article .text-frame .text p + p {
  margin: 1em 0 0;
}
#article .text-frame .text a {
  color: var(--color-blue);
}
#article .img-frame {
  width: 500px;
}
#article .img-frame img {
  display: block;
  border-radius: 15px;
}
#article .img-frame img.no-img {
  border: solid #ddd 1px;
}
#article .img-frame img + img {
  margin: 20px 0 0;
}
#article .link {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 50px 0 0 auto;
}

@media (hover: hover) {
  #article .text-frame .text a:hover {
    text-decoration: underline;
  }
}
@media screen and (max-width: 1400px) {
  #article .text-frame {
    width: calc(100% - 380px);
  }
  #article .img-frame {
    width: 360px;
  }
}
@media screen and (max-width: 1200px) {
  #article .text-frame {
    width: calc(100% - 300px);
  }
  #article .img-frame {
    width: 280px;
  }
}
@media screen and (max-width: 1024px) {
  #article .flex-wrap {
    flex-direction: column;
  }
  #article .text-frame {
    width: 100%;
  }
  #article .img-frame {
    width: 100%;
    max-width: 460px;
    margin: 30px auto 0;
  }
  #article .link {
    margin: 50px auto 0;
  }
}
@media screen and (max-width: 768px) {
  #article {
    margin: 0;
  }
  #article .flex-wrap {
    flex-direction: column;
  }
  #article .text-frame {
    padding: 30px 7.5% 40px;
  }
  #article .text-frame .text {
    font-size: 13px;
    font-size: 0.8125rem;
  }
  #article .img-frame {
    width: 100%;
    max-width: 460px;
    margin: 30px auto 0;
  }
  #article .link {
    margin: 50px auto 0;
  }
}
/* ============================================ */
/* wp-block
/* ============================================ */
.wp-block-heading {
  font-size: 120%;
  font-weight: 600;
  margin: 1em 0;
}

.wp-block-list {
  list-style: disc;
  list-style-position: inside;
  margin: 1em 0;
}

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