@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  line-height: 1.5;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

table {
  border-collapse: collapse;
}

html {
  font-size: 16px;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #2c2c2c;
  line-height: 1.8;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
}

img {
  height: auto;
}

.l-container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 40px;
}
@media (max-width: 767px) {
  .l-container {
    padding-inline: 20px;
  }
}

.l-section {
  padding-block: 80px;
}
@media (max-width: 767px) {
  .l-section {
    padding-block: 50px;
  }
}

.c-section-title {
  text-align: center;
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 48px;
  position: relative;
}
.c-section-title::after {
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  background-color: #00894e;
  margin: 14px auto 0;
  border-radius: 1px;
}

.l-header {
  width: 100%;
  background-color: #ffffff;
  border-bottom: 1px solid #ddd8ce;
  position: sticky;
  top: 0;
  z-index: 100;
}
.l-header__inner {
  width: 100%;
  padding-left: 20px;
  padding-right: 0;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (min-width: 768px) {
  .l-header__inner {
    padding-left: 40px;
    padding-right: 0;
    height: 90px;
  }
}
.l-header__logo {
  margin: 0;
  line-height: 1;
  z-index: 110;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.l-header__logo a {
  display: block;
  text-decoration: none;
}
.l-header__logo img {
  height: 50px;
  width: auto;
}
@media (min-width: 768px) {
  .l-header__logo img {
    width: 260px;
    height: auto;
  }
}
.l-header {
  /* -----------------------------------
     メニューエリア（レスポンシブ切り替え）
  ----------------------------------- */
}
.l-header__menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.98);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 50px 20px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.25s ease, visibility 0.25s ease;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.l-header__menu.is-active {
  opacity: 1;
  visibility: visible;
}
@media (min-width: 768px) {
  .l-header__menu {
    position: static;
    height: 100%;
    background-color: transparent;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0;
    opacity: 1;
    visibility: visible;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}
.l-header__nav {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .l-header__nav {
    margin-bottom: 0;
    margin-left: auto;
    margin-right: 40px;
  }
}
.l-header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) {
  .l-header__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 30px;
  }
}
.l-header__item a {
  text-decoration: none;
  color: #2c2c2c;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  -webkit-transition: color 0.25s ease;
  transition: color 0.25s ease;
}
@media (min-width: 768px) {
  .l-header__item a {
    font-size: 15px;
  }
}
.l-header__item a:hover {
  color: #00894e;
}
.l-header__item--has-sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) {
  .l-header__item--has-sub {
    position: relative;
    -ms-flex-item-align: stretch;
        align-self: stretch;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .l-header__item--has-sub:hover .l-header__arrow {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .l-header__item--has-sub:hover .l-header__sub {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-transform: translateX(-50%) translateY(0);
            transform: translateX(-50%) translateY(0);
  }
}
.l-header__parent-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
.l-header__arrow {
  font-size: 0.6rem;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.l-header__sub {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.l-header__sub li a {
  font-size: 13px;
  color: #666666;
  text-decoration: none;
  -webkit-transition: color 0.25s ease;
  transition: color 0.25s ease;
}
.l-header__sub li a:hover {
  color: #00894e;
}
@media (min-width: 768px) {
  .l-header__sub {
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-4px);
            transform: translateX(-50%) translateY(-4px);
    min-width: 200px;
    background: #ffffff;
    border: 1px solid #ddd8ce;
    border-radius: 8px;
    -webkit-box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 10px 5px 10px;
    gap: 0;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: opacity 0.25s ease, visibility 0.25s ease, -webkit-transform 0.25s ease;
    transition: opacity 0.25s ease, visibility 0.25s ease, -webkit-transform 0.25s ease;
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, -webkit-transform 0.25s ease;
    z-index: 200;
  }
  .l-header__sub li:not(:last-child) {
    border-bottom: 1px solid rgba(221, 216, 206, 0.5);
  }
  .l-header__sub li a {
    display: block;
    padding: 12px 14px;
    font-size: 13px;
    white-space: nowrap;
  }
}
.l-header__cta {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (min-width: 768px) {
  .l-header__cta {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.l-footer {
  background-color: #ffffff;
  border-top: 1px solid #ddd8ce;
  padding: 50px 20px;
  font-family: "Noto Sans JP", sans-serif;
}
@media (min-width: 768px) {
  .l-footer {
    padding: 80px 40px;
  }
}
.l-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
}
.l-footer {
  /* 左側：会社情報 */
}
.l-footer__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 550px;
}
.l-footer__image {
  width: 160px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.l-footer__image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.l-footer__details {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 250px;
}
.l-footer__logo {
  margin-bottom: 15px;
}
.l-footer__address {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 10px;
  color: #2c2c2c;
}
@media (min-width: 768px) {
  .l-footer__address {
    white-space: nowrap;
  }
}
.l-footer__map-link {
  display: inline-block;
  color: #5ab4bd;
  text-decoration: none;
  margin-top: 5px;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}
.l-footer__map-link:hover {
  opacity: 0.7;
}
.l-footer__contact {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.05em;
  color: #2c2c2c;
}
.l-footer {
  /* 右側：ナビゲーション */
}
.l-footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.l-footer__nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.l-footer__nav-list > li {
  margin-bottom: 15px;
}
.l-footer__nav-list > li > a {
  text-decoration: none;
  color: #2c2c2c;
  font-size: 15px;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  -webkit-transition: color 0.25s ease;
  transition: color 0.25s ease;
}
.l-footer__nav-list > li > a i {
  color: #00894e;
  font-size: 1.2em;
  margin-top: 2px;
}
.l-footer__nav-list > li > a:hover {
  color: #00894e;
}
.l-footer__sub-nav {
  list-style: none;
  padding: 0 0 0 18px;
  margin: 10px 0 0 0;
}
.l-footer__sub-nav li {
  margin-bottom: 4px;
}
.l-footer__sub-nav li a {
  text-decoration: none;
  color: #2c2c2c;
  font-size: 15px;
  -webkit-transition: color 0.25s ease;
  transition: color 0.25s ease;
}
.l-footer__sub-nav li a:hover {
  color: #00894e;
}

.l-copyright {
  background-color: #00894e;
  padding: 12px 20px;
  text-align: center;
}
.l-copyright__text {
  color: #ffffff;
  font-size: 13px;
  font-family: "Noto Sans JP", sans-serif;
  margin: 0;
}

.c-badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 2px 18px;
  font-size: 13px;
  font-weight: bold;
  white-space: nowrap;
  color: #ffffff;
}
.c-badge--seminar {
  background-color: #29abe2;
}
.c-badge--blog {
  background-color: #00894e;
}
.c-badge--news {
  background-color: #999;
}

.c-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  -webkit-transition: opacity 0.25s ease, -webkit-filter 0.25s ease;
  transition: opacity 0.25s ease, -webkit-filter 0.25s ease;
  transition: opacity 0.25s ease, filter 0.25s ease;
  transition: opacity 0.25s ease, filter 0.25s ease, -webkit-filter 0.25s ease;
  cursor: pointer;
  font-family: "Noto Sans JP", sans-serif;
}
.c-button:hover {
  opacity: 0.9;
  -webkit-filter: brightness(1.1);
          filter: brightness(1.1);
}
.c-button--header-contact {
  background: -webkit-gradient(linear, left top, right top, from(#00894e), to(#008974));
  background: linear-gradient(to right, #00894e, #008974);
  color: #ffffff;
  gap: 12px;
  border-radius: 9999px 0 0 9999px;
  padding: 0 25px 0 35px;
  height: 60px;
  font-size: 15px;
  font-weight: bold;
  gap: 12px;
  margin-right: 0;
}
@media (max-width: 767px) {
  .c-button--header-contact {
    border-radius: 9999px;
    margin-right: 0;
    padding: 0 30px;
    height: 50px;
  }
}
.c-button--header-contact i {
  font-size: 1.3em;
  line-height: 1;
  display: inline-block;
  margin-top: 3px;
}
.c-button--outline {
  background-color: #ffffff;
  color: #00894e;
  border: 1px solid #00894e;
  border-radius: 9999px;
  padding: 12px 40px;
  font-size: 15px;
  font-weight: bold;
  gap: 15px;
}
.c-button--outline:hover {
  opacity: 1;
  background-color: #00894e;
  color: #ffffff;
}
.c-button--outline .c-button__arrow {
  font-family: sans-serif;
}
@media (max-width: 767px) {
  .c-button--outline {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    padding: 10px 24px;
  }
}
.c-button--primary {
  background: -webkit-gradient(linear, left top, right top, from(#00894e), to(#008974));
  background: linear-gradient(to right, #00894e, #008974);
  color: #ffffff;
  padding: 14px 60px;
  border-radius: 9999px;
  font-size: 15px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  display: block;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transition: opacity 0.25s ease, -webkit-filter 0.25s ease;
  transition: opacity 0.25s ease, -webkit-filter 0.25s ease;
  transition: opacity 0.25s ease, filter 0.25s ease;
  transition: opacity 0.25s ease, filter 0.25s ease, -webkit-filter 0.25s ease;
}
.c-button--primary:hover {
  opacity: 0.9;
  -webkit-filter: brightness(1.1);
          filter: brightness(1.1);
}
@media (max-width: 767px) {
  .c-button--primary {
    width: 100%;
    padding: 12px 24px;
  }
}

.c-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #ffffff;
  border: 1px solid #008974;
  border-radius: 8px;
  padding: 50px 30px;
  text-decoration: none;
  color: #2c2c2c;
  -webkit-transition: -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  transition: transform 0.25s ease, box-shadow 0.25s ease, -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
  height: 100%;
}
@media (max-width: 767px) {
  .c-card {
    padding: 40px 20px;
  }
}
.c-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.c-card__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 120px;
  height: 120px;
  padding: 20px;
  background-color: #00894e;
  border-radius: 50%;
  margin-bottom: 30px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.c-card__icon img {
  width: 64px;
  height: auto;
}
.c-card__title {
  color: #00894e;
  font-size: clamp(20px, 2vw, 24px);
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 25px;
}
.c-card__title small {
  display: block;
  font-size: 15px;
  margin-top: 5px;
}
.c-card__desc {
  font-size: 15px;
  line-height: 1.8;
  text-align: left;
  margin: 0;
  width: 100%;
}

.c-hamburger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50px;
  height: 50px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  gap: 4px;
  z-index: 110;
  margin-top: 5px;
}
@media (min-width: 768px) {
  .c-hamburger {
    display: none;
  }
}
.c-hamburger__line {
  width: 32px;
  height: 3px;
  background-color: #00894e;
  border-radius: 4px;
  -webkit-transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transition: transform 0.25s ease, opacity 0.25s ease, -webkit-transform 0.25s ease;
}
.c-hamburger__text {
  font-size: 13px;
  color: #00894e;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1;
  margin-top: 2px;
}
.c-hamburger.is-active .c-hamburger__line:nth-child(1) {
  -webkit-transform: translateY(7px) rotate(45deg);
          transform: translateY(7px) rotate(45deg);
}
.c-hamburger.is-active .c-hamburger__line:nth-child(2) {
  opacity: 0;
}
.c-hamburger.is-active .c-hamburger__line:nth-child(3) {
  -webkit-transform: translateY(-7px) rotate(-45deg);
          transform: translateY(-7px) rotate(-45deg);
}

.p-mv {
  position: relative;
  width: 100%;
  height: calc(100vh - 80px);
  overflow: hidden;
  background-color: #f5f5f5;
}
@media (max-width: 767px) {
  .p-mv {
    height: calc(100vh - 70px);
  }
}
.p-mv {
  /* -----------------------------------
     背景画像スライダー
  ----------------------------------- */
}
.p-mv__bg-list {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  z-index: 1;
}
.p-mv__bg-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: opacity 2s ease;
  transition: opacity 2s ease;
}
.p-mv__bg-item.is-active {
  opacity: 1;
  z-index: 2;
}
.p-mv__bg-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-mv {
  /* -----------------------------------
        テキストスライダー
     ----------------------------------- */
}
.p-mv__text-list {
  position: absolute;
  bottom: 15%;
  left: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  z-index: 10;
}
@media (max-width: 767px) {
  .p-mv__text-list {
    bottom: 20%;
  }
}
.p-mv__text-item {
  position: absolute;
  left: 40%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  padding: 0 40px;
  opacity: 0;
  -webkit-transition: opacity 2s ease;
  transition: opacity 2s ease;
}
@media (max-width: 767px) {
  .p-mv__text-item {
    padding: 0 20px;
  }
}
.p-mv__text-item.is-active {
  opacity: 1;
}
.p-mv__lead {
  color: #ffffff;
  font-size: clamp(16px, 1.8vw, 32px);
  font-weight: 500;
  margin-bottom: clamp(7px, 1vw, 10px);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.p-mv__title {
  color: #ffffff;
  font-size: clamp(24px, 4.5vw, 48px);
  font-weight: bold;
  line-height: 1.4;
  margin: 0;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.p-feature {
  width: 100%;
  padding: 80px 40px;
  position: relative;
  z-index: 0;
}
@media (max-width: 767px) {
  .p-feature {
    padding: 50px 20px;
  }
}
.p-feature {
  /* -----------------------------------
     背景の円形装飾（なだらかな巨大カーブ）
  ----------------------------------- */
}
.p-feature::before {
  content: "";
  position: absolute;
  width: 70vw;
  height: 70vw;
  background-color: #fafaeb;
  border-radius: 50%;
  top: -10vw;
  left: -20vw;
  z-index: -1;
  max-width: 1500px;
  max-height: 1500px;
}
@media (max-width: 767px) {
  .p-feature::before {
    width: 150vw;
    height: 150vw;
    top: -10vw;
    left: -50vw;
  }
}
.p-feature__inner {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.p-feature {
  /* -----------------------------------
     左右2カラムレイアウト
  ----------------------------------- */
}
.p-feature__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
}
@media (max-width: 767px) {
  .p-feature__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 40px;
  }
}
.p-feature__image {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 50vw;
  margin-left: calc(50% - 50vw);
}
.p-feature__image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .p-feature__image {
    width: 100%;
    margin-left: 0;
  }
}
.p-feature__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
}
.p-feature {
  /* -----------------------------------
     テキスト・ボタンエリアのスタイル
  ----------------------------------- */
}
.p-feature__main-title {
  color: #00894e;
  font-size: clamp(17px, 2vw, 24px);
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 40px;
}
.p-feature__item {
  margin-bottom: 30px;
}
.p-feature__item:last-child {
  margin-bottom: 0;
}
.p-feature__sub-title {
  color: #00894e;
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 700;
  padding-bottom: 5px;
  border-top: 1px solid #00894e;
  padding-top: 30px;
}
.p-feature__desc {
  color: #2c2c2c;
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
}
.p-feature__btn-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 15px;
  margin-top: 40px;
}

.p-service {
  width: 100%;
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
  /*
  background-image: url('/assets/img/common/bg-red-curve.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  */
}
@media (max-width: 767px) {
  .p-service {
    padding: 50px 20px;
  }
}
.p-service__inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}
.p-service {
  /* -----------------------------------
     セクションタイトル
  ----------------------------------- */
}
.p-service__title {
  text-align: center;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: bold;
  margin-bottom: 60px;
  position: relative;
  padding-bottom: 20px;
  color: #2c2c2c;
}
.p-service__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 140px;
  height: 1px;
  background-color: #2c2c2c;
}
.p-service {
  /* -----------------------------------
     カードリスト（CSS Grid）
  ----------------------------------- */
}
.p-service__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .p-service__list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.p-service {
  /* -----------------------------------
     ボタンエリア
  ----------------------------------- */
}
.p-service__btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-testimonial {
  width: 100%;
  padding: 80px 40px;
  position: relative;
  z-index: 0;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .p-testimonial {
    padding: 50px 20px;
  }
}
.p-testimonial {
  /* -----------------------------------
     背景の円形装飾（右側）
  ----------------------------------- */
}
.p-testimonial::before {
  content: "";
  position: absolute;
  width: 70vw;
  height: 70vw;
  max-width: 1500px;
  max-height: 1500px;
  background-color: #fafaeb;
  border-radius: 50%;
  top: 50%;
  right: 0;
  -webkit-transform: translate(30%, -50%);
          transform: translate(30%, -50%);
  z-index: -1;
}
.p-testimonial__inner {
  position: relative;
  z-index: 10;
  width: 100%;
}
.p-testimonial {
  /* -----------------------------------
     コンテンツのコンテナ
  ----------------------------------- */
}
.p-testimonial__container {
  max-width: 900px;
  margin: 0 auto;
}
.p-testimonial {
  /* -----------------------------------
     画像エリア
  ----------------------------------- */
}
.p-testimonial__image {
  width: 100%;
  margin-bottom: 40px;
  background-color: #eeeeee;
}
.p-testimonial__image img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 16/9;
}
@media (max-width: 767px) {
  .p-testimonial__image img {
    aspect-ratio: 4/3;
  }
}
.p-testimonial {
  /* -----------------------------------
     テキストエリア
  ----------------------------------- */
}
.p-testimonial__content {
  width: 100%;
}
.p-testimonial__title {
  color: #2c2c2c;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}
.p-testimonial__text {
  color: #2c2c2c;
  font-size: 16px;
  line-height: 2;
  margin-bottom: 40px;
}
.p-testimonial {
  /* -----------------------------------
     ボタンエリア
  ----------------------------------- */
}
.p-testimonial__btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.p-news {
  background-color: #ffffff;
}
.p-news__list {
  max-width: 900px;
  margin-inline: auto;
  margin-bottom: 40px;
  border-top: 1px solid #ddd8ce;
}
.p-news__item {
  display: grid;
  grid-template-columns: 120px 100px 1fr;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #ddd8ce;
  text-decoration: none;
  -webkit-transition: background-color 0.25s ease;
  transition: background-color 0.25s ease;
}
.p-news__item:hover {
  background-color: #f9f6ef;
  padding-inline: 12px;
  margin-inline: -12px;
}
@media (max-width: 767px) {
  .p-news__item {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 6px 12px;
  }
}
.p-news__date {
  font-size: 15px;
  color: #666666;
  white-space: nowrap;
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  .p-news__date {
    grid-column: 1;
    grid-row: 1;
  }
}
@media (max-width: 767px) {
  .p-news__badge {
    grid-column: 2;
    grid-row: 1;
  }
}
.p-news__title {
  font-size: 16px;
  color: #2c2c2c;
  line-height: 1.6;
  -webkit-transition: color 0.25s ease;
  transition: color 0.25s ease;
}
.p-news__item:hover .p-news__title {
  color: #00894e;
}
@media (max-width: 767px) {
  .p-news__title {
    grid-column: 1/-1;
    grid-row: 2;
  }
}
.p-news__action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-cta {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(249, 246, 239, 0.92)), to(rgba(249, 246, 239, 0.92))), url("/assets/img/common/cta-bg.jpg");
  background-image: linear-gradient(rgba(249, 246, 239, 0.92), rgba(249, 246, 239, 0.92)), url("/assets/img/common/cta-bg.jpg");
  background-repeat: no-repeat;
  background-size: 100% calc(100% - 30px), cover;
  background-position: center, center;
  padding: 50px 20px;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
}
@media (min-width: 768px) {
  .p-cta {
    padding: 80px 40px;
  }
}
.p-cta__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.p-cta__title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  color: #2c2c2c;
}
@media (min-width: 768px) {
  .p-cta__title {
    font-size: 28px;
  }
}
.p-cta__desc {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #2c2c2c;
}
.p-cta__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.p-cta__actions .c-button {
  min-width: 240px;
}

