@font-face {
  font-family: "Noto Sans JP";
  src: url("../font/Noto_Sans_JP/NotoSansJP-VariableFont_wght.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
/* nomal */
.c-news__list li {
  border-bottom: 0.2rem solid var(--c-light-gray);
}
.c-news__list a {
  color: var(--c-black);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 2rem 1rem;
  border-radius: 0.6rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (hover: hover) {
  .c-news__list a:hover {
    background-color: var(--c-light-gray);
  }
}
.c-news__list .date {
  font-family: var(--f-sans);
  font-size: var(--c-fs-main);
  font-weight: var(--c-fw);
  line-height: var(--c-lh-medium);
  font-family: var(--f-serif);
  width: 12rem;
}

.c-news__title {
  font-family: var(--f-sans);
  font-size: var(--c-fs-main);
  font-weight: var(--c-fw);
  line-height: var(--c-lh-medium);
  width: calc(100% - 12rem);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.page_nation--wrap {
  text-align: center;
  margin-top: 9rem;
}

.page_nation {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  gap: 0.5rem;
}
.page_nation a {
  color: var(--c-black);
}
.page_nation .prev, .page_nation .next {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
}
.page_nation .next {
  left: calc(100% + 3rem);
}
.page_nation .prev {
  right: calc(100% + 3rem);
}

@media (hover: hover) {
  a.page-numbers:hover {
    background-color: var(--c-light-gray);
  }
}

.page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.3rem;
}
.page-numbers.current {
  color: var(--c-gray);
  background-color: var(--c-light-gray);
}

.c-blog__wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 3rem;
}

.c-blog__item a {
  color: var(--c-black);
  display: block;
}
.c-blog__item .c-date {
  margin: 1rem 0;
}

.c-blog__ttl {
  line-height: 1.35;
}

.c-blog__img {
  line-height: 0;
  border: 1px solid var(--c-black);
}
.c-blog__img img {
  width: 100%;
  aspect-ratio: 378/260;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
}

.single .c-content p {
  font-family: var(--f-sans);
  font-size: var(--c-fs-main);
  font-weight: var(--c-fw);
  line-height: var(--c-lh-medium);
  margin-bottom: 3rem;
}
.single .c-content h2 {
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1.35;
  margin-bottom: 3rem;
  padding-left: 1.2rem;
  border-left: 0.6rem solid var(--c-light-pink);
}
.single .c-content h3 {
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 3rem;
}
.single .c-content h3::after {
  content: "";
  display: block;
  width: 9rem;
  height: 0.2rem;
  background-color: var(--c-light-pink);
  margin-top: 0.3rem;
}
.single .c-content h4 {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5;
  border-bottom: 0.2rem solid var(--c-light-pink);
  padding-bottom: 1rem;
  margin-bottom: 3rem;
}
.single .c-content h5 {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  padding: 0.15rem 0 0.15rem 0.9rem;
  border-left: 0.3rem solid var(--c-light-pink);
}
.single .c-content h6 {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.single .c-content ol {
  list-style: decimal;
  margin-bottom: 3rem;
  padding: 3rem 3rem 3rem 5rem;
  background-color: var(--c-light-gray);
}
.single .c-content ol li {
  font-size: 1.8rem;
  line-height: 1.5;
}
.single .c-content ol li:not(:last-child) {
  margin-bottom: 1.5rem;
}
.single .c-content ul:not(.c-category) {
  list-style: disc;
  margin-bottom: 3rem;
  padding: 3rem 3rem 3rem 5rem;
  background-color: var(--c-light-gray);
}
.single .c-content ul li {
  font-size: 1.8rem;
  line-height: 1.5;
}
.single .c-content ul li:not(:last-child) {
  margin-bottom: 1.5rem;
}
.single .c-content hr {
  margin: 6rem 0;
}
.single .c-content img {
  margin-bottom: 3rem;
}
.single .c-content .wp-block-image img {
  margin-bottom: 0;
}
.single .c-content figcaption {
  background: transparent !important;
  background-color: rgba(255, 255, 255, 0.7) !important;
  padding: 1.5rem 1rem !important;
}
.single .c-content figcaption mark {
  color: var(--c-black) !important;
  font-style: normal;
  font-size: 2.6rem;
  font-weight: 500;
}
.single .c-content table {
  margin-bottom: 1rem;
}
.single .c-content table th {
  background-color: var(--c-light);
  padding: 2rem 1.5rem;
  line-height: 1.5;
}
.single .c-content table td {
  padding: 2rem 1.5rem;
  line-height: 1.5;
}

@media screen and (max-width: 750px) {
  .c-news__list .date {
    width: 15rem;
  }
  .c-news__title {
    width: calc(100% - 17rem);
  }
  .page_nation--wrap {
    margin-top: 12rem;
  }
  .page_nation .next {
    left: calc(100% + 6rem);
  }
  .page_nation .prev {
    right: calc(100% + 6rem);
  }
  .page-numbers {
    width: 6rem;
    height: 6rem;
    border-radius: 0.6rem;
  }
  .single .c-content p {
    margin-bottom: 5rem;
  }
  .single .c-content img {
    margin-bottom: 5rem;
  }
  .single .c-content h2 {
    font-size: 3.4rem;
    margin-bottom: 5rem;
  }
  .single .c-content h3 {
    font-size: 3.2rem;
    margin-bottom: 5rem;
  }
  .single .c-content h4 {
    font-size: 3rem;
    margin-bottom: 5rem;
  }
  .single .c-content h5 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
  }
  .single .c-content h6 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
  }
  .single .c-content ol {
    padding: 4rem 4rem 4rem 8rem;
    margin-bottom: 5rem;
  }
  .single .c-content ol li {
    font-size: 2.8rem;
  }
  .single .c-content ol li:not(:last-child) {
    margin-bottom: 2rem;
  }
  .single .c-content ul:not(.c-category) {
    margin-bottom: 5rem;
    padding: 4rem 4rem 4rem 8rem;
  }
  .single .c-content ul li {
    font-size: 2.8rem;
  }
  .single .c-content ul li:not(:last-child) {
    margin-bottom: 2rem;
  }
  .c-blog__wrap {
    grid-template-columns: repeat(2, 1fr);
  }
  .c-blog__ttl {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
  }
}