@charset "UTF-8";
/* ---------------------------------------
  基本情報
-----------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;700&display=swap");
:root {
  --vw: 1vw;
  --gutter: 2rem;
}

body.is-hidden {
  overflow: hidden;
}
@media screen and (max-width: 640px) {
  body {
    min-width: initial;
    --gutter: 1.5rem;
  }
}

html {
  font-size: 62.5%;
  overflow-y: scroll;
}
@media screen and (max-width: 1199px) {
  html {
    font-size: calc(0.8333333333 * var(--vw));
  }
}
@media screen and (max-width: 640px) {
  html {
    width: 100%;
    font-size: calc(1.3333333333 * var(--vw));
  }
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
address,
ul,
ol,
li,
dl,
dt,
dd,
table,
th,
td,
img,
form {
  margin: 0;
  padding: 0;
  border: none;
  line-height: 100%;
  font-style: normal;
  font-family: "Noto Sans JP", "メイリオ", Meiryo, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", Arial, Verdana, sans-serif;
  text-align: left;
  color: #1a1a1a;
  word-break: normal;
  line-break: strict;
  word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-text-size-adjust: 100%;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: "Noto Sans JP", "メイリオ", Meiryo, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", Arial, Verdana, sans-serif;
  color: #1a1a1a;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}

textarea {
  resize: vertical;
}

select::-ms-expand {
  display: none;
}

a {
  text-decoration: none;
  color: inherit;
  outline: none;
  transition: all 0.3s ease;
}
a img {
  backface-visibility: hidden;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transition: opacity 0.3s ease;
}
a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 640px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}
@media (hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}

input[type=submit] {
  transition: all 0.3s ease;
}
@media (hover: hover) {
  input[type=submit]:hover {
    opacity: 0.7;
  }
}

img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

figure {
  padding: 0;
  margin: 0;
}

table {
  border-collapse: collapse;
}

@media print {
  table {
    -webkit-column-break-inside: avoid;
    -moz-column-break-inside: avoid;
    break-inside: avoid;
  }
}
/* base
--------------------------------*/
h1,
h2,
h3,
h4,
h5,
p,
dt,
dd,
ul,
li,
th,
td,
input,
button,
textarea,
select,
address,
form {
  font-size: 1.6rem;
  line-height: 1.75;
}
@media screen and (max-width: 640px) {
  h1,
  h2,
  h3,
  h4,
  h5,
  p,
  dt,
  dd,
  ul,
  li,
  th,
  td,
  input,
  button,
  textarea,
  select,
  address,
  form {
    font-size: 2.6rem;
  }
}

main {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.aligncenter {
  display: block;
  margin: 0 auto;
}

.alignright {
  float: right;
}

.alignleft {
  float: left;
}

@keyframes fade_up {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes infinity_scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.l-container__page-ttl {
  border-bottom: 1px solid #000;
  padding: 0.2rem 0;
}
@media screen and (max-width: 640px) {
  .l-container__page-ttl {
    padding: 0.9rem 0;
  }
}
.l-container__page-ttl-txt {
  font-size: 1.2rem;
  color: #333;
  font-weight: 400;
  padding: 0 1rem;
}
@media screen and (max-width: 640px) {
  .l-container__page-ttl-txt {
    font-size: 1.8rem;
    line-height: 1.4444444444;
    padding: 0;
  }
}

.l-inner {
  max-width: 120rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.l-inner.--medium {
  max-width: 114rem;
}
.l-inner.--small {
  max-width: 110rem;
}
.l-inner.--xsmall {
  max-width: 108rem;
}
.l-inner.--has-side {
  display: grid;
  grid-template-columns: 1fr 26rem;
  gap: 4rem;
  align-items: flex-start;
}
@media screen and (max-width: 640px) {
  .l-inner.--has-side {
    display: block;
  }
}
.l-inner__main, .l-inner__side {
  grid-row: 1/2;
  margin-top: 3rem;
}
@media screen and (max-width: 640px) {
  .l-inner__main, .l-inner__side {
    margin-top: 4.8rem;
  }
}
.l-inner__main {
  grid-column: 1/2;
}
.l-inner__side {
  grid-column: 2/3;
}

/* ヘッダー */
.l-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background-color: #fff;
  border-bottom: 0.5rem solid #15541f;
}
@media screen and (max-width: 640px) {
  .l-header {
    border-bottom-width: 0.3rem;
  }
}
.l-header__inner {
  padding-top: 0.9rem;
  padding-bottom: 1.9rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
@media screen and (max-width: 640px) {
  .l-header__inner {
    padding: 0.9rem 2rem;
    align-items: flex-start;
  }
}
.l-header__logo {
  width: 10rem;
}
@media screen and (max-width: 640px) {
  .l-header__logo {
    width: 36.8rem;
  }
}
.l-header__logo img {
  width: 100%;
}
@media screen and (max-width: 640px) {
  .l-header__menu {
    position: fixed;
    z-index: 10001;
    top: 0;
    left: -100vw;
    width: 96.6%;
    height: 100vh;
    transition: left 0.4s ease-in-out;
    overflow: hidden;
    background-color: #d7e3f2;
    padding: 8rem 0;
  }
}
@media screen and (max-width: 640px) {
  .l-header__menu.is-open {
    left: 0;
  }
}
.l-header__menu-list {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 640px) {
  .l-header__menu-list {
    display: block;
    margin-top: 7.2rem;
    border-top: 1px solid #534741;
  }
}
@media screen and (max-width: 640px) {
  .l-header__menu-list + .l-header__menu-list {
    margin-top: 9.9rem;
  }
}
.l-header__menu-item {
  font-size: 1.5rem;
  line-height: 1.4666666667;
  font-weight: 500;
}
@media screen and (max-width: 640px) {
  .l-header__menu-item {
    color: #534741;
    font-weight: 400;
    font-size: 3rem;
    background-image: linear-gradient(to right, #534741 max(0.2rem, 1px), transparent max(0.2rem, 1px));
    background-size: max(0.7rem, 1px) max(0.2rem, 1px);
    background-repeat: repeat-x;
    background-position: left bottom;
  }
}
.l-header__menu-item + .l-header__menu-item {
  border-left: 1px solid #1a1a1a;
}
@media screen and (max-width: 640px) {
  .l-header__menu-item + .l-header__menu-item {
    border-left: none;
  }
}
.l-header__menu-item a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 2.15rem;
}
@media screen and (max-width: 640px) {
  .l-header__menu-item a {
    justify-content: flex-start;
    padding: 2.8rem 5rem;
  }
}
@media screen and (max-width: 640px) {
  .l-header__menu-item a:before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 1rem;
    width: 1.9rem;
    height: 1.9rem;
    background: url(../img/common/icn_arrow_right_black_thick.svg) no-repeat center/0.8rem;
  }
}
@media screen and (max-width: 640px) {
  .l-header__menu-item a .u-sp {
    display: inline-block !important;
  }
}
.l-header__menu-list-close {
  position: relative;
  justify-content: center;
  align-items: center;
  width: 30rem;
  height: 8rem;
  border: 1px solid #7b7278;
  background-color: #fff;
  box-shadow: 1px 1px 1px rgba(123, 114, 120, 0.75);
  margin: 10.8rem auto 0;
}
@media screen and (max-width: 640px) {
  .l-header__menu-list-close.u-sp {
    display: flex !important;
  }
}
.l-header__menu-list-close-txt {
  font-size: 3rem;
}
.l-header__menu-list-close-btn {
  position: absolute;
  font-size: 3.5rem;
  color: #7b7278;
  top: 50%;
  transform: translateY(-50%);
  right: 1.2rem;
}
.l-header__overlay {
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100vh;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
}
.is-open + .l-header__overlay {
  opacity: 1;
  pointer-events: all;
}
.l-header__btn + .l-header__btn {
  margin-top: 1.2rem;
}
.l-header__btn a {
  display: block;
  width: 10rem;
  height: 3.3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 500;
  color: #fff;
}
.l-header__btn.--request a {
  background-color: #e1465a;
}
.l-header__btn.--contact a {
  background-color: #eb9620;
}
.l-header__menu-close {
  position: absolute;
  z-index: 1;
  top: 6.8rem;
  right: 7rem;
  line-height: 1;
  font-size: 5.5rem;
  color: #4a2c14;
}
.l-header__menu-head-logo {
  width: 49.1rem;
  margin-left: 2.2rem;
}
@media screen and (max-width: 640px) {
  .l-header__menu-wrap {
    padding: 0 7rem 1rem 3rem;
    overflow-y: auto;
    width: 100%;
    height: 100%;
  }
}
.l-header__hamb {
  position: relative;
  width: 6.5rem;
  height: 4.3rem;
  margin-top: 1.8rem;
}
.l-header__hamb .line {
  position: absolute;
  width: 100%;
  height: 0.3rem;
  background-color: #1a1a1a;
  left: 0;
}
.l-header__hamb .line:nth-of-type(1) {
  top: 0;
}
.l-header__hamb .line:nth-of-type(2) {
  top: calc(50% - 0.15rem);
}
.l-header__hamb .line:nth-of-type(3) {
  bottom: 0;
}

/* フッター */
.l-footer {
  background-color: #eaeff9;
  border-top: 0.3rem solid #15541f;
}
@media screen and (max-width: 640px) {
  .l-footer {
    padding-bottom: 10.5rem;
  }
}
.l-footer__inner {
  padding-top: 4rem;
  padding-bottom: 6.6rem;
}
@media screen and (max-width: 640px) {
  .l-footer__inner {
    padding-top: 7.9rem;
  }
}
.l-footer__sns-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 11.6rem;
}
@media screen and (max-width: 640px) {
  .l-footer__sns-list {
    gap: 8.4rem;
  }
}
.l-footer__sns-item.--fb {
  width: 3.7rem;
}
@media screen and (max-width: 640px) {
  .l-footer__sns-item.--fb {
    width: 6rem;
  }
}
.l-footer__sns-item.--is {
  width: 3.6rem;
}
@media screen and (max-width: 640px) {
  .l-footer__sns-item.--is {
    width: 5.8rem;
  }
}
.l-footer__sns-item.--yt {
  width: 3.9rem;
}
@media screen and (max-width: 640px) {
  .l-footer__sns-item.--yt {
    width: 6.4rem;
  }
}
.l-footer__sns-item img {
  width: 100%;
}
.l-footer__block {
  position: relative;
  margin-top: 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5.7rem 0 2.8rem;
}
@media screen and (max-width: 640px) {
  .l-footer__block {
    margin-top: 21rem;
    flex-direction: column;
    align-items: center;
    gap: 5.8rem;
    padding-bottom: 6.2rem;
  }
}
@media screen and (max-width: 640px) {
  .l-footer__block:before {
    content: "";
    position: absolute;
    width: calc(100% + var(--gutter) * 2);
    left: calc(var(--gutter) * -1);
    bottom: 0;
    height: 1px;
    background-color: #1a1a1a;
  }
}
.l-footer__logo {
  width: 32.7rem;
}
@media screen and (max-width: 640px) {
  .l-footer__logo {
    width: 49.1rem;
  }
}
.l-footer__logo img {
  width: 100%;
}
.l-footer__address-txt {
  font-size: 1.5rem;
}
@media screen and (max-width: 640px) {
  .l-footer__address-txt {
    font-size: 2.6rem;
  }
}
.l-footer__tel-link {
  font-size: 1.4rem;
}
@media screen and (max-width: 640px) {
  .l-footer__tel-link {
    font-size: 2.3rem;
  }
}
.l-footer__tel-link .line {
  display: block;
}
.l-footer__tel-link .line01 {
  font-size: 3.8rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
@media screen and (max-width: 640px) {
  .l-footer__tel-link .line01 {
    font-size: 6.3rem;
    gap: 1.5rem;
  }
}
.l-footer__tel-link .line01 img {
  width: 3.8rem;
  margin-top: 0.3rem;
}
@media screen and (max-width: 640px) {
  .l-footer__tel-link .line01 img {
    width: 6.3rem;
    margin-top: 0.7rem;
  }
}
.l-footer__tel-link .line02 {
  text-align: right;
  margin-top: -0.8rem;
}
@media screen and (max-width: 640px) {
  .l-footer__tel-link .line02 {
    margin-top: -1.4rem;
  }
}
.l-footer__menu-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 11.3rem;
  padding: 0 3.4rem;
}
@media screen and (max-width: 640px) {
  .l-footer__menu-wrap {
    display: block;
    padding: 0 6.5rem;
    margin-top: 7.6rem;
  }
}
@media screen and (max-width: 640px) {
  .l-footer__menu-list + .l-footer__menu-list {
    margin-top: 4rem;
  }
}
.l-footer__menu-item {
  font-size: 1.5rem;
  color: #534741;
}
@media screen and (max-width: 640px) {
  .l-footer__menu-item {
    font-size: 2.6rem;
  }
}
.l-footer__menu-item.--space {
  margin-top: 2.6rem;
}
@media screen and (max-width: 640px) {
  .l-footer__menu-item a {
    padding: 1.32rem 0;
    display: inline-block;
  }
}
.l-footer__copyright {
  background-color: #15541f;
  text-align: center;
  font-size: 1.3rem;
  font-weight: 500;
  color: #fff;
  padding: 0.2rem 0 0.5rem;
}
@media screen and (max-width: 640px) {
  .l-footer__copyright {
    font-size: 2rem;
    padding: 2.6rem 0 2.5rem;
  }
}
.l-footer__back {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  cursor: pointer;
  width: 6.7rem;
  z-index: 1;
  display: none;
}
@media screen and (max-width: 640px) {
  .l-footer__back {
    bottom: 11rem;
  }
}
.l-footer__back img {
  width: 100%;
}
.l-footer__fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  gap: 0.4rem;
  background-color: #eaeff9;
  padding: 0.4rem;
  display: none;
}
.l-footer__fixed-btn {
  flex: 1;
}
.l-footer__fixed-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 9.7rem;
  border: 1px solid #15541f;
  background: #fff;
  color: #15541f;
  text-align: center;
  font-size: 2.8rem;
  gap: 1.2rem;
}
.l-footer__fixed-btn a .icn.--request {
  width: 3.2rem;
}
.l-footer__fixed-btn a .icn.--contact {
  width: 3.7rem;
  margin-right: -0.8rem;
}
.l-footer__fixed-btn a .icn.--tel {
  width: 2.7rem;
}

.c-breadcrumb__wrap {
  margin-top: 0.8rem;
  background-color: #cee8e2;
}
.c-breadcrumb ul {
  padding: 1.8rem 3rem;
}
@media screen and (max-width: 640px) {
  .c-breadcrumb ul {
    padding: 1rem 0.5rem;
  }
}
.c-breadcrumb li {
  color: #7c9c81;
  font-size: 1.1rem;
  display: inline-block;
  word-break: normal;
  max-width: 30rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 640px) {
  .c-breadcrumb li {
    font-size: 2rem;
  }
}
.c-breadcrumb li + li::before {
  content: "";
  display: inline-block;
  width: 1rem;
  height: auto;
  aspect-ratio: 1;
  background: url(../img/common/icn_arrow_right_green_thin.svg) no-repeat center/0.4rem;
  margin-bottom: -0.08em;
}
@media screen and (max-width: 640px) {
  .c-breadcrumb li + li::before {
    width: 1.86rem;
    background-size: 0.7rem;
  }
}

.c-banner-links {
  padding: 6.6rem 0;
}
@media screen and (max-width: 640px) {
  .c-banner-links {
    padding: 5.5rem 0;
  }
}
.c-banner-links__list {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  padding: 0 3rem;
}
@media screen and (max-width: 640px) {
  .c-banner-links__list {
    gap: 3rem;
    padding: 0;
  }
}
.c-banner-links__item {
  width: calc((100% - 5rem) / 3);
}
@media screen and (max-width: 640px) {
  .c-banner-links__item {
    width: calc((100% - 6rem) / 3);
  }
}
.c-banner-links__item img {
  width: 100%;
}

.c-heading.--type01 {
  border-bottom: 0.3rem solid #1a1a1a;
  padding-bottom: 4.6rem;
}
.c-heading.--type01 * {
  font-size: 3.6rem;
  line-height: 1.25;
}
@media screen and (max-width: 640px) {
  .c-heading.--type01 * {
    font-size: 4.6rem;
    letter-spacing: 0;
  }
}
.c-heading.--type02 {
  position: relative;
  border-bottom: 0.3rem solid #1a1a1a;
  margin: 0 3rem;
  padding-bottom: 1.6rem;
}
@media screen and (max-width: 640px) {
  .c-heading.--type02 {
    margin: 0 0 0 calc(var(--gutter) * -1);
    width: calc(100% + var(--gutter) * 2);
    padding-bottom: 3rem;
  }
}
.c-heading.--type02::before {
  content: "";
  width: 17.5rem;
  height: 0.3rem;
  background-color: #006837;
  position: absolute;
  bottom: -0.3rem;
  left: 0;
}
.c-heading.--type02 * {
  font-size: 2.6rem;
  padding: 0 0.5rem;
  letter-spacing: 0.05em;
  line-height: 1.4615384615;
}
@media screen and (max-width: 640px) {
  .c-heading.--type02 * {
    font-size: 4.6rem;
    padding: 0 3rem;
    letter-spacing: 0;
  }
}
.c-heading.--type03 {
  position: relative;
  border-bottom: 0.3rem solid #1a1a1a;
  margin: 0 3rem;
  padding-bottom: 1.6rem;
}
@media screen and (max-width: 640px) {
  .c-heading.--type03 {
    margin: 0 0 0 calc(var(--gutter) * -1);
    width: calc(100% + var(--gutter) * 2);
    padding-bottom: 3rem;
  }
}
.c-heading.--type03::before {
  content: "";
  width: 17.5rem;
  height: 0.3rem;
  background-color: #006837;
  position: absolute;
  bottom: -0.3rem;
  left: 0;
}
.c-heading.--type03 * {
  font-size: 3.6rem;
  padding: 0 0.5rem;
  letter-spacing: 0.05em;
  line-height: 1.4615384615;
}
@media screen and (max-width: 640px) {
  .c-heading.--type03 * {
    font-size: 4.6rem;
    padding: 0 3rem;
    letter-spacing: 0;
  }
}
.--type01 .c-heading__inner {
  padding: 0 5rem;
}
@media screen and (max-width: 640px) {
  .--type01 .c-heading__inner {
    padding: 0 3rem;
  }
}