.p-page-hero {
  background-color: #00894e;
  padding-block: 48px;
}
.p-page-hero__inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 40px;
}
@media (max-width: 767px) {
  .p-page-hero__inner {
    padding-inline: 20px;
  }
}
.p-page-hero__title {
  font-size: clamp(1.375rem, 3vw, 1.875rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.06em;
}
.p-page-hero__breadcrumb {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
}
.p-page-hero__breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline;
  text-underline-offset: 2px;
  -webkit-transition: color 0.25s ease;
  transition: color 0.25s ease;
}
.p-page-hero__breadcrumb a:hover {
  color: #ffffff;
}

.p-seminar-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  max-width: 880px;
  margin-inline: auto;
}

.p-seminar-card {
  border: 1px solid #ddd8ce;
  border-radius: 10px;
  overflow: hidden;
  -webkit-transition: -webkit-box-shadow 0.25s ease, -webkit-transform 0.25s ease;
  transition: -webkit-box-shadow 0.25s ease, -webkit-transform 0.25s ease;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  transition: box-shadow 0.25s ease, transform 0.25s ease, -webkit-box-shadow 0.25s ease, -webkit-transform 0.25s ease;
}
.p-seminar-card:hover {
  -webkit-box-shadow: 0 6px 20px rgba(0, 0, 0, 0.09);
          box-shadow: 0 6px 20px rgba(0, 0, 0, 0.09);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.p-seminar-card__link {
  display: grid;
  grid-template-columns: 140px 1fr;
}
@media (max-width: 767px) {
  .p-seminar-card__link {
    grid-template-columns: 1fr;
  }
}
.p-seminar-card__date {
  background-color: #00894e;
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px 16px;
  text-align: center;
}
.p-seminar-card__date time {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  .p-seminar-card__date {
    padding: 12px 20px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.p-seminar-card__body {
  padding: 24px 28px;
}
@media (max-width: 767px) {
  .p-seminar-card__body {
    padding: 16px 20px;
  }
}
.p-seminar-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 12px;
  line-height: 1.55;
  -webkit-transition: color 0.25s ease;
  transition: color 0.25s ease;
}
.p-seminar-card:hover .p-seminar-card__title {
  color: #00894e;
}
.p-seminar-card__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 6px 20px;
  font-size: 13px;
  color: #666666;
  margin-bottom: 10px;
}
.p-seminar-card__meta li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}
.p-seminar-card__meta li span {
  background-color: #f9f6ef;
  color: #00894e;
  padding: 1px 8px;
  border-radius: 3px;
  font-weight: 500;
  font-size: 11px;
}
.p-seminar-card__excerpt {
  font-size: 13px;
  color: #666666;
  line-height: 1.7;
}

