@charset "UTF-8";

.news_wrap {
  background: #f2faff;
  max-width: 1055px;
  width: calc(100% - 40px);
  margin: auto;
  margin-top: 50px;
  border-radius: 14px;
  padding: 40px 84px;
}

@media screen and (max-width: 900px) {
  .news_wrap {
    padding: 24px 20px;
  }
}

.news_wrap h2 {
  color: #000;
  font-family: Shippori Mincho;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}

.news_wrap h2:before {
  content: "";
  aspect-ratio: 41/33;
  width: 41px;
  height: auto;
  display: block;
  background: url("../images/label_icon.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.news_wrap .news_list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.news_wrap .news_list a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-bottom: 1px solid #666;
  padding: 20px 40px 20px 0;
  gap: 20px;
  width: 100%;
  color: #000;
  transition: all 0.3s;
  position: relative;
}

@media screen and (max-width: 900px) {
  .news_wrap .news_list a {
    padding: 20px 0;
  }
}

.news_wrap .news_list a:after {
  content: "";
  aspect-ratio: 15/10;
  width: 15px;
  height: auto;
  display: block;
  background: url("../images/arrow.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  right: 18px;
  transition: all 0.3s;
}

@media screen and (max-width: 900px) {
  .news_wrap .news_list a:after {
    display: none;
  }
}

.news_wrap .news_list a:hover {
  opacity: 0.8;
}

.news_wrap .news_list a:hover:after {
  right: 8px;
}

.news_wrap .news_list a .thumb {
  aspect-ratio: 80/66;
  width: 77px;
  height: auto;
  background: #d9d9d9;
  flex: 0 0 auto;
}

.news_wrap .news_list a .thumb img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.news_wrap .news_list a .text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  font-family: "Shippori Mincho", serif;
}

.news_wrap .news_list a .text .text_header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 4px;
}

.news_wrap .news_list a .text .text_header .date {
  margin-right: 8px;
  font-size: 15px;
}

.news_wrap .news_list a .text .text_header .category span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  height: 24px;
  border-radius: 12px;
  background: #ccc;
  min-width: 107px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.75em;
  font-size: 14px;
  color: #fff;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  text-align: center;
}

.news_wrap .news_list a .text .title {
  font-size: 15px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  word-break: break-all;
}

.news_wrap .news_list_footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 30px;
}

.news_wrap .news_list_footer .archive_link {
  font-family: Shippori Mincho;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  transition: all 0.3s;
}

.news_wrap .news_list_footer .archive_link:hover {
  opacity: 0.8;
}

.news_wrap .news_list_footer .archive_link:after {
  content: "";
  aspect-ratio: 1/1;
  width: 19px;
  height: auto;
  background: url("../images/link_icon.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  margin-left: 4px;
}

.news_wrap .pager {
  margin: 60px 0;
}

.news_wrap .pager .nav-links,
.support_wrap .pager .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}

.news_wrap .pager .page-numbers,
.support_wrap .pager .page-numbers {
  color: #bbb;
  text-align: center;
  font-family: Zen Kaku Gothic New;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border-bottom: 2px solid #bbb;
  line-height: 32px;
  width: 20px;
  flex: 0 0 auto;
  transition: all 0.3s;
}

.news_wrap .pager .page-numbers.dots,
.support_wrap .pager .page-numbers.dots {
  border-bottom: none;
  pointer-events: none;
}

.news_wrap .pager .page-numbers.current,
.support_wrap .pager .page-numbers.current {
  color: #000;
  border-bottom: 2px solid #25a6e9;
}

.news_wrap .pager .page-numbers:hover,
.support_wrap .pager .page-numbers:hover {
  color: #000;
  border-bottom: 2px solid #25a6e9;
}

