@charset "utf-8";
body {
  background-color: #cfdbeb;
  /* font-family: 'Noto Sans', 'Noto Sans JP', sans-serif; */
}
em {
  font-weight: bold;
  font-style: normal;
}
img {
  vertical-align: bottom;
}
.p-wrapper {
  margin: 0 auto;
  /* max-width: 1284px; */
  background-color: #cfdbeb;
  width: 95%;
  padding: 20px 0;
}
@media screen and (min-width: 768px) {
  .p-wrapper {
    max-width: 960px;
    padding: 40px 0;
  }
}
.single .single__body .wp-block-embed {
  margin: 20px 0 20px;
  padding-bottom: 20px;
}
.p-inner {
  background-color: #fff;
}
.ly_footer_bottom {
  background-color: #fff;
}
/* 目次表示 */
.toc_list.hide {
  display: none;
}
#toc_toggle {
  color: #000;
}
#toc_toggle:hover {
  cursor: pointer;
}
#toc_toggle::before {
  content: "[表示]";
}

#toc_toggle.open::before {
  content: "[非表示]";
}
#toc_container {
  width: 292px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#toc_container.open {
  width: 70%;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.single .single__body h2 {
  text-align: left;
  border-left: 0.4rem solid #10316b;
  padding-inline-start: 1.2rem;
  margin: 25px 0;
}
@media screen and (min-width: 768px) {
  .single .single__body h2 {
    text-align: left;
    padding-inline-start: 1.6rem;
    border-left: 0.4rem solid #10316b;
  }
}
#toc_container.open {
  width: 100%;
}
@media screen and (min-width: 768px) {
  #toc_container.open {
    width: 70%;
  }
}

.single .single__body a:not([class]) {
  color: #10316b;
  text-decoration: underline;
}

.p-title {
  text-align: center;
  padding-bottom: 40px;
}
.p-article__item {
  width: 100%;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-article__item {
    width: calc((100% - 4% - 4%) / 3);
  }
}
.p-article__wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  column-gap: 4%;
  row-gap: 3rem;
}
@media screen and (min-width: 768px) {
  .p-article__wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    column-gap: 4%;
    row-gap: 6rem;
  }
}

.p-article__title {
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 8px;
  max-height: 112px;
  overflow: hidden;
  word-break: break-all;
}
@media screen and (min-width: 768px) {
  .p-article__title {
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.5;
    margin-top: 8px;
    max-height: 112px;
    overflow: hidden;
    word-break: break-all;
  }
}
.p-article__img {
  width: 100%;
  object-fit: cover;
  height: 204px;
}
@media screen and (min-width: 768px) {
  .p-article__img {
    width: 100%;
    object-fit: cover;
    height: 176px;
  }
}
thead th {
  font-weight: bold;
}
td:nth-child(2),
th:nth-child(2) {
  font-weight: bold;
}
table.normal td:nth-child(2) {
  font-weight: normal;
}
th:nth-child(1),
td:nth-child(1) {
  white-space: nowrap; /* 改行しない */
  width: 1%; /* 内容に応じて自動調整（最小幅） */
}
.p-list {
  font-weight: bold;
}
.p-page004__list,
.p-page008__list {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}
.p-page004__list li,
.p-page008__list li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 0.5em;
}
.p-page004__list li::before,
.p-page008__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 1em;
  height: 1em;
  border: 1px solid #000;
  border-radius: 2px;
  background-color: #fff;
}
.c-mb25 {
  margin-bottom: 25px !important;
}
.c-mb50 {
  margin-bottom: 50px !important;
}
.p-btn {
  display: block;
  width: 100%;
  font-size: 3.5vw;
  background-color: #f7c123;
  color: #10316b;
  font-weight: bold;
  border-radius: 10px;
  margin: 0 auto;
  padding: 18px 0 18px 13px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-btn {
    display: block;
    width: 60%;
    font-size: 1.8rem;
    background-color: #f7c123;
    color: #10316b;
    font-weight: bold;
    border-radius: 10px;
    margin: 0 auto;
    text-align: center;
    padding: 20px 60px;
    position: relative;
  }
}
.p-btn::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 12px;
  width: 9px;
  height: 9px;
  margin: auto;
  border-top: 2px solid #10316b;
  border-right: 2px solid #10316b;
  transform: rotate(45deg);
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .p-btn::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 40px;
    width: 9px;
    height: 9px;
    margin: auto;
    border-top: 2px solid #10316b;
    border-right: 2px solid #10316b;
    transform: rotate(45deg);
    box-sizing: border-box;
  }
}
.p-007__numbered-list {
  list-style: decimal;
  font-weight: bold;
  margin: 30px 0;
  list-style-position: inside;
}
.p-007__numbered-list li + li {
  margin-top: 15px;
}
.p-007__numbered-list p {
  font-weight: normal;
}

.p-bold {
  font-weight: bold;
}
.p-007__list {
  margin: 30px 0;
}
.p-007__list li {
  position: relative;
  padding-left: 1.2em;
}

.p-007__list li + li {
  margin-top: 15px;
}
.p-007__list li::before {
  content: "";
  width: 7px;
  height: 7px;
  display: inline-block;
  background-color: #10316b;
  border-radius: 100em;
  position: absolute;
  top: 8px;
  left: 0;
}
.p-007__table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}
.p-007__table td {
  font-weight: normal;
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}
.p-008__table td {
  font-weight: normal;
}
.c-mb__30 {
  margin-bottom: 30px !important;
}
.p-underline {
  text-decoration: underline;
}

.p-0011__table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}

.p-011__table td {
  font-weight: normal;
  width: 250px;
}

.p-0021__table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}

.p-021__table td {
  font-weight: normal;
  width: 250px;
}

@media screen and (max-width: 767px) {
.sp_block {
  display: block;
}
}
@media screen and (min-width: 768px) {
.sp_block {
  display: none;
}
}
.wp-image-top {
  text-align: center;
}

.cnclsn {
  margin-top: 50px;
}