.p-seminar-empty {
  text-align: center;
  color: #666666;
  padding: 60px 0;
  font-size: 15px;
}

.p-seminar-single {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (max-width: 1024px) {
  .p-seminar-single {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
.p-seminar-single__info {
  position: sticky;
  top: 96px;
}
.p-seminar-single__content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 32px 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid #ddd8ce;
}
.p-seminar-single__content h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin: 24px 0 10px;
}
.p-seminar-single__content p {
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 16px;
}
.p-seminar-single__content ul, .p-seminar-single__content ol {
  font-size: 15px;
  line-height: 1.8;
  padding-left: 1.4em;
  margin-bottom: 16px;
}
.p-seminar-single__back {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid #ddd8ce;
}

.p-seminar-info-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 28px;
  font-size: 15px;
}
.p-seminar-info-table th, .p-seminar-info-table td {
  padding: 12px 14px;
  border-bottom: 1px solid #ddd8ce;
  text-align: left;
  vertical-align: top;
  line-height: 1.6;
}
.p-seminar-info-table th {
  width: 80px;
  color: #666666;
  font-weight: 500;
  white-space: nowrap;
}
.p-seminar-info-table td {
  color: #2c2c2c;
}

.p-subsidy-section-title {
  text-align: center;
  margin-bottom: 48px;
}
.p-subsidy-section-title h2 {
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 14px;
  position: relative;
  padding-bottom: 18px;
}
.p-subsidy-section-title h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 48px;
  height: 3px;
  background: #00894e;
  border-radius: 9999px;
}
.p-subsidy-section-title p {
  font-size: 15px;
  color: #666666;
  margin-top: 4px;
}

.p-subsidy-section--gray {
  background-color: #f9f6ef;
}

.p-subsidy-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media (max-width: 1024px) {
  .p-subsidy-intro {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.p-subsidy-intro__media img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.p-subsidy-intro__title {
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid #00894e;
}
.p-subsidy-intro__lead {
  font-size: 1rem;
  line-height: 2;
  color: #2c2c2c;
  margin-bottom: 28px;
}
.p-subsidy-intro__lead strong {
  color: #00894e;
}
.p-subsidy-intro__features {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
}
.p-subsidy-intro__feature {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: #fafaeb;
  border-radius: 8px;
}
.p-subsidy-intro__feature strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 4px;
}
.p-subsidy-intro__feature p {
  font-size: 15px;
  color: #666666;
  line-height: 1.65;
}
.p-subsidy-intro__feature-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 2px;
}
.p-subsidy-intro__feature-icon i {
  font-size: 1.125rem;
  color: #00894e;
}
.p-subsidy-intro__feature-icon i.fa-triangle-exclamation {
  color: #d97706;
}

