@charset "UTF-8";
/* メディアクエリ */
/* //メディアクエリ */
/* position 中央寄せ */
/* //position 中央寄せ */
.blog__contents {
  display: flex;
  margin-left: -30px;
  margin-right: -30px;
}
@media screen and (max-width: 767px) {
  .blog__contents {
    flex-wrap: wrap;
    row-gap: 80px;
  }
}
.blog__left,
.blog__right {
  padding: 0 30px;
}
.blog__left {
  width: 67.8%;
}
@media screen and (max-width: 767px) {
  .blog__left {
    width: 100%;
  }
}
.blog__right {
  width: 32.2%;
  position: sticky;
}
@media screen and (max-width: 767px) {
  .blog__right {
    width: 100%;
    background-color: #f2f2f2;
    border-radius: 35px 35px 0 0;
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.blog__date {
  font-size: 14px;
  color: #a2a2a2;
  margin-left: 12px;
}
@media screen and (max-width: 767px) {
  .blog__date {
    font-size: 12px;
    margin-left: 8px;
  }
}
.blog__modified-date {
  font-size: 14px;
  color: #a2a2a2;
  margin-left: 12px;
  padding-left: 18px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .blog__modified-date {
    font-size: 12px;
    margin-left: 8px;
  }
}
.blog__modified-date::before {
  content: "";
  width: 13px;
  height: 13px;
  background: url(../images/common/icon-reload.svg) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  transform: translatey(-50%);
  left: 0;
}
.blog__cat {
  font-size: 12px;
  border: 1px solid #111e27;
  border-radius: 2px;
  padding: 2px 7.5px;
}
@media screen and (max-width: 767px) {
  .blog__cat {
    font-size: 10px;
  }
}
.blog__cat:not(:last-of-type) {
  margin-left: 8px;
}
.blog__category {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .blog__category {
    margin-bottom: 60px;
  }
}
.blog-category__body {
  background-color: #f2f2f2;
  border-radius: 10px;
  padding: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media screen and (max-width: 1023px) {
  .blog-category__body {
    padding: 14px;
  }
}
@media screen and (max-width: 767px) {
  .blog-category__body {
    padding: 30px;
    background-color: #ffffff;
    border-radius: 15px;
    padding: 20px;
    gap: 5px;
  }
}
.blog-category__item {
  background-color: #ffffff;
  color: #11225b;
  border: 1px solid #11225b;
  border-radius: 100vw;
  font-size: 14px;
  padding: 6px 16px 7px;
  letter-spacing: 0.03em;
  display: inline-block;
  transition: all 0.3s ease;
}
.blog-category__item:hover {
  background-color: #11225b;
  color: #ffffff;
}
.blog-category__item.is-active {
  background-color: #11225b;
  color: #ffffff;
  font-weight: 600;
}

.p-blog {
  padding-bottom: 184px;
}
@media screen and (max-width: 767px) {
  .p-blog {
    padding-bottom: 0;
  }
}
.p-blog__inner {
  max-width: 1286px;
  padding: 0 4.39239%;
}
@media screen and (max-width: 767px) {
  .p-blog__inner {
    max-width: 100%;
    padding: 0 20px;
  }
}
.p-blog__contents {
  display: grid;
  grid-template: "left right " auto/1fr 320px;
  gap: 5.1458%;
}
@media screen and (max-width: 767px) {
  .p-blog__contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 80px;
  }
}
.p-blog__left {
  grid-area: left;
}
@media screen and (max-width: 767px) {
  .p-blog__left {
    max-width: 650px;
    margin: 0 auto;
  }
}
.p-blog__left-inner {
  display: flex;
  flex-wrap: wrap;
  margin-left: -20px;
  margin-right: -20px;
  row-gap: 60px;
}
@media screen and (max-width: 767px) {
  .p-blog__left-inner {
    margin-left: -7.5px;
    margin-right: -7.5px;
    row-gap: 40px;
  }
}
.p-blog__right {
  grid-area: right;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-blog__right {
    width: 100vw;
    margin-left: -20px;
    background-color: #f2f2f2;
    padding-top: 80px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 35px 35px 0 0;
  }
}
.p-blog__category {
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .p-blog__category {
    margin-bottom: 0;
  }
}
.p-blog__pagenavi {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .p-blog__pagenavi {
    margin-top: 40px;
  }
}
.p-blog__pagenavi.d-none {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-blog__pagenavi.d-md-flex {
    display: flex;
  }
}
.p-blog__table {
  background-color: #f2f2f2;
  margin-top: 30px;
  max-height: 500px;
  height: 100%;
  overflow-y: scroll;
  padding: 30px;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .p-blog__table {
    display: none;
  }
}
.p-blog__table.absolute {
  position: absolute;
  right: 0;
  top: auto;
  bottom: 0;
  width: 320px;
}
.p-blog__table.fixed {
  position: fixed;
  -webkit-transform: translateX(50%);
  transform: translateX(50%);
  right: calc(50% - 423px);
  top: 50px;
  width: 320px;
}
@media screen and (max-width: 1279px) {
  .p-blog__table.fixed {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    right: 4.39239%;
  }
}
.p-blog__table-heading {
  font-size: 18px;
  padding-bottom: 8px;
  border-bottom: 1px solid #111e27;
  text-align: center;
}
.p-blog__table-heading.c-pageTitle span {
  background-color: transparent;
}
.p-blog__table-heading .c-pageTitle__inner {
  border: none;
  padding: 0;
  background-image: none;
}
.p-blog__table-heading .c-pageTitle__text {
  font-size: 18px;
  letter-spacing: 0.03em;
  font-family: "Noto Sans JP", sans-serif;
  padding: 0;
  border: none;
}
.p-blog .c-post table {
  border: 1px solid #13334c;
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px;
  font-family:
    游ゴシック体,
    Yu Gothic,
    YuGothic,
    Helvetica Neue,
    Helvetica,
    Arial,
    ヒラギノ角ゴ Pro W3,
    Hiragino Kaku Gothic ProN,
    Hiragino Kaku Gothic Pro,
    メイリオ,
    Meiryo,
    ＭＳ Ｐゴシック,
    MS PGothic,
    sans-serif;
  font-weight: 700;
  font-style: normal;
}
@media screen and (max-width: 767px) {
  .p-blog .c-post table {
    margin-bottom: 32px;
  }
}
.p-blog .c-post table tr td:first-child {
  background-color: #f6f6f6;
  width: 153px;
}
@media screen and (max-width: 767px) {
  .p-blog .c-post table tr td:first-child {
    width: 105px;
  }
}
.p-blog .c-post table td,
.p-blog .c-post table th {
  line-height: 1.75;
  padding: 8px 15px 10px;
  border: 1px solid #11225b;
  letter-spacing: 0.03em;
  color: #11225b;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-blog .c-post table td,
  .p-blog .c-post table th {
    font-size: 0.875rem;
    line-height: 1.85714;
    padding: 8px 12px;
  }
}
.p-blog .c-post table td {
  background-color: #fff;
}
.p-blog .c-post p {
  font-size: 1rem;
  margin-bottom: 40px;
  line-height: 1.75;
  font-weight: 400;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .p-blog .c-post p {
    font-size: 0.875rem;
    line-height: 1.85714;
    margin-bottom: 32px;
  }
}
.p-blog .c-post strong {
  color: #ed356a;
  font-weight: 500;
}
.p-blog .c-post__box {
  background-color: #f2f2f2;
  padding: 20px;
  margin-bottom: 40px;
}
.p-blog .c-post__box p {
  margin-bottom: 0;
}
.p-blog .c-post__table {
  font-family:
    游ゴシック体,
    Yu Gothic,
    YuGothic,
    Helvetica Neue,
    Helvetica,
    Arial,
    ヒラギノ角ゴ Pro W3,
    Hiragino Kaku Gothic ProN,
    Hiragino Kaku Gothic Pro,
    メイリオ,
    Meiryo,
    ＭＳ Ｐゴシック,
    MS PGothic,
    sans-serif;
  font-weight: 700;
  font-style: normal;
  margin-top: 80px;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .p-blog .c-post__table {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}
.p-blog .c-post__table .c-table_h2::before {
  /* font-family: futura-pt, sans-serif; */
  font-weight: 400;
  font-style: normal;
  font-weight: 500;
  position: static;
  display: inline-block;
  transform: translateY(1px);
}
.p-blog .c-post__table-heading {
  /* background-color: transparent; */
  background-color: #11225b;
  color: #111e27;
  color: white;
  padding: 8.5px 20px;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .p-blog .c-post__table-heading {
    background-color: #11225b;
    color: white;
    font-size: 1rem;
    font-size: 14px;
    line-height: 1.75;
    padding: 8px 20px 6px;
    padding: 9px 10px;
  }
}
.p-blog .c-post ol,
.p-blog .c-post ul {
  background-color: #f6f6f6;
  padding: 20px 30px;
  margin-bottom: 60px;
  font-family:
    游ゴシック体,
    Yu Gothic,
    YuGothic,
    Helvetica Neue,
    Helvetica,
    Arial,
    ヒラギノ角ゴ Pro W3,
    Hiragino Kaku Gothic ProN,
    Hiragino Kaku Gothic Pro,
    メイリオ,
    Meiryo,
    ＭＳ Ｐゴシック,
    MS PGothic,
    sans-serif;
  font-weight: 700;
  font-style: normal;
}
@media screen and (max-width: 767px) {
  .p-blog .c-post ol,
  .p-blog .c-post ul {
    margin-bottom: 40px;
    padding: 16px 20px;
  }
}
.p-blog .c-post ol li,
.p-blog .c-post ul li {
  font-size: 1rem;
  letter-spacing: 0.08em;
  line-height: 1.75;
  position: relative;
  /* padding-left: 22px; */
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-blog .c-post ol li,
  .p-blog .c-post ul li {
    font-size: 0.875rem;
    line-height: 1.85714;
  }
}
.p-blog .c-post ol li:not(:last-child),
.p-blog .c-post ul li:not(:last-child) {
  margin-bottom: 4px;
}
.p-blog .c-post ol li {
  /* padding-left: 25px; */
  counter-increment: num;
}
@media screen and (max-width: 767px) {
  .p-blog .c-post ol li {
    display: inline-flex;
    width: 100%;
    /* padding-left: 32px; */
  }
}
.p-blog .c-post ol li::before {
  content: counter(num) ".";
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.03em;
  position: absolute;
  top: -1px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-blog .c-post ol li::before {
    font-size: 1.125rem;
    font-size: 14px;
  }
}
.p-blog .c-post ul li::before {
  content: "";
  width: 14px;
  height: 14px;
  background: url(../images/common/icon-checked-square.svg) no-repeat center center/contain;
  position: absolute;
  top: 7px;
  left: 0;
}
.p-blog .c-post h2 {
  margin-bottom: 30px;
  font-size: 1.25rem;
  letter-spacing: 0.03em;
  line-height: 1.4;
  padding-left: 14px;
  position: relative;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-blog .c-post h2 {
    font-size: 1rem;
    margin-bottom: 32px;
  }
}
.p-blog .c-post h2::before {
  content: "";
  width: 6px;
  height: 100%;
  background-color: #11225b;
  position: absolute;
  top: 0;
  left: 0;
}
.p-blog .c-post h3 {
  font-size: 1rem;
  letter-spacing: 0.08em;
  line-height: 1.75;
  padding: 10px 0;
  border-top: 1px solid #11225b;
  border-bottom: 1px solid #11225b;
  margin-bottom: 40px;
  font-weight: 400;
  font-style: normal;
}
@media screen and (max-width: 767px) {
  .p-blog .c-post h3 {
    margin-bottom: 32px;
    font-size: 0.875rem;
    line-height: 1.85714;
  }
}
.p-blog .c-post .wp-block-image {
  width: 100%;
  margin-top: 60px;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .p-blog .c-post .wp-block-image {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
.p-blog .c-post .wp-block-image img {
  width: 100%;
}
.p-blog .c-post__balloon {
  clear: both;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-blog .c-post__balloon {
    margin-bottom: 32px;
    width: 100%;
  }
}
.p-blog .c-post__balloon::after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}
.p-blog .c-post__balloon-left {
  width: 100%;
  position: relative;
  display: block;
  max-width: 100%;
  clear: both;
}
.p-blog .c-post__balloon-left figure {
  left: 0;
}
.p-blog .c-post__balloon-left .c-post__balloon-text {
  margin-left: 66px;
}
@media screen and (max-width: 767px) {
  .p-blog .c-post__balloon-left .c-post__balloon-text {
    margin-left: 55px;
  }
}
.p-blog .c-post__balloon-left .c-post__balloon-text::before {
  right: calc(100% - 1px);
  border-width: 9px 13px 9px 0;
  top: 21px;
  border-color: transparent #f6f6f6 transparent transparent;
}
.p-blog .c-post__balloon figure {
  width: 52px;
  position: absolute;
  padding: 0;
  margin: 0;
  top: 0;
  padding-bottom: 22px;
}
@media screen and (max-width: 767px) {
  .p-blog .c-post__balloon-left .c-post__balloon-text::before {
    top: 15px;
  }
  .p-blog .c-post__balloon figure {
    width: 40px;
  }
}
.p-blog .c-post__balloon figure img {
  border-radius: 50%;
  width: 100%;
  height: auto;
}
.p-blog .c-post__balloon figure figcaption {
  font-size: 12px;
  width: max-content;
  bottom: 0;
  top: unset;
}
@media screen and (max-width: 767px) {
  .p-blog .c-post__balloon figure figcaption {
    font-size: 0.625rem;
    font-size: 10px;
    width: 58px;
    width: 44px;
    top: 45px;
  }
}
.p-blog .c-post__balloon-text {
  line-height: 1.5;
}
.p-blog .c-post__balloon-text::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  top: 24px;
}
.p-blog .c-post__band {
  background-color: #11225b;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.75;
  padding: 7px 20px;
}
@media screen and (max-width: 767px) {
  .p-blog .c-post__band {
    font-size: 0.875rem;
    line-height: 1.85714;
  }
}

.p-category {
  padding: 0 20px;
  padding-top: 0px;
  padding-right: 20px;
  padding-bottom: 0px;
  padding-left: 20px;
}
@media screen and (max-width: 767px) {
  .p-category {
    background-color: #f6f6f6;
    padding: 60px 20px;
  }
}
.p-category__head {
  margin-bottom: 29px;
}
@media screen and (max-width: 767px) {
  .p-category__title {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .p-category__title span {
    background-color: #fff;
  }
}
.p-category .c-pageTitle__text {
  padding: 11px 79px;
  font-size: 1.25rem;
}
.p-category__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .p-category__body {
    max-width: 540px;
    width: 100%;
    margin: 0 auto;
  }
}

.blog-archive {
  padding-bottom: 200px;
}
.blog-archive-lists {
  display: flex;
  flex-wrap: wrap;
  margin-left: -20px;
  margin-right: -20px;
  row-gap: 58px;
}
@media screen and (max-width: 767px) {
  .blog-archive-lists {
    margin-left: -7.5px;
    margin-right: -7.5px;
    row-gap: 40px;
  }
}
.blog-archive__item {
  width: 50%;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .blog-archive__item {
    padding: 0 7.5px;
  }
}
.blog-archive__img {
  margin-bottom: 24px;
}
.blog-archive__img img {
  width: 100%;
}
.blog-archive__title {
  font-size: 20px;
  line-height: 1.6;
  margin-top: 8px;
}
@media screen and (max-width: 767px) {
  .blog-archive__title {
    font-size: 14px;
    line-height: 1.7142857143;
  }
}

.p-popular {
  background-color: #f2f2f2;
  border-radius: 10px;
  padding: 30px;
}
@media screen and (max-width: 1023px) {
  .p-popular {
    padding: 14px;
  }
}
@media screen and (max-width: 767px) {
  .p-popular {
    padding: 0;
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  .p-popular__inner {
    max-width: 540px;
    margin: 0 auto;
  }
}
.p-popular__title {
  font-size: 18px;
  text-align: center;
  border-bottom: 1px solid #111e27;
  padding-bottom: 7px;
}
.p-popular__body {
  margin-top: 25px;
}
@media screen and (max-width: 767px) {
  .p-popular__body {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    row-gap: 30px;
    margin-top: 30px;
  }
}
.p-popular__body .c-title--circled {
  padding: 0 27px;
  background-color: #ffffff;
  margin: 0 auto 21px;
  display: block;
}
.p-popular__card {
  display: block;
}
@media screen and (max-width: 767px) {
  .p-popular__card {
    width: calc(50% - 7.5px);
  }
}
.p-popular__card:not(:last-of-type) {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .p-popular__card:not(:last-of-type) {
    margin-bottom: 0;
  }
}

.c-popular__cat {
  font-size: 12px;
  border: 1px solid #111e27;
  border-radius: 2px;
  padding: 2px 7.5px;
  background-color: transparent;
  color: #111e27;
  display: block;
  width: fit-content;
  margin-bottom: 3px;
}
@media screen and (max-width: 767px) {
  .c-popular__cat {
    font-size: 10px;
    display: inline;
  }
}
.c-popular__cat:not(:last-of-type) {
  margin-left: 8px;
}
.c-popular__cat:last-of-type {
  margin-right: 12px;
}
@media screen and (max-width: 767px) {
  .c-popular__cat:last-of-type {
    margin-right: 8px;
  }
}
.c-popular__date {
  padding-left: 0;
  font-size: 14px;
  color: #a2a2a2;
}
@media screen and (max-width: 767px) {
  .c-popular__date {
    font-size: 12px;
  }
}
.c-popular__date::before {
  content: none;
}
.c-popular__img {
  margin-bottom: 20px;
}
.c-popular__title {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.7142857143;
}

.c-pagenavi {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .c-pagenavi.d-md-none {
    display: none;
  }
}
.c-pagenavi .wp-pagenavi {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #11225b;
  position: relative;
}
.c-pagenavi .wp-pagenavi:has(.current) {
  background-color: #11225b;
  color: #ffffff;
}
.c-pagenavi .wp-pagenavi span {
  position: absolute;
  top: 50%;
  left: 52%;
  transform: translate(-50%, -50%);
  font-size: 14px;
  margin: 0;
}
.c-pagenavi .wp-pagenavi span.current {
  color: #ffffff;
}
.c-pagenavi .current::after {
  content: none;
}

.p-single__head {
  margin-bottom: 30px;
}
.p-single__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 8px;
}
.p-single__info .blog__date {
  margin-left: 0;
}
.p-single__title {
  font-size: 1.5625rem;
  line-height: 1.52;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-bottom: 8px;
  font-style: normal;
}
.p-single__author {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 30px;
}
.p-single__author-img {
  width: 40px;
}
.p-single__author-name {
  font-size: 0.875rem;
}
.p-single__img img {
  width: 100%;
}

.blog-single {
  padding-bottom: 279px;
}
.blog-single__info {
  margin-bottom: 10px;
}
.blog-single__title {
  font-size: 25px;
  line-height: 1.52;
}
.blog-single__author {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 15px;
  margin-bottom: 30px;
}
.blog-single__author-img {
  width: 40px;
}
.blog-single__author-name {
  font-size: 14px;
}
.blog-single__img {
  margin-bottom: 30px;
}
.blog-single__head {
  margin-bottom: 60px;
}

.c-table {
  text-align: center;
  /* border: 1px solid #13334c; */
}
@counter-style circled-numbers-sp {
  system: numeric;
  symbols: ① ① ② ③ ④ ⑤ ⑥ ⑦ ⑧ ⑨ ⑩ ⑪ ⑫ ⑬ ⑭ ⑮ ⑯ ⑰ ⑱ ⑲ ⑳;
  suffix: " ";
}
.c-table {
  border: 1px solid #11225b;
}
.c-table_wrap {
  text-align: left;
  padding: 30px !important;
  counter-reset: c-table-counter;
  background-color: #fff !important;
  margin-bottom: 0 !important;
}
@media screen and (max-width: 767px) {
  .c-table_wrap {
    padding: 20px !important;
  }
}
.c-table_h2 {
  position: relative;
  margin-bottom: 2px;
  margin-top: 27px;
}
.c-table_h2:not(:first-of-type) {
  margin-top: 16px;
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid #11225b;
}
.c-table_h2::before {
  position: absolute;
  counter-increment: c-table-counter !important;
  content: counter(c-table-counter, circled-numbers-sp) !important;
  /* width: 30px;
  height: 30px;
  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;
  top: -1px !important; */
  display: inline-block;
  margin-right: 2px;
  font-size: 14px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .c-table_h2::before {
    /* font-size: 16px !important;
    top: -0.5px !important; */
  }
}
.c-table_h2:first-child {
  margin-top: 0;
}
.c-table_h2 a {
  font-size: 1rem;
  line-height: 1.75;
  letter-spacing: 0.08em;
  font-weight: 500;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .c-table_h2 a {
    font-size: 14px;
  }
}
.c-table_h3 {
  padding-left: 16px !important;
  margin-left: 20px;
  margin-bottom: -2px !important;
}
@media screen and (max-width: 767px) {
  .c-table_h3 {
    margin-left: 0px;
    padding-left: 12px !important;
  }
}
.c-table_h3::before {
  content: "・" !important;
  font-size: 0.875rem !important;
  position: absolute;
  top: 2px !important;
  left: 0 !important;
}
.c-table_h3 a {
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0.08em;
}

.c-sideTable {
  /* background-color: #f6f6f6; */
  text-align: center;
}
@counter-style circled-numbers {
  system: numeric;
  symbols: ① ① ② ③ ④ ⑤ ⑥ ⑦ ⑧ ⑨ ⑩ ⑪ ⑫ ⑬ ⑭ ⑮ ⑯ ⑰ ⑱ ⑲ ⑳;
  suffix: " ";
}
.c-sideTable_wrap {
  text-align: left;
  counter-reset: c-table-counter;
  padding-top: 25px;
}
.c-sideTable_h2 {
  /* padding-left: 19px; */
  position: relative;
  margin-bottom: 8px;
  margin-top: 27px;
}
.c-sideTable_h2::before {
  position: absolute;
  counter-increment: c-table-counter;
  content: counter(c-table-counter, circled-numbers);
  /* width: 30px;
  height: 30px;
  top: -4px;
  left: -14px; */
  letter-spacing: 0.03em;
  font-size: 14px;
  line-height: calc(24 / 14);
  color: #13334c;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  position: static;
  display: inline-block;
  margin-right: 2px;
}
@media screen and (max-width: 767px) {
  .c-sideTable_h2::before {
    content: none;
  }
}
.c-sideTable_h2:first-child {
  margin-top: 0;
}
.c-sideTable_h2 a {
  font-size: 0.875rem;
  line-height: 1.75;
}
.c-sideTable_h3 {
  padding-left: 16px;
  /* margin-left: 14px; */
  position: relative;
  margin-bottom: 4px;
}
.c-sideTable_h3::before {
  content: "・";
  font-size: 0.75rem;
  position: absolute;
  left: 0;
  top: 5px;
}
@media screen and (max-width: 767px) {
  .c-sideTable_h3::before {
    content: none;
  }
}
.c-sideTable_h3 a {
  font-size: 0.75rem;
  line-height: 1.66667;
}

.blog-related {
  margin-top: 140px;
}
@media screen and (max-width: 767px) {
  .blog-related {
    margin-left: -20px;
    width: 100vw;
    background-color: #f2f2f2;
    margin-top: 0;
    padding: 0 20px;
    padding-bottom: 180px;
  }
}
.blog-related__main-title {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .blog-related__main-title {
    border-bottom: 1px solid #111e27;
    padding-bottom: 8px;
    margin-bottom: 40px;
  }
}
.blog-related__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}
@media screen and (max-width: 1023px) {
  .blog-related__list {
    gap: 15px;
    row-gap: 40px;
    grid-template-columns: repeat(2, 1fr);
  }
}
.blog-related__link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.blog-related__img {
  width: 100%;
  overflow: hidden;
}
.blog-related__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.blog-related__item:hover .blog-related__img img {
  transform: scale(1.05);
}
.blog-related__content {
  padding-top: 25px;
}
.blog-related__content .p-single__info {
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .blog-related__content .p-single__info {
    gap: 8px;
  }
}
.blog-related__author {
  font-size: 0.75rem;
  color: #a2a2a2;
  margin: 0;
}
.blog-related-btn-wrapper {
  margin: 60px auto 0;
}
.blog-related__title {
  font-size: 1.25rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .blog-related__content {
    padding-top: 15px;
  }
  .blog-related__title {
    font-size: 14px;
    margin-top: 8px;
    line-height: 1.7142857143;
  }
}

.c-blogBlock__author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}
.c-blogBlock__author-img {
  width: 38px;
  position: relative;
}
.c-blogBlock__author-img::before {
  display: block;
  content: "";
  padding-top: 100%;
}
.c-blogBlock__author-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  border-radius: 50%;
}
.c-blogBlock__author-name {
  font-size: 0.625rem;
  letter-spacing: 0.08em;
  font-weight: 500;
  font-style: normal;
}
.c-blogBlock__img {
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .c-blogBlock__img {
    margin-bottom: 14px;
  }
}
.c-blogBlock__img img {
  width: 100%;
}
.c-blogBlock__title {
  font-size: 20px;
  line-height: 1.6;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .c-blogBlock__title {
    font-size: 14px;
    line-height: 1.7142857143;
    margin-top: 5px;
  }
}