.c-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem 3rem;
  padding: 4.2rem 0 0.3rem;
}
@media screen and (max-width: 640px) {
  .c-categories {
    gap: 0.8rem 0.6rem;
    padding: 3.5rem 0 0.3rem;
  }
}
.c-categories__item {
  background-color: #006837;
  border-radius: 999rem;
}
@media screen and (max-width: 640px) {
  .c-categories__item {
    border-radius: 0;
    width: calc((100% - 1.2rem) / 3);
    min-height: 8.3rem;
  }
}
.c-categories__item a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  font-weight: 500;
  color: #fff;
  width: 100%;
  height: 100%;
  padding: 1rem 3rem;
  min-width: 11rem;
  text-align: center;
  line-height: 1.2;
}
@media screen and (max-width: 640px) {
  .c-categories__item a {
    font-size: 2.6rem;
    padding: 0 1rem 0.5rem;
  }
}

.c-contact {
  border-top: 1rem solid #fef7f2;
  padding: 3.4rem 0 8.2rem;
}
.c-contact__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7rem 6rem;
  padding: 0 7rem;
}
@media screen and (max-width: 640px) {
  .c-contact__inner {
    grid-template-columns: 1fr;
    padding: 0 2.4rem;
  }
}
.c-contact__banner {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.c-contact__banner img {
  width: 100%;
}
.c-contact__banner-caption {
  text-align: center;
  color: #534741;
  font-weight: 500;
}

.c-btn {
  border: 1px solid #4d4d4d;
  width: 36.9rem;
  height: 5.9rem;
}
@media screen and (max-width: 640px) {
  .c-btn {
    width: 100%;
    height: 9rem;
  }
}
.c-btn a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 500;
  width: 100%;
  height: 100%;
  gap: 1.5rem;
}
@media screen and (max-width: 640px) {
  .c-btn a {
    font-size: 2.8rem;
  }
}
.c-btn a:after {
  content: "";
  display: inline-block;
  width: 1.7rem;
  height: 1.7rem;
  background: url(../img/common/icn_arrow_right_black_thick.svg) no-repeat center/0.7rem;
}
@media screen and (max-width: 640px) {
  .c-btn a:after {
    width: 2.7rem;
    height: 2.7rem;
    background-size: 1rem;
  }
}

.c-page-description {
  --wp--preset--font-size--small: 1.3rem;
  --wp--preset--font-size--normal: 1.6rem;
  --wp--preset--font-size--medium: 2rem;
  --wp--preset--font-size--large: 3.6rem;
  --wp--preset--font-size--x-large: 4.2rem;
  --wp--preset--font-size--huge: 4.8rem;
}
@media screen and (max-width: 640px) {
  .c-page-description {
    --wp--preset--font-size--small: 2.2rem;
    --wp--preset--font-size--normal: 2.6rem;
    --wp--preset--font-size--medium: 3rem;
    --wp--preset--font-size--large: 3.4rem;
    --wp--preset--font-size--x-large: 3.8rem;
    --wp--preset--font-size--huge: 4.2rem;
  }
}

.c-page-description {
  padding-top: 3.1rem;
  line-height: 2.25;
  font-weight: 500;
}
.c-page-description img {
  max-width: 100%;
  height: auto;
}
.c-page-description .aligncenter {
  margin: 0 auto;
  text-align: center !important;
}
.c-page-description .aligncenter:not(figure) {
  display: block;
}
.c-page-description .alignright {
  float: right !important;
  text-align: right !important;
}
@media screen and (max-width: 640px) {
  .c-page-description .alignright {
    float: initial !important;
    text-align: center !important;
    margin: 0 auto !important;
  }
}
@media screen and (max-width: 640px) {
  .c-page-description .alignright:not(figure) {
    display: block !important;
  }
}
.c-page-description .alignleft {
  float: left !important;
  text-align: left !important;
}
@media screen and (max-width: 640px) {
  .c-page-description .alignleft {
    float: initial !important;
    text-align: center !important;
    margin: 0 auto !important;
  }
}
@media screen and (max-width: 640px) {
  .c-page-description .alignleft:not(figure) {
    display: block !important;
  }
}
.c-page-description::after {
  content: "";
  display: block;
  block-size: 0;
  font-size: 0;
  clear: both;
  visibility: hidden;
}
.c-page-description p {
  line-height: 2.0625;
}
.c-page-description * {
  word-break: normal;
}
.c-page-description * + p,
.c-page-description * + ul,
.c-page-description * + ol {
  margin-top: 1.2em;
}
.c-page-description * + blockquote,
.c-page-description * + .wp-block-group,
.c-page-description * + .wp-block-image {
  margin-top: 2em;
}
.c-page-description * + .wp-block-columns {
  margin-top: 4em;
}
.c-page-description * + .custom-ttlContent-block {
  margin-top: 5em;
}
.c-page-description * + h1,
.c-page-description * + h2,
.c-page-description * + h3,
.c-page-description * + h4,
.c-page-description * + h5,
.c-page-description * + h6 {
  margin-top: 2.4em;
}
.c-page-description h1,
.c-page-description h2,
.c-page-description h3,
.c-page-description h4,
.c-page-description h5,
.c-page-description h6 {
  line-height: 1.46;
  margin-bottom: 1em;
  padding-bottom: 0.5em;
}
.c-page-description h1.only-bottom-border,
.c-page-description h2.only-bottom-border,
.c-page-description h3.only-bottom-border,
.c-page-description h4.only-bottom-border,
.c-page-description h5.only-bottom-border,
.c-page-description h6.only-bottom-border {
  padding-left: 0;
}
.c-page-description h1.only-bottom-border::before,
.c-page-description h2.only-bottom-border::before,
.c-page-description h3.only-bottom-border::before,
.c-page-description h4.only-bottom-border::before,
.c-page-description h5.only-bottom-border::before,
.c-page-description h6.only-bottom-border::before {
  display: none;
}
.c-page-description h1 {
  font-size: 2.6rem;
  font-weight: 700;
}
.c-page-description h2 {
  font-size: 2.4rem;
}
.c-page-description h3 {
  font-size: 2.2rem;
}
.c-page-description h4 {
  font-size: 2rem;
  font-weight: 700;
}
.c-page-description h5 {
  font-size: 1.8rem;
  font-weight: 700;
}
.c-page-description h6 {
  font-size: 1.6rem;
  font-weight: 700;
}
.c-page-description h2,
.c-page-description h3 {
  position: relative;
  font-weight: 500;
  border-bottom: 0.3rem solid #666;
  padding: 0 0 0.25em 2.3em;
}
.c-page-description h2::before,
.c-page-description h3::before {
  content: "";
  width: 1.6em;
  height: 1.6em;
  background-image: linear-gradient(to right, #006837 43%, #fff 43%, #fff 57%, #00a99d 57%);
  position: absolute;
  left: 0;
  top: -0.06em;
}
.c-page-description ul,
.c-page-description ol {
  padding-left: 2rem;
}
@media screen and (max-width: 640px) {
  .c-page-description ul,
  .c-page-description ol {
    padding-left: 4rem;
  }
}
.c-page-description ul.is-style-sme-list-arrow li::before,
.c-page-description ol.is-style-sme-list-arrow li::before {
  top: calc(var(--_half-leading) * 1.3em + 4px);
}
.c-page-description ul.is-style-sme-list-arrow li::after,
.c-page-description ol.is-style-sme-list-arrow li::after {
  top: calc(var(--_half-leading) * 1.3em + 6px);
}
.c-page-description ul.is-style-sme-list-check li::before,
.c-page-description ol.is-style-sme-list-check li::before {
  top: calc(var(--_half-leading) * 1.3em + 3px);
}
.c-page-description ul.is-style-sme-list-times li::before,
.c-page-description ol.is-style-sme-list-times li::before {
  top: calc(var(--_half-leading) * 1.3em + 6px);
}
.c-page-description ul.is-style-sme-list-times li::after,
.c-page-description ol.is-style-sme-list-times li::after {
  top: calc(var(--_half-leading) * 1.3em + 6px);
}
.c-page-description ul.is-style-sme-ordered-list-circle li::before, .c-page-description ul.is-style-sme-ordered-list-square li::before,
.c-page-description ol.is-style-sme-ordered-list-circle li::before,
.c-page-description ol.is-style-sme-ordered-list-square li::before {
  font-size: 0.8em;
  height: 1.6em;
  top: calc(var(--_half-leading) * 2.5em / 2);
  width: 1.6em;
}
.c-page-description ul[style*=border-width],
.c-page-description ol[style*=border-width] {
  padding-left: 3em;
}
@media screen and (max-width: 640px) {
  .c-page-description ul[style*=border-width],
  .c-page-description ol[style*=border-width] {
    padding-left: 7rem;
  }
}
.c-page-description ul li + li,
.c-page-description ol li + li {
  margin-top: 0.3em;
}
.c-page-description ul:not(.is-style-sme-list-arrow):not(.is-style-sme-list-check):not(.is-style-sme-list-remark):not(.is-style-sme-list-times):not(.is-style-list-check):not(.is-style-list-square) {
  list-style: initial;
}
.c-page-description ol:not(.is-style-sme-list-arrow):not(.is-style-sme-list-check):not(.is-style-sme-list-remark):not(.is-style-sme-list-times):not(.is-style-list-check):not(.is-style-list-square) {
  list-style: decimal;
}
.c-page-description ul ul,
.c-page-description ol ul {
  padding: 0.4rem 0 0 2rem;
  margin-top: 0;
}
@media screen and (max-width: 640px) {
  .c-page-description ul ul,
  .c-page-description ol ul {
    padding-left: 4rem;
  }
}
.c-page-description ul ul {
  list-style: circle;
}
.c-page-description ul ul ul {
  list-style: square;
}
.c-page-description ol {
  list-style: decimal;
}
.c-page-description ol.list-parentheses {
  list-style: none;
}
.c-page-description ol.list-parentheses > li {
  position: relative;
  counter-increment: note;
}
.c-page-description ol.list-parentheses > li::before {
  content: "(" counter(note) ")";
  position: absolute;
  left: -1.3em;
  top: 0;
}
.c-page-description .wp-block-column ul {
  margin-top: 0;
}
.c-page-description a:not(.wp-block-button__link) {
  text-decoration: underline;
  color: #004898;
  opacity: 1;
}
.c-page-description a.wp-block-button__link {
  font-size: 1.6rem;
  line-height: 1.5;
}
@media screen and (max-width: 640px) {
  .c-page-description a.wp-block-button__link {
    font-size: 2.6rem;
  }
}
.c-page-description .wp-block-image.alignleft,
.c-page-description .wp-block-embed.alignleft {
  margin: 1em 3.5rem 1em 0;
}
.c-page-description .wp-block-image.alignright {
  margin: 1em 0 1em 3.5rem;
}
.c-page-description .wp-block-embed {
  margin: 4em 0;
}
.c-page-description .wp-block-embed.alignright {
  margin: 1em 0 1em 3.5rem;
}
.c-page-description .wp-block-embed iframe {
  width: 100%;
  height: auto;
  max-width: 64rem;
  aspect-ratio: 640/360;
}
.c-page-description .is-layout-flex .wp-block-image {
  margin-top: 0;
}
.c-page-description .wp-block-table {
  margin: 3.7em 0;
}
.c-page-description .wp-block-table thead {
  border-bottom-width: 1px;
}
.c-page-description .wp-block-table th {
  background-color: #40a471;
  color: #fff;
  border: 1px solid #1a1a1a;
  font-weight: 500;
  text-align: center;
}
.c-page-description .wp-block-table td,
.c-page-description .wp-block-table th {
  padding: 0.5em 2.4em;
}
@media screen and (max-width: 640px) {
  .c-page-description .wp-block-table td,
  .c-page-description .wp-block-table th {
    padding: 0.5em 0.6em;
  }
}
.c-page-description :where(.is-layout-flex) {
  gap: 2rem 4rem;
}
.c-page-description figcaption {
  font-size: 1.4rem;
  line-height: 1.4285714286;
  justify-content: center !important;
  margin: 0.2em 0 0;
  text-align: left;
}
@media screen and (max-width: 640px) {
  .c-page-description figcaption {
    font-size: 2.4rem;
  }
}
@media print and (any-hover: hover), screen and (any-hover: hover) and (min-width: 641px) {
  .c-page-description a {
    cursor: pointer;
  }
  .c-page-description a:hover {
    text-decoration: none;
  }
}
@media screen and (max-width: 640px) {
  .c-page-description h1 {
    font-size: 3.8rem;
  }
  .c-page-description h2 {
    font-size: 3.6rem;
  }
  .c-page-description h3 {
    font-size: 3.4rem;
  }
  .c-page-description h4 {
    font-size: 3.2rem;
  }
  .c-page-description h5 {
    font-size: 3rem;
  }
  .c-page-description h6 {
    font-size: 2.8rem;
  }
  .c-page-description .wp-block-embed iframe {
    max-width: inherit !important;
  }
  .c-page-description .wp-block-image,
  .c-page-description .wp-block-embed {
    text-align: center;
  }
  .c-page-description .wp-block-image.alignleft, .c-page-description .wp-block-image.alignright, .c-page-description .wp-block-image.aligncenter {
    float: none;
    margin: 1em auto !important;
    width: 100%;
    max-width: 100%;
  }
  .c-page-description .wp-block-embed.alignleft, .c-page-description .wp-block-embed.alignright, .c-page-description .wp-block-embed.aligncenter {
    float: none;
    margin: 1em auto !important;
    width: 100%;
    max-width: 100%;
  }
  .c-page-description .wp-block-image.alignleft img, .c-page-description .wp-block-image.alignright img, .c-page-description .wp-block-image.aligncenter img {
    width: 100%;
  }
  .c-page-description .wp-block-embed.alignleft img, .c-page-description .wp-block-embed.alignright img, .c-page-description .wp-block-embed.aligncenter img {
    width: 100%;
  }
}
.c-page-description > *:first-child {
  margin-top: 0;
}
.c-page-description .wp-block-flexible-table-block-table {
  margin: 4em 0;
}
@media screen and (min-width: 641px) {
  .c-page-description .wp-block-flexible-table-block-table.is-scroll-on-mobile table {
    min-width: initial !important;
  }
}
.c-page-description .border_green {
  border: 1px solid #006837;
  padding: 1.5em 3em;
  margin-top: 1em;
}
.c-page-description .border_black {
  border: 1px solid #1a1a1a;
  padding: 1.5em 3em;
  margin-top: 1em;
}
@media (hover: hover) {
  .c-page-description .wp-block-image a:hover {
    opacity: 0.7;
  }
}
.c-page-description :where([style*=border-width]) {
  border-style: solid;
  padding: 1.5em 3em;
}
@media screen and (max-width: 640px) {
  .c-page-description :where([style*=border-width]) {
    padding: 1em 1.5em;
  }
}
.c-page-description .only-bottom-border {
  border-bottom-width: 0.3rem;
  border-bottom-color: #666;
  border-bottom-style: solid;
}
.c-page-description .custom-ttlContent-block .ttl {
  font-size: 1.8rem;
  display: inline-block;
  color: #fff;
  background-color: #006837;
  padding: 0.2em 1.6em;
}
@media screen and (max-width: 640px) {
  .c-page-description .custom-ttlContent-block .ttl {
    font-size: 2.8rem;
  }
}
.c-page-description .custom-ttlContent-block .content {
  border: 1px solid #006837;
  margin-top: -1.9em;
  padding: 3.7em 1.4em 1.5em;
}

.p-top__fv {
  margin-bottom: 5rem;
}
.p-top__fv-item img {
  aspect-ratio: 1920/750;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 640px) {
  .p-top__fv-item img {
    aspect-ratio: 750/900;
    object-position: bottom center;
  }
}
.p-top__intro {
  margin: 4.8rem 0 5.9rem;
}
@media screen and (max-width: 640px) {
  .p-top__intro {
    margin: 3.2rem 0 7.8rem;
  }
}
.p-top__intro-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
}
@media screen and (max-width: 640px) {
  .p-top__intro-heading {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 5.5rem;
    gap: 0.04em;
  }
}
.p-top__intro-heading .line {
  font-size: 2.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
}
@media screen and (max-width: 640px) {
  .p-top__intro-heading .line {
    font-size: 3.1rem;
    width: 100%;
    justify-content: flex-start;
  }
}
@media screen and (max-width: 640px) {
  .p-top__intro-heading .line.sp-fe {
    justify-content: flex-end;
  }
}
.p-top__intro-heading .line .large {
  font-size: 1.3333333333em;
}
@media screen and (max-width: 640px) {
  .p-top__intro-heading .line .large {
    font-size: 1.2903225806em;
  }
}
.p-top__intro-list {
  margin-top: 1.2rem;
  padding: 0 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.2rem;
}
@media screen and (max-width: 640px) {
  .p-top__intro-list {
    margin-top: 2rem;
    padding: 0 1rem;
    flex-direction: column;
    gap: 2.45rem;
  }
}
.p-top__intro-item {
  width: calc((100% - 8.8rem) / 5);
  display: flex;
  flex-direction: column;
  background-color: #15541f;
}
@media screen and (max-width: 640px) {
  .p-top__intro-item {
    width: 100%;
  }
}
.p-top__intro-item:nth-child(1) {
  background-color: #0071bc;
}
.p-top__intro-item:nth-child(2) {
  background-color: #ed1e79;
}
.p-top__intro-item:nth-child(3) {
  background-color: #009245;
}
.p-top__intro-item:nth-child(4) {
  background-color: #2e3192;
}
.p-top__intro-item:nth-child(5) {
  background-color: #603813;
}
.p-top__intro-item:nth-child(6) {
  background-color: #0071bc;
}
.p-top__intro-item:nth-child(7) {
  background-color: #ed1e79;
}
.p-top__intro-item:nth-child(8) {
  background-color: #009245;
}
.p-top__intro-item:nth-child(9) {
  background-color: #2e3192;
}
.p-top__intro-item:nth-child(10) {
  background-color: #603813;
}
.p-top__intro-item-ttl {
  min-height: 8rem;
  text-align: center;
  color: #fff;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  line-height: 1.5555555556;
  padding: 1rem;
}
@media screen and (max-width: 640px) {
  .p-top__intro-item-ttl {
    font-size: 2.8rem;
    min-height: 7.1rem;
  }
}
.p-top__intro-item-txt {
  margin: 0 1px 1px;
  background-color: #fff;
  font-size: 1.5rem;
  padding: 1.8rem 0.6rem 3.3rem;
  flex: 1;
}
@media screen and (max-width: 640px) {
  .p-top__intro-item-txt {
    font-size: 2.5rem;
    padding: 1.4rem 1.6rem 2rem;
  }
}
.p-top__intro-banners {
  margin-top: 7rem;
  padding: 0 1rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}