.p-subsidy-merit__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 767px) {
  .p-subsidy-merit__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.p-subsidy-merit__item {
  background: #ffffff;
  padding: 32px 28px;
  position: relative;
  border-top: 4px solid #00894e;
}
.p-subsidy-merit__num {
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(0, 137, 78, 0.1);
  line-height: 1;
  margin-bottom: 12px;
  font-family: Georgia, serif;
  letter-spacing: -0.02em;
}
.p-subsidy-merit__icon {
  width: 48px;
  height: 48px;
  background: #00894e;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 18px;
}
.p-subsidy-merit__icon i {
  color: #ffffff;
  font-size: 1.125rem;
}
.p-subsidy-merit__title {
  font-size: 1rem;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 12px;
  line-height: 1.5;
}
.p-subsidy-merit__desc {
  font-size: 15px;
  color: #666666;
  line-height: 1.8;
}

.p-subsidy-worry__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .p-subsidy-worry__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .p-subsidy-worry__grid {
    grid-template-columns: 1fr;
  }
}
.p-subsidy-worry__item {
  background: #ffffff;
  border: 1px solid #ddd8ce;
  border-radius: 8px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-subsidy-worry__thumb {
  aspect-ratio: 5/3;
  overflow: hidden;
}
.p-subsidy-worry__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.p-subsidy-worry__item:hover .p-subsidy-worry__thumb img {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}
.p-subsidy-worry__body {
  padding: 24px 22px 26px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-subsidy-worry__icon {
  width: 44px;
  height: 44px;
  background: #00894e;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 12px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-subsidy-worry__icon i {
  color: #ffffff;
  font-size: 1.1rem;
}
.p-subsidy-worry__title {
  font-size: 1rem;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 10px;
  line-height: 1.55;
}
.p-subsidy-worry__desc {
  font-size: 15px;
  color: #666666;
  line-height: 1.75;
  margin-bottom: 16px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-subsidy-worry__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  border-top: 1px solid #ddd8ce;
  padding-top: 14px;
}
.p-subsidy-worry__list li {
  font-size: 15px;
  font-weight: 700;
  color: #2c2c2c;
  line-height: 1.45;
  padding-left: 12px;
  position: relative;
}
.p-subsidy-worry__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  background: #00894e;
  border-radius: 50%;
}
.p-subsidy-worry__list li small {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #666666;
  margin-top: 2px;
}

.p-subsidy-industry__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 1024px) {
  .p-subsidy-industry__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .p-subsidy-industry__grid {
    grid-template-columns: 1fr;
  }
}
.p-subsidy-industry__item {
  background: #ffffff;
  border: 1px solid #ddd8ce;
  border-radius: 8px;
  padding: 28px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-subsidy-industry__icon {
  width: 52px;
  height: 52px;
  background: #fafaeb;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 14px;
  border: 2px solid #00894e;
}
.p-subsidy-industry__icon i {
  color: #00894e;
  font-size: 1.25rem;
}
.p-subsidy-industry__name {
  font-size: 1rem;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd8ce;
}
.p-subsidy-industry__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.p-subsidy-industry__list li {
  font-size: 15px;
  color: #666666;
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}
.p-subsidy-industry__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background: #00894e;
  border-radius: 50%;
}

.p-subsidy-caution {
  margin-top: 40px;
  padding: 18px 22px;
  background: #fafaeb;
  border-radius: 8px;
  font-size: 15px;
  color: #666666;
  line-height: 1.8;
}
.p-subsidy-caution i {
  color: #00894e;
  margin-right: 6px;
}

