@charset "UTF-8";
:root {
  /* color */
  --color-white: #ffffff;
  --color-text: #4f4f4f;
  --color-text-blue: #005587;
  --color-bg-light: #eefaff;
  --color-bg-dark: #eaf1f8;
  --color-blue-light: #0bbbef;
  --color-blue-main: #035788;
  --color-blue-medium: #046b9d;
  --color-blue-dark: #032a57;
  --color-green-light: #5083a1;
  --color-orange: #ff8617;
  --color-line: #d9d9d9;
  --color-border: #cfd8e3;
  /* font */
  --font-sans: YuGothic, "Yu Gothic", "游ゴシック体", "游ゴシック", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  --font-en: Arial, "Helvetica Neue", Helvetica, sans-serif;
}

.p-news-archive,
.p-news-single {
  background: linear-gradient(180deg, var(--color-bg-light) 0%, var(--color-white) 100%);
}

.p-news-archive__content,
.p-news-single__content {
  padding-top: 120rem;
}
@media only screen and (max-width: 1271px) {
  .p-news-archive__content,
  .p-news-single__content {
    padding-top: 88rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-news-archive__content,
  .p-news-single__content {
    padding-top: 64rem;
  }
}

.p-news-archive__box,
.p-news-single__box {
  padding: 64rem;
  background-color: var(--color-white);
}
@media only screen and (max-width: 1271px) {
  .p-news-archive__box,
  .p-news-single__box {
    padding: 56rem 40rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-news-archive__box,
  .p-news-single__box {
    padding: 40rem 24rem;
  }
}

.p-news-archive__category-nav {
  display: grid;
  grid-template-columns: repeat(4, 180rem);
  -moz-column-gap: 32rem;
       column-gap: 32rem;
  justify-content: center;
  margin-bottom: 64rem;
}
@media only screen and (max-width: 1271px) {
  .p-news-archive__category-nav {
    grid-template-columns: repeat(4, 150rem);
    -moz-column-gap: 16rem;
         column-gap: 16rem;
    margin-bottom: 56rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-news-archive__category-nav {
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 8rem;
         column-gap: 8rem;
    row-gap: 8rem;
    margin-bottom: 40rem;
  }
}

.p-news-archive__category-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180rem;
  min-height: 44rem;
  padding: 0 12rem;
  overflow: hidden;
  color: var(--color-blue-main);
  font-size: 14rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
  background-color: var(--color-bg-dark);
  transition: opacity 0.3s ease;
}
@media only screen and (max-width: 1271px) {
  .p-news-archive__category-button {
    width: 150rem;
    min-height: 40rem;
    padding: 0 6rem;
    font-size: 12rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-news-archive__category-button {
    width: 100%;
    min-height: 38rem;
    font-size: 11rem;
  }
}

@media only screen and (min-width: 1272px) and (hover: hover) and (pointer: fine) {
  .p-news-archive__category-button:not(.is-current):hover {
    opacity: 0.7;
  }
}
.p-news-archive__category-button.is-current {
  color: var(--color-white);
  background-color: var(--color-blue-main);
  pointer-events: none;
}

.p-news-archive__list {
  border-top: none;
}

.p-news-archive__item {
  display: grid;
  grid-template-columns: 110rem 150rem 1fr;
  gap: 16rem;
  align-items: center;
  padding: 20rem 0;
  color: var(--color-text);
  text-decoration: none;
  border-bottom: 1rem solid var(--color-bg-dark);
  transition: opacity 0.3s ease;
}
@media only screen and (max-width: 1271px) {
  .p-news-archive__item {
    grid-template-columns: 96rem 136rem 1fr;
    gap: 14rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-news-archive__item {
    grid-template-columns: 1fr;
    gap: 10rem;
    padding: 18rem 0;
  }
}

@media only screen and (min-width: 1272px) and (hover: hover) and (pointer: fine) {
  .p-news-archive__item:hover {
    opacity: 0.7;
  }
}
.p-news-archive__item:first-child {
  padding-top: 0;
}

.p-news-archive__meta {
  display: contents;
}
@media only screen and (max-width: 767px) {
  .p-news-archive__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8rem 12rem;
  }
}

.p-news-single__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16rem;
}

.p-news-archive__date,
.p-news-single__date {
  color: var(--color-green-light);
  font-size: 13rem;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .p-news-archive__date,
  .p-news-single__date {
    font-size: 12rem;
  }
}

.p-news-archive__term {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120rem;
  min-height: 28rem;
  padding: 0 8rem;
  overflow: hidden;
  color: var(--color-blue-main);
  font-size: 11rem;
  font-weight: 700;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
  background-color: var(--color-bg-dark);
}
@media only screen and (max-width: 1271px) {
  .p-news-archive__term {
    width: 112rem;
    padding: 0 6rem;
    font-size: 10rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-news-archive__term {
    width: auto;
    max-width: 100%;
    min-height: 26rem;
    padding: 4rem 10rem;
    font-size: 11rem;
    white-space: normal;
  }
}

.p-news-single__term {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88rem;
  min-height: 28rem;
  padding: 0 12rem;
  color: var(--color-blue-main);
  font-size: 12rem;
  font-weight: 700;
  background-color: var(--color-bg-dark);
}

.p-news-archive__title,
.p-news-single__title {
  color: var(--color-blue-main);
  font-weight: 700;
  line-height: 1.6;
}

.p-news-archive__title {
  font-size: 16rem;
  text-decoration: none;
}
@media only screen and (max-width: 1271px) {
  .p-news-archive__title {
    font-size: 15rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-news-archive__title {
    font-size: 14rem;
  }
}

.p-news-single__title {
  margin-top: 24rem;
  padding-bottom: 24rem;
  font-size: 24rem;
  border-bottom: 1rem solid var(--color-bg-dark);
}
@media only screen and (max-width: 767px) {
  .p-news-single__title {
    font-size: 20rem;
  }
}

.p-news-archive__pagination {
  margin-top: 64rem;
  max-width: 100%;
  overflow: visible;
}
@media only screen and (max-width: 1271px) {
  .p-news-archive__pagination {
    margin-top: 56rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-news-archive__pagination {
    margin-top: 40rem;
    padding-inline: 4rem;
  }
}

.p-news-archive__pagination-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16rem;
  max-width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
}
@media only screen and (max-width: 767px) {
  .p-news-archive__pagination-list {
    gap: 7rem;
  }
}

.p-news-archive__pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52rem;
  height: 52rem;
  box-sizing: border-box;
  color: var(--color-text);
  font-size: 16rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  background-color: var(--color-white);
  border: 1rem solid var(--color-bg-dark);
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}
@media only screen and (max-width: 767px) {
  .p-news-archive__pagination .page-numbers {
    width: 34rem;
    height: 34rem;
    font-size: 14rem;
  }
}

@media only screen and (min-width: 1272px) and (hover: hover) and (pointer: fine) {
  .p-news-archive__pagination .page-numbers:not(.current):not(.dots):hover {
    color: var(--color-white);
    background-color: var(--color-blue-main);
    border-color: var(--color-blue-main);
  }
}
.p-news-archive__pagination .page-numbers.current {
  color: var(--color-white);
  background-color: var(--color-blue-main);
  border-color: var(--color-blue-main);
}

.p-news-archive__pagination .page-numbers.dots {
  border-color: transparent;
  background-color: transparent;
}

.p-news-archive__pagination .page-numbers.prev,
.p-news-archive__pagination .page-numbers.next {
  color: var(--color-blue-light);
  font-size: 24rem;
  font-weight: 400;
  background-color: var(--color-white);
  border: 1rem solid var(--color-bg-dark);
}

.p-news-single__editor {
  margin-top: 40rem;
  color: var(--color-text);
  font-size: 16rem;
  font-weight: 500;
  line-height: 1.75;
}
@media only screen and (max-width: 1271px) {
  .p-news-single__editor {
    margin-top: 32rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-news-single__editor {
    margin-top: 24rem;
    font-size: 15rem;
    line-height: 1.8;
  }
}

.p-news-single__editor > * {
  margin-top: 0;
  margin-bottom: 0;
}

.p-news-single__editor p {
  color: var(--color-text);
  font-size: 16rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.64px;
}
@media only screen and (max-width: 767px) {
  .p-news-single__editor p {
    font-size: 15rem;
    line-height: 1.6;
  }
}

.p-news-single__editor strong {
  font-weight: 700;
}

.p-news-single__editor a {
  color: var(--color-blue-main);
  text-decoration: underline;
  text-underline-offset: 4rem;
  word-break: break-all;
  overflow-wrap: anywhere;
}

.p-news-single__editor .has-red-text {
  color: #bf0000;
}

.p-news-single__editor h2.wp-block-heading {
  position: relative;
  display: block;
  padding-left: 22rem;
  color: var(--color-blue-main);
  font-size: 32rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 43rem;
}
.p-news-single__editor h2.wp-block-heading::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 6rem;
  height: 42rem;
  background-color: var(--color-blue-light);
  content: "";
  transform: translateY(-50%);
}
@media only screen and (max-width: 1271px) {
  .p-news-single__editor h2.wp-block-heading {
    padding-left: 18rem;
    font-size: 24rem;
    line-height: 1.45;
    margin-bottom: 32rem;
  }
  .p-news-single__editor h2.wp-block-heading::before {
    width: 5rem;
    height: 32rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-news-single__editor h2.wp-block-heading {
    padding-left: 14rem;
    font-size: 20rem;
    line-height: 1.45;
    margin-bottom: 24rem;
  }
  .p-news-single__editor h2.wp-block-heading::before {
    top: 0.72em;
    width: 5rem;
    height: 24rem;
  }
}

.p-news-single__editor h3.wp-block-heading {
  position: relative;
  display: block;
  padding-left: 20rem;
  color: var(--color-blue-main);
  font-size: 24rem;
  font-weight: 700;
  line-height: 1.6666666667;
  margin-bottom: 16rem;
}
.p-news-single__editor h3.wp-block-heading::before {
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 8rem;
  height: 8rem;
  background-color: var(--color-blue-light);
  content: "";
  transform: translateY(-50%);
}
@media only screen and (max-width: 1271px) {
  .p-news-single__editor h3.wp-block-heading {
    font-size: 22rem;
    line-height: 1.45;
    margin-bottom: 14rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-news-single__editor h3.wp-block-heading {
    padding-left: 16rem;
    font-size: 18rem;
    line-height: 1.45;
    margin-bottom: 12rem;
  }
  .p-news-single__editor h3.wp-block-heading::before {
    top: 0.72em;
    width: 6rem;
    height: 6rem;
  }
}

.p-news-single__editor h4.wp-block-heading {
  color: var(--color-blue-main);
  font-size: 20rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 16rem;
}
@media only screen and (max-width: 1271px) {
  .p-news-single__editor h4.wp-block-heading {
    font-size: 18rem;
    margin-bottom: 14rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-news-single__editor h4.wp-block-heading {
    font-size: 16rem;
    margin-bottom: 12rem;
  }
}

.p-news-single__editor h2 + p,
.p-news-single__editor h3 + p,
.p-news-single__editor h4 + p {
  margin-top: 0;
}

.p-news-single__editor p + p {
  margin-top: 24rem;
}
@media only screen and (max-width: 1271px) {
  .p-news-single__editor p + p {
    margin-top: 20rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-news-single__editor p + p {
    margin-top: 16rem;
  }
}

.p-news-single__editor p + h3,
.p-news-single__editor p + h4,
.p-news-single__editor .wp-block-buttons + h3,
.p-news-single__editor .wp-block-buttons + h4 {
  margin-top: 32rem;
}
@media only screen and (max-width: 1271px) {
  .p-news-single__editor p + h3,
  .p-news-single__editor p + h4,
  .p-news-single__editor .wp-block-buttons + h3,
  .p-news-single__editor .wp-block-buttons + h4 {
    margin-top: 28rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-news-single__editor p + h3,
  .p-news-single__editor p + h4,
  .p-news-single__editor .wp-block-buttons + h3,
  .p-news-single__editor .wp-block-buttons + h4 {
    margin-top: 24rem;
  }
}

.p-news-single__editor h2 + .wp-block-buttons,
.p-news-single__editor h3 + .wp-block-buttons,
.p-news-single__editor h4 + .wp-block-buttons {
  margin-top: 0;
}

.p-news-single__editor ul,
.p-news-single__editor ol {
  padding-left: 0;
  list-style: none;
}

.p-news-single__editor li {
  position: relative;
  padding-left: 20rem;
  color: var(--color-text);
  font-size: 16rem;
  line-height: 1.8;
}

.p-news-single__editor ul li::before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 5rem;
  height: 5rem;
  background-color: var(--color-blue-light);
}

.p-news-single__editor ol {
  counter-reset: number;
}

.p-news-single__editor ol li {
  counter-increment: number;
}

.p-news-single__editor ol li::before {
  content: counter(number) ".";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--color-blue-main);
  font-weight: 700;
}

.p-news-single__editor table {
  width: 100%;
  border-collapse: collapse;
  border: 1rem solid #cccccc;
}

.p-news-single__editor thead {
  display: none;
}

.p-news-single__editor th,
.p-news-single__editor td {
  padding: 24rem 32rem;
  border: 1rem solid #cccccc;
  color: var(--color-text);
  font-size: 16rem;
  font-weight: 500;
  line-height: 1.75;
  text-align: left;
  vertical-align: middle;
}

.p-news-single__editor tbody tr > :first-child {
  width: 270rem;
  color: var(--color-text);
  font-weight: 700;
  background-color: var(--color-bg-dark);
}

@media only screen and (max-width: 767px) {
  .p-news-single__editor table,
  .p-news-single__editor tbody,
  .p-news-single__editor tr,
  .p-news-single__editor th,
  .p-news-single__editor td {
    display: block;
    width: 100%;
  }
  .p-news-single__editor th,
  .p-news-single__editor td {
    padding: 16rem;
  }
  .p-news-single__editor tbody tr > :first-child {
    width: 100%;
  }
}
.p-news-single__editor .wp-block-buttons {
  margin-top: 32rem;
}
@media only screen and (max-width: 767px) {
  .p-news-single__editor .wp-block-buttons {
    margin-top: 24rem;
    width: 100%;
  }
  .p-news-single__editor .wp-block-buttons .wp-block-button {
    width: 100%;
    flex: 0 0 100%;
  }
}

.p-news-single__editor .wp-block-button__link {
  position: relative;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 320rem;
  min-width: 320rem;
  min-height: 48rem;
  padding: 0 48rem 0 24rem;
  color: var(--color-white);
  white-space: nowrap;
  font-size: 14rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.56px;
  text-align: center;
  text-decoration: none;
  background-color: var(--color-orange);
  border: 1rem solid var(--color-orange);
  border-radius: 0;
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}
.p-news-single__editor .wp-block-button__link::after {
  position: absolute;
  top: 50%;
  right: 18rem;
  width: 0;
  height: 0;
  border-top: 3rem solid transparent;
  border-bottom: 3rem solid transparent;
  border-left: 5rem solid currentColor;
  content: "";
  transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  .p-news-single__editor .wp-block-button__link {
    width: 100%;
    padding: 0 40rem 0 16rem;
    min-width: 0;
  }
  .p-news-single__editor .wp-block-button__link::after {
    right: 16rem;
  }
}

.p-news-single__editor .wp-block-button__link:hover {
  color: var(--color-orange);
  background-color: var(--color-white);
  border-color: var(--color-orange);
}

.p-news-single__nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20rem;
  margin-top: 80rem;
  padding-top: 40rem;
  border-top: 1rem solid var(--color-bg-dark);
}
@media only screen and (max-width: 1271px) {
  .p-news-single__nav {
    gap: 16rem;
    margin-top: 64rem;
    padding-top: 36rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-news-single__nav {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 6rem;
    margin-top: 48rem;
    padding-top: 32rem;
  }
}

.p-news-single__nav-prev {
  display: flex;
  justify-content: flex-start;
}

.p-news-single__nav-back {
  display: flex;
  justify-content: center;
}

.p-news-single__nav-next {
  display: flex;
  justify-content: flex-end;
}

.p-news-single__nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 8rem;
       column-gap: 8rem;
  color: var(--color-text);
  font-size: 14rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.3s ease;
}
@media only screen and (max-width: 767px) {
  .p-news-single__nav a {
    -moz-column-gap: 4rem;
         column-gap: 4rem;
    min-height: 18rem;
    font-size: 14rem;
  }
}

@media only screen and (min-width: 1272px) and (hover: hover) and (pointer: fine) {
  .p-news-single__nav a:hover {
    opacity: 0.7;
  }
}
.p-news-single__nav-text {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.p-news-single__nav-text--sp {
  display: none;
}

.p-news-single__nav-icon {
  display: block;
  flex-shrink: 0;
  width: 6rem;
  height: 8rem;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-news-single__nav-icon--list {
  width: 14rem;
  height: 14rem;
}
@media only screen and (max-width: 767px) {
  .p-news-single__nav-icon--list {
    width: 12rem;
    height: 12rem;
  }
}

.p-news-single__nav-icon--prev {
  transform: none;
}

.p-news-single__nav-icon--next {
  transform: rotate(180deg);
}

@media only screen and (max-width: 767px) {
  .p-news-single__nav-text--pc {
    display: none;
  }
  .p-news-single__nav-text--sp {
    display: inline-flex;
  }
}
.p-news-archive__sns,
.p-news-single__sns {
  padding-top: 120rem;
  padding-bottom: 120rem;
}
@media only screen and (max-width: 1271px) {
  .p-news-archive__sns,
  .p-news-single__sns {
    padding-top: 88rem;
    padding-bottom: 88rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-news-archive__sns,
  .p-news-single__sns {
    padding-top: 64rem;
    padding-bottom: 64rem;
  }
}