@media screen and (max-width: 640px) {
  .p-top__intro-banners {
    margin: 5.5rem 0 0;
    padding: 0;
  }
}
.p-top__intro-banner {
  width: calc((100% - 6rem) / 4);
}
@media screen and (max-width: 640px) {
  .p-top__intro-banner {
    flex: none;
    width: calc(50% - 1rem);
  }
}
.p-top__intro-banner img {
  width: 100%;
}
.p-top__intro-block {
  margin: 6.2rem 1rem 0;
  border: 0.2rem dotted #736357;
  padding: 1.5rem 5.6rem 2.4rem;
}
@media screen and (max-width: 640px) {
  .p-top__intro-block {
    margin: 6.5rem 1rem 0;
    padding: 2.1rem 1.3rem;
  }
}
@media screen and (max-width: 640px) {
  .p-top__intro-block-txt {
    line-height: 1.9230769231;
  }
}
.p-top__record {
  margin: 5rem 0;
}
@media screen and (max-width: 640px) {
  .p-top__record {
    margin: 10rem 0;
  }
}
.p-top__record-heading {
  background-color: #998675;
}
@media screen and (max-width: 640px) {
  .p-top__record-heading {
    padding: 0.8rem 0 0;
  }
}
.p-top__record-heading-ttl {
  font-weight: 700;
  color: #fff;
  text-align: center;
  letter-spacing: 0.2em;
}
.p-top__record-heading-note {
  font-size: 1.4rem;
  color: #fff;
  font-weight: 500;
  text-align: right;
  margin-top: -2.3rem;
  padding: 0 2rem;
}
@media screen and (max-width: 640px) {
  .p-top__record-heading-note {
    font-size: 2.4rem;
    padding: 0 0.5rem;
    margin-top: -2.8rem;
  }
}
.p-top__record-wrap {
  border-top: 0.5rem solid #e8e2d8;
  border-bottom: 0.5rem solid #e8e2d8;
  overflow: hidden;
  padding: 3.8rem 0;
  margin-top: 0.3rem;
}
@media screen and (max-width: 640px) {
  .p-top__record-wrap {
    border-width: 1rem;
    margin-top: 0.5rem;
  }
}
.p-top__record-inner {
  display: flex;
  width: max-content;
}
.p-top__record-list {
  display: flex;
  animation-timing-function: linear;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  will-change: transform;
}
.p-top__record-item img {
  width: auto;
  height: 4rem;
  margin-right: 3rem;
}
@media screen and (max-width: 640px) {
  .p-top__record-item img {
    height: 7rem;
    margin-right: 5rem;
  }
}
.p-top__links {
  margin: 6.5rem 0;
}
@media screen and (max-width: 640px) {
  .p-top__links {
    margin: 7rem 0;
  }
}
.p-top__links-wrap {
  background-color: #f2f2f2;
}
.p-top__links-list {
  padding: 4.2rem 3rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
}
@media screen and (max-width: 640px) {
  .p-top__links-list {
    padding: 4.6rem 7.4rem;
    flex-direction: column;
    gap: 4.2rem;
  }
}
.p-top__links-item {
  width: calc((100% - 5rem) / 3);
}
@media screen and (max-width: 640px) {
  .p-top__links-item {
    width: 100%;
  }
}
.p-top__links-item img {
  width: 100%;
}
.p-top__block.--col02 {
  margin: 5rem 0;
}
@media screen and (max-width: 640px) {
  .p-top__block.--col02 {
    margin: 10rem 0;
  }
}
.p-top__block-inner {
  display: grid;
  gap: 6rem;
}
@media screen and (max-width: 640px) {
  .p-top__block-inner {
    gap: 11.5rem;
  }
}
.p-top__block-wrap {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
@media screen and (max-width: 640px) {
  .p-top__block-wrap {
    gap: 8rem;
  }
}
@media screen and (max-width: 640px) {
  .p-top__block-banner {
    padding: 4rem 0;
  }
}
.p-top__block-banner.--space {
  padding: 2.5rem 0;
}
@media screen and (max-width: 640px) {
  .p-top__block-banner.--space {
    padding: 4rem 0;
  }
}
.p-top__block-banner img {
  width: 100%;
}
.--col02 .p-top__block-inner {
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 640px) {
  .--col02 .p-top__block-inner {
    grid-template-columns: 1fr;
  }
}
.p-top__news {
  background-color: #499839;
}
.p-top__news-ttl {
  font-size: 2rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.2em;
  padding: 0.8rem 3rem;
}
@media screen and (max-width: 640px) {
  .p-top__news-ttl {
    font-size: 3.3rem;
    padding: 0.6rem 3.5rem;
  }
}
.p-top__news-wrap {
  margin: 0 1px 1px;
  background-color: #fff;
  padding: 0.6rem 1.4rem 1.1rem;
}
@media screen and (max-width: 640px) {
  .p-top__news-wrap {
    padding-bottom: 3.9rem;
  }
}
.p-top__news-item a {
  display: block;
  padding: 0.62rem 1.5rem;
  border-bottom: 1px dashed #869fa6;
}
@media screen and (max-width: 640px) {
  .p-top__news-item a {
    border-width: 0.2rem;
    padding: 0.9rem 2rem;
  }
}
.p-top__news-item-date {
  color: #00655a;
  font-size: 1.5rem;
}
@media screen and (max-width: 640px) {
  .p-top__news-item-date {
    font-size: 2.6rem;
  }
}
.p-top__news-item-date .new {
  background-color: #ed1c24;
  color: #fff;
  font-weight: 500;
  display: inline-block;
  line-height: 1;
  padding: 0.05em 0.2em 0.18em;
  margin-left: 1.5rem;
}
@media screen and (max-width: 640px) {
  .p-top__news-item-date .new {
    font-size: 2.4rem;
    margin-left: 2rem;
  }
}
.p-top__news-item-txt {
  font-size: 1.5rem;
  line-height: 1.4;
  margin-top: 0.6rem;
}
@media screen and (max-width: 640px) {
  .p-top__news-item-txt {
    font-size: 2.6rem;
    line-height: 1.5384615385;
    margin-top: 0.3rem;
  }
}
.p-top__news-btn {
  text-align: right;
  margin-top: 1.5rem;
}
@media screen and (max-width: 640px) {
  .p-top__news-btn {
    margin-top: 3.1rem;
    padding: 0 2rem;
  }
}
.p-top__news-btn a {
  background-color: #499839;
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
  display: inline-block;
  padding: 1rem 2.6rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 640px) {
  .p-top__news-btn a {
    font-size: 2.8rem;
    padding: 2.5rem 3.8rem;
  }
}
.p-top__box-ttl {
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  color: #fff;
  padding: 1.25rem;
  line-height: 1.5;
}
@media screen and (max-width: 640px) {
  .p-top__box-ttl {
    font-size: 3.3rem;
    padding: 1.5rem;
  }
}
.p-top__box-wrap {
  margin: 0 1px 1px;
  background-color: #fff;
  padding: 1.1rem 2.9rem 1.3rem;
}
@media screen and (max-width: 640px) {
  .p-top__box-wrap {
    padding: 1.9rem 3.4rem 3.3rem;
  }
}
.p-top__box-txt {
  line-height: 2.0625;
}
@media screen and (max-width: 640px) {
  .p-top__box-txt {
    line-height: 2.1153846154;
  }
}
.p-top__box-link {
  text-align: right;
  padding-top: 1.3rem;
}
@media screen and (max-width: 640px) {
  .p-top__box-link {
    padding-top: 3rem;
  }
}
.p-top__box-link a {
  color: #004898;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 0.2rem;
  text-decoration-thickness: 1px;
}
@media (hover: hover) {
  .p-top__box-link a:hover {
    text-decoration: none;
    opacity: 1;
  }
}
.p-top__box-btn {
  display: flex;
}
.p-top__box-btn::before {
  content: "";
  flex: 1;
  background-color: #fff;
}
.p-top__box-btn a {
  color: #fff;
  font-weight: 500;
  display: block;
  padding: 2rem 2.8rem;
  font-size: 1.6rem;
}
@media screen and (max-width: 640px) {
  .p-top__box-btn a {
    font-size: 2.8rem;
    padding: 2.2rem 5.9rem 2.8rem;
  }
}
.p-top__feature {
  display: grid;
  gap: 1rem 3rem;
  grid-template-columns: 21rem 1fr;
}
@media screen and (max-width: 640px) {
  .p-top__feature {
    gap: 3rem;
  }
}
.p-top__feature-ttl {
  margin-bottom: 2rem;
  grid-column: 1/3;
  grid-row: 1/2;
  background-color: #e6786a;
  color: #fff;
  font-size: 2rem;
  text-align: center;
  font-weight: 500;
  padding: 0.8rem;
}
@media screen and (max-width: 640px) {
  .p-top__feature-ttl {
    font-size: 3.3rem;
  }
}
.p-top__feature-box {
  border: 1px solid #6da2bb;
  padding: 2.1rem 2.5rem 1.4rem;
  grid-column: 2/3;
}
@media screen and (max-width: 640px) {
  .p-top__feature-box {
    grid-column: 1/3;
    padding: 2.2rem 3.4rem 3.6rem;
    line-height: 2.1153846154;
  }
}
.p-top__feature-box:empty {
  display: none;
}
.p-top__feature-box:empty + .p-top__feature-list {
  grid-column: 1/3;
}
.p-top__feature-box:last-child {
  grid-column: 1/3;
  padding: 1.7rem 2.6rem 2.1rem;
}
@media screen and (max-width: 640px) {
  .p-top__feature-box:last-child {
    padding: 1.2rem 3.4rem 1.6rem;
  }
}
.p-top__feature-list {
  grid-row: 2/3;
}
@media screen and (max-width: 640px) {
  .p-top__feature-list {
    grid-column: 1/3;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3.6rem;
  }
}
.p-top__feature-item {
  background-color: #6da2bb;
}
@media screen and (max-width: 640px) {
  .p-top__feature-item {
    width: calc((100% - 21.6rem) / 7);
  }
}
.p-top__feature-item + .p-top__feature-item {
  margin-top: 1.9rem;
}
@media screen and (max-width: 640px) {
  .p-top__feature-item + .p-top__feature-item {
    margin-top: 0;
  }
}
.p-top__feature-item > a,
.p-top__feature-item > span {
  color: #fff;
  font-size: 1.8rem;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0.68rem 2rem;
}
@media screen and (max-width: 640px) {
  .p-top__feature-item > a,
  .p-top__feature-item > span {
    font-size: 2.8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0 2.9rem;
  }
}
@media screen and (max-width: 640px) {
  .p-top__feature-item > a .txt,
  .p-top__feature-item > span .txt {
    writing-mode: vertical-rl;
    text-orientation: upright;
  }
}
.p-top__banners {
  margin: 7rem 0;
}
@media screen and (max-width: 640px) {
  .p-top__banners {
    margin: 10rem 0;
  }
}
.p-top__banners-inner {
  display: flex;
  flex-direction: column;
  gap: 6.4rem 0;
}
@media screen and (max-width: 640px) {
  .p-top__banners-inner {
    gap: 7.6rem 0;
  }
}
.p-top__banner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .p-top__banner {
    padding: 0 1rem;
  }
}
.p-top__banner-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: flex-start;
  gap: 3rem 6rem;
}
@media screen and (max-width: 640px) {
  .p-top__banner-wrap {
    grid-template-columns: 1fr;
  }
}
.p-top__banner-wrap img {
  width: 100%;
}
.p-top__banner-caption {
  font-size: 1.5rem;
  margin-top: 0.8rem;
}
@media screen and (max-width: 640px) {
  .p-top__banner-caption {
    font-size: 2.5rem;
    padding: 0 2.2rem;
  }
}
.p-top__contact {
  padding: 4.5rem 0;
}
@media screen and (max-width: 640px) {
  .p-top__contact {
    padding: 8rem 0;
  }
}
.p-top__contact.--01 {
  background-color: #f2f2f2;
}
.p-top__contact.--02 {
  background-color: #fef7f2;
  padding-bottom: 8.2rem;
}
@media screen and (max-width: 640px) {
  .p-top__contact.--02 {
    padding: 2.8rem 0 8rem;
    margin-bottom: 10.8rem;
  }
}
.p-top__contact-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7rem 6rem;
  padding: 0 7rem;
}
@media screen and (max-width: 640px) {
  .p-top__contact-inner {
    grid-template-columns: 1fr;
    padding: 0 2.4rem;
  }
}
.p-top__contact-banner {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.p-top__contact-banner img {
  width: 100%;
}
.p-top__contact-banner-caption {
  text-align: center;
  color: #534741;
  font-weight: 500;
}
.p-top__consult-ttl {
  background-color: #171c61;
  color: #fff;
  font-size: 2rem;
  text-align: center;
  font-weight: 500;
  padding: 1.15rem;
  line-height: 1.3636363636;
}
@media screen and (max-width: 640px) {
  .p-top__consult-ttl {
    text-align: left;
    font-size: 3.3rem;
    padding: 0.7rem 4.7rem;
  }
}
.p-top__consult-wrap {
  border: 1rem solid #ebf0f7;
}
.p-top__consult-list {
  padding: 2.6rem 2rem 3rem;
}
@media screen and (max-width: 640px) {
  .p-top__consult-list {
    padding: 3.5rem 2.5rem 4rem;
  }
}
.p-top__consult-item {
  position: relative;
  display: flex;
  gap: 2.5rem;
  font-weight: 500;
}
@media screen and (max-width: 640px) {
  .p-top__consult-item {
    gap: 3.5rem;
  }
}
.p-top__consult-item + .p-top__consult-item {
  margin-top: 2.2rem;
}
@media screen and (max-width: 640px) {
  .p-top__consult-item + .p-top__consult-item {
    margin-top: 2.8rem;
  }
}
.p-top__consult-item::before {
  display: inline-block;
  content: "";
  width: 2rem;
  min-width: 2rem;
  height: auto;
  aspect-ratio: 1;
  background: url(../img/common/icn_check.svg) no-repeat top center/100%;
  margin-top: 0.3em;
}
@media screen and (max-width: 640px) {
  .p-top__consult-item::before {
    width: 3rem;
    min-width: 3rem;
  }
}
.p-top__consult-txt {
  text-align: right;
  font-weight: 700;
  padding: 0 3rem 1.8rem;
}
@media screen and (max-width: 640px) {
  .p-top__consult-txt {
    margin-top: 3.5rem;
    padding: 0 4.5rem 3rem;
  }
}
.p-top__case {
  background-color: #5d7832;
}
.p-top__case-ttl {
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  color: #fff;
  padding: 0.8rem 3rem;
}
@media screen and (max-width: 640px) {
  .p-top__case-ttl {
    font-size: 3.3rem;
    padding: 0.6rem 3.5rem;
  }
}
.p-top__case-wrap {
  margin: 0 1px 1px;
  background-color: #fff;
  padding: 0.6rem 1.4rem 1.1rem;
}
@media screen and (max-width: 640px) {
  .p-top__case-wrap {
    padding-bottom: 3.9rem;
  }
}
.p-top__case-item a {
  display: block;
  padding: 1.38rem 1rem;
  border-bottom: 1px dashed #5d7832;
}
@media screen and (max-width: 640px) {
  .p-top__case-item a {
    border-width: 0.2rem;
    padding: 0.9rem 2rem;
  }
}
.p-top__case-item-date {
  color: #386a42;
  font-size: 1.5rem;
}
@media screen and (max-width: 640px) {
  .p-top__case-item-date {
    font-size: 2.6rem;
  }
}
.p-top__case-item-date .cat {
  background-color: #6d5c45;
  color: #fff;
  font-weight: 500;
  display: inline-block;
  line-height: 1;
  padding: 0.15em 0.6em 0.25em;
  margin-left: 1.5rem;
  font-size: 1.4rem;
}
@media screen and (max-width: 640px) {
  .p-top__case-item-date .cat {
    font-size: 2.3rem;
    padding: 0.15em 0.5em 0.22em;
    margin-left: 1.9rem;
  }
}
.p-top__case-item-txt {
  font-size: 1.5rem;
  line-height: 1.4;
  margin-top: 0.6rem;
}
@media screen and (max-width: 640px) {
  .p-top__case-item-txt {
    font-size: 2.6rem;
    line-height: 1.5384615385;
    margin-top: 0;
  }
}
.p-top__case-btn {
  text-align: right;
  margin-top: 4rem;
}
@media screen and (max-width: 640px) {
  .p-top__case-btn {
    margin: 3.2rem 2rem 0 0;
  }
}
.p-top__case-btn a {
  background-color: #5d7832;
  border-radius: 999rem;
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
  display: inline-block;
  padding: 1.25rem 4.8rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 640px) {
  .p-top__case-btn a {
    font-size: 2.8rem;
    padding: 2.5rem;
  }
}

.p-voice__content {
  padding-bottom: 18rem;
}
.p-voice__content .item {
  margin-top: 3.6rem;
  display: grid;
  gap: 4.2rem 6rem;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 640px) {
  .p-voice__content .item {
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 0;
  }
}
@media screen and (max-width: 640px) {
  .p-voice__content .item + .item {
    margin-top: 4rem;
  }
}
.p-voice__content .item h4 {
  grid-column: 1/3;
}
@media screen and (max-width: 640px) {
  .p-voice__content .item h4 {
    grid-column: initial;
  }
}
.p-voice__content .item .name {
  font-size: 1.8rem;
  font-weight: 500;
}
@media screen and (max-width: 640px) {
  .p-voice__content .item .name {
    font-size: 2.8rem;
    line-height: 1.6071428571;
  }
}
.p-voice__content .item .txt {
  border: 1px solid #1a1a1a;
  margin-top: 1.5em;
  font-weight: 500;
  padding: 1.45em 2.5em;
}
@media screen and (max-width: 640px) {
  .p-voice__content .item .txt {
    padding: 0.65em 1.3em;
    margin-top: 1.1em;
  }
}
.p-voice__content .item .embed {
  padding-top: 3.8rem;
}
@media screen and (max-width: 640px) {
  .p-voice__content .item .embed {
    padding-top: 3rem;
  }
}
.p-voice__content .item .embed iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

.p-survey__content {
  padding-bottom: 18rem;
  /* モーダルアニメーション */
}
.p-survey__content-txt {
  line-height: 2.25;
  font-weight: 500;
  margin-top: 3.1rem;
}
.p-survey__content .modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
}
.p-survey__content .micromodal-slide {
  display: none;
}
.p-survey__content .micromodal-slide[aria-hidden=false] .modal-overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.p-survey__content .micromodal-slide[aria-hidden=false] .modal-container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.p-survey__content .micromodal-slide[aria-hidden=true] .modal-overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.p-survey__content .micromodal-slide[aria-hidden=true] .modal-container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.p-survey__content .micromodal-slide.is-open {
  display: block;
}
.p-survey__content .modal-overlay {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(26, 26, 26, 0.6);
  width: 100%;
  height: 100%;
  will-change: transform;
  padding: calc(var(--gutter) * 2);
}
.p-survey__content .modal-container {
  position: relative;
  background-color: #fff;
  padding: 1rem;
  will-change: transform;
  max-width: 102.4rem;
}
.p-survey__content .modal-content {
  max-height: 80vh;
  overflow-y: auto;
}
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
.p-survey__content .modal-close {
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  position: relative;
  border: 0.2rem solid #fff;
  width: 3em;
  height: 3em;
  border-radius: 50%;
  box-sizing: content-box;
  background-color: #1a1a1a;
  position: absolute;
  top: -1.5em;
  right: -1.5em;
  cursor: pointer;
}
@media screen and (max-width: 640px) {
  .p-survey__content .modal-close {
    width: 2em;
    height: 2em;
    top: -1em;
    right: -1em;
  }
}
.p-survey__content .modal-close > span {
  width: 52%;
  height: 0.2em;
  background: currentColor;
  border-radius: 0.2em;
  position: relative;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.p-survey__content .modal-close > span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  transform: rotate(90deg);
}
.p-survey__content .wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.7rem 6rem;
  margin-top: 3.7rem;
}
@media screen and (max-width: 640px) {
  .p-survey__content .wrap {
    margin-top: 0;
    grid-template-columns: 1fr;
  }
}
.p-survey__content .item {
  display: flex;
  flex-direction: column;
}
.p-survey__content .item .img {
  margin-top: 3.2rem;
}
.p-survey__content .item .img img {
  width: 100%;
  height: auto;
  aspect-ratio: 500/375;
  object-fit: cover;
}
.p-survey__content .item .img button {
  width: 100%;
  height: auto;
  cursor: pointer;
  border: 1px solid #1a1a1a;
}