.p-subsidy-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}
.p-subsidy-flow::before {
  content: "";
  position: absolute;
  top: 28px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 2px;
  background: repeating-linear-gradient(to right, #00894e 0, #00894e 6px, transparent 6px, transparent 12px);
}
@media (max-width: 767px) {
  .p-subsidy-flow::before {
    display: none;
  }
}
@media (max-width: 1024px) {
  .p-subsidy-flow {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .p-subsidy-flow {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.p-subsidy-flow__item {
  text-align: center;
  padding: 0 16px 32px;
}
@media (max-width: 767px) {
  .p-subsidy-flow__item {
    display: grid;
    grid-template-columns: 56px 1fr;
    -webkit-column-gap: 16px;
       -moz-column-gap: 16px;
            column-gap: 16px;
    text-align: left;
    padding: 16px;
    background: #fafaeb;
    border-radius: 8px;
  }
  .p-subsidy-flow__item .p-subsidy-flow__icon {
    grid-row: 1/3;
    align-self: center;
  }
  .p-subsidy-flow__item .p-subsidy-flow__name {
    grid-column: 2;
  }
  .p-subsidy-flow__item .p-subsidy-flow__desc {
    grid-column: 1/3;
    margin-top: 10px;
  }
}
.p-subsidy-flow__icon {
  width: 56px;
  height: 56px;
  background: #00894e;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto 14px;
  position: relative;
  z-index: 1;
}
.p-subsidy-flow__icon i {
  color: #ffffff;
  font-size: 1.25rem;
}
.p-subsidy-flow__step {
  font-size: 13px;
  font-weight: 700;
  color: #666666;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.p-subsidy-flow__step span {
  font-size: 1rem;
  color: #00894e;
}
.p-subsidy-flow__name {
  font-size: 15px;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 10px;
  line-height: 1.5;
}
.p-subsidy-flow__desc {
  font-size: 15px;
  color: #666666;
  line-height: 1.75;
}

.p-cases-filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}
.p-cases-filter__item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 13px;
  font-weight: 700;
  color: #666666;
  background: #fafaeb;
  border: 1px solid #ddd8ce;
  padding: 7px 16px;
  border-radius: 9999px;
  -webkit-transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.p-cases-filter__item:hover, .p-cases-filter__item.is-active {
  background: #00894e;
  color: #ffffff;
  border-color: #00894e;
}

.p-cases-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 6px;
  margin-top: 48px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.p-cases-pagination .page-numbers {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
  color: #666666;
  background: #fafaeb;
  border: 1px solid #ddd8ce;
  -webkit-transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.p-cases-pagination .page-numbers:hover {
  background: #00894e;
  color: #ffffff;
  border-color: #00894e;
}
.p-cases-pagination .page-numbers.current {
  background: #00894e;
  color: #ffffff;
  border-color: #00894e;
  pointer-events: none;
}
.p-cases-pagination .page-numbers.dots {
  background: transparent;
  border: none;
  pointer-events: none;
}
.p-cases-pagination .page-numbers i {
  font-size: 0.75rem;
}

.p-subsidy-cases-empty {
  text-align: center;
  color: #666666;
  font-size: 15px;
  padding: 48px 0;
}

.p-subsidy-cases__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .p-subsidy-cases__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .p-subsidy-cases__grid {
    grid-template-columns: 1fr;
  }
}

.p-case-card {
  background: #ffffff;
  border: 1px solid #ddd8ce;
  border-radius: 8px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-case-card__thumb {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.p-case-card__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.p-case-card__thumb--placeholder {
  background: #f9f6ef;
}
.p-case-card:hover .p-case-card__thumb img {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}
.p-case-card__img-link {
  display: block;
  overflow: hidden;
}
.p-case-card__body {
  padding: 20px 22px 24px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-case-card__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}
.p-case-card__industry {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 700;
  color: #666666;
  background: #fafaeb;
  padding: 5px 11px;
  border-radius: 4px;
  border: 1px solid #ddd8ce;
  line-height: 1.45;
}
.p-case-card__industry i {
  font-size: 0.75rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-case-card__grant {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 700;
  color: #00894e;
  background: rgba(0, 137, 78, 0.08);
  padding: 5px 11px;
  border-radius: 4px;
  line-height: 1.45;
  -webkit-transition: background 0.25s ease, color 0.25s ease;
  transition: background 0.25s ease, color 0.25s ease;
}
.p-case-card__grant:hover {
  background: #00894e;
  color: #ffffff;
}
.p-case-card__grant i {
  font-size: 0.75rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-case-card__title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.55;
  margin-bottom: 10px;
}
.p-case-card__title a {
  color: #2c2c2c;
  -webkit-transition: color 0.25s ease;
  transition: color 0.25s ease;
}
.p-case-card__title a:hover {
  color: #00894e;
}
.p-case-card__excerpt {
  font-size: 15px;
  color: #666666;
  line-height: 1.75;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.p-case-single {
  max-width: 860px;
  margin-inline: auto;
}
.p-case-single__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  margin-bottom: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid #ddd8ce;
}
@media (max-width: 1024px) {
  .p-case-single__header {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
.p-case-single__thumb {
  border-radius: 8px;
  overflow: hidden;
}
.p-case-single__thumb img {
  width: 100%;
  height: auto;
  display: block;
}
.p-case-single__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-case-single__info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.p-case-single__info-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
  color: #666666;
  letter-spacing: 0.08em;
}
.p-case-single__info-label i {
  color: #00894e;
  font-size: 0.875rem;
}
.p-case-single__info-value {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #2c2c2c;
  line-height: 1.5;
  padding: 12px 16px;
  background: #fafaeb;
  border-radius: 4px;
  border-left: 3px solid #00894e;
}
.p-case-single__grant-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
}
.p-case-single__grant-tags li a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 700;
  color: #00894e;
  background: rgba(0, 137, 78, 0.08);
  padding: 8px 16px;
  border-radius: 4px;
  border: 1px solid rgba(0, 137, 78, 0.2);
  -webkit-transition: background 0.25s ease, color 0.25s ease;
  transition: background 0.25s ease, color 0.25s ease;
}
.p-case-single__grant-tags li a:hover {
  background: #00894e;
  color: #ffffff;
}
.p-case-single__grant-tags li a i {
  font-size: 0.875rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-case-single__content {
  font-size: 1rem;
  line-height: 1.9;
  color: #2c2c2c;
  margin-bottom: 48px;
}
.p-case-single__content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 40px 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid #ddd8ce;
}
.p-case-single__content h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin: 28px 0 12px;
}
.p-case-single__content p {
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 18px;
}
.p-case-single__content ul, .p-case-single__content ol {
  font-size: 1rem;
  line-height: 1.85;
  padding-left: 1.4em;
  margin-bottom: 18px;
}
.p-case-single__content strong {
  color: #00894e;
}
.p-case-single__back {
  padding-top: 32px;
  border-top: 1px solid #ddd8ce;
}

.p-about-section-title {
  text-align: center;
  margin-bottom: 48px;
}
.p-about-section-title h2 {
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 14px;
  position: relative;
  padding-bottom: 18px;
}
.p-about-section-title h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 48px;
  height: 3px;
  background: #00894e;
  border-radius: 9999px;
}
.p-about-section-title p {
  font-size: 15px;
  color: #666666;
  margin-top: 4px;
  line-height: 1.85;
}

.p-about-section--gray {
  background-color: #f9f6ef;
}

.p-about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media (max-width: 1024px) {
  .p-about-intro {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.p-about-intro__media img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.p-about-intro__title {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid #00894e;
}

.p-about-table__row {
  display: grid;
  grid-template-columns: 110px 1fr;
  border-bottom: 1px solid #ddd8ce;
}
.p-about-table__row:first-child {
  border-top: 1px solid #ddd8ce;
}
.p-about-table__row dt {
  font-size: 13px;
  font-weight: 700;
  color: #2c2c2c;
  background: #fafaeb;
  padding: 14px 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.p-about-table__row dd {
  font-size: 15px;
  color: #2c2c2c;
  padding: 14px 0 14px 18px;
  line-height: 1.75;
}
.p-about-table__contact {
  display: block;
  font-size: 13px;
  color: #666666;
  margin-top: 5px;
}

.p-about-profile {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 60px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  max-width: 900px;
  margin-inline: auto;
}
@media (max-width: 1024px) {
  .p-about-profile {
    grid-template-columns: 200px 1fr;
    gap: 36px;
  }
}
@media (max-width: 767px) {
  .p-about-profile {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 480px;
  }
}
.p-about-profile__media img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-about-profile__role {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: #00894e;
  background: rgba(0, 137, 78, 0.08);
  padding: 4px 12px;
  border-radius: 9999px;
  margin-bottom: 10px;
  letter-spacing: 0.06em;
}
.p-about-profile__name {
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 24px;
}
.p-about-profile__name span {
  display: block;
  font-size: 15px;
  font-weight: 400;
  color: #666666;
  margin-top: 5px;
  letter-spacing: 0.1em;
}
.p-about-profile__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 28px;
  border-top: 1px solid #ddd8ce;
}
.p-about-profile__info > div {
  display: grid;
  grid-template-columns: 68px 1fr;
  border-bottom: 1px solid #ddd8ce;
  padding: 12px 0;
}
.p-about-profile__info > div dt {
  font-size: 13px;
  font-weight: 700;
  color: #666666;
  padding-top: 2px;
}
.p-about-profile__info > div dd {
  font-size: 15px;
  color: #2c2c2c;
  line-height: 1.8;
}
.p-about-profile__message {
  background: #fafaeb;
  border-left: 3px solid #00894e;
  border-radius: 0 8px 8px 0;
  padding: 18px 22px;
  margin: 0;
}
.p-about-profile__message p {
  font-size: 15px;
  color: #2c2c2c;
  line-height: 1.9;
  font-style: normal;
}

.p-about-firm {
  max-width: 860px;
  margin-inline: auto;
}
.p-about-firm__tagline {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: #2c2c2c;
  line-height: 1.75;
  text-align: center;
  padding: 36px 40px;
  border-top: 3px solid #00894e;
  border-bottom: 1px solid #ddd8ce;
  margin-bottom: 48px;
  position: relative;
}
.p-about-firm__tagline::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 48px;
  height: 1px;
  background: #00894e;
}
@media (max-width: 767px) {
  .p-about-firm__tagline {
    padding: 28px 20px;
    font-size: 1.0625rem;
  }
}
.p-about-firm__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}
@media (max-width: 767px) {
  .p-about-firm__features {
    grid-template-columns: 1fr;
  }
}
.p-about-firm__feature {
  background: #fafaeb;
  padding: 32px 28px;
  border-top: 4px solid #00894e;
}
.p-about-firm__feature-icon {
  width: 48px;
  height: 48px;
  background: #00894e;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 18px;
}
.p-about-firm__feature-icon i {
  color: #ffffff;
  font-size: 1.125rem;
}
.p-about-firm__feature-title {
  font-size: 1rem;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 12px;
  line-height: 1.5;
}
.p-about-firm__feature-desc {
  font-size: 15px;
  color: #666666;
  line-height: 1.85;
}
.p-about-firm__cta {
  text-align: center;
  padding-top: 8px;
}
.p-about-firm__cta-text {
  font-size: 15px;
  color: #666666;
  margin-bottom: 20px;
  line-height: 1.75;
}

.p-about-group__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 1024px) {
  .p-about-group__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .p-about-group__grid {
    grid-template-columns: 1fr;
  }
}
.p-about-group__item {
  --brand-color: #00894e;
  background: #ffffff;
  border: 1px solid #ddd8ce;
  border-radius: 8px;
  padding: 28px 22px;
  text-align: center;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-about-group__item--sr {
  --brand-color: #3A8E3F;
}
.p-about-group__item--zeirishi {
  --brand-color: #2060B0;
}
.p-about-group__item--shiho {
  --brand-color: #1A7870;
}
.p-about-group__item--gyosei {
  --brand-color: #C89A10;
}
.p-about-group__item--kansa {
  --brand-color: #1B3A72;
}
.p-about-group__item--horitsu {
  --brand-color: #6B3A9B;
}
.p-about-group__item--zaisan {
  --brand-color: #D46015;
}
.p-about-group__item--current {
  border-color: var(--brand-color);
  border-width: 2px;
}
.p-about-group__icon {
  width: 52px;
  height: 52px;
  background: #fafaeb;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 14px;
  border: 2px solid var(--brand-color);
}
.p-about-group__icon i {
  color: var(--brand-color);
  font-size: 1.25rem;
}
.p-about-group__item--current .p-about-group__icon {
  background: var(--brand-color);
  border-color: var(--brand-color);
}
.p-about-group__item--current .p-about-group__icon i {
  color: #ffffff;
}
.p-about-group__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--brand-color);
  margin-bottom: 8px;
  line-height: 1.5;
}
.p-about-group__desc {
  font-size: 13px;
  color: #666666;
  line-height: 1.65;
}
.p-about-group__badge {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  background: var(--brand-color);
  padding: 3px 12px;
  border-radius: 9999px;
}

.p-svc-nav {
  background: #f9f6ef;
  padding-block: 48px;
}
.p-svc-nav__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
}
@media (max-width: 1024px) {
  .p-svc-nav__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 767px) {
  .p-svc-nav__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
.p-svc-nav__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 20px 12px;
  background: #ffffff;
  border: 1px solid #ddd8ce;
  border-radius: 8px;
  text-align: center;
  -webkit-transition: border-color 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: border-color 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, -webkit-box-shadow 0.25s ease;
}
.p-svc-nav__item:hover {
  border-color: #00894e;
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
}
.p-svc-nav__icon {
  width: 44px;
  height: 44px;
  background: #00894e;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: background 0.25s ease;
  transition: background 0.25s ease;
}
.p-svc-nav__icon i {
  color: #ffffff;
  font-size: 1rem;
}
.p-svc-nav__item:hover .p-svc-nav__icon, .p-svc-nav__item.is-current .p-svc-nav__icon {
  background: rgb(0, 96.2, 54.7708029197);
}
.p-svc-nav__item.is-current {
  border-color: #00894e;
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
  pointer-events: none;
}
.p-svc-nav__item.is-current .p-svc-nav__name {
  color: #00894e;
}
.p-svc-nav__name {
  font-size: 13px;
  font-weight: 700;
  color: #2c2c2c;
  line-height: 1.55;
}

.p-svc-section--gray {
  background: #f9f6ef;
}

