@charset "UTF-8";
.topic {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  padding: 0 4%;
}
@media screen and (max-width: 768px) {
  .topic {
    flex-direction: column;
  }
}
.topic .topic_box h2 {
  margin-bottom: 30px;
}
.topic .topic_box .List_btn {
  position: relative;
  display: flex;
  justify-content: center;
  min-width: 200px;
  width: 100%;
  font-family: "Zen Old Mincho", serif;
  letter-spacing: 0.1rem;
  font-weight: normal;
  color: #434343;
  font-size: 14px;
  padding: 12px 10px 12px 0;
  border: 1px solid var(--clr-gray);
  border-radius: 60px;
  cursor: pointer;
  transition: 0.5s;
}
.topic .topic_box .List_btn:before {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-top: 2px solid #434343;
  border-right: 2px solid #434343;
  transform: rotate(45deg);
  top: 0;
  bottom: 0;
  right: 10px;
  margin: auto 10px;
  transition: 0.5s;
}
.topic .topic_box .List_btn:hover {
  background: gray;
  border: 1px solid gray;
  color: #fff;
}
.topic .topic_box .List_btn:hover:before {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
.topic .article_Box {
  display: flex;
  flex-direction: column;
  max-width: 800px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .topic .article_Box {
    max-width: 600px;
  }
}
.topic .article_Box article {
  border-bottom: 1px solid var(--clr-black);
}
.topic .article_Box article a {
  display: flex;
  align-items: center;
  padding: 25px 0;
  font-size: 16px;
  text-decoration: none;
  transition: 0.5s;
  color: var(--clr-black);
}
@media screen and (max-width: 768px) {
  .topic .article_Box article a {
    flex-direction: column;
    align-items: flex-start;
    font-size: 14px;
    padding: 18px 0;
  }
}
.topic .article_Box article a:hover {
  opacity: 0.5;
}
.topic .article_Box article a .data_box {
  max-width: 170px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-right: 30px;
}
@media screen and (max-width: 768px) {
  .topic .article_Box article a .data_box {
    max-width: 140px;
    margin-bottom: 5px;
  }
}
.topic .article_Box article a .data_box .data {
  letter-spacing: 0.1rem;
}
.topic .article_Box article a .data_box .tag {
  background: var(--clr-gray);
  color: var(--clr-white);
  max-width: 60px;
  width: 100%;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .topic .article_Box article a .data_box .tag {
    max-width: 50px;
    height: 20px;
    font-size: 14px;
  }
}
.topic .btn_roll {
  margin-top: 30px;
}
.topic .btn_roll .List_btn {
  position: relative;
  display: flex;
  justify-content: center;
  min-width: 200px;
  width: 50%;
  font-family: "Zen Old Mincho", serif;
  letter-spacing: 0.1rem;
  font-weight: normal;
  color: #434343;
  font-size: 14px;
  padding: 8px 10px 8px 0;
  border: 1px solid var(--clr-gray);
  border-radius: 60px;
  cursor: pointer;
}
.topic .btn_roll .List_btn:before {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-top: 2px solid #434343;
  border-right: 2px solid #434343;
  transform: rotate(45deg);
  top: 0;
  bottom: 0;
  right: 10px;
  margin: auto 10px;
}

/*ページネーション*/
.pagination {
  display: flex;
  justify-content: center;
  gap: 0 30px;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .pagination {
    margin-top: 40px;
  }
}
.pagination .clearfix {
  display: flex;
  gap: 0 10px;
}
.pagination .clearfix li.current a {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-style: normal;
  color: var(--clr-white);
  background: var(--clr-blue);
  border: 1px solid var(--clr-blue);
}
@media screen and (max-width: 768px) {
  .pagination .clearfix li.current a {
    font-size: 18px;
  }
}
.pagination .clearfix li.current a:hover {
  opacity: 0.5;
}
.pagination .clearfix li a {
  text-decoration: none;
  width: 36px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  color: var(--clr-blue);
  border: 1px solid var(--clr-blue);
}
@media screen and (max-width: 768px) {
  .pagination .clearfix li a {
    font-size: 18px;
    width: 30px;
    height: 40px;
  }
}
.pagination .clearfix li a:hover {
  opacity: 0.5;
}
.pagination .prev-page {
  display: none;
  align-items: center;
}
.pagination .prev-page button {
  border: none;
  background: none;
  color: gray;
  font-size: 25px;
  font-weight: 300;
}
.pagination .next-page {
  display: none;
  align-items: center;
}
.pagination .next-page button {
  border: none;
  background: none;
  color: gray;
  font-size: 25px;
  font-weight: 300;
}

/*article.html*/
.article_Area {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  background: var(--bc-beige);
  padding: 80px 6%;
}
@media screen and (max-width: 768px) {
  .article_Area {
    padding: 60px 6%;
  }
}
.article_Area .artcle_wrapper {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--clr-black);
}
.article_Area .artcle_wrapper a {
  color: #1d84bf;
  font-weight: bold;
  border-bottom: 1px solid #1d84bf;
  transition: opacity 0.3s;
}
.article_Area .artcle_wrapper a[target=_blank] {
  padding-left: 27px;
  position: relative;
  transition: all 0.3s;
}
.article_Area .artcle_wrapper a[target=_blank]:before {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  background: url(/wp-content/themes/nft/news/img/icn_blank_arw.png) no-repeat top left/contain;
  top: 0;
  left: 0;
  z-index: 1;
  transition: all 0.3s;
}
.article_Area .artcle_wrapper a[target=_blank]:hover:before {
  background: url(/wp-content/themes/nft/news/img/icn_blank_arw_o.png) no-repeat top left/contain;
}
.article_Area .artcle_wrapper a:hover {
  opacity: 0.8;
  border: none;
}
.article_Area .artcle_wrapper p {
  line-height: 1.7;
  letter-spacing: 0.05em;
}
.article_Area .artcle_wrapper .content p {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .article_Area .artcle_wrapper .content p {
    margin-bottom: 20px;
  }
}
.article_Area .artcle_wrapper .content p:last-child {
  margin-bottom: 0;
}
.article_Area .artcle_wrapper h2 {
  border-bottom: 1px solid var(--clr-black);
  padding-bottom: 20px;
  margin-bottom: 60px !important;
}
@media screen and (max-width: 768px) {
  .article_Area .artcle_wrapper h2 {
    margin-bottom: 30px !important;
  }
}
.article_Area .artcle_wrapper h2 .data_box {
  display: flex;
  align-items: center;
  gap: 20px;
}
.article_Area .artcle_wrapper h2 .data_box .data {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .article_Area .artcle_wrapper h2 .data_box .data {
    font-size: 16px;
  }
}
.article_Area .artcle_wrapper h2 .data_box .tag {
  background: var(--clr-gray);
  color: var(--clr-white);
  font-size: 16px;
  height: 30px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.article_Area .artcle_wrapper h2 .ttl_txt {
  font-size: 32px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .article_Area .artcle_wrapper h2 .ttl_txt {
    font-size: 20px;
  }
}
.article_Area .artcle_wrapper .cont_box {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .article_Area .artcle_wrapper .cont_box {
    margin-top: 35px;
  }
}
.article_Area .artcle_wrapper .cont_box h3 {
  color: var(--clr-gray);
  font-size: 24px;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .article_Area .artcle_wrapper .cont_box h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }
}
.article_Area .artcle_wrapper .cont_box h4 {
  font-size: 18px;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .article_Area .artcle_wrapper .cont_box h4 {
    font-size: 16px;
    margin-bottom: 15px;
  }
}
.article_Area .artcle_wrapper .cont_box .cont_txt {
  color: var(--clr-black);
  font-size: 16px;
  line-height: 1.8rem;
}
@media screen and (max-width: 768px) {
  .article_Area .artcle_wrapper .cont_box .cont_txt {
    font-size: 12px;
    line-height: 1.5rem;
  }
}
.article_Area .artcle_wrapper .cont_box .txt_link {
  display: inline-block;
  color: #000;
  text-decoration: underline;
  margin-top: 40px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .article_Area .artcle_wrapper .cont_box .txt_link {
    margin-top: 30px;
    font-size: 14px;
  }
}
.article_Area .artcle_wrapper .cont_box .txt_link:hover {
  text-decoration: none;
}