.p-interview__content {
  padding-bottom: 18rem;
}
.p-interview__content h3 + .item {
  padding-top: 0;
}
.p-interview__content .item {
  padding-top: 4rem;
}
@media screen and (max-width: 640px) {
  .p-interview__content .item {
    padding-top: 0;
  }
}
@media screen and (max-width: 640px) {
  .p-interview__content .item + .item {
    margin-top: 10rem;
  }
}
.p-interview__content .item .box {
  border: 1px solid #1a1a1a;
  margin: 2.9em auto 0;
  max-width: 90rem;
  font-weight: 500;
  padding: 2.5em 3.4em;
}
.p-interview__content .item .box * {
  line-height: 1.375;
}
.p-interview__content .item .box * + * {
  margin-top: 1.2em;
}
.p-interview__content .item .embed {
  padding-top: 3.2rem;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .p-interview__content .item .embed {
    padding-top: 3rem;
  }
}
.p-interview__content .item .embed iframe {
  max-width: 60rem;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
@media screen and (max-width: 640px) {
  .p-interview__content .item .embed iframe {
    max-width: 100%;
  }
}

.p-office__content {
  padding: 3.5rem 0 7rem;
}
@media screen and (max-width: 640px) {
  .p-office__content {
    padding: 4.3rem 0 10rem;
  }
}
.p-office__content-ttl {
  position: relative;
  font-size: 2rem;
  line-height: 1.5;
  color: #534741;
  margin-top: 3em;
  padding: 0 0 0.3em 2em;
}
@media screen and (max-width: 640px) {
  .p-office__content-ttl {
    font-size: 3rem;
    margin: 2.3em 2rem;
    padding: 0 0 0.4em 1.5em;
  }
}
.p-office__content-ttl::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1.15em;
  height: 1.8em;
  background-color: #39b54a;
  background: linear-gradient(90deg, #39b54a 0%, #39b54a 65%, #1a1a1a 65%, #1a1a1a 100%);
}
@media screen and (max-width: 640px) {
  .p-office__content-ttl::before {
    top: 0.15em;
    width: 1.05em;
    height: 1.2em;
  }
}
.p-office__content-ttl::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #4d4d4d;
  width: calc(100% - 2em);
  height: 1px;
  margin-left: 2em;
}
@media screen and (max-width: 640px) {
  .p-office__content-ttl::after {
    margin-left: 0;
    width: 100%;
  }
}
.p-office__content-block {
  max-width: 100rem;
  margin: 3.3rem 0 0 auto;
}
@media screen and (max-width: 640px) {
  .p-office__content-block {
    margin-top: 5rem;
    padding: 0 2rem;
  }
}
.p-office__content-block.--full {
  max-width: initial;
}
.p-office__content-layout {
  display: grid;
}
.p-office__content-layout.--col02 {
  grid-template-columns: repeat(2, 1fr);
  gap: 0 3rem;
}
@media screen and (max-width: 640px) {
  .p-office__content-layout.--col02 {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.p-office__content-head.--type01 {
  padding-top: 1.3em;
}
@media screen and (max-width: 640px) {
  .p-office__content-head.--type01 {
    padding-top: 0;
    text-align: center;
    margin-left: calc((var(--gutter) + 2rem + 2rem) * -1);
    width: calc(100% + (var(--gutter) + 2rem + 2rem) * 2);
  }
}
.p-office__content-head.--type01 span {
  font-size: 2rem;
  padding: 0.5em 2.2em;
  color: #fff;
  background-color: #006837;
  font-weight: 500;
  display: block;
}
@media screen and (max-width: 640px) {
  .p-office__content-head.--type01 span {
    font-size: 3rem;
    letter-spacing: 0.2em;
  }
}
.p-office__content-head.--type02 {
  font-size: 1.8rem;
  font-weight: 500;
  border-bottom: 1px solid #1a1a1a;
  padding: 1.85em 0 0.3em;
}
@media screen and (max-width: 640px) {
  .p-office__content-head.--type02 {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 640px) {
  .p-office__content-head.--type02:first-child {
    padding-top: 0;
  }
}
.p-office__content-table {
  margin-top: 0.5rem;
  border-top: 1px solid #666;
  border-left: 1px solid #666;
  display: grid;
  grid-template-columns: 25rem 1fr;
}
@media screen and (max-width: 640px) {
  .p-office__content-table {
    margin-top: 0;
    border: none;
    grid-template-columns: 1fr;
    margin-left: calc((var(--gutter) + 2rem) * -1);
    width: calc(100% + (var(--gutter) + 2rem) * 2);
  }
}
.p-office__content-table .ttl,
.p-office__content-table .txt {
  border-right: 1px solid #666;
  border-bottom: 1px solid #666;
  padding: 1.55rem 2.9rem;
}
@media screen and (max-width: 640px) {
  .p-office__content-table .ttl,
  .p-office__content-table .txt {
    border: none;
    padding: 2.4rem 5rem;
  }
}
.p-office__content-table .ttl *,
.p-office__content-table .txt * {
  line-height: 1.875;
}
.p-office__content-table .ttl {
  text-align: center;
  background-color: #ebf5f2;
}
@media screen and (max-width: 640px) {
  .p-office__content-table .ttl {
    text-align: left;
  }
}
@media screen and (max-width: 640px) {
  .p-office__content-table .txt {
    border-bottom: 1px solid #006837;
  }
}
.p-office__content-table .item {
  position: relative;
  padding-left: 1em;
}
.p-office__content-table .item::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
}
.p-office__content-profile {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 15rem 1fr;
  gap: 3rem;
}
@media screen and (max-width: 640px) {
  .p-office__content-profile {
    grid-template-columns: 21rem 1fr;
  }
}
.p-office__content-profile + * {
  margin-top: 1.1em;
}
.p-office__content-profile .ttl {
  color: #004898;
  font-weight: 500;
  font-size: 1.8rem;
}
@media screen and (max-width: 640px) {
  .p-office__content-profile .ttl {
    font-size: 2.8rem;
  }
}
.p-office__content-profile .ttl + * {
  margin-top: 6rem;
}
.p-office__content-list {
  margin-top: 2.4rem;
}
.p-office__content-item {
  position: relative;
  line-height: 1.5;
  padding-left: 1.1em;
}
.p-office__content-item::before {
  content: "・";
  position: absolute;
  left: -0.3em;
  top: 0;
  font-weight: 700;
}
.p-office__content-item + .p-office__content-item {
  margin-top: 1em;
}
.p-office__content-define {
  max-width: 90rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 640px) {
  .p-office__content-define {
    width: calc(100% + (var(--gutter) + 2rem) * 2);
    margin-left: calc((var(--gutter) + 2rem) * -1);
  }
}
.p-office__content-define .line {
  display: grid;
  grid-template-columns: 15rem 1fr;
}
@media screen and (max-width: 640px) {
  .p-office__content-define .line {
    border-top: 1px solid #0071bc;
    grid-template-columns: 1fr;
  }
}
.p-office__content-define .line:nth-child(odd) {
  background-color: #eaeff9;
}
@media screen and (max-width: 640px) {
  .p-office__content-define .line:nth-child(odd) {
    background-color: transparent;
  }
}
@media screen and (max-width: 640px) {
  .p-office__content-define .line:last-child {
    border-bottom: 1px solid #0071bc;
  }
}
.p-office__content-define .ttl,
.p-office__content-define .txt {
  padding: 0 1.9em;
}
@media screen and (max-width: 640px) {
  .p-office__content-define .ttl {
    background-color: #eaeff9;
    font-size: 2.8rem;
    font-weight: 500;
    padding: 0.7em 1.9em;
  }
}
@media screen and (max-width: 640px) {
  .p-office__content-define .txt {
    padding: 1.3em 1.9em;
  }
}
.p-office__content-define * {
  line-height: 2.8125;
}
@media screen and (max-width: 640px) {
  .p-office__content-define * {
    line-height: 1.3461538462;
  }
}
@media screen and (max-width: 640px) {
  .p-office__content-companies {
    width: calc(100% + (var(--gutter) + 2rem) * 2);
    margin-left: calc((var(--gutter) + 2rem) * -1);
  }
}
.p-office__content-company {
  line-height: 2.8125;
  padding: 0 2.5em;
}
@media screen and (max-width: 640px) {
  .p-office__content-company {
    padding: 0.2em 2em;
  }
}
.p-office__content-company:nth-child(odd) {
  background-color: #e0e9e7;
}
.p-office__content-btns {
  margin: 0 7rem;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 640px) {
  .p-office__content-btns {
    flex-direction: column;
    gap: 4rem;
  }
}

.p-news__content {
  padding: 3.5rem 0 9.5rem;
}
@media screen and (max-width: 640px) {
  .p-news__content {
    padding-bottom: 17rem;
  }
}
.p-news__content-main-item {
  border: 1px solid #1a1a1a;
}
.p-news__content-main-item + .p-news__content-main-item {
  border-top: none;
}
.p-news__content-main-item a {
  display: grid;
  grid-template-columns: 25rem 1fr;
  gap: 4rem;
  width: 100%;
  min-height: 19.8rem;
  padding: 1.5rem 1rem;
}
@media screen and (max-width: 640px) {
  .p-news__content-main-item a {
    grid-template-columns: 27rem 1fr;
    padding: 3.4rem 1.3rem;
    align-items: center;
    min-height: 27rem;
    gap: 3rem;
  }
}
.p-news__content-main-item a img {
  width: 100%;
  height: auto;
  aspect-ratio: 250/140;
  object-fit: cover;
}
.p-news__content-main-item .list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
}
@media screen and (max-width: 640px) {
  .p-news__content-main-item .list {
    gap: 1.5rem;
  }
}
.p-news__content-main-item .item {
  font-size: 1.4rem;
  background-color: #1a1a1a;
  color: #fff;
  line-height: 1;
  padding: 0.2em 0.5em 0.3em;
}
@media screen and (max-width: 640px) {
  .p-news__content-main-item .item {
    font-size: 2.5rem;
  }
}
.p-news__content-main-item .date {
  font-size: 1.5rem;
  color: #008f93;
  margin-top: 0.2em;
}
@media screen and (max-width: 640px) {
  .p-news__content-main-item .date {
    font-size: 2.6rem;
  }
}
.p-news__content-main-item .ttl {
  font-weight: 400;
  margin-top: 0.8em;
}
@media screen and (max-width: 640px) {
  .p-news__content-main-item .ttl {
    line-height: 1.3846153846;
    margin-top: 0.3em;
  }
}
.p-news__content-main-btns {
  display: flex;
  justify-content: center;
  gap: 8rem;
  margin-top: 12rem;
}
@media screen and (max-width: 640px) {
  .p-news__content-main-btns {
    gap: 10rem;
    margin-top: 17rem;
  }
}
.p-news__content-main-btn {
  width: 20rem;
  height: 5.5rem;
  background-color: #006837;
  border-radius: 1.5rem;
}
@media screen and (max-width: 640px) {
  .p-news__content-main-btn {
    width: 25rem;
    height: 9rem;
  }
}
.p-news__content-main-btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 1.8rem;
  color: #fff;
  gap: 1.4rem;
}
@media screen and (max-width: 640px) {
  .p-news__content-main-btn a {
    font-size: 2.4rem;
  }
}
.p-news__content-main-btn.--prev a {
  padding-right: 2.2rem;
}
.p-news__content-main-btn.--prev a:before {
  content: "";
  display: inline-block;
  width: 1.7rem;
  height: 1.7rem;
  background: url(../img/common/icn_arrow_right_white_thin.svg) no-repeat center/0.7rem;
  transform: scale(-1, 1);
}
@media screen and (max-width: 640px) {
  .p-news__content-main-btn.--prev a:before {
    width: 2.7rem;
    height: 2.7rem;
    background-size: 1rem;
  }
}
.p-news__content-main-btn.--next a {
  padding-left: 2.2rem;
}
.p-news__content-main-btn.--next a:after {
  content: "";
  display: inline-block;
  width: 1.7rem;
  height: 1.7rem;
  background: url(../img/common/icn_arrow_right_white_thin.svg) no-repeat center/0.7rem;
}
@media screen and (max-width: 640px) {
  .p-news__content-main-btn.--next a:after {
    width: 2.7rem;
    height: 2.7rem;
    background-size: 1rem;
  }
}
.p-news__content-side-ttl {
  font-size: 1.8rem;
  color: #fff;
  font-weight: 500;
  background-color: #1a1a1a;
  text-align: center;
  padding: 1rem 0;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 640px) {
  .p-news__content-side-ttl {
    font-size: 2.8rem;
  }
}
.p-news__content-side-list {
  margin-top: 2rem;
}
@media screen and (max-width: 640px) {
  .p-news__content-side-list {
    margin-top: 0.5rem;
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid #1a1a1a;
    border-left: 1px solid #1a1a1a;
  }
}
.p-news__content-side-item {
  position: relative;
  border: 1px solid #1a1a1a;
  min-height: 7rem;
}
@media screen and (max-width: 640px) {
  .p-news__content-side-item {
    min-height: 7.5rem;
    width: 33.3333333333%;
    border: none;
    border-bottom: 1px solid #1a1a1a;
    border-right: 1px solid #1a1a1a;
  }
}
.p-news__content-side-item + .p-news__content-side-item {
  border-top: none;
}
.p-news__content-side-item > * {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 1rem 2rem;
  line-height: 1.1538461538;
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 500;
}
@media screen and (max-width: 640px) {
  .p-news__content-side-item > * {
    justify-content: center;
    padding: 0.6rem 1.4rem;
  }
}
.p-news__back {
  padding-bottom: 14.5rem;
}
.p-news__back-inner {
  border-top: 1px solid #006837;
}
.p-news__back-btn {
  width: 23rem;
  height: 5.5rem;
  margin-left: auto;
  margin-right: 0;
  background-color: #006837;
}
@media screen and (max-width: 640px) {
  .p-news__back-btn {
    width: 33rem;
    height: 9rem;
    margin-right: 2.5rem;
  }
}
.p-news__back-btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 1.8rem;
  color: #fff;
  gap: 1.4rem;
}
@media screen and (max-width: 640px) {
  .p-news__back-btn a {
    font-size: 2.4rem;
  }
}
.p-news__back-btn a:after {
  content: "";
  display: inline-block;
  width: 1.7rem;
  height: 1.7rem;
  background: url(../img/common/icn_arrow_right_white_thin.svg) no-repeat center/0.7rem;
}
@media screen and (max-width: 640px) {
  .p-news__back-btn a:after {
    width: 2.7rem;
    height: 2.7rem;
    background-size: 1rem;
  }
}
.p-news__back-btn.--archive {
  width: 30rem;
  height: 6rem;
  margin: 9.8rem 30rem 9rem auto;
}
@media screen and (max-width: 640px) {
  .p-news__back-btn.--archive {
    width: 40rem;
    height: 9rem;
    margin-right: auto;
  }
}
.p-news__back-btn.--archive a::after {
  display: none;
}
.p-news__back-btn.--archive a::before {
  content: "";
  display: inline-block;
  width: 1.7rem;
  height: 1.7rem;
  background: url(../img/common/icn_arrow_right_white_thin.svg) no-repeat center/0.7rem;
  transform: scale(-1, 1);
}
@media screen and (max-width: 640px) {
  .p-news__back-btn.--archive a::before {
    width: 2.7rem;
    height: 2.7rem;
    background-size: 1rem;
  }
}

