@charset "UTF-8";
/*--------------------------------
　　FUNCTION
--------------------------------*/
/*--------------------------------
　　VARIABLE
--------------------------------*/
/*--------------------------------
　　COMMON
--------------------------------*/
@font-face {
  font-family: "Zen Kaku Gothic New";
  font-weight: 400;
  src: url(../fonts/ZenKakuGothicNew-Regular.ttf) format("truetype");
}
@font-face {
  font-family: "Zen Kaku Gothic New";
  font-weight: 500;
  src: url(../fonts/ZenKakuGothicNew-Medium.ttf) format("truetype");
}
@font-face {
  font-family: "Zen Kaku Gothic New";
  font-weight: 700;
  src: url(../fonts/ZenKakuGothicNew-Bold.ttf) format("truetype");
}
html,
body {
  display: flex;
  flex-direction: column;
  height: 100dvh;
  font-size: 18px;
  line-height: 1.5;
  font-family: "Zen Kaku Gothic New", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #3B4043;
}
html .menu-open,
body .menu-open {
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  margin-left: auto;
  margin-right: auto;
}
.container.container--narrow {
  max-width: 900px;
}

section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

@media screen and (min-width: 767px) {
  a:focus-visible,
  button:focus-visible,
  input:focus-visible,
  select:focus-visible,
  textarea:focus-visible,
  [tabindex="0"]:focus-visible {
    outline-width: 2px;
    outline-style: solid;
    outline-color: #21891F;
    outline-offset: 2px;
  }
}

iframe {
  width: 100%;
}

figure {
  text-align: center;
  padding: 1rem 0;
  line-height: 0;
}
@media screen and (max-width: 767px) {
  figure {
    padding: 0.5rem 0;
  }
}
figure img {
  line-height: 0;
}

img {
  max-width: 100%;
}

ul.dash {
  list-style: none;
}
ul.dash li {
  vertical-align: middle;
  padding-left: 1.5rem;
  text-indent: -1.5rem;
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}
ul.dash li::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.5rem;
  width: 1rem;
  height: 1px;
  background-color: currentColor;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
  position: relative;
  text-decoration: none;
  background-color: #007940;
  font-size: 0.875rem;
  font-weight: 500;
  color: #FFF;
  border-radius: 0.25rem;
  padding: 0.875rem;
  margin: 2rem 0;
}
@media screen and (max-width: 767px) {
  .btn {
    padding: 0.75rem;
  }
}
.btn::after {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: #FFF;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgb(0, 121, 64)' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12h16'/%3E%3Cpath d='M13 5l7 7-7 7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 70%;
}
.btn[target=_blank]::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 3px;
  right: 3px;
  width: 1rem;
  height: 1rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='36' viewBox='0 0 24 24' fill='none' stroke='rgb(255, 255, 255)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M13.5 10.5L21 3'/%3E%3Cpath d='M16 3h5v5'/%3E%3Cpath d='M21 14v5a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 70%;
}
.btn:hover {
  background-color: rgb(0, 95.5, 50.5123966942);
  font-weight: 700;
}

.btn-group {
  display: flex;
  gap: 1rem;
  margin: 2rem 0;
}
@media screen and (max-width: 767px) {
  .btn-group {
    flex-direction: column;
  }
}
.btn-group .btn {
  width: 100%;
  margin: 0;
}

.sp-only {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp-only {
    display: block;
  }
}

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