.p-svc-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1024px) {
  .p-svc-detail {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
@media (min-width: 1025px) {
  .p-svc-detail--rev .p-svc-detail__media {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .p-svc-detail--rev .p-svc-detail__content {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.p-svc-detail__media img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.p-svc-detail__media-wrap {
  position: relative;
}
.p-svc-detail__media-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 68px;
  height: 68px;
  background: #00894e;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 4px solid #ffffff;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.p-svc-detail__media-badge i {
  color: #ffffff;
  font-size: 1.5rem;
}
.p-svc-detail__num {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(0, 137, 78, 0.12);
  line-height: 1;
  margin-bottom: 4px;
  font-family: Georgia, serif;
  letter-spacing: -0.03em;
}
.p-svc-detail__icon {
  width: 52px;
  height: 52px;
  background: #00894e;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 18px;
}
.p-svc-detail__icon i {
  color: #ffffff;
  font-size: 1.25rem;
}
.p-svc-detail__title {
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid #00894e;
  line-height: 1.45;
}
.p-svc-detail__desc {
  font-size: 1rem;
  color: #2c2c2c;
  line-height: 1.9;
  margin-bottom: 24px;
  min-height: 1lh;
}
.p-svc-detail__points {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.p-svc-detail__points li {
  font-size: 15px;
  color: #2c2c2c;
  line-height: 1.7;
  padding: 12px 16px;
  background: #fafaeb;
  border-radius: 4px;
  border-left: 3px solid #00894e;
  min-height: calc(1em + 24px);
}
.p-svc-detail__points li:empty {
  opacity: 0.35;
}
.p-svc-detail__points li:empty::before {
  content: "─";
  color: #ddd8ce;
}

.p-price-section--gray {
  background: #f9f6ef;
}

.p-price-section-title {
  text-align: center;
  margin-bottom: 48px;
}
.p-price-section-title h2 {
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 14px;
  position: relative;
  padding-bottom: 18px;
}
.p-price-section-title h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 48px;
  height: 3px;
  background: #00894e;
  border-radius: 9999px;
}
.p-price-section-title p {
  font-size: 15px;
  color: #666666;
  line-height: 1.85;
}

.p-price-note {
  margin-top: 32px;
  padding: 16px 20px;
  background: #fafaeb;
  border-radius: 8px;
  font-size: 13px;
  color: #666666;
  line-height: 1.85;
}
.p-price-note i {
  color: #00894e;
  margin-right: 6px;
}

.p-price-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 767px) {
  .p-price-features {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.p-price-feature {
  background: #ffffff;
  padding: 32px 24px;
  border-top: 4px solid #00894e;
}
.p-price-feature__icon {
  width: 48px;
  height: 48px;
  background: #00894e;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 16px;
}
.p-price-feature__icon i {
  color: #ffffff;
  font-size: 1.125rem;
}
.p-price-feature__title {
  font-size: 1rem;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 10px;
  line-height: 1.5;
}
.p-price-feature__desc {
  font-size: 15px;
  color: #666666;
  line-height: 1.8;
}

.p-price-plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
@media (max-width: 767px) {
  .p-price-plans {
    grid-template-columns: 1fr;
  }
}

.p-price-plan {
  background: #ffffff;
  border: 1px solid #ddd8ce;
  border-radius: 8px;
  overflow: hidden;
}
.p-price-plan--featured {
  border-color: #00894e;
  border-width: 2px;
}
.p-price-plan__head {
  padding: 28px 28px 24px;
  background: #fafaeb;
  border-bottom: 1px solid #ddd8ce;
}
.p-price-plan--featured .p-price-plan__head {
  background: #00894e;
}
.p-price-plan__label {
  font-size: 15px;
  font-weight: 700;
  color: #00894e;
  margin-bottom: 6px;
  letter-spacing: 0.06em;
}
.p-price-plan--featured .p-price-plan__label {
  color: rgba(255, 255, 255, 0.8);
}
.p-price-plan__target {
  font-size: 13px;
  color: #666666;
  line-height: 1.65;
  margin-bottom: 20px;
}
.p-price-plan--featured .p-price-plan__target {
  color: rgba(255, 255, 255, 0.85);
}
.p-price-plan__fee {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 10px;
}
.p-price-plan__fee-label {
  font-size: 13px;
  font-weight: 700;
  color: #666666;
  background: #f9f6ef;
  padding: 3px 10px;
  border-radius: 9999px;
}
.p-price-plan--featured .p-price-plan__fee-label {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}
.p-price-plan__fee-amount {
  font-size: 1rem;
  font-weight: 700;
  color: #2c2c2c;
}
.p-price-plan--featured .p-price-plan__fee-amount {
  color: #ffffff;
}
.p-price-plan__body {
  padding: 24px 28px 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.p-price-plan__block-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
  color: #00894e;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}
.p-price-plan__block-title--extra {
  color: #666666;
}
.p-price-plan__block-title i {
  font-size: 0.875rem;
}
.p-price-plan__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 7px;
}
.p-price-plan__list li {
  font-size: 15px;
  color: #2c2c2c;
  padding-left: 14px;
  position: relative;
  line-height: 1.6;
}
.p-price-plan__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 5px;
  height: 5px;
  background: #00894e;
  border-radius: 50%;
}
.p-price-plan__list--extra li {
  color: #666666;
}
.p-price-plan__list--extra li::before {
  background: #ddd8ce;
}

.p-price-spot {
  margin-bottom: 40px;
}
.p-price-spot:last-of-type {
  margin-bottom: 0;
}
.p-price-spot__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 2px solid #00894e;
}
.p-price-spot__title i {
  color: #00894e;
  font-size: 1rem;
}

.p-price-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 8px;
  border: 1px solid #ddd8ce;
}

.p-price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  background: #ffffff;
}
.p-price-table thead th {
  background: #fafaeb;
  color: #2c2c2c;
  font-weight: 700;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 2px solid #ddd8ce;
  white-space: nowrap;
  font-size: 13px;
}
.p-price-table tbody tr {
  border-bottom: 1px solid #ddd8ce;
}
.p-price-table tbody tr:last-child {
  border-bottom: none;
}
.p-price-table tbody tr:nth-child(even) {
  background: rgba(250, 250, 235, 0.5);
}
.p-price-table tbody td {
  padding: 14px 16px;
  color: #2c2c2c;
  line-height: 1.65;
  vertical-align: middle;
}
.p-price-table__th--summary {
  width: 38%;
}
.p-price-table__th--fee {
  width: 16%;
  white-space: nowrap;
}
.p-price-table__th--incl {
  width: 12%;
  white-space: nowrap;
}
.p-price-table__fee {
  text-align: center;
  font-weight: 700;
  color: #666666;
  white-space: nowrap;
}
.p-price-table__incl {
  text-align: center;
  font-weight: 700;
  color: #00894e;
}
.p-price-table__incl--plan {
  font-size: 13px;
  color: #666666;
  font-weight: 400;
}

.p-change-section--gray {
  background: #f9f6ef;
}

.p-change-section-title {
  text-align: center;
  margin-bottom: 48px;
}
.p-change-section-title h2 {
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 14px;
  position: relative;
  padding-bottom: 18px;
}
.p-change-section-title h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 48px;
  height: 3px;
  background: #00894e;
  border-radius: 9999px;
}
.p-change-section-title p {
  font-size: 15px;
  color: #666666;
  line-height: 1.85;
  margin-top: 4px;
}

.p-change-lead {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1024px) {
  .p-change-lead {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
.p-change-lead__media img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.p-change-lead__title {
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 700;
  color: #2c2c2c;
  line-height: 1.55;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid #00894e;
  min-height: 1lh;
}
.p-change-lead__desc {
  font-size: 1rem;
  color: #2c2c2c;
  line-height: 1.9;
  min-height: 3lh;
}

.p-change-worries {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 767px) {
  .p-change-worries {
    grid-template-columns: 1fr;
  }
}

.p-change-worry {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 14px;
  background: #ffffff;
  border: 1px solid #ddd8ce;
  border-radius: 8px;
  padding: 20px 22px;
}
.p-change-worry__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 2px;
}
.p-change-worry__icon i {
  font-size: 1.25rem;
  color: #00894e;
}
.p-change-worry__text {
  font-size: 15px;
  font-weight: 700;
  color: #2c2c2c;
  line-height: 1.65;
  min-height: 1lh;
}

.p-change-faqs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  max-width: 860px;
  margin-inline: auto;
}

.p-change-faq {
  border: 1px solid #ddd8ce;
  border-radius: 8px;
  overflow: hidden;
}
.p-change-faq__q, .p-change-faq__a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
}
.p-change-faq__q p, .p-change-faq__a p {
  font-size: 15px;
  color: #2c2c2c;
  line-height: 1.8;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-height: 1lh;
}
.p-change-faq__q {
  background: #fafaeb;
  border-bottom: 1px solid #ddd8ce;
}
.p-change-faq__q p {
  font-weight: 700;
}
.p-change-faq__a {
  background: #ffffff;
}
.p-change-faq__a p {
  color: #666666;
}
.p-change-faq__badge {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 13px;
  font-weight: 900;
  background: #00894e;
  color: #ffffff;
  margin-top: 1px;
}
.p-change-faq__badge--a {
  background: #f9f6ef;
  color: #666666;
  border: 1px solid #ddd8ce;
}