.p-news-detail {
  --wp--preset--font-size--small: 1.3rem;
  --wp--preset--font-size--normal: 1.6rem;
  --wp--preset--font-size--medium: 2rem;
  --wp--preset--font-size--large: 3.6rem;
  --wp--preset--font-size--x-large: 4.2rem;
  --wp--preset--font-size--huge: 4.8rem;
}
@media screen and (max-width: 640px) {
  .p-news-detail {
    --wp--preset--font-size--small: 2.2rem;
    --wp--preset--font-size--normal: 2.6rem;
    --wp--preset--font-size--medium: 3rem;
    --wp--preset--font-size--large: 3.4rem;
    --wp--preset--font-size--x-large: 3.8rem;
    --wp--preset--font-size--huge: 4.2rem;
  }
}
.p-news-detail__info {
  margin-top: -2rem;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
}
@media screen and (max-width: 640px) {
  .p-news-detail__info {
    flex-direction: column;
    gap: 1.5rem;
  }
}
.p-news-detail__cat-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.3rem;
}
@media screen and (max-width: 640px) {
  .p-news-detail__cat-list {
    gap: 1.3rem;
  }
}
.p-news-detail__cat-item {
  font-size: 1.4rem;
  background-color: #1a1a1a;
  color: #fff;
  line-height: 1;
  padding: 0.2em 0.6em 0.3em;
}
@media screen and (max-width: 640px) {
  .p-news-detail__cat-item {
    font-size: 2.5rem;
  }
}
.p-news-detail__date {
  font-size: 1.5rem;
  color: #008f93;
  line-height: 1;
  margin-top: 0.1em;
}
@media screen and (max-width: 640px) {
  .p-news-detail__date {
    font-size: 2.6rem;
  }
}
.p-news-detail__eyecatch {
  margin-top: 3rem;
}
.p-news-detail__eyecatch img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.p-news-detail__content {
  margin-top: 2.4rem;
}
.p-news-detail__content img {
  max-width: 100%;
  height: auto;
}
.p-news-detail__content .aligncenter {
  margin: 0 auto;
  text-align: center !important;
}
.p-news-detail__content .aligncenter:not(figure) {
  display: block;
}
.p-news-detail__content .alignright {
  float: right !important;
  text-align: right !important;
}
@media screen and (max-width: 640px) {
  .p-news-detail__content .alignright {
    float: initial !important;
    text-align: center !important;
    margin: 0 auto !important;
  }
}
@media screen and (max-width: 640px) {
  .p-news-detail__content .alignright:not(figure) {
    display: block !important;
  }
}
.p-news-detail__content .alignleft {
  float: left !important;
  text-align: left !important;
}
@media screen and (max-width: 640px) {
  .p-news-detail__content .alignleft {
    float: initial !important;
    text-align: center !important;
    margin: 0 auto !important;
  }
}
@media screen and (max-width: 640px) {
  .p-news-detail__content .alignleft:not(figure) {
    display: block !important;
  }
}
.p-news-detail__content::after {
  content: "";
  display: block;
  block-size: 0;
  font-size: 0;
  clear: both;
  visibility: hidden;
}
@media screen and (max-width: 640px) {
  .p-news-detail__content {
    padding: 0 2rem;
  }
}
.p-news-detail__content p {
  line-height: 2.0625;
}
.p-news-detail__content * {
  word-break: normal;
}
.p-news-detail__content * + p,
.p-news-detail__content * + ul,
.p-news-detail__content * + ol {
  margin-top: 1.2em;
}
.p-news-detail__content * + blockquote,
.p-news-detail__content * + .wp-block-group,
.p-news-detail__content * + .wp-block-image {
  margin-top: 2em;
}
.p-news-detail__content * + .wp-block-columns {
  margin-top: 4em;
}
.p-news-detail__content * + .custom-ttlContent-block {
  margin-top: 5em;
}
.p-news-detail__content * + h1,
.p-news-detail__content * + h2,
.p-news-detail__content * + h3,
.p-news-detail__content * + h4,
.p-news-detail__content * + h5,
.p-news-detail__content * + h6 {
  margin-top: 2.4em;
}
.p-news-detail__content h1,
.p-news-detail__content h2,
.p-news-detail__content h3,
.p-news-detail__content h4,
.p-news-detail__content h5,
.p-news-detail__content h6 {
  line-height: 1.46;
  margin-bottom: 1em;
  padding-bottom: 0.5em;
}
.p-news-detail__content h1.only-bottom-border,
.p-news-detail__content h2.only-bottom-border,
.p-news-detail__content h3.only-bottom-border,
.p-news-detail__content h4.only-bottom-border,
.p-news-detail__content h5.only-bottom-border,
.p-news-detail__content h6.only-bottom-border {
  padding-left: 0;
}
.p-news-detail__content h1.only-bottom-border::before,
.p-news-detail__content h2.only-bottom-border::before,
.p-news-detail__content h3.only-bottom-border::before,
.p-news-detail__content h4.only-bottom-border::before,
.p-news-detail__content h5.only-bottom-border::before,
.p-news-detail__content h6.only-bottom-border::before {
  display: none;
}
.p-news-detail__content h1 {
  font-size: 2.6rem;
  font-weight: 700;
}
.p-news-detail__content h2 {
  font-size: 2.4rem;
}
.p-news-detail__content h3 {
  font-size: 2.2rem;
}
.p-news-detail__content h4 {
  font-size: 2rem;
  font-weight: 700;
}
.p-news-detail__content h5 {
  font-size: 1.8rem;
  font-weight: 700;
}
.p-news-detail__content h6 {
  font-size: 1.6rem;
  font-weight: 700;
}
.p-news-detail__content h2,
.p-news-detail__content h3 {
  position: relative;
  font-weight: 500;
  border-bottom: 0.3rem solid #666;
  padding: 0 0 0.25em 2.3em;
}
.p-news-detail__content h2::before,
.p-news-detail__content h3::before {
  content: "";
  width: 1.6em;
  height: 1.6em;
  background-image: linear-gradient(to right, #006837 43%, #fff 43%, #fff 57%, #00a99d 57%);
  position: absolute;
  left: 0;
  top: -0.06em;
}
.p-news-detail__content ul,
.p-news-detail__content ol {
  padding-left: 2rem;
}
@media screen and (max-width: 640px) {
  .p-news-detail__content ul,
  .p-news-detail__content ol {
    padding-left: 4rem;
  }
}
.p-news-detail__content ul.is-style-sme-list-arrow li::before,
.p-news-detail__content ol.is-style-sme-list-arrow li::before {
  top: calc(var(--_half-leading) * 1.3em + 4px);
}
.p-news-detail__content ul.is-style-sme-list-arrow li::after,
.p-news-detail__content ol.is-style-sme-list-arrow li::after {
  top: calc(var(--_half-leading) * 1.3em + 6px);
}
.p-news-detail__content ul.is-style-sme-list-check li::before,
.p-news-detail__content ol.is-style-sme-list-check li::before {
  top: calc(var(--_half-leading) * 1.3em + 3px);
}
.p-news-detail__content ul.is-style-sme-list-times li::before,
.p-news-detail__content ol.is-style-sme-list-times li::before {
  top: calc(var(--_half-leading) * 1.3em + 6px);
}
.p-news-detail__content ul.is-style-sme-list-times li::after,
.p-news-detail__content ol.is-style-sme-list-times li::after {
  top: calc(var(--_half-leading) * 1.3em + 6px);
}
.p-news-detail__content ul.is-style-sme-ordered-list-circle li::before, .p-news-detail__content ul.is-style-sme-ordered-list-square li::before,
.p-news-detail__content ol.is-style-sme-ordered-list-circle li::before,
.p-news-detail__content ol.is-style-sme-ordered-list-square li::before {
  font-size: 0.8em;
  height: 1.6em;
  top: calc(var(--_half-leading) * 2.5em / 2);
  width: 1.6em;
}
.p-news-detail__content ul[style*=border-width],
.p-news-detail__content ol[style*=border-width] {
  padding-left: 3em;
}
@media screen and (max-width: 640px) {
  .p-news-detail__content ul[style*=border-width],
  .p-news-detail__content ol[style*=border-width] {
    padding-left: 7rem;
  }
}
.p-news-detail__content ul li + li,
.p-news-detail__content ol li + li {
  margin-top: 0.3em;
}
.p-news-detail__content ul:not(.is-style-sme-list-arrow):not(.is-style-sme-list-check):not(.is-style-sme-list-remark):not(.is-style-sme-list-times):not(.is-style-list-check):not(.is-style-list-square) {
  list-style: initial;
}
.p-news-detail__content ol:not(.is-style-sme-list-arrow):not(.is-style-sme-list-check):not(.is-style-sme-list-remark):not(.is-style-sme-list-times):not(.is-style-list-check):not(.is-style-list-square) {
  list-style: decimal;
}
.p-news-detail__content ul ul,
.p-news-detail__content ol ul {
  padding: 0.4rem 0 0 2rem;
  margin-top: 0;
}
@media screen and (max-width: 640px) {
  .p-news-detail__content ul ul,
  .p-news-detail__content ol ul {
    padding-left: 4rem;
  }
}
.p-news-detail__content ul ul {
  list-style: circle;
}
.p-news-detail__content ul ul ul {
  list-style: square;
}
.p-news-detail__content ol {
  list-style: decimal;
}
.p-news-detail__content ol.list-parentheses {
  list-style: none;
}
.p-news-detail__content ol.list-parentheses > li {
  position: relative;
  counter-increment: note;
}
.p-news-detail__content ol.list-parentheses > li::before {
  content: "(" counter(note) ")";
  position: absolute;
  left: -1.3em;
  top: 0;
}
.p-news-detail__content .wp-block-column ul {
  margin-top: 0;
}
.p-news-detail__content a:not(.wp-block-button__link) {
  text-decoration: underline;
  color: #004898;
  opacity: 1;
}
.p-news-detail__content a.wp-block-button__link {
  font-size: 1.6rem;
  line-height: 1.5;
}
@media screen and (max-width: 640px) {
  .p-news-detail__content a.wp-block-button__link {
    font-size: 2.6rem;
  }
}
.p-news-detail__content .wp-block-image.alignleft,
.p-news-detail__content .wp-block-embed.alignleft {
  margin: 1em 3.5rem 1em 0;
}
.p-news-detail__content .wp-block-image.alignright {
  margin: 1em 0 1em 3.5rem;
}
.p-news-detail__content .wp-block-embed {
  margin: 4em 0;
}
.p-news-detail__content .wp-block-embed.alignright {
  margin: 1em 0 1em 3.5rem;
}
.p-news-detail__content .wp-block-embed iframe {
  width: 100%;
  height: auto;
  max-width: 64rem;
  aspect-ratio: 640/360;
}
.p-news-detail__content .is-layout-flex .wp-block-image {
  margin-top: 0;
}
.p-news-detail__content .wp-block-table {
  margin: 3.7em 0;
}
.p-news-detail__content .wp-block-table thead {
  border-bottom-width: 1px;
}
.p-news-detail__content .wp-block-table th {
  background-color: #40a471;
  color: #fff;
  border: 1px solid #1a1a1a;
  font-weight: 500;
  text-align: center;
}
.p-news-detail__content .wp-block-table td,
.p-news-detail__content .wp-block-table th {
  padding: 0.5em 2.4em;
}
@media screen and (max-width: 640px) {
  .p-news-detail__content .wp-block-table td,
  .p-news-detail__content .wp-block-table th {
    padding: 0.5em 0.6em;
  }
}
.p-news-detail__content :where(.is-layout-flex) {
  gap: 2rem 4rem;
}
.p-news-detail__content figcaption {
  font-size: 1.4rem;
  line-height: 1.4285714286;
  justify-content: center !important;
  margin: 0.2em 0 0;
  text-align: left;
}
@media screen and (max-width: 640px) {
  .p-news-detail__content figcaption {
    font-size: 2.4rem;
  }
}
@media print and (any-hover: hover), screen and (any-hover: hover) and (min-width: 641px) {
  .p-news-detail__content a {
    cursor: pointer;
  }
  .p-news-detail__content a:hover {
    text-decoration: none;
  }
}
@media screen and (max-width: 640px) {
  .p-news-detail__content h1 {
    font-size: 3.8rem;
  }
  .p-news-detail__content h2 {
    font-size: 3.6rem;
  }
  .p-news-detail__content h3 {
    font-size: 3.4rem;
  }
  .p-news-detail__content h4 {
    font-size: 3.2rem;
  }
  .p-news-detail__content h5 {
    font-size: 3rem;
  }
  .p-news-detail__content h6 {
    font-size: 2.8rem;
  }
  .p-news-detail__content .wp-block-embed iframe {
    max-width: inherit !important;
  }
  .p-news-detail__content .wp-block-image,
  .p-news-detail__content .wp-block-embed {
    text-align: center;
  }
  .p-news-detail__content .wp-block-image.alignleft, .p-news-detail__content .wp-block-image.alignright, .p-news-detail__content .wp-block-image.aligncenter {
    float: none;
    margin: 1em auto !important;
    width: 100%;
    max-width: 100%;
  }
  .p-news-detail__content .wp-block-embed.alignleft, .p-news-detail__content .wp-block-embed.alignright, .p-news-detail__content .wp-block-embed.aligncenter {
    float: none;
    margin: 1em auto !important;
    width: 100%;
    max-width: 100%;
  }
  .p-news-detail__content .wp-block-image.alignleft img, .p-news-detail__content .wp-block-image.alignright img, .p-news-detail__content .wp-block-image.aligncenter img {
    width: 100%;
  }
  .p-news-detail__content .wp-block-embed.alignleft img, .p-news-detail__content .wp-block-embed.alignright img, .p-news-detail__content .wp-block-embed.aligncenter img {
    width: 100%;
  }
}
.p-news-detail__content > *:first-child {
  margin-top: 0;
}
.p-news-detail__content #ez-toc-container {
  border: 1px solid #ccc;
  width: 100%;
  margin: 9rem 0;
  padding: 4rem 6rem 2rem;
  border-radius: 0;
  background-color: initial;
}
@media screen and (max-width: 640px) {
  .p-news-detail__content #ez-toc-container {
    padding: 4rem 3rem 3rem;
  }
}
.p-news-detail__content #ez-toc-container .ez-toc-title-container {
  position: absolute;
  top: -2rem;
  left: 5rem;
  width: 13rem;
  height: 3.8rem;
  background-color: #999;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 640px) {
  .p-news-detail__content #ez-toc-container .ez-toc-title-container {
    width: 16rem;
    height: 4.8rem;
    top: -2.5rem;
  }
}
.p-news-detail__content #ez-toc-container .ez-toc-title-container * {
  color: #fff;
  font-size: 2rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 640px) {
  .p-news-detail__content #ez-toc-container .ez-toc-title-container * {
    font-size: 3rem;
  }
}
.p-news-detail__content #ez-toc-container li + li {
  margin-top: 2em;
}
.p-news-detail__content #ez-toc-container .ez-toc-list-level-3 li {
  margin-top: 0.5em;
}
.p-news-detail__content #ez-toc-container a {
  font-size: 1.6rem;
  font-weight: 500;
  opacity: 1 !important;
}
@media screen and (max-width: 640px) {
  .p-news-detail__content #ez-toc-container a {
    font-size: 2.6rem;
  }
}
.p-news-detail__content #ez-toc-container a:visited {
  color: #4d4d4d;
}
.p-news-detail__content .wp-block-flexible-table-block-table {
  margin: 4em 0;
}
@media screen and (min-width: 641px) {
  .p-news-detail__content .wp-block-flexible-table-block-table.is-scroll-on-mobile table {
    min-width: initial !important;
  }
}
.p-news-detail__content .border_green {
  border: 1px solid #006837;
  padding: 1.5em 3em;
  margin-top: 1em;
}
.p-news-detail__content .border_black {
  border: 1px solid #1a1a1a;
  padding: 1.5em 3em;
  margin-top: 1em;
}
@media (hover: hover) {
  .p-news-detail__content .wp-block-image a:hover {
    opacity: 0.7;
  }
}
.p-news-detail__content :where([style*=border-width]) {
  border-style: solid;
  padding: 1.5em 3em;
}
@media screen and (max-width: 640px) {
  .p-news-detail__content :where([style*=border-width]) {
    padding: 1em 1.5em;
  }
}
.p-news-detail__content .only-bottom-border {
  border-bottom-width: 0.3rem;
  border-bottom-color: #666;
  border-bottom-style: solid;
}
.p-news-detail__content .custom-ttlContent-block .ttl {
  font-size: 1.8rem;
  display: inline-block;
  color: #fff;
  background-color: #006837;
  padding: 0.2em 1.6em;
}
@media screen and (max-width: 640px) {
  .p-news-detail__content .custom-ttlContent-block .ttl {
    font-size: 2.8rem;
  }
}
.p-news-detail__content .custom-ttlContent-block .content {
  border: 1px solid #006837;
  margin-top: -1.9em;
  padding: 3.7em 1.4em 1.5em;
}