/*--------------------------------
　　HEADER
--------------------------------*/
header {
  border-bottom: 1px solid #007940;
  background-color: #FFF;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  z-index: 99;
}
@media screen and (max-width: 767px) {
  header {
    height: 100dvh;
    max-height: -moz-fit-content;
    max-height: fit-content;
  }
}
header .container {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  header .container {
    flex-direction: column;
    justify-content: unset;
    height: 100%;
    max-height: -moz-fit-content;
    max-height: fit-content;
    padding-right: 1.5rem;
  }
}
header .container .top-navigation-wrap {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  header .container .top-navigation-wrap {
    width: 100%;
    justify-content: space-between;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
}
header .container .top-navigation-wrap a {
  display: block;
  text-decoration: none;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  header .container .top-navigation-wrap a {
    max-width: 86px;
  }
}
header .container #main-nav {
  display: block;
}
@media screen and (max-width: 767px) {
  header .container #main-nav {
    display: block;
    overflow-y: auto;
    overscroll-behavior: contain;
    max-height: 0;
    transition: max-height 0.3s;
  }
}
header .container #main-nav ul {
  list-style: none;
}
header .container #main-nav ul > li {
  position: relative;
}
header .container #main-nav ul > li .submenu {
  display: none;
  transition: max-height 0.3s;
}
header .container #main-nav ul > li .submenu a {
  padding: 0.75rem 0.75rem 0.75rem 1.75rem;
}
header .container #main-nav ul > li .submenu a::before {
  content: "";
  width: 0.5rem;
  height: 1px;
  background-color: #21891F;
  margin-left: -0.75rem;
  margin-right: 0.5rem;
}
@media screen and (max-width: 767px) {
  header .container #main-nav ul > li .submenu {
    display: block;
    overflow: hidden;
    max-height: 0;
  }
  header .container #main-nav ul > li .submenu li:last-of-type a {
    padding-bottom: 1.25rem;
  }
}
@media screen and (min-width: 767px) {
  header .container #main-nav ul > li .submenu.expand {
    display: block;
    background-color: #FFF;
    max-width: 25rem;
    padding: 0.5rem;
    position: absolute;
    top: calc(100% - 0.5rem);
    width: -moz-max-content;
    width: max-content;
    box-shadow: 0 1px 6px rgba(43, 42, 51, 0.1019607843);
    border-radius: 0.25rem;
    z-index: 10;
  }
}
header .container #main-nav ul > li .submenu.expand a {
  margin: 0;
}
header .container #main-nav ul.nav-list {
  display: flex;
  gap: 0.5rem;
}
@media screen and (max-width: 767px) {
  header .container #main-nav ul.nav-list {
    flex-direction: column;
  }
}
header .container #main-nav ul.nav-list a,
header .container #main-nav ul.nav-list button {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 1rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #3B4043;
  letter-spacing: 0.1em;
  line-height: 1;
  border-radius: 0.25rem;
  margin: 0.75rem 0;
}
@media screen and (max-width: 767px) {
  header .container #main-nav ul.nav-list a,
  header .container #main-nav ul.nav-list button {
    margin: 0;
    background-color: #F3F9F4;
    width: 100%;
  }
}
header .container #main-nav ul.nav-list a:hover,
header .container #main-nav ul.nav-list button:hover {
  background-color: #F3F9F4;
  color: #007940;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  header .container #main-nav ul.nav-list button {
    justify-content: space-between;
  }
}
header .container #main-nav ul.nav-list button::after {
  content: "";
  display: inline-block;
  width: 0.875rem;
  height: 0.875rem;
  margin-left: 0.15rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgb(0, 121, 64)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 9l8 8 8-8'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center 1px;
  background-size: contain;
  transition: transform 0.3s;
}
header .container #main-nav ul.nav-list button[aria-expanded=true]::after {
  transform: rotate(180deg);
}
header .container #main-nav ul.nav-list .contact {
  display: flex;
  align-items: center;
  background-color: #007940;
  color: #FFF;
  border-radius: unset;
  margin: 0;
  height: 100%;
}
@media screen and (max-width: 767px) {
  header .container #main-nav ul.nav-list .contact {
    border-radius: 0.25rem;
    margin-bottom: 0.75rem;
  }
}
header .container #main-nav ul.nav-list .contact:hover {
  background-color: rgb(0, 95.5, 50.5123966942);
  color: #FFF;
  font-weight: 700;
}
header .container .menu-trigger {
  display: none;
  position: relative;
  width: 30px;
  height: 23px;
}
@media screen and (max-width: 767px) {
  header .container .menu-trigger {
    display: inline-block;
  }
}
header .container .menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #3B4043;
  display: inline-block;
  transition: all 0.3s;
}
header .container .menu-trigger span:nth-of-type(1) {
  top: 0;
}
header .container .menu-trigger span:nth-of-type(2) {
  top: calc(50% - 1px);
  opacity: 1;
}
header .container .menu-trigger span:nth-of-type(3) {
  bottom: 0;
}
header .container .menu-trigger[aria-expanded=true] span:nth-of-type(1) {
  top: 50%;
  transform: rotate(45deg);
}
header .container .menu-trigger[aria-expanded=true] span:nth-of-type(2) {
  opacity: 0;
}
header .container .menu-trigger[aria-expanded=true] span:nth-of-type(3) {
  top: 50%;
  transform: rotate(-45deg);
}

/*--------------------------------
　　MAIN
--------------------------------*/
main {
  overflow: auto;
  background-color: #F3F9F4;
}

