@charset "UTF-8";

/*-- ============= カラー ============= --*/
:root {
  --color-white: #fff;
  --color-black01: #464c50;
  --color-black02: #515a52;
  --color-text-main: #2e2e2e;
  --color-button01: #4d4747;
  --color-button02: #698561;
  --color-bg01: #ecebe4;
  --color-bg02: #ebe4d2;
  --color-bg03: #bec2a8;
  --color-bg04: #ebeae5;
  --color-titleBg04: #ebeae5;
}

/*-- ============= カラー END ============= --*/

.l-main {
  padding-top: 100px;
}

@media screen and (max-width: 959px) {
  .l-main {
    padding-top: 75px;
  }
}

.l-container {
  max-width: 1060px;
  padding-inline: 20px;
  margin: 0 auto;
}

@media screen and (max-width: 959px) {
  .l-container {
    padding-inline: 30px;
  }
}

.p-article h2 {
  position: relative;
  padding-left: 10px;
  margin-bottom: 30px;
  font-size: 20px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 600;
  line-height: 1.8;
  background: var(--color-titleBg04);
}

.p-article h3 {
  margin-bottom: 30px;
  font-size: 20px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 600;
  line-height: 1.8;
  color: var(--color-black02);
}

.p-article p {
  margin-bottom: 30px;
  font-size: 16px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
}

.p-article {
  padding-block: 150px;
}

.p-article__date {
  font-size: 14px !important;
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  margin-bottom: 18px;
}

.p-article__title {
  margin-bottom: 50px;
  font-size: 22px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 600;
  line-height: 1.8;
}

.p-article .wp-block-image {
  margin-bottom: 30px;
}

.c-button {
  width: 100%;
  width: 295px;
  margin-inline: auto;
  margin-top: 100px;
}

.c-button__link {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 56px;
  border-radius: 54px;
  background: transparent;
  border: 1px solid var(--color-button01);
  font-size: 18px;
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  line-height: 56px;
  color: var(color-button01);
  text-align: center;
}

@media screen and (max-width: 959px) {
  .p-article h2 {
    padding-left: 0;
    padding-block: 5px;
    padding-inline: 5px;
    font-size: 18px;
  }

  .p-article h3 {
    margin-bottom: 30px;
    font-size: 18px;
  }

  .p-article p {
    font-size: 14px;
  }

  .p-article {
    padding-block: 70px;
  }

  .p-article__date {
    font-size: 12px !important;
  }

  .p-article__title {
    font-size: 18px;
    margin-bottom: 30px;
  }

  .c-button {
    max-width: none;
    min-width: 300px;
    width: 70%;
    margin-inline: auto;
  }

  .c-button__link {
    align-items: center;
    font-size: 18px;
    height: 60px;
    line-height: 60px;
  }
}
/*-----------------------------*/

/* ページャー */
.p-article__pager {
  padding-inline: 30px;
  margin-top: 90px;
}

.p-article__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.p-article__item_prev a,
.p-article__item_next a {
  display: block;
}

.p-article__item_prev a {
  position: relative;
  padding-left: 35px;
}

.p-article__item_next a {
  position: relative;
  padding-right: 35px;
}

.p-article__item_prev a::before {
  position: absolute;
  top: 50%;
  left: 0;
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--color-black01);
  border-left: 2px solid var(--color-black01);
  transform: translateY(-50%) rotate(-45deg);
}

.p-article__item_next a::before {
  position: absolute;
  top: 50%;
  right: 0;
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--color-black01);
  border-right: 2px solid var(--color-black01);
  transform: translateY(-50%) rotate(45deg);
}

.p-article__label {
  display: block;
  font-size: 16px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
  color: var(--color-black01);
}

@media screen and (max-width: 959px) {
  .p-article__pager {
    padding-inline: 0;
    margin-top: 72px;
  }

  .p-article__item_prev a {
    padding-left: 30px;
  }

  .p-article__item_next a {
    padding-right: 30px;
  }
}