.p-case__content {
  padding: 3.5rem 0 9.5rem;
}
@media screen and (max-width: 640px) {
  .p-case__content {
    padding-bottom: 17rem;
  }
}
.p-case__content-main-item {
  border: 1px solid #386a42;
}
.p-case__content-main-item + .p-case__content-main-item {
  border-top: none;
}
.p-case__content-main-item a {
  display: grid;
  grid-template-columns: 25rem 1fr;
  gap: 4rem;
  width: 100%;
  min-height: 19.8rem;
  padding: 1.5rem 1rem;
}
@media screen and (max-width: 640px) {
  .p-case__content-main-item a {
    grid-template-columns: 27rem 1fr;
    padding: 3.4rem 1.3rem;
    align-items: center;
    min-height: 20rem;
    gap: 3rem;
  }
}
.p-case__content-main-item a img {
  width: 100%;
  height: auto;
  aspect-ratio: 250/140;
  object-fit: cover;
}
.p-case__content-main-item .info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem 1.7rem;
}
@media screen and (max-width: 640px) {
  .p-case__content-main-item .info {
    flex-direction: column;
    align-items: flex-start;
  }
}
.p-case__content-main-item .list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
}
@media screen and (max-width: 640px) {
  .p-case__content-main-item .list {
    gap: 1.5rem;
  }
}
.p-case__content-main-item .item {
  font-size: 1.4rem;
  background-color: #33685a;
  color: #fff;
  line-height: 1;
  padding: 0.2em 0.5em 0.3em;
}
@media screen and (max-width: 640px) {
  .p-case__content-main-item .item {
    font-size: 2.5rem;
  }
}
.p-case__content-main-item .date {
  font-size: 1.5rem;
  color: #386a42;
}
@media screen and (max-width: 640px) {
  .p-case__content-main-item .date {
    font-size: 2.6rem;
  }
}
.p-case__content-main-item .ttl {
  font-weight: 400;
  margin-top: 1.2em;
}
@media screen and (max-width: 640px) {
  .p-case__content-main-item .ttl {
    line-height: 1.3846153846;
    margin-top: 0.3em;
  }
}
.p-case__content-main-btns {
  display: flex;
  justify-content: center;
  gap: 8rem;
  margin-top: 12rem;
}
@media screen and (max-width: 640px) {
  .p-case__content-main-btns {
    gap: 10rem;
    margin-top: 17rem;
  }
}
.p-case__content-main-btn {
  width: 20rem;
  height: 5.5rem;
  background-color: #006837;
  border-radius: 1.5rem;
}
@media screen and (max-width: 640px) {
  .p-case__content-main-btn {
    width: 25rem;
    height: 9rem;
  }
}
.p-case__content-main-btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 1.8rem;
  color: #fff;
  gap: 1.4rem;
}
@media screen and (max-width: 640px) {
  .p-case__content-main-btn a {
    font-size: 2.4rem;
  }
}
.p-case__content-main-btn.--prev a {
  padding-right: 2.2rem;
}
.p-case__content-main-btn.--prev a:before {
  content: "";
  display: inline-block;
  width: 1.7rem;
  height: 1.7rem;
  background: url(../img/common/icn_arrow_right_white_thin.svg) no-repeat center/0.7rem;
  transform: scale(-1, 1);
}
@media screen and (max-width: 640px) {
  .p-case__content-main-btn.--prev a:before {
    width: 2.7rem;
    height: 2.7rem;
    background-size: 1rem;
  }
}
.p-case__content-main-btn.--next a {
  padding-left: 2.2rem;
}
.p-case__content-main-btn.--next a:after {
  content: "";
  display: inline-block;
  width: 1.7rem;
  height: 1.7rem;
  background: url(../img/common/icn_arrow_right_white_thin.svg) no-repeat center/0.7rem;
}
@media screen and (max-width: 640px) {
  .p-case__content-main-btn.--next a:after {
    width: 2.7rem;
    height: 2.7rem;
    background-size: 1rem;
  }
}
.p-case__content-side-ttl {
  font-size: 1.8rem;
  color: #fff;
  font-weight: 500;
  background-color: #386a42;
  text-align: center;
  padding: 1rem 0;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 640px) {
  .p-case__content-side-ttl {
    font-size: 2.8rem;
  }
}
.p-case__content-side-list {
  margin-top: 2rem;
}
@media screen and (max-width: 640px) {
  .p-case__content-side-list {
    margin-top: 0.5rem;
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid #386a42;
    border-left: 1px solid #386a42;
  }
}
.p-case__content-side-item {
  position: relative;
  border: 1px solid #386a42;
  min-height: 7rem;
}
.p-case__content-side-item + .p-case__content-side-item {
  border-top: none;
}
@media screen and (max-width: 640px) {
  .p-case__content-side-item {
    min-height: 7.5rem;
    width: 33.3333333333%;
    border: none;
    border-bottom: 1px solid #386a42;
    border-right: 1px solid #386a42;
  }
}
.p-case__content-side-item > * {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 1rem 2rem;
  line-height: 1.1538461538;
  position: absolute;
  top: 0;
  left: 0;
  color: #6d5c45;
  font-weight: 500;
}
@media screen and (max-width: 640px) {
  .p-case__content-side-item > * {
    justify-content: center;
    padding: 0.6rem 1.4rem;
  }
}
.p-case__back {
  padding-bottom: 14.5rem;
}
.p-case__back-inner {
  border-top: 1px solid #006837;
}
.p-case__back-btn {
  width: 23rem;
  height: 5.5rem;
  margin-left: auto;
  margin-right: 0;
  background-color: #006837;
}
@media screen and (max-width: 640px) {
  .p-case__back-btn {
    width: 33rem;
    height: 9rem;
    margin-right: 2.5rem;
  }
}
.p-case__back-btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 1.8rem;
  color: #fff;
  gap: 1.4rem;
}
@media screen and (max-width: 640px) {
  .p-case__back-btn a {
    font-size: 2.4rem;
  }
}
.p-case__back-btn a:after {
  content: "";
  display: inline-block;
  width: 1.7rem;
  height: 1.7rem;
  background: url(../img/common/icn_arrow_right_white_thin.svg) no-repeat center/0.7rem;
}
@media screen and (max-width: 640px) {
  .p-case__back-btn a:after {
    width: 2.7rem;
    height: 2.7rem;
    background-size: 1rem;
  }
}
.p-case__back-btn.--archive {
  width: 30rem;
  height: 6rem;
  margin: 9.8rem 30rem 9rem auto;
}
@media screen and (max-width: 640px) {
  .p-case__back-btn.--archive {
    width: 40rem;
    height: 9rem;
    margin-right: auto;
  }
}
.p-case__back-btn.--archive a::after {
  display: none;
}
.p-case__back-btn.--archive a::before {
  content: "";
  display: inline-block;
  width: 1.7rem;
  height: 1.7rem;
  background: url(../img/common/icn_arrow_right_white_thin.svg) no-repeat center/0.7rem;
  transform: scale(-1, 1);
}
@media screen and (max-width: 640px) {
  .p-case__back-btn.--archive a::before {
    width: 2.7rem;
    height: 2.7rem;
    background-size: 1rem;
  }
}

.p-case-detail {
  --wp--preset--font-size--small: 1.3rem;
  --wp--preset--font-size--normal: 1.6rem;
  --wp--preset--font-size--medium: 2rem;
  --wp--preset--font-size--large: 3.6rem;
  --wp--preset--font-size--x-large: 4.2rem;
  --wp--preset--font-size--huge: 4.8rem;
}
@media screen and (max-width: 640px) {
  .p-case-detail {
    --wp--preset--font-size--small: 2.2rem;
    --wp--preset--font-size--normal: 2.6rem;
    --wp--preset--font-size--medium: 3rem;
    --wp--preset--font-size--large: 3.4rem;
    --wp--preset--font-size--x-large: 3.8rem;
    --wp--preset--font-size--huge: 4.2rem;
  }
}
.p-case-detail__info {
  margin-top: -2.3rem;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0.6rem 1.2rem;
}
@media screen and (max-width: 640px) {
  .p-case-detail__info {
    flex-direction: column;
    gap: 1.2rem;
  }
}
.p-case-detail__cat-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.3rem;
}
@media screen and (max-width: 640px) {
  .p-case-detail__cat-list {
    gap: 1.3rem;
  }
}
.p-case-detail__cat-item {
  font-size: 1.7rem;
  background-color: #6d5c45;
  color: #fff;
  line-height: 1;
  padding: 0.3em 0.45em 0.5em;
}
@media screen and (max-width: 640px) {
  .p-case-detail__cat-item {
    font-size: 2.5rem;
  }
}
.p-case-detail__date {
  font-size: 1.6rem;
  color: #386a42;
  line-height: 1.6;
  margin-top: 0.1em;
}
@media screen and (max-width: 640px) {
  .p-case-detail__date {
    font-size: 2.6rem;
  }
}
.p-case-detail__eyecatch {
  margin-top: 2.4rem;
}
.p-case-detail__eyecatch img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.p-case-detail__content {
  margin-top: 3rem;
}
.p-case-detail__content img {
  max-width: 100%;
  height: auto;
}
.p-case-detail__content .aligncenter {
  margin: 0 auto;
  text-align: center !important;
}
.p-case-detail__content .aligncenter:not(figure) {
  display: block;
}
.p-case-detail__content .alignright {
  float: right !important;
  text-align: right !important;
}
@media screen and (max-width: 640px) {
  .p-case-detail__content .alignright {
    float: initial !important;
    text-align: center !important;
    margin: 0 auto !important;
  }
}
@media screen and (max-width: 640px) {
  .p-case-detail__content .alignright:not(figure) {
    display: block !important;
  }
}
.p-case-detail__content .alignleft {
  float: left !important;
  text-align: left !important;
}
@media screen and (max-width: 640px) {
  .p-case-detail__content .alignleft {
    float: initial !important;
    text-align: center !important;
    margin: 0 auto !important;
  }
}
@media screen and (max-width: 640px) {
  .p-case-detail__content .alignleft:not(figure) {
    display: block !important;
  }
}
.p-case-detail__content::after {
  content: "";
  display: block;
  block-size: 0;
  font-size: 0;
  clear: both;
  visibility: hidden;
}
@media screen and (max-width: 640px) {
  .p-case-detail__content {
    padding: 0 2rem;
  }
}
.p-case-detail__content p {
  line-height: 2.0625;
}
.p-case-detail__content * {
  word-break: normal;
}
.p-case-detail__content * + p,
.p-case-detail__content * + ul,
.p-case-detail__content * + ol {
  margin-top: 1.2em;
}
.p-case-detail__content * + blockquote,
.p-case-detail__content * + .wp-block-group,
.p-case-detail__content * + .wp-block-image {
  margin-top: 2em;
}
.p-case-detail__content * + .wp-block-columns {
  margin-top: 4em;
}
.p-case-detail__content * + .custom-ttlContent-block {
  margin-top: 5em;
}
.p-case-detail__content * + h1,
.p-case-detail__content * + h2,
.p-case-detail__content * + h3,
.p-case-detail__content * + h4,
.p-case-detail__content * + h5,
.p-case-detail__content * + h6 {
  margin-top: 2.4em;
}
.p-case-detail__content h1,
.p-case-detail__content h2,
.p-case-detail__content h3,
.p-case-detail__content h4,
.p-case-detail__content h5,
.p-case-detail__content h6 {
  line-height: 1.46;
  margin-bottom: 1em;
  padding-bottom: 0.5em;
}
.p-case-detail__content h1.only-bottom-border,
.p-case-detail__content h2.only-bottom-border,
.p-case-detail__content h3.only-bottom-border,
.p-case-detail__content h4.only-bottom-border,
.p-case-detail__content h5.only-bottom-border,
.p-case-detail__content h6.only-bottom-border {
  padding-left: 0;
}
.p-case-detail__content h1.only-bottom-border::before,
.p-case-detail__content h2.only-bottom-border::before,
.p-case-detail__content h3.only-bottom-border::before,
.p-case-detail__content h4.only-bottom-border::before,
.p-case-detail__content h5.only-bottom-border::before,
.p-case-detail__content h6.only-bottom-border::before {
  display: none;
}
.p-case-detail__content h1 {
  font-size: 2.6rem;
  font-weight: 700;
}
.p-case-detail__content h2 {
  font-size: 2.4rem;
}
.p-case-detail__content h3 {
  font-size: 2.2rem;
}
.p-case-detail__content h4 {
  font-size: 2rem;
  font-weight: 700;
}
.p-case-detail__content h5 {
  font-size: 1.8rem;
  font-weight: 700;
}
.p-case-detail__content h6 {
  font-size: 1.6rem;
  font-weight: 700;
}
.p-case-detail__content h2,
.p-case-detail__content h3 {
  position: relative;
  font-weight: 500;
  border-bottom: 0.3rem solid #666;
  padding: 0 0 0.25em 2.3em;
}
.p-case-detail__content h2::before,
.p-case-detail__content h3::before {
  content: "";
  width: 1.6em;
  height: 1.6em;
  background-image: linear-gradient(to right, #006837 43%, #fff 43%, #fff 57%, #00a99d 57%);
  position: absolute;
  left: 0;
  top: -0.06em;
}
.p-case-detail__content ul,
.p-case-detail__content ol {
  padding-left: 2rem;
}
@media screen and (max-width: 640px) {
  .p-case-detail__content ul,
  .p-case-detail__content ol {
    padding-left: 4rem;
  }
}
.p-case-detail__content ul.is-style-sme-list-arrow li::before,
.p-case-detail__content ol.is-style-sme-list-arrow li::before {
  top: calc(var(--_half-leading) * 1.3em + 4px);
}
.p-case-detail__content ul.is-style-sme-list-arrow li::after,
.p-case-detail__content ol.is-style-sme-list-arrow li::after {
  top: calc(var(--_half-leading) * 1.3em + 6px);
}
.p-case-detail__content ul.is-style-sme-list-check li::before,
.p-case-detail__content ol.is-style-sme-list-check li::before {
  top: calc(var(--_half-leading) * 1.3em + 3px);
}
.p-case-detail__content ul.is-style-sme-list-times li::before,
.p-case-detail__content ol.is-style-sme-list-times li::before {
  top: calc(var(--_half-leading) * 1.3em + 6px);
}
.p-case-detail__content ul.is-style-sme-list-times li::after,
.p-case-detail__content ol.is-style-sme-list-times li::after {
  top: calc(var(--_half-leading) * 1.3em + 6px);
}
.p-case-detail__content ul.is-style-sme-ordered-list-circle li::before, .p-case-detail__content ul.is-style-sme-ordered-list-square li::before,
.p-case-detail__content ol.is-style-sme-ordered-list-circle li::before,
.p-case-detail__content ol.is-style-sme-ordered-list-square li::before {
  font-size: 0.8em;
  height: 1.6em;
  top: calc(var(--_half-leading) * 2.5em / 2);
  width: 1.6em;
}
.p-case-detail__content ul[style*=border-width],
.p-case-detail__content ol[style*=border-width] {
  padding-left: 3em;
}
@media screen and (max-width: 640px) {
  .p-case-detail__content ul[style*=border-width],
  .p-case-detail__content ol[style*=border-width] {
    padding-left: 7rem;
  }
}
.p-case-detail__content ul li + li,
.p-case-detail__content ol li + li {
  margin-top: 0.3em;
}
.p-case-detail__content ul:not(.is-style-sme-list-arrow):not(.is-style-sme-list-check):not(.is-style-sme-list-remark):not(.is-style-sme-list-times):not(.is-style-list-check):not(.is-style-list-square) {
  list-style: initial;
}
.p-case-detail__content ol:not(.is-style-sme-list-arrow):not(.is-style-sme-list-check):not(.is-style-sme-list-remark):not(.is-style-sme-list-times):not(.is-style-list-check):not(.is-style-list-square) {
  list-style: decimal;
}
.p-case-detail__content ul ul,
.p-case-detail__content ol ul {
  padding: 0.4rem 0 0 2rem;
  margin-top: 0;
}
@media screen and (max-width: 640px) {
  .p-case-detail__content ul ul,
  .p-case-detail__content ol ul {
    padding-left: 4rem;
  }
}
.p-case-detail__content ul ul {
  list-style: circle;
}
.p-case-detail__content ul ul ul {
  list-style: square;
}
.p-case-detail__content ol {
  list-style: decimal;
}
.p-case-detail__content .wp-block-column ul {
  margin-top: 0;
}
.p-case-detail__content a:not(.wp-block-button__link) {
  text-decoration: underline;
  color: #004898;
  opacity: 1;
}
.p-case-detail__content a.wp-block-button__link {
  font-size: 1.6rem;
  line-height: 1.5;
}
@media screen and (max-width: 640px) {
  .p-case-detail__content a.wp-block-button__link {
    font-size: 2.6rem;
  }
}
.p-case-detail__content .wp-block-image.alignleft,
.p-case-detail__content .wp-block-embed.alignleft {
  margin: 1em 3.5rem 1em 0;
}
.p-case-detail__content .wp-block-image.alignright {
  margin: 1em 0 1em 3.5rem;
}
.p-case-detail__content .wp-block-embed {
  margin: 4em 0;
}
.p-case-detail__content .wp-block-embed.alignright {
  margin: 1em 0 1em 3.5rem;
}
.p-case-detail__content .wp-block-embed iframe {
  width: 100%;
  height: auto;
  max-width: 64rem;
  aspect-ratio: 640/360;
}
.p-case-detail__content .is-layout-flex .wp-block-image {
  margin-top: 0;
}
.p-case-detail__content .wp-block-table {
  margin: 3.7em 0;
}
.p-case-detail__content .wp-block-table thead {
  border-bottom-width: 1px;
}
.p-case-detail__content .wp-block-table th {
  background-color: #40a471;
  color: #fff;
  border: 1px solid #1a1a1a;
  font-weight: 500;
  text-align: center;
}
.p-case-detail__content .wp-block-table td,
.p-case-detail__content .wp-block-table th {
  padding: 0.5em 2.4em;
}
@media screen and (max-width: 640px) {
  .p-case-detail__content .wp-block-table td,
  .p-case-detail__content .wp-block-table th {
    padding: 0.5em 0.6em;
  }
}
.p-case-detail__content :where(.is-layout-flex) {
  gap: 2rem 4rem;
}
.p-case-detail__content figcaption {
  font-size: 1.4rem;
  line-height: 1.4285714286;
  justify-content: center !important;
  margin: 0.2em 0 0;
  text-align: left;
}
@media screen and (max-width: 640px) {
  .p-case-detail__content figcaption {
    font-size: 2.4rem;
  }
}
@media print and (any-hover: hover), screen and (any-hover: hover) and (min-width: 641px) {
  .p-case-detail__content a {
    cursor: pointer;
  }
  .p-case-detail__content a:hover {
    text-decoration: none;
  }
}
@media screen and (max-width: 640px) {
  .p-case-detail__content h1 {
    font-size: 3.8rem;
  }
  .p-case-detail__content h2 {
    font-size: 3.6rem;
  }
  .p-case-detail__content h3 {
    font-size: 3.4rem;
  }
  .p-case-detail__content h4 {
    font-size: 3.2rem;
  }
  .p-case-detail__content h5 {
    font-size: 3rem;
  }
  .p-case-detail__content h6 {
    font-size: 2.8rem;
  }
  .p-case-detail__content .wp-block-embed iframe {
    max-width: inherit !important;
  }
  .p-case-detail__content .wp-block-image,
  .p-case-detail__content .wp-block-embed {
    text-align: center;
  }
  .p-case-detail__content .wp-block-image.alignleft, .p-case-detail__content .wp-block-image.alignright, .p-case-detail__content .wp-block-image.aligncenter {
    float: none;
    margin: 1em auto !important;
    width: 100%;
    max-width: 100%;
  }
  .p-case-detail__content .wp-block-embed.alignleft, .p-case-detail__content .wp-block-embed.alignright, .p-case-detail__content .wp-block-embed.aligncenter {
    float: none;
    margin: 1em auto !important;
    width: 100%;
    max-width: 100%;
  }
  .p-case-detail__content .wp-block-image.alignleft img, .p-case-detail__content .wp-block-image.alignright img, .p-case-detail__content .wp-block-image.aligncenter img {
    width: 100%;
  }
  .p-case-detail__content .wp-block-embed.alignleft img, .p-case-detail__content .wp-block-embed.alignright img, .p-case-detail__content .wp-block-embed.aligncenter img {
    width: 100%;
  }
}
.p-case-detail__content > *:first-child {
  margin-top: 0;
}
.p-case-detail__content #ez-toc-container {
  border: 1px solid #ccc;
  width: 100%;
  margin: 9rem 0;
  padding: 4rem 6rem 2rem;
  border-radius: 0;
  background-color: initial;
}
@media screen and (max-width: 640px) {
  .p-case-detail__content #ez-toc-container {
    padding: 4rem 3rem 3rem;
  }
}
.p-case-detail__content #ez-toc-container .ez-toc-title-container {
  position: absolute;
  top: -2rem;
  left: 5rem;
  width: 13rem;
  height: 3.8rem;
  background-color: #999;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 640px) {
  .p-case-detail__content #ez-toc-container .ez-toc-title-container {
    width: 16rem;
    height: 4.8rem;
    top: -2.5rem;
  }
}
.p-case-detail__content #ez-toc-container .ez-toc-title-container * {
  color: #fff;
  font-size: 2rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 640px) {
  .p-case-detail__content #ez-toc-container .ez-toc-title-container * {
    font-size: 3rem;
  }
}
.p-case-detail__content #ez-toc-container li + li {
  margin-top: 2em;
}
.p-case-detail__content #ez-toc-container .ez-toc-list-level-3 li {
  margin-top: 0.5em;
}
.p-case-detail__content #ez-toc-container a {
  font-size: 1.6rem;
  font-weight: 500;
  opacity: 1 !important;
}
@media screen and (max-width: 640px) {
  .p-case-detail__content #ez-toc-container a {
    font-size: 2.6rem;
  }
}
.p-case-detail__content #ez-toc-container a:visited {
  color: #4d4d4d;
}
.p-case-detail__content .wp-block-flexible-table-block-table {
  margin: 4em 0;
}
@media screen and (min-width: 641px) {
  .p-case-detail__content .wp-block-flexible-table-block-table.is-scroll-on-mobile table {
    min-width: initial !important;
  }
}
.p-case-detail__content .border_green {
  border: 1px solid #006837;
  padding: 1.5em 3em;
  margin-top: 1em;
}
.p-case-detail__content .border_black {
  border: 1px solid #1a1a1a;
  padding: 1.5em 3em;
  margin-top: 1em;
}
@media (hover: hover) {
  .p-case-detail__content .wp-block-image a:hover {
    opacity: 0.7;
  }
}
.p-case-detail__content :where([style*=border-width]) {
  border-style: solid;
  padding: 1.5em 3em;
}
@media screen and (max-width: 640px) {
  .p-case-detail__content :where([style*=border-width]) {
    padding: 1em 1.5em;
  }
}
.p-case-detail__content .custom-ttlContent-block .ttl {
  font-size: 1.8rem;
  display: inline-block;
  color: #fff;
  background-color: #006837;
  padding: 0.2em 1.6em;
}
@media screen and (max-width: 640px) {
  .p-case-detail__content .custom-ttlContent-block .ttl {
    font-size: 2.8rem;
  }
}
.p-case-detail__content .custom-ttlContent-block .content {
  border: 1px solid #006837;
  margin-top: -1.9em;
  padding: 3.7em 1.4em 1.5em;
}