/*--------------------------------
　　FOOTER
--------------------------------*/
footer {
  background-color: #007940;
}
footer *:focus-visible {
  outline-color: #FFF;
}
footer section.contact {
  display: none;
  justify-content: center;
}
footer section.contact h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  color: #FFF !important;
  font-size: 1.125rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  footer section.contact h2 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
}
footer section.contact h2::before, footer section.contact h2::after {
  content: "";
  display: block;
  width: 3rem;
  height: 2px;
  background-color: #87C796;
}
footer section.contact .contact-buttons {
  display: flex;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  footer section.contact .contact-buttons {
    flex-direction: column;
  }
}
footer section.contact .contact-buttons .btn {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  background-color: #FFF;
  font-size: 1.125rem;
  font-weight: 700;
  color: #007940;
  width: 100%;
  padding: 2rem;
  border-radius: 0.5rem;
  margin: 0;
}
@media screen and (max-width: 767px) {
  footer section.contact .contact-buttons .btn {
    padding: 1.5rem;
  }
}
footer section.contact .contact-buttons .btn::after {
  width: 1.2rem;
  height: 1.2rem;
  background-color: #007940;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgb(255, 255, 255)' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12h16'/%3E%3Cpath d='M13 5l7 7-7 7'/%3E%3C/svg%3E");
}
footer section.contact .contact-buttons .btn:hover {
  background-color: #F3F9F4;
  font-weight: 700;
}
footer section.footer-info {
  padding-top: 0;
  padding-bottom: 1rem;
  color: #B2D7C6;
}
footer section.footer-info .container {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  grid-template-areas: "brand sitemap" "bottom bottom";
  gap: 1rem;
  padding-top: 4rem;
}
@media screen and (max-width: 767px) {
  footer section.footer-info .container {
    grid-template-columns: auto;
    grid-template-rows: auto auto auto;
    grid-template-areas: "brand" "sitemap" "bottom";
    font-size: 0.875rem;
    gap: 1.5rem;
  }
}
footer section.footer-info .footer-brand {
  grid-area: brand;
}
footer section.footer-info .footer-brand .company-name {
  margin-top: 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  footer section.footer-info .footer-brand .company-name {
    font-size: 1rem;
  }
}
footer section.footer-info .footer-brand address {
  font-style: normal;
}
footer section.footer-info .footer-sitemap {
  grid-area: sitemap;
  -moz-column-count: 3;
       column-count: 3;
}
@media screen and (max-width: 767px) {
  footer section.footer-info .footer-sitemap {
    -moz-column-count: 2;
         column-count: 2;
  }
}
footer section.footer-info .footer-sitemap a {
  color: #B2D7C6;
  text-decoration: none;
}
footer section.footer-info .footer-sitemap ul {
  list-style: none;
}
footer section.footer-info .footer-sitemap ul li {
  font-weight: 500;
  margin-bottom: 0.5rem;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
}
@media screen and (max-width: 767px) {
  footer section.footer-info .footer-sitemap ul li {
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
  }
}
footer section.footer-info .footer-sitemap ul li p {
  margin-bottom: 0.25rem;
}
@media screen and (max-width: 767px) {
  footer section.footer-info .footer-sitemap ul li p {
    font-size: 0.875rem;
    margin-bottom: 0.125rem;
  }
}
footer section.footer-info .footer-sitemap ul li ul li {
  font-weight: 400;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}
@media screen and (max-width: 767px) {
  footer section.footer-info .footer-sitemap ul li ul li {
    margin-bottom: 0.125rem;
  }
}
footer section.footer-info .footer-bottom {
  grid-area: bottom;
  text-align: center;
}

/*--------------------------------
　　PAGE
--------------------------------*/
.breadcrumb {
  display: flex;
  list-style-type: none;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  font-size: 0.75rem;
}
.breadcrumb .breadcrumb-item {
  display: flex;
  white-space: nowrap;
}
.breadcrumb .breadcrumb-item.active {
  overflow: hidden;
}
.breadcrumb .breadcrumb-item.active .breadcrumb-label {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}
.breadcrumb .breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
}
.breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: 0.5rem;
  content: "/";
}
.breadcrumb .breadcrumb-item a {
  color: #3B4043;
}

h1 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #21891F;
  letter-spacing: 0.15rem;
  text-align: center;
  margin-top: 3rem;
}