.news_wrap .pager .page-numbers.next,
.support_wrap .pager .page-numbers.next {
  border-bottom: none !important;
  width: auto;
  height: auto;
  width: 22px;
  height: 22px;
  background: url("../images/link_icon.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 4px;
  transition: all 0.3s;
}

.news_wrap .pager .page-numbers.next:hover,
.support_wrap .pager .page-numbers.next:hover {
  opacity: 0.8;
}

.news_wrap .pager .page-numbers.prev,
.support_wrap .pager .page-numbers.prev {
  border-bottom: none !important;
  width: auto;
  height: auto;
  width: 22px;
  height: 22px;
  background: url("../images/link_icon.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 4px;
  transform: rotate(180deg);
  transition: all 0.3s;
}

.news_wrap .pager .page-numbers.prev:hover,
.support_wrap .pager .page-numbers.prev:hover {
  opacity: 0.8;
}

.archive .news_wrap {
  background: #fff;
}

@media screen and (max-width: 480px) {
  .archive .news_wrap {
    padding: 0;
  }
}

.archive .news_wrap h2 {
  justify-content: center;
  color: #000;
  font-family: Shippori Mincho;
  font-size: 35px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 80px;
  margin-bottom: 80px;
}

@media screen and (max-width: 480px) {
  .archive .news_wrap h2 {
    margin-top: 135px;
    margin-bottom: 45px;
    font-size: 25px;
  }
}

.archive .news_wrap h2:before {
  width: 55px;
}

@media screen and (max-width: 480px) {
  .archive .news_wrap h2:before {
    width: 45px;
  }
}

.archive .news_wrap .cat_list {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

@media screen and (max-width: 480px) {
  .archive .news_wrap .cat_list {
    justify-content: flex-start;
  }
}

.archive .news_wrap .cat_list a {
  color: #000;
  border: 1px solid #000;
  transition: all 0.3s;
  line-height: 38px;
  border-radius: 19px;
  padding: 0 0.75em;
  min-width: 164px;
  text-align: center;
}

@media screen and (max-width: 480px) {
  .archive .news_wrap .cat_list a {
    line-height: 34px;
    border-radius: 17px;
    font-size: 15px;
  }
}

.archive .news_wrap .cat_list a:hover {
  opacity: 0.8;
  border: 1px solid #fff;
}

.archive .news_wrap .cat_list a.current {
  color: #fff;
  border: 1px solid #fff;
  pointer-events: none;
}

.single .post-single {
  max-width: 1055px;
  width: calc(100% - 40px);
  margin: auto;
  margin-top: 100px;
  border-radius: 14px;
  padding: 40px 84px;
  min-height: calc(100vh - 250px);
}

@media screen and (max-width: 900px) {
  .single .post-single {
    padding: 24px 20px;
  }
}

@media screen and (max-width: 480px) {
  .single .post-single {
    padding: 24px 0px;
  }
}

.single .post-single .single_header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 16px;
}

.single .post-single .single_header .date {
  margin-right: 8px;
  font-size: 15px;
}

.single .post-single .single_header .category span {
  height: 24px;
  border-radius: 12px;
  background: #ccc;
  min-width: 107px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.75em;
  font-size: 14px;
  color: #fff;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  text-align: center;
}

.single .post-single .title h1 {
  font-size: 25px;
  font-family: "Shippori Mincho", serif;
  padding-bottom: 27px;
  border-bottom: 1px solid #666;
  margin-bottom: 30px;
  font-weight: 400;
}

@media screen and (max-width: 900px) {
  .single .post-single .title h1 {
    font-size: 20px;
  }
}

.single .post-single .post_footer {
  border-top: 1px solid #666;
  margin-top: 36px;
  padding-top: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 42px;
}

.single .post-single .post_footer .back_btn {
  color: #000;
  font-family: Zen Kaku Gothic New;
  font-size: 20px;
  font-style: normal;
  font-weight: bold;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.single .post-single .post_footer .back_btn:hover {
  opacity: 0.8;
}

.single .post-single .post_footer .back_btn:before {
  content: "";
  aspect-ratio: 1/1;
  width: 22px;
  height: auto;
  background: url("../images/link_icon.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  margin-right: 12px;
  transform: rotate(180deg);
}

.single .post-single .post_footer .back_category {
  background: #edf4f9;
  width: 100%;
  border-radius: 14px;
  padding: 28px 24px 0px;
  margin-bottom: 40px;
}

@media screen and (max-width: 900px) {
  .single .post-single .post_footer .back_category {
    padding: 22px 20px 0;
  }
}

.single .post-single .post_footer .back_category h3 {
  font-size: 18px;
}

.single .post-single .post_footer .back_category h3:before {
  content: "#";
  color: #50a4e6;
  font-size: 18px;
}

.single .post-single .post_footer .back_category .cat_list {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

@media screen and (max-width: 480px) {
  .single .post-single .post_footer .back_category .cat_list {
    justify-content: flex-start;
  }
}

.single .post-single .post_footer .back_category .cat_list a {
  color: #000;
  border: 1px solid #000;
  transition: all 0.3s;
  line-height: 38px;
  border-radius: 19px;
  padding: 0 0.75em;
  min-width: 164px;
  text-align: center;
  background: #fff;
}

@media screen and (max-width: 480px) {
  .single .post-single .post_footer .back_category .cat_list a {
    line-height: 34px;
    border-radius: 17px;
    font-size: 15px;
    padding: 0 0.5em;
    min-width: calc(50% - 8px);
  }
}

.single .post-single .post_footer .back_category .cat_list a:hover {
  opacity: 0.8;
  border: 1px solid #fff;
}

.single .post-single .post_footer .back_category .cat_list a.current {
  color: #fff;
  border: 1px solid #fff;
  pointer-events: none;
}

/* wp-block-editor対応 */
.single .post-single {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.single .post-single h1,
.single .post-single h2,
.single .post-single h3,
.single .post-single h4,
.single .post-single h5,
.single .post-single h6,
.single .post-single p {
  margin-bottom: 1em;
  line-height: 1.4;
  color: #000;
}

.single .post-single h1 {
  font-size: 27px;
}

.single .post-single h2 {
  font-size: 22.5px;
}

.single .post-single h3 {
  font-size: 21px;
}

.single .post-single h4 {
  font-size: 19.5px;
}

.single .post-single h5 {
  font-size: 18px;
}

.single .post-single h6 {
  font-size: 15px;
}

.single .post-single p {
  font-size: 15px;
}

.single .post-single a {
  color: #50a4e6;
  transition: all 0.3s;
}

.single .post-single a:hover {
  opacity: 0.8;
}

.single .post-single dl {
  margin-bottom: 1em;
}

.single .post-single dl dt {
  font-weight: bold;
}

.single .post-single ul {
  margin-bottom: 1em;
}

.single .post-single ul ul,
.single .post-single ul ol {
  padding-left: 0.5em;
  margin-bottom: 0;
}

.single .post-single ul ul li ul,
.single .post-single ul ul li ol,
.single .post-single ul ol li ul,
.single .post-single ul ol li ol {
  padding-left: 0.5em;
  margin-bottom: 0;
}

.single .post-single ol {
  margin-bottom: 1em;
}

.single .post-single ol ol,
.single .post-single ol ul {
  padding-left: 0.5em;
  margin-bottom: 0;
}

.single .post-single ol ol li ol,
.single .post-single ol ol li ul,
.single .post-single ol ul li ol,
.single .post-single ol ul li ul {
  padding-left: 0.5em;
  margin-bottom: 0;
}

.single .post-single .wp-block-quote {
  background: #eee;
  padding: 0.5em;
  border-left: 4px solid #50a4e6;
  margin-bottom: 1em;
}

.single .post-single .wp-block-quote cite {
  display: block;
  text-align: right;
}

.single .post-single ul li {
  list-style: inside;
}