.p-blogBlock__item {
  width: 50%;
  padding: 0 20px;
}
@media screen and (max-width: 1023px) {
  .p-blogBlock__item {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-blogBlock__item {
    width: 50%;
    padding: 0 7.5px;
  }
}

@media screen and (max-width: 767px) {
  .single-blog .breadcrumb-wrapper {
    margin-top: 65px;
  }
}

@media screen and (max-width: 767px) {
  .post-type-archive-blog .p-popular {
    padding-bottom: 180px;
  }
}

.c-category,
.c-date {
  font-family: "Noto Sans JP", sans-serif;
} /*# sourceMappingURL=style-blog.css.map */

.c-blogBlock .c-blogBlock__img img {
  transition: all 0.3s;
}
.c-blogBlock:hover .c-blogBlock__img img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.c-blogBlock .c-blogBlock__title {
  font-size: 1.25rem;
  line-height: 1.6;
  letter-spacing: 0.03em;
  margin-top: 4px;
}
@media screen and (max-width: 767px) {
  .c-blogBlock .c-blogBlock__title {
    font-size: 14px;
    line-height: calc(24 / 14);
    /* 3行以上は省略 */
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
}
.c-blogBlock .c-blogBlock__title span {
  display: inline;
  background-position: left 0 bottom 0;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#333), to(#333));
  background-image: linear-gradient(#333, #333);
  background-repeat: no-repeat;
  background-size: 0 1px;
}
.c-blogBlock:hover .c-blogBlock__title span {
  -webkit-animation: underline_animation 0.8s both;
  animation: underline_animation 0.8s both;
}
@keyframes underline_animation {
  0% {
    background-size: 0 1px;
    background-position: left 0 bottom 0;
  }
  100% {
    background-size: 100% 1px;
    background-position: left 0 bottom 0;
  }
}

.p-blog {
  padding-top: 105px;
}
.p-blog .breadcrumb-wrapper {
  margin-top: 0;
  margin-bottom: 90px;
}
@media screen and (max-width: 767px) {
  .p-blog .breadcrumb-wrapper {
    margin-bottom: 60px;
  }
}
.single-blog .breadcrumb-wrapper ul {
  border-bottom: none;
  padding-bottom: 0;
}
.p-blog .wp-block-list li {
  padding-left: 25px;
}

@media screen and (max-width: 767px) {
  .post-type-archive-blog .p-blog,
  .tax-blog_category .p-blog {
    padding-top: 0;
  }
  .post-type-archive-blog .breadcrumb-wrapper,
  .tax-blog_category .breadcrumb-wrapper {
    margin-bottom: 60px;
  }
  .p-blog .wp-block-list li {
    padding-left: 20px;
  }
}