.p-change-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}
.p-change-flow::before {
  content: "";
  position: absolute;
  top: 52px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 2px;
  background: repeating-linear-gradient(to right, #00894e 0, #00894e 6px, transparent 6px, transparent 12px);
}
@media (max-width: 767px) {
  .p-change-flow::before {
    display: none;
  }
}
@media (max-width: 1024px) {
  .p-change-flow {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .p-change-flow {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.p-change-flow__item {
  text-align: center;
  padding: 0 16px 32px;
}
@media (max-width: 767px) {
  .p-change-flow__item {
    display: grid;
    grid-template-columns: 56px 1fr;
    -webkit-column-gap: 16px;
       -moz-column-gap: 16px;
            column-gap: 16px;
    text-align: left;
    padding: 16px;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #ddd8ce;
  }
  .p-change-flow__item .p-change-flow__icon {
    grid-row: 1/3;
    align-self: center;
  }
  .p-change-flow__item .p-change-flow__step {
    grid-column: 2;
  }
  .p-change-flow__item .p-change-flow__name {
    grid-column: 2;
  }
  .p-change-flow__item .p-change-flow__desc {
    grid-column: 1/3;
    margin-top: 10px;
  }
}
.p-change-flow__icon {
  width: 56px;
  height: 56px;
  background: #00894e;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto 14px;
  position: relative;
  z-index: 1;
}
.p-change-flow__icon i {
  color: #ffffff;
  font-size: 1.25rem;
}
.p-change-flow__step {
  font-size: 13px;
  font-weight: 700;
  color: #666666;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.p-change-flow__step span {
  font-size: 1rem;
  color: #00894e;
}
.p-change-flow__name {
  font-size: 15px;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 10px;
}
.p-change-flow__desc {
  font-size: 15px;
  color: #666666;
  line-height: 1.75;
  min-height: 1lh;
}

.p-privacy {
  max-width: 800px;
  margin-inline: auto;
}
.p-privacy__lead {
  font-size: 15px;
  color: #2c2c2c;
  line-height: 1.9;
  margin-bottom: 48px;
  padding: 24px 28px;
  background: #fafaeb;
  border-radius: 8px;
  border-left: 3px solid #00894e;
}
.p-privacy__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
  counter-reset: none;
}
.p-privacy__item {
  padding: 28px 0;
  border-bottom: 1px solid #ddd8ce;
}
.p-privacy__item:first-child {
  border-top: 1px solid #ddd8ce;
}
.p-privacy__title {
  font-size: 1rem;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.p-privacy__title::before {
  content: counter(list-item, decimal-leading-zero);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 28px;
  height: 28px;
  background: #00894e;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-privacy__item p {
  font-size: 15px;
  color: #666666;
  line-height: 1.9;
  padding-left: 38px;
}
.p-privacy__contact {
  margin-top: 16px;
  padding: 18px 22px;
  background: #f9f6ef;
  border-radius: 8px;
  margin-left: 38px;
}
.p-privacy__contact p {
  padding-left: 0;
  margin-bottom: 8px;
  color: #2c2c2c;
}
.p-privacy__contact p:last-child {
  margin-bottom: 0;
}
.p-privacy__date {
  margin-top: 40px;
  font-size: 13px;
  color: #666666;
  text-align: right;
  line-height: 1.85;
}

.p-contact-lead {
  text-align: center;
  margin-bottom: 48px;
}
.p-contact-lead p {
  font-size: 1rem;
  color: #2c2c2c;
  line-height: 1.9;
}

.p-contact-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media (max-width: 1024px) {
  .p-contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.p-contact-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
}
.p-contact-info__item {
  padding: 24px 0;
  border-bottom: 1px solid #ddd8ce;
}
.p-contact-info__item:first-child {
  border-top: 1px solid #ddd8ce;
}
.p-contact-info__item--note {
  padding: 18px 20px;
  background: #fafaeb;
  border-radius: 8px;
  border: none;
  margin-top: 8px;
}
.p-contact-info__item--note p {
  font-size: 13px;
  color: #00894e;
  font-weight: 700;
  line-height: 1.75;
}
.p-contact-info__item--note p i {
  margin-right: 6px;
}
.p-contact-info__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 16px;
}
.p-contact-info__title i {
  color: #00894e;
  font-size: 0.875rem;
}
.p-contact-info__office {
  margin-bottom: 16px;
}
.p-contact-info__office:last-of-type {
  margin-bottom: 0;
}
.p-contact-info__office-name {
  font-size: 13px;
  font-weight: 700;
  color: #666666;
  margin-bottom: 4px;
  letter-spacing: 0.05em;
}
.p-contact-info__tel {
  display: block;
  font-size: 1.375rem;
  font-weight: 700;
  color: #00894e;
  letter-spacing: 0.03em;
  line-height: 1.3;
  -webkit-transition: color 0.25s ease;
  transition: color 0.25s ease;
}
.p-contact-info__tel:hover {
  color: #008974;
}
@media (min-width: 1025px) {
  .p-contact-info__tel {
    pointer-events: none;
  }
}
.p-contact-info__hours {
  margin-top: 12px;
  font-size: 13px;
  color: #666666;
}
.p-contact-info__hours i {
  margin-right: 5px;
}
.p-contact-info__address {
  font-size: 15px;
  color: #2c2c2c;
  line-height: 1.75;
  font-style: normal;
}

.p-contact-form__title {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 12px;
  padding-bottom: 14px;
  border-bottom: 2px solid #00894e;
}
.p-contact-form__note {
  font-size: 13px;
  color: #666666;
  line-height: 1.75;
  margin-bottom: 28px;
}
.p-contact-form__note i {
  color: #d97706;
  margin-right: 5px;
}
.p-contact-form__body--fallback {
  padding: 32px;
  background: #f9f6ef;
  border-radius: 8px;
  text-align: center;
}
.p-contact-form__body--fallback p {
  font-size: 15px;
  color: #666666;
  line-height: 1.75;
}

.wpcf7 .wpcf7-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.wpcf7 .wpcf7-form-control-wrap,
.wpcf7 p {
  display: block;
}
.wpcf7 label {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 6px;
}
.wpcf7 label .required {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  background: #c0392b;
  padding: 1px 7px;
  border-radius: 4px;
  margin-left: 6px;
  vertical-align: middle;
}
.wpcf7 input[type=text],
.wpcf7 input[type=email],
.wpcf7 input[type=tel],
.wpcf7 textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  font-family: "Noto Sans JP", sans-serif;
  color: #2c2c2c;
  background: #ffffff;
  border: 1px solid #ddd8ce;
  border-radius: 4px;
  -webkit-transition: border-color 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: border-color 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, -webkit-box-shadow 0.25s ease;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.wpcf7 input[type=text]:focus,
.wpcf7 input[type=email]:focus,
.wpcf7 input[type=tel]:focus,
.wpcf7 textarea:focus {
  outline: none;
  border-color: #00894e;
  -webkit-box-shadow: 0 0 0 3px rgba(0, 137, 78, 0.12);
          box-shadow: 0 0 0 3px rgba(0, 137, 78, 0.12);
}
.wpcf7 input[type=text]::-webkit-input-placeholder, .wpcf7 input[type=email]::-webkit-input-placeholder, .wpcf7 input[type=tel]::-webkit-input-placeholder, .wpcf7 textarea::-webkit-input-placeholder {
  color: #bbb;
}
.wpcf7 input[type=text]::-moz-placeholder, .wpcf7 input[type=email]::-moz-placeholder, .wpcf7 input[type=tel]::-moz-placeholder, .wpcf7 textarea::-moz-placeholder {
  color: #bbb;
}
.wpcf7 input[type=text]:-ms-input-placeholder, .wpcf7 input[type=email]:-ms-input-placeholder, .wpcf7 input[type=tel]:-ms-input-placeholder, .wpcf7 textarea:-ms-input-placeholder {
  color: #bbb;
}
.wpcf7 input[type=text]::-ms-input-placeholder, .wpcf7 input[type=email]::-ms-input-placeholder, .wpcf7 input[type=tel]::-ms-input-placeholder, .wpcf7 textarea::-ms-input-placeholder {
  color: #bbb;
}
.wpcf7 input[type=text]::placeholder,
.wpcf7 input[type=email]::placeholder,
.wpcf7 input[type=tel]::placeholder,
.wpcf7 textarea::placeholder {
  color: #bbb;
}
.wpcf7 textarea {
  min-height: 160px;
  resize: vertical;
  line-height: 1.75;
}
.wpcf7 .wpcf7-acceptance label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
  font-weight: 400;
  font-size: 15px;
  cursor: pointer;
  line-height: 1.6;
}
.wpcf7 .wpcf7-acceptance label input[type=checkbox] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  accent-color: #00894e;
  cursor: pointer;
}
.wpcf7 .wpcf7-acceptance a {
  color: #00894e;
  text-decoration: underline;
}
.wpcf7 .wpcf7-acceptance a:hover {
  text-decoration: none;
}
.wpcf7 .p-contact-form__acceptance {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  line-height: 1.65;
}
.wpcf7 .p-contact-form__acceptance .wpcf7-list-item {
  margin: 0;
}
.wpcf7 .p-contact-form__acceptance a {
  color: #00894e;
  text-decoration: underline;
}
.wpcf7 .p-contact-form__acceptance a:hover {
  text-decoration: none;
}
.wpcf7 input[type=submit] {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  color: #ffffff;
  background: #00894e;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  -webkit-transition: background 0.25s ease, -webkit-transform 0.25s ease;
  transition: background 0.25s ease, -webkit-transform 0.25s ease;
  transition: background 0.25s ease, transform 0.25s ease;
  transition: background 0.25s ease, transform 0.25s ease, -webkit-transform 0.25s ease;
  letter-spacing: 0.04em;
}
.wpcf7 input[type=submit]:hover {
  background: rgb(0, 96.2, 54.7708029197);
}
.wpcf7 input[type=submit]:active {
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
}
.wpcf7 .wpcf7-not-valid-tip {
  font-size: 13px;
  color: #c0392b;
  margin-top: 4px;
  display: block;
}
.wpcf7 .wpcf7-response-output {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 4px;
  font-size: 15px;
  border: none;
}
.wpcf7 .wpcf7-response-output.wpcf7-mail-sent-ok {
  background: rgba(0, 137, 78, 0.08);
  color: #00894e;
  border-left: 3px solid #00894e;
}
.wpcf7 .wpcf7-response-output.wpcf7-mail-sent-ng, .wpcf7 .wpcf7-response-output.wpcf7-validation-errors {
  background: rgba(192, 57, 43, 0.07);
  color: #c0392b;
  border-left: 3px solid #c0392b;
}

.p-blog-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 56px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media (max-width: 1024px) {
  .p-blog-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.p-blog-main {
  min-width: 0;
}

.p-blog-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
}

.p-blog-card {
  display: block;
  padding: 22px 0;
  border-bottom: 1px solid #ddd8ce;
  -webkit-transition: background 0.25s ease;
  transition: background 0.25s ease;
}
.p-blog-list__item:first-child .p-blog-card {
  border-top: 1px solid #ddd8ce;
}
.p-blog-card:hover .p-blog-card__title {
  color: #00894e;
}
.p-blog-card__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 8px;
}
.p-blog-card__date {
  font-size: 13px;
  color: #666666;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.p-blog-card__cats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 6px;
}
.p-blog-card__cat {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: #00894e;
  background: rgba(0, 137, 78, 0.08);
  padding: 2px 10px;
  border-radius: 9999px;
  line-height: 1.8;
}
.p-blog-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: #2c2c2c;
  line-height: 1.65;
  -webkit-transition: color 0.25s ease;
  transition: color 0.25s ease;
}