.p-qa__content {
  padding: 3.5rem 0 18rem;
}
.p-qa__content-ttl {
  position: relative;
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-top: 2.5em;
  padding: 1.08em 0.9em;
  letter-spacing: 0.01em;
  border-bottom: 1px solid #4d6c40;
}
@media screen and (max-width: 640px) {
  .p-qa__content-ttl {
    font-size: 3.4rem;
    letter-spacing: 0;
    padding: 0.6em 3rem;
    margin-left: calc(var(--gutter) * -1);
    width: calc(100% + var(--gutter) * 2);
    margin-top: 2.4em;
  }
}
.p-qa__content-ttl::before {
  content: "";
  width: 100%;
  height: 0.35em;
  background-color: #4d6c40;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 640px) {
  .p-qa__content-ttl::before {
    width: calc(100% - 6rem);
    left: 3rem;
  }
}
.p-qa__content-anchor {
  padding-top: 4.5rem;
}
.p-qa__content-anchor .txt {
  text-align: center;
  font-weight: 500;
}
.p-qa__content-anchor-list {
  padding: 0 1rem;
  margin-top: 2.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}
@media screen and (max-width: 640px) {
  .p-qa__content-anchor-list {
    padding: 0;
    gap: 1.5rem;
  }
}
.p-qa__content-anchor-item {
  border: 1px solid #006837;
  width: calc((100% - 12rem) / 5);
}
@media screen and (max-width: 640px) {
  .p-qa__content-anchor-item {
    width: calc((100% - 3rem) / 3);
  }
}
.p-qa__content-anchor-item a {
  font-size: 1.5rem;
  line-height: 1.2666666667;
  text-align: center;
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  padding: 0.4em 2em;
  min-height: 3.2em;
  font-weight: 500;
}
@media screen and (max-width: 640px) {
  .p-qa__content-anchor-item a {
    font-size: 2.4rem;
    padding: 0.4em 1em;
  }
}
.p-qa__content-block {
  margin: 3.7rem 2rem 0;
  border: 1px solid #e6e6e6;
  padding: 2rem;
}
.p-qa__content-block + .p-qa__content-block {
  margin-top: 2.3rem;
}
.p-qa__content-block-line {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 2rem;
}
@media screen and (max-width: 640px) {
  .p-qa__content-block-line {
    grid-template-columns: 6rem 1fr;
  }
}
.p-qa__content-block-line .txt {
  position: relative;
}
.p-qa__content-block-line .txt .u-icn-plus {
  position: absolute;
  top: 0.1em;
  right: 4.2em;
}
@media screen and (max-width: 640px) {
  .p-qa__content-block-line .txt .u-icn-plus {
    right: 0.6em;
    top: 0.2em;
  }
}
.p-qa__content-block-line.--q {
  cursor: pointer;
}
.p-qa__content-block-line.--q .txt {
  background-color: #cfe6cf;
  color: #4d6c40;
  font-weight: 500;
  padding: 0.8rem 10rem 0.1rem 3.4rem;
  border-bottom: 0.7rem solid #cfe6cf;
  transition: all 0.3s linear;
}
@media screen and (max-width: 640px) {
  .p-qa__content-block-line.--q .txt {
    padding: 1.5rem 6rem 0.8rem 3rem;
  }
}
.p-qa__content-block-line.--q.is-open .txt {
  background-color: transparent;
}
.p-qa__content-block-line.--a {
  padding-top: 2.4rem;
}
.p-qa__content-block-line.--a .txt {
  padding: 0.2rem 3.4rem;
}
@media screen and (max-width: 640px) {
  .p-qa__content-block-line.--a .txt {
    padding: 0.5rem 3rem;
  }
}
.p-qa__content-block-line.--a .txt a {
  color: #006837;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 0.2rem;
  text-decoration-thickness: 1px;
  opacity: 1;
}
@media (hover: hover) {
  .p-qa__content-block-line.--a .txt a:hover {
    text-decoration: none;
  }
}

.p-contact__content {
  padding: 3.5rem 0 7rem;
}
.p-contact__content-head {
  margin-top: 6.5rem;
  padding: 0 3.6rem;
}
@media screen and (max-width: 640px) {
  .p-contact__content-head {
    margin-top: 4rem;
    padding: 0;
  }
}
.p-contact__content-banner-wrap {
  border: 1px solid #1a1a1a;
  margin: 4rem 2rem 0;
  padding: 3rem 2rem;
}
@media screen and (max-width: 640px) {
  .p-contact__content-banner-wrap {
    margin-left: 0;
    margin-right: 0;
  }
}
.p-contact__content-banner-wrap + .p-contact__content-head {
  margin-top: 4rem;
}
.p-contact__content-banners {
  margin-top: 4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
@media screen and (max-width: 640px) {
  .p-contact__content-banners {
    gap: 3rem;
  }
}
.p-contact__content-banner {
  width: calc((100% - 6rem) / 4);
}
@media screen and (max-width: 640px) {
  .p-contact__content-banner {
    width: calc((100% - 3rem) / 2);
  }
}
.p-contact__content-banner img {
  width: 100%;
}
.p-contact__content-ttl {
  position: relative;
  margin: 1.4em 0 0.8em;
  font-size: 1.8rem;
  color: #fff;
  font-weight: 500;
  background-color: #006837;
  outline: 0.2rem solid #fff;
  outline-offset: -0.8rem;
  text-align: center;
  padding: 1.5rem;
}
@media screen and (max-width: 640px) {
  .p-contact__content-ttl {
    font-size: 2.8rem;
    padding: 2rem;
  }
}
.p-contact__content-ttl:first-child {
  margin-top: 2.9em;
}
.p-contact__content-ttl.required::after {
  content: "必須";
  font-size: 1.2rem;
  color: #fff;
  background-color: #c1272d;
  line-height: 1;
  padding: 0.15em 0.3em 0.2em;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: calc(50% + 12.8rem);
}
@media screen and (max-width: 640px) {
  .p-contact__content-ttl.required::after {
    font-size: 1.6rem !important;
    padding: 0.3em 0.3em 0.45em;
    left: calc(50% + 16rem);
  }
}
.p-contact__content-form {
  margin: 1.4rem 2rem 0;
}
@media screen and (max-width: 640px) {
  .p-contact__content-form {
    margin: 2rem 0 0;
  }
}
.p-contact__content-form .input {
  border-bottom: 1px solid #666;
  border-left: 1px solid #666;
  border-right: 1px solid #666;
  display: grid;
  grid-template-columns: 26rem 1fr;
}
.p-contact__content-form .input.no-border {
  border: none;
}
@media screen and (max-width: 640px) {
  .p-contact__content-form .input {
    display: block;
  }
}
.p-contact__content-form .input:first-of-type {
  border-top: 1px solid #666;
}
.p-contact__content-form .input .my_column {
  padding: 1.6rem 3.9rem;
  position: relative;
}
@media screen and (max-width: 640px) {
  .p-contact__content-form .input .my_column {
    padding: 2rem 2rem 3rem;
  }
}
.p-contact__content-form .input .my_left {
  border-right: 1px solid #666;
  display: flex;
  align-items: center;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .p-contact__content-form .input .my_left {
    border-right: 0;
    padding-bottom: 0;
  }
}
.p-contact__content-form .input label.required::after {
  content: "必須" !important;
  font-size: 1.2rem !important;
  color: #fff !important;
  background-color: #c1272d !important;
  line-height: 1 !important;
  padding: 0.15em 0.3em 0.2em !important;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2.9rem;
  width: initial !important;
  height: initial !important;
}
@media screen and (max-width: 640px) {
  .p-contact__content-form .input label.required::after {
    position: relative;
    right: initial;
    margin-left: 0.5em !important;
    font-size: 1.6rem !important;
  }
}
.p-contact__content-form .input .select_frame {
  display: inline-block;
  position: relative;
}
.p-contact__content-form .input .select_frame::before {
  content: "▼";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1.2rem;
  color: #bdbbbf;
  font-size: 0.8em;
  pointer-events: none;
}
.p-contact__content-form .input input,
.p-contact__content-form .input select,
.p-contact__content-form .input textarea {
  border: 1px solid #3f406b !important;
  padding: 0.8rem !important;
  width: 100% !important;
  border-radius: 0 !important;
}
.p-contact__content-form .input input.--s,
.p-contact__content-form .input select.--s,
.p-contact__content-form .input textarea.--s {
  width: 45.5% !important;
}
@media screen and (max-width: 640px) {
  .p-contact__content-form .input input.--s,
  .p-contact__content-form .input select.--s,
  .p-contact__content-form .input textarea.--s {
    width: 100% !important;
  }
}
.p-contact__content-form .input input.--m,
.p-contact__content-form .input select.--m,
.p-contact__content-form .input textarea.--m {
  width: 68% !important;
}
@media screen and (max-width: 640px) {
  .p-contact__content-form .input input.--m,
  .p-contact__content-form .input select.--m,
  .p-contact__content-form .input textarea.--m {
    width: 100% !important;
  }
}
.p-contact__content-form .input input.--l,
.p-contact__content-form .input select.--l,
.p-contact__content-form .input textarea.--l {
  width: 83.5% !important;
}
@media screen and (max-width: 640px) {
  .p-contact__content-form .input input.--l,
  .p-contact__content-form .input select.--l,
  .p-contact__content-form .input textarea.--l {
    width: 100% !important;
  }
}
.p-contact__content-form .input input::placeholder,
.p-contact__content-form .input select::placeholder,
.p-contact__content-form .input textarea::placeholder {
  color: #808080;
}
.p-contact__content-form .input input[type=checkbox] {
  position: relative;
  width: 2.6rem !important;
  height: 2.6rem;
  margin: 0.8rem 1.4rem 0 0;
}
@media screen and (max-width: 640px) {
  .p-contact__content-form .input input[type=checkbox] {
    width: 3.5rem !important;
    height: 3.5rem;
    margin: 1.4rem 1.5rem 0 0;
  }
}
.p-contact__content-form .input input[type=checkbox]:checked {
  background-color: #2196f3;
}
.p-contact__content-form .input input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 0.6rem;
  left: 0.45rem;
  width: 1em;
  height: 0.5em;
  border-bottom: 0.3rem solid #ffffff;
  border-left: 0.3rem solid #ffffff;
  transform: rotate(-45deg);
}
@media screen and (max-width: 640px) {
  .p-contact__content-form .input input[type=checkbox]:checked::after {
    border-width: 0.4rem;
    top: 0.7rem;
    left: 0.6rem;
    width: 0.8em;
    height: 0.45em;
  }
}
.p-contact__content-form .input .checkbox_label,
.p-contact__content-form .input .checkbox_input {
  padding-bottom: 0;
}
.p-contact__content-form .input .checkbox_label label {
  cursor: pointer;
}
.p-contact__content-form .input .textarea_frame.single {
  grid-column: 1/3;
}
.p-contact__content-form .input textarea {
  height: 100%;
  min-height: 24.2rem;
  padding: 3.2rem !important;
}
.p-contact__content-form .input select {
  width: auto;
  max-width: initial;
  padding: 0.8rem 4.2rem 0.8rem 0.8rem !important;
}
.p-contact__content-form .submit {
  margin-top: 8.5rem !important;
  text-align: center;
}
.p-contact__content-form .submit input {
  background-color: #006837;
  color: #fff;
  font-size: 1.8rem;
  width: 30rem;
  height: 6rem;
  border-radius: 0.5rem;
  cursor: pointer;
}
@media screen and (max-width: 640px) {
  .p-contact__content-form .submit input {
    height: 9rem;
    font-size: 2.8rem;
    width: 57.6rem;
  }
}
.p-contact__content-btns {
  margin: 13rem 7rem 0;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 640px) {
  .p-contact__content-btns {
    flex-direction: column;
    gap: 4rem;
  }
}

.p-page {
  --wp--preset--font-size--small: 1.3rem;
  --wp--preset--font-size--normal: 1.6rem;
  --wp--preset--font-size--medium: 2rem;
  --wp--preset--font-size--large: 3.6rem;
  --wp--preset--font-size--x-large: 4.2rem;
  --wp--preset--font-size--huge: 4.8rem;
}
@media screen and (max-width: 640px) {
  .p-page {
    --wp--preset--font-size--small: 2.2rem;
    --wp--preset--font-size--normal: 2.6rem;
    --wp--preset--font-size--medium: 3rem;
    --wp--preset--font-size--large: 3.4rem;
    --wp--preset--font-size--x-large: 3.8rem;
    --wp--preset--font-size--huge: 4.2rem;
  }
}