.top_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .top_btn {
    margin-top: 20px;
  }
}

.main_Area {
  padding: 0 4%;
}

.pagination {
  display: flex;
  justify-content: center;
}

.nav-links {
  display: flex;
}

ul.page-numbers {
  display: flex;
  color: #1d84bf;
  background: #ffffff;
  font-size: 20px;
  justify-content: center;
  align-items: center;
  border: none;
  gap: 10px;
  margin-top: 60px;
}
ul.page-numbers * {
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  ul.page-numbers {
    margin-top: 40px;
  }
}
ul.page-numbers li {
  width: 50px;
  height: 50px;
  padding: 1px;
}
ul.page-numbers a {
  transition: opacity 0.3s;
  padding: 10px 20px;
  color: #1d84bf;
  background: #ffffff;
  border: 1px solid #1d84bf;
}
ul.page-numbers a:hover {
  opacity: 0.6;
}
ul.page-numbers .current {
  padding: 10px 20px;
  background: #1d84bf;
  color: #ffffff;
}
ul.page-numbers .prev,
ul.page-numbers .next {
  background: transparent;
  box-shadow: none;
  border: none;
  color: #1d84bf;
}
ul.page-numbers .dots {
  background: transparent;
  box-shadow: none;
  border: none;
  color: #1d84bf;
}

@media (max-width: 600px) {
  .page-numbers,
  .page-numbers.current {
    padding: 5px 10px; /* パディングを小さく */
  }
}