.p-blog-empty {
  font-size: 15px;
  color: #666666;
  padding: 48px 0;
  text-align: center;
}

.p-blog-sidebar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 28px;
  position: sticky;
  top: 96px;
}
@media (max-width: 1024px) {
  .p-blog-sidebar {
    position: static;
  }
}

.p-blog-widget {
  background: #fafaeb;
  border-radius: 8px;
  padding: 22px 20px;
}
.p-blog-widget__title {
  font-size: 15px;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid #00894e;
}
.p-blog-widget__cats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
}
.p-blog-widget__cats li {
  border-bottom: 1px solid #ddd8ce;
}
.p-blog-widget__cats li:last-child {
  border-bottom: none;
}
.p-blog-widget__cats a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px 4px;
  font-size: 15px;
  color: #2c2c2c;
  -webkit-transition: color 0.25s ease;
  transition: color 0.25s ease;
}
.p-blog-widget__cats a:hover {
  color: #00894e;
}
.p-blog-widget__count {
  font-size: 13px;
  color: #666666;
  background: #f9f6ef;
  padding: 1px 8px;
  border-radius: 9999px;
  border: 1px solid #ddd8ce;
}
.p-blog-widget__archive {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
}
.p-blog-widget__archive li {
  border-bottom: 1px solid #ddd8ce;
}
.p-blog-widget__archive li:last-child {
  border-bottom: none;
}
.p-blog-widget__archive a {
  display: block;
  padding: 10px 4px;
  font-size: 15px;
  color: #2c2c2c;
  -webkit-transition: color 0.25s ease;
  transition: color 0.25s ease;
}
.p-blog-widget__archive a:hover {
  color: #00894e;
}

.p-blog-single__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid #ddd8ce;
}
.p-blog-single__date {
  font-size: 13px;
  color: #666666;
}
.p-blog-single__date i {
  margin-right: 5px;
}
.p-blog-single__cats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 6px;
}
.p-blog-single__cat {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: #00894e;
  background: rgba(0, 137, 78, 0.08);
  padding: 3px 12px;
  border-radius: 9999px;
  -webkit-transition: background 0.25s ease, color 0.25s ease;
  transition: background 0.25s ease, color 0.25s ease;
}
.p-blog-single__cat:hover {
  background: #00894e;
  color: #ffffff;
}
.p-blog-single__content {
  font-size: 1rem;
  line-height: 1.9;
  color: #2c2c2c;
  margin-bottom: 56px;
}
.p-blog-single__content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 44px 0 16px;
  padding: 14px 18px;
  background: #fafaeb;
  border-left: 4px solid #00894e;
  border-radius: 0 4px 4px 0;
  line-height: 1.5;
}
.p-blog-single__content h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin: 32px 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid #ddd8ce;
}
.p-blog-single__content p {
  margin-bottom: 20px;
}
.p-blog-single__content ul, .p-blog-single__content ol {
  padding-left: 1.5em;
  margin-bottom: 20px;
  line-height: 1.85;
}
.p-blog-single__content ul li, .p-blog-single__content ol li {
  margin-bottom: 6px;
}
.p-blog-single__content blockquote {
  border-left: 3px solid #00894e;
  margin: 28px 0;
  padding: 16px 22px;
  background: #fafaeb;
  border-radius: 0 8px 8px 0;
  font-style: normal;
  color: #666666;
}
.p-blog-single__content a {
  color: #00894e;
  text-decoration: underline;
}
.p-blog-single__content a:hover {
  text-decoration: none;
}
.p-blog-single__content strong {
  font-weight: 700;
}
.p-blog-single__content img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}
.p-blog-single__content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  font-size: 15px;
}
.p-blog-single__content table th, .p-blog-single__content table td {
  padding: 10px 14px;
  border: 1px solid #ddd8ce;
  line-height: 1.65;
}
.p-blog-single__content table th {
  background: #fafaeb;
  font-weight: 700;
}
.p-blog-single__nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 36px;
  padding-top: 32px;
  border-top: 1px solid #ddd8ce;
}
@media (max-width: 767px) {
  .p-blog-single__nav {
    grid-template-columns: 1fr;
  }
}
.p-blog-single__nav-prev a, .p-blog-single__nav-next a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
  padding: 16px 18px;
  background: #fafaeb;
  border-radius: 8px;
  border: 1px solid #ddd8ce;
  -webkit-transition: border-color 0.25s ease;
  transition: border-color 0.25s ease;
}
.p-blog-single__nav-prev a:hover, .p-blog-single__nav-next a:hover {
  border-color: #00894e;
}
.p-blog-single__nav-prev a span, .p-blog-single__nav-next a span {
  font-size: 13px;
  color: #666666;
}
.p-blog-single__nav-prev a span i, .p-blog-single__nav-next a span i {
  font-size: 0.7rem;
}
.p-blog-single__nav-prev a strong, .p-blog-single__nav-next a strong {
  font-size: 15px;
  font-weight: 700;
  color: #2c2c2c;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.p-blog-single__nav-next a {
  text-align: right;
}
.p-blog-single__back {
  text-align: center;
}

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

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

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

.u-text-primary {
  color: #00894e;
}

.u-text-light {
  color: #666666;
}

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

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

@media (min-width: 768px) {
  .u-sp-only {
    display: none;
  }
}

@media (max-width: 767px) {
  .u-pc-only {
    display: none;
  }
}

.u-mt-sm {
  margin-top: 16px;
}

.u-mt-md {
  margin-top: 32px;
}

.u-mt-lg {
  margin-top: 48px;
}

.u-mb-sm {
  margin-bottom: 16px;
}

.u-mb-md {
  margin-bottom: 32px;
}

.u-mb-lg {
  margin-bottom: 48px;
}

.u-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}/*# sourceMappingURL=style.css.map */