.p-page__content {
  padding: 6rem 0 16rem;
}
.p-page__content-wrap {
  margin-top: 6.1rem;
}
.p-page__content-wrap img {
  max-width: 100%;
  height: auto;
}
.p-page__content-wrap .aligncenter {
  margin: 0 auto;
  text-align: center !important;
}
.p-page__content-wrap .aligncenter:not(figure) {
  display: block;
}
.p-page__content-wrap .alignright {
  float: right !important;
  text-align: right !important;
}
@media screen and (max-width: 640px) {
  .p-page__content-wrap .alignright {
    float: initial !important;
    text-align: center !important;
    margin: 0 auto !important;
  }
}
@media screen and (max-width: 640px) {
  .p-page__content-wrap .alignright:not(figure) {
    display: block !important;
  }
}
.p-page__content-wrap .alignleft {
  float: left !important;
  text-align: left !important;
}
@media screen and (max-width: 640px) {
  .p-page__content-wrap .alignleft {
    float: initial !important;
    text-align: center !important;
    margin: 0 auto !important;
  }
}
@media screen and (max-width: 640px) {
  .p-page__content-wrap .alignleft:not(figure) {
    display: block !important;
  }
}
.p-page__content-wrap::after {
  content: "";
  display: block;
  block-size: 0;
  font-size: 0;
  clear: both;
  visibility: hidden;
}
@media screen and (max-width: 640px) {
  .p-page__content-wrap {
    margin-top: 5.6rem;
    padding: 0 2rem;
  }
}
.p-page__content-wrap p {
  line-height: 2.0625;
}
@media screen and (max-width: 640px) {
  .p-page__content-wrap p {
    line-height: 1.9230769231;
  }
}
.p-page__content-wrap * {
  word-break: normal;
}
.p-page__content-wrap * + p,
.p-page__content-wrap * + ul,
.p-page__content-wrap * + ol {
  margin-top: 1.2em;
}
.p-page__content-wrap * + blockquote,
.p-page__content-wrap * + .wp-block-group,
.p-page__content-wrap * + .wp-block-image,
.p-page__content-wrap * + .wp-block-columns,
.p-page__content-wrap * + .custom-responsiveImage-block {
  margin-top: 4em;
}
.p-page__content-wrap * + .custom-ttlContent-block {
  margin-top: 5em;
}
.p-page__content-wrap * + .wp-block-video {
  margin: 6em 0 8em;
}
.p-page__content-wrap * + .wp-block-video video {
  width: auto;
  max-width: 100%;
}
.p-page__content-wrap * + h1,
.p-page__content-wrap * + h2,
.p-page__content-wrap * + h3,
.p-page__content-wrap * + h4,
.p-page__content-wrap * + h5,
.p-page__content-wrap * + h6 {
  margin-top: 2em;
}
.p-page__content-wrap h1,
.p-page__content-wrap h2,
.p-page__content-wrap h3,
.p-page__content-wrap h4,
.p-page__content-wrap h5,
.p-page__content-wrap h6 {
  line-height: 1.46;
  margin-bottom: 1em;
  padding-bottom: 0.5em;
}
.p-page__content-wrap h1.only-bottom-border,
.p-page__content-wrap h2.only-bottom-border,
.p-page__content-wrap h3.only-bottom-border,
.p-page__content-wrap h4.only-bottom-border,
.p-page__content-wrap h5.only-bottom-border,
.p-page__content-wrap h6.only-bottom-border {
  padding-top: 0;
}
.p-page__content-wrap h1.only-bottom-border::before,
.p-page__content-wrap h2.only-bottom-border::before,
.p-page__content-wrap h3.only-bottom-border::before,
.p-page__content-wrap h4.only-bottom-border::before,
.p-page__content-wrap h5.only-bottom-border::before,
.p-page__content-wrap h6.only-bottom-border::before {
  display: none;
}
.p-page__content-wrap h1 {
  font-size: 2.8rem;
  font-weight: 700;
}
.p-page__content-wrap h2 {
  font-size: 2.6rem;
}
.p-page__content-wrap h3 {
  font-size: 2.4rem;
}
.p-page__content-wrap h4 {
  font-size: 2.2rem;
  font-weight: 700;
}
.p-page__content-wrap h5 {
  font-size: 2rem;
  font-weight: 700;
}
.p-page__content-wrap h6 {
  font-size: 1.8rem;
  font-weight: 700;
}
.p-page__content-wrap h2,
.p-page__content-wrap h3 {
  position: relative;
  font-weight: 500;
  border-bottom: 1px solid #1a1a1a;
  padding: 1em 0 0.9em;
}
@media screen and (max-width: 640px) {
  .p-page__content-wrap h2,
  .p-page__content-wrap h3 {
    padding: 0.55em 3rem 0.6em;
    width: calc(100% + (var(--gutter) + 2rem) * 2);
    margin-left: calc((var(--gutter) + 2rem) * -1);
  }
}
.p-page__content-wrap h2::before,
.p-page__content-wrap h3::before {
  content: "";
  width: 7rem;
  height: 0.5rem;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #da3915;
}
@media screen and (max-width: 640px) {
  .p-page__content-wrap h2::before,
  .p-page__content-wrap h3::before {
    left: 3rem;
    width: 10rem;
  }
}
.p-page__content-wrap ul,
.p-page__content-wrap ol {
  padding-left: 2rem;
}
@media screen and (max-width: 640px) {
  .p-page__content-wrap ul,
  .p-page__content-wrap ol {
    padding-left: 4rem;
  }
}
.p-page__content-wrap ul.is-style-sme-list-arrow li::before,
.p-page__content-wrap ol.is-style-sme-list-arrow li::before {
  top: calc(var(--_half-leading) * 1.3em + 4px);
}
.p-page__content-wrap ul.is-style-sme-list-arrow li::after,
.p-page__content-wrap ol.is-style-sme-list-arrow li::after {
  top: calc(var(--_half-leading) * 1.3em + 6px);
}
.p-page__content-wrap ul.is-style-sme-list-check li::before,
.p-page__content-wrap ol.is-style-sme-list-check li::before {
  top: calc(var(--_half-leading) * 1.3em + 3px);
}
.p-page__content-wrap ul.is-style-sme-list-times li::before,
.p-page__content-wrap ol.is-style-sme-list-times li::before {
  top: calc(var(--_half-leading) * 1.3em + 6px);
}
.p-page__content-wrap ul.is-style-sme-list-times li::after,
.p-page__content-wrap ol.is-style-sme-list-times li::after {
  top: calc(var(--_half-leading) * 1.3em + 6px);
}
.p-page__content-wrap ul.is-style-sme-ordered-list-circle li::before, .p-page__content-wrap ul.is-style-sme-ordered-list-square li::before,
.p-page__content-wrap ol.is-style-sme-ordered-list-circle li::before,
.p-page__content-wrap ol.is-style-sme-ordered-list-square li::before {
  font-size: 0.8em;
  height: 1.6em;
  top: calc(var(--_half-leading) * 2.5em / 2);
  width: 1.6em;
}
.p-page__content-wrap ul[style*=border-width], .p-page__content-wrap ul[style*=border-width].is-style-list-check,
.p-page__content-wrap ol[style*=border-width],
.p-page__content-wrap ol[style*=border-width].is-style-list-check {
  padding-left: 3em;
}
@media screen and (max-width: 640px) {
  .p-page__content-wrap ul[style*=border-width], .p-page__content-wrap ul[style*=border-width].is-style-list-check,
  .p-page__content-wrap ol[style*=border-width],
  .p-page__content-wrap ol[style*=border-width].is-style-list-check {
    padding-left: 7rem;
  }
}
.p-page__content-wrap ul li + li,
.p-page__content-wrap ol li + li {
  margin-top: 0.3em;
}
.p-page__content-wrap ul:not(.is-style-sme-list-arrow):not(.is-style-sme-list-check):not(.is-style-sme-list-remark):not(.is-style-sme-list-times):not(.is-style-list-check):not(.is-style-list-square) {
  list-style: initial;
}
.p-page__content-wrap ol:not(.is-style-sme-list-arrow):not(.is-style-sme-list-check):not(.is-style-sme-list-remark):not(.is-style-sme-list-times):not(.is-style-list-check):not(.is-style-list-square) {
  list-style: decimal;
}
.p-page__content-wrap ul ul,
.p-page__content-wrap ol ul {
  padding: 0.4rem 0 0 2rem;
  margin-top: 0;
}
@media screen and (max-width: 640px) {
  .p-page__content-wrap ul ul,
  .p-page__content-wrap ol ul {
    padding-left: 4rem;
  }
}
.p-page__content-wrap ul ul {
  list-style: circle;
}
.p-page__content-wrap ul ul ul {
  list-style: square;
}
.p-page__content-wrap ol {
  list-style: decimal;
}
.p-page__content-wrap ul.is-style-list-check {
  list-style: none;
  padding-left: 3.3rem;
}
.p-page__content-wrap ul.is-style-list-check li {
  position: relative;
}
.p-page__content-wrap ul.is-style-list-check li::before {
  content: "✓";
  color: #40a471;
  font-weight: 700;
  position: absolute;
  top: 0;
  left: -1.8em;
}
@media screen and (max-width: 640px) {
  .p-page__content-wrap ul.is-style-list-check li::before {
    left: -1.2em;
  }
}
.p-page__content-wrap ul.is-style-list-square {
  list-style: square;
}
.p-page__content-wrap .wp-block-column ul {
  margin-top: 0;
}
.p-page__content-wrap a:not(.wp-block-button__link) {
  text-decoration: underline;
  color: #004898;
  opacity: 1;
}
.p-page__content-wrap a.wp-block-button__link {
  font-size: 1.6rem;
  line-height: 1.5;
}
@media screen and (max-width: 640px) {
  .p-page__content-wrap a.wp-block-button__link {
    font-size: 2.6rem;
  }
}
.p-page__content-wrap .wp-block-image.alignleft,
.p-page__content-wrap .wp-block-embed.alignleft {
  margin: 1em 3.5rem 1em 0;
}
.p-page__content-wrap .wp-block-image.alignright {
  margin: 1em 0 1em 3.5rem;
}
.p-page__content-wrap .wp-block-embed {
  margin: 4em 0;
}
.p-page__content-wrap .wp-block-embed.alignright {
  margin: 1em 0 1em 3.5rem;
}
.p-page__content-wrap .wp-block-embed iframe {
  width: 100%;
  height: auto;
  max-width: 64rem;
  aspect-ratio: 640/360;
}
.p-page__content-wrap .is-layout-flex .wp-block-image {
  margin-top: 0;
}
.p-page__content-wrap .wp-block-table {
  margin: 6em 0;
}
.p-page__content-wrap .wp-block-table thead {
  border-bottom-width: 1px;
}
.p-page__content-wrap .wp-block-table th {
  background-color: #40a471;
  color: #fff;
  border: 1px solid #1a1a1a;
  font-weight: 500;
  text-align: center;
}
.p-page__content-wrap .wp-block-table td,
.p-page__content-wrap .wp-block-table th {
  padding: 0.5em 2.4em;
}
@media screen and (max-width: 640px) {
  .p-page__content-wrap .wp-block-table td,
  .p-page__content-wrap .wp-block-table th {
    padding: 0.5em 0.6em;
  }
}
.p-page__content-wrap .wp-block-table.aligncenter {
  margin-left: auto;
  margin-right: auto;
  float: none;
}
@media screen and (max-width: 640px) {
  .p-page__content-wrap .wp-block-table.aligncenter {
    display: block;
  }
}
.p-page__content-wrap .wp-block-table.alignleft {
  margin-right: auto;
  margin-left: 0;
  float: none;
}
@media screen and (max-width: 640px) {
  .p-page__content-wrap .wp-block-table.alignleft {
    display: block;
  }
}
.p-page__content-wrap .wp-block-table.alignright {
  margin-right: 0;
  margin-left: auto;
  float: none;
}
@media screen and (max-width: 640px) {
  .p-page__content-wrap .wp-block-table.alignright {
    display: block;
  }
}
.p-page__content-wrap :where(.is-layout-flex) {
  gap: 2rem 4rem;
}
.p-page__content-wrap figcaption {
  font-size: 1.4rem;
  line-height: 1.4285714286;
  justify-content: center !important;
  margin: 0.2em 0 0;
  text-align: left;
}
@media screen and (max-width: 640px) {
  .p-page__content-wrap figcaption {
    font-size: 2.4rem;
  }
}
@media print and (any-hover: hover), screen and (any-hover: hover) and (min-width: 641px) {
  .p-page__content-wrap a {
    cursor: pointer;
  }
  .p-page__content-wrap a:hover {
    text-decoration: none;
  }
}
@media screen and (max-width: 640px) {
  .p-page__content-wrap h1 {
    font-size: 3.8rem;
  }
  .p-page__content-wrap h2 {
    font-size: 3.6rem;
  }
  .p-page__content-wrap h3 {
    font-size: 3.4rem;
  }
  .p-page__content-wrap h4 {
    font-size: 3.2rem;
  }
  .p-page__content-wrap h5 {
    font-size: 3rem;
  }
  .p-page__content-wrap h6 {
    font-size: 2.8rem;
  }
  .p-page__content-wrap .wp-block-embed iframe {
    max-width: inherit !important;
  }
  .p-page__content-wrap .wp-block-image,
  .p-page__content-wrap .wp-block-embed {
    text-align: center;
  }
  .p-page__content-wrap .wp-block-image.alignleft, .p-page__content-wrap .wp-block-image.alignright, .p-page__content-wrap .wp-block-image.aligncenter {
    float: none;
    margin: 1em auto !important;
    width: 100%;
    max-width: 100%;
  }
  .p-page__content-wrap .wp-block-embed.alignleft, .p-page__content-wrap .wp-block-embed.alignright, .p-page__content-wrap .wp-block-embed.aligncenter {
    float: none;
    margin: 1em auto !important;
    width: 100%;
    max-width: 100%;
  }
  .p-page__content-wrap .wp-block-image.alignleft img, .p-page__content-wrap .wp-block-image.alignright img, .p-page__content-wrap .wp-block-image.aligncenter img {
    width: 100%;
  }
  .p-page__content-wrap .wp-block-embed.alignleft img, .p-page__content-wrap .wp-block-embed.alignright img, .p-page__content-wrap .wp-block-embed.aligncenter img {
    width: 100%;
  }
}
.p-page__content-wrap > .l-inner > *:first-child {
  margin-top: 0;
}
.p-page__content-wrap #ez-toc-container {
  border: 1px solid #ccc;
  width: 100%;
  margin: 9rem 0;
  padding: 4rem 6rem 2rem;
  border-radius: 0;
  background-color: initial;
}
@media screen and (max-width: 640px) {
  .p-page__content-wrap #ez-toc-container {
    padding: 4rem 3rem 3rem;
  }
}
.p-page__content-wrap #ez-toc-container .ez-toc-title-container {
  position: absolute;
  top: -2rem;
  left: 5rem;
  width: 13rem;
  height: 3.8rem;
  background-color: #999;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 640px) {
  .p-page__content-wrap #ez-toc-container .ez-toc-title-container {
    width: 16rem;
    height: 4.8rem;
    top: -2.5rem;
  }
}
.p-page__content-wrap #ez-toc-container .ez-toc-title-container * {
  color: #fff;
  font-size: 2rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 640px) {
  .p-page__content-wrap #ez-toc-container .ez-toc-title-container * {
    font-size: 3rem;
  }
}
.p-page__content-wrap #ez-toc-container li + li {
  margin-top: 2em;
}
.p-page__content-wrap #ez-toc-container .ez-toc-list-level-3 li {
  margin-top: 0.5em;
}
.p-page__content-wrap #ez-toc-container a {
  font-size: 1.6rem;
  font-weight: 500;
  opacity: 1 !important;
}
@media screen and (max-width: 640px) {
  .p-page__content-wrap #ez-toc-container a {
    font-size: 2.6rem;
  }
}
.p-page__content-wrap #ez-toc-container a:visited {
  color: #4d4d4d;
}
.p-page__content-wrap .wp-block-flexible-table-block-table {
  margin: 4em 0;
}
.p-page__content-wrap .border_green {
  border: 1px solid #006837;
  padding: 1.5em 3em;
  margin-top: 1em;
}
.p-page__content-wrap .border_black {
  border: 1px solid #1a1a1a;
  padding: 1.5em 3em;
  margin-top: 1em;
}
@media (hover: hover) {
  .p-page__content-wrap .wp-block-image a:hover {
    opacity: 0.7;
  }
}
.p-page__content-wrap :where([style*=border-width]) {
  border-style: solid;
  padding: 1.5em 3em;
}
@media screen and (max-width: 640px) {
  .p-page__content-wrap :where([style*=border-width]) {
    padding: 1em 1.5em;
  }
}
.p-page__content-wrap .custom-ttlContent-block .ttl {
  font-size: 1.8rem;
  display: inline-block;
  color: #fff;
  background-color: #006837;
  padding: 0.2em 1.6em;
}
@media screen and (max-width: 640px) {
  .p-page__content-wrap .custom-ttlContent-block .ttl {
    font-size: 2.8rem;
  }
}
.p-page__content-wrap .custom-ttlContent-block .content {
  border: 1px solid #006837;
  margin-top: -1.9em;
  padding: 3.7em 1.4em 1.5em;
}
.p-page__content-wrap .custom-responsiveImage-block {
  display: block;
}
.p-page__content-wrap .custom-responsiveImage-block img {
  width: 100%;
}
.p-page__content-wrap .only-bottom-border {
  border-bottom-width: 1px;
  border-bottom-color: inherit;
  border-bottom-style: solid;
}

.u-sp {
  display: none !important;
}

@media screen and (max-width: 640px) {
  .u-pc {
    display: none !important;
  }
  .u-sp {
    display: block !important;
  }
}
.u-clearfix::after {
  content: "";
  display: block;
  block-size: 0;
  font-size: 0;
  clear: both;
  visibility: hidden;
}

.u-heading-type01 {
  position: relative;
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  margin-top: 3.2em;
  padding: 0.9em 0;
  line-height: 1.5;
  border-bottom: 1px solid #1a1a1a;
}
@media screen and (max-width: 640px) {
  .u-heading-type01 {
    font-size: 3.4rem;
    letter-spacing: 0;
    padding: 0.6em 3rem;
    margin-left: calc(var(--gutter) * -1);
    width: calc(100% + var(--gutter) * 2);
    margin-top: 3.4em;
  }
}
.u-heading-type01::before {
  content: "";
  width: 2.9em;
  height: 0.2em;
  background-color: #1a1a1a;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 640px) {
  .u-heading-type01::before {
    width: 3em;
    left: 3rem;
  }
}
.u-heading-type01.--green::before {
  background-color: #006837;
}

.u-heading-type02 {
  position: relative;
  font-size: 2rem;
  line-height: 1.5;
  margin-top: 2em;
  padding: 0 1.75em 0.3em;
  border-bottom: 1px solid #1a1a1a;
}
@media screen and (max-width: 640px) {
  .u-heading-type02 {
    font-size: 3rem;
    padding: 0 0 0.9em 1.3em;
    border-width: 0.2rem;
  }
}
.u-heading-type02::before {
  content: "";
  position: absolute;
  width: 0.8em;
  height: auto;
  aspect-ratio: 1;
  background-color: #1a1a1a;
  left: 0;
  top: 0.35em;
}
@media screen and (max-width: 640px) {
  .u-heading-type02::before {
    left: 0.2em;
    top: 0.4em;
  }
}
.u-heading-type02::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  background-color: #1a1a1a;
  width: 7.5em;
  height: 1px;
}
@media screen and (max-width: 640px) {
  .u-heading-type02::after {
    bottom: -0.2rem;
    height: 0.2rem;
  }
}
.u-heading-type02.--red::before, .u-heading-type02.--red::after {
  background-color: #da3915;
}

.u-medium {
  font-weight: 500;
}

.u-bold {
  font-weight: 700;
}

.u-ul {
  text-decoration: underline;
}
@media (hover: hover) {
  .u-ul:hover {
    text-decoration: none;
  }
}

.u-nowrap {
  display: inline-block;
}

.u-ta-c {
  text-align: center;
}

.u-ta-l {
  text-align: left;
}

.u-ta-r {
  text-align: right;
}

.u-separator {
  border-width: 0.15rem;
  border-color: #1a1a1a;
  width: 30rem;
  margin: 10.8rem auto 7.8rem;
  border-style: solid;
}

.u-icn-q {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  background: #006837 url(../img/qa/icn_q_white.svg) no-repeat center/52%;
}

.u-icn-a {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  background: #fff url(../img/qa/icn_a_green.svg) no-repeat center/52%;
}

.u-icn-plus::before {
  content: "＋";
  color: #006837;
  font-weight: 700;
  font-size: 1.4em;
}
.is-open .u-icn-plus::before {
  content: "－";
}