.feature-point + .feature-point {
  padding-top: 1rem;
}
.feature-point.feature-showcase {
  display: flex;
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .feature-point.feature-showcase {
    flex-direction: column;
  }
}
.feature-point.feature-showcase .feature-text {
  width: 70%;
}
@media screen and (max-width: 767px) {
  .feature-point.feature-showcase .feature-text {
    width: 100%;
  }
}
.feature-point.feature-showcase .feature-text h3 {
  font-size: 2.25rem;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .feature-point.feature-showcase .feature-text h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    margin-top: 1.25rem;
  }
}
.feature-point.feature-showcase figure {
  width: 30%;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .feature-point.feature-showcase figure {
    width: 100%;
  }
}
.feature-point.feature-showcase figure img {
  max-height: 300px;
}
@media screen and (max-width: 767px) {
  .feature-point.feature-showcase figure img {
    max-height: 35dvh;
  }
}
.feature-point .feature-label {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  color: #21891F;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .feature-point .feature-label {
    margin-bottom: 1.5rem;
  }
}
.feature-point .feature-label::before, .feature-point .feature-label::after {
  content: "";
  display: block;
  flex: 1;
  height: 2px;
  background-color: #87C796;
}
.feature-point h3 {
  text-align: center;
  font-size: 2.75rem;
  color: #000;
  margin-bottom: 1.75rem;
}
@media screen and (max-width: 767px) {
  .feature-point h3 {
    font-size: 2rem;
  }
}
.feature-point h3 small {
  display: block;
  font-size: 60%;
}
.feature-point p {
  font-weight: 500;
  line-height: 1.875;
}
.feature-point ul {
  padding-left: 1.5em;
  margin-bottom: 0.5em;
}
.feature-point ol {
  padding-left: 1rem;
  margin: 1.5rem 0;
  font-weight: 500;
}
.feature-point ol li {
  margin-bottom: 0.5rem;
}
.feature-point ol ol {
  padding-left: 1.5rem;
  margin: 0;
  list-style-type: lower-roman;
  font-weight: 400;
}
.feature-point ol ol li {
  margin-bottom: 0;
}
.feature-point .card-grid {
  display: grid;
  gap: 1rem;
}
.feature-point .card-grid.column-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.feature-point .card-grid.column-3 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.feature-point .card {
  background: #FFF;
  padding: 1.5rem;
  border-radius: 8px;
}
.feature-point .card-title {
  font-size: 1rem;
  color: #21891F;
  text-align: center;
  margin-bottom: 1rem;
}
.feature-point .card-text {
  font-size: 0.875rem;
}

.term-explanation {
  background-color: #FFF;
  padding: 1.5rem;
  margin-top: 2rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
}
.term-explanation dt {
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.dl-horizontal {
  display: grid;
  position: relative;
  grid-template-columns: auto 1fr;
  -moz-column-gap: 2.5rem;
       column-gap: 2.5rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .dl-horizontal {
    grid-template-columns: 1fr;
  }
}
.dl-horizontal dt,
.dl-horizontal dd {
  padding: 1rem 0.5rem;
}
.dl-horizontal dt {
  color: #007940;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .dl-horizontal dt {
    padding: 1rem 0.5rem 0.25rem 0.5rem;
  }
}
@media screen and (max-width: 767px) {
  .dl-horizontal dd {
    padding: 0.25rem 0.5rem 1rem 0.5rem;
  }
}
.dl-horizontal dd::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 1rem;
  border-bottom: 1px dotted #87C796;
}
@media screen and (max-width: 767px) {
  .dl-horizontal dd::after {
    height: 1rem;
  }
}
.dl-horizontal dd p {
  line-height: 1.5;
}
.dl-horizontal dd p small {
  font-size: 0.9rem;
  font-weight: 400;
}

/*--------------------------------
　　MODAL
--------------------------------*/
.no-scroll {
  overflow: hidden;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 999;
}
.modal-overlay.show {
  opacity: 1;
  visibility: visible;
}

.modal {
  position: fixed;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%) scale(0.95);
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  background: #fff;
  border-radius: 8px;
  padding-top: 40px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 1000;
}
.modal.show {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}
.modal .modal-close {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 24px;
  line-height: 1;
  border: none;
  background: transparent;
  cursor: pointer;
  color: #333;
}
.modal .modal-close:hover {
  color: #000;
}
.modal #modal-iframe {
  width: 100%;
  height: calc(90vh - 50px);
  border: none;
}/*# sourceMappingURL=common.css.map */