@charset "UTF-8";
/*********************
/BASE
*********************/
html {
  overflow-y: auto;
  scrollbar-gutter: stable;
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
}

body {
  background: #fff;
  color: #282828;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: clamp(0.875rem, 0.4612068966rem + 0.8620689655vw, 1rem);
  overflow-wrap: break-word;
  font-style: normal;
  line-height: 1.7;
}

body.is-fixed {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100dvh;
}

@media screen and (max-width: 599px) {
  .hidden-sp {
    display: none;
  }
}
@media screen and (min-width: 800px) {
  .hidden-sp {
    display: block;
  }
}

@media screen and (min-width: 600px) {
  .hidden-sm {
    display: none;
  }
}

@media screen and (min-width: 800px) {
  .hidden-md {
    display: none;
  }
}

@media screen and (min-width: 1000px) {
  .hidden-lg {
    display: none;
  }
}

@media screen and (min-width: 1220px) {
  .hidden-xl {
    display: none;
  }
}

.spacer {
  display: none;
}
@media screen and (min-width: 800px) {
  .spacer {
    display: inline;
  }
}

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

.link-underline {
  text-decoration: underline;
  text-underline-offset: 2px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.link-underline:hover {
  opacity: 0.7;
}

/*********************
共通
*********************/
.l-inner {
  margin-inline: auto;
  width: 90%;
}
@media screen and (min-width: 800px) {
  .l-inner {
    max-width: 990px;
    width: 90%;
  }
}

.l-inner-pc-small {
  margin-inline: auto;
  width: 92%;
}
@media screen and (min-width: 800px) {
  .l-inner-pc-small {
    max-width: 800px;
  }
}

.text-m {
  color: #282828;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 2;
  font-size: clamp(0.875rem, 0.4612068966rem + 0.8620689655vw, 1rem);
  overflow-wrap: break-word;
  font-style: normal;
  line-height: 1.7;
}
@media screen and (min-width: 800px) {
  .text-m {
    line-height: 1.8;
  }
}

.text-l {
  color: #282828;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.7;
  font-size: clamp(1.25rem, -0.4051724138rem + 3.4482758621vw, 1.75rem);
  overflow-wrap: break-word;
}

.bold {
  font-weight: 700;
}

.flex {
  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 screen and (min-width: 800px) {
  .flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.left {
  text-align: left;
}

@media screen and (min-width: 800px) {
  .reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

/*********************
ANIMATION
*********************/
.fadein {
  opacity: 0;
  -webkit-transition: opacity 1.5s ease-out;
  transition: opacity 1.5s ease-out;
}

.fadein.is-active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.c-fadein-appear {
  opacity: 0;
  -webkit-transition: opacity 3s ease;
  transition: opacity 3s ease;
}
.c-fadein-appear.is-active {
  opacity: 1;
}

/*********************
button
*********************/
.link-main {
  display: grid;
  place-items: center;
  border: 2px solid #008a32;
  padding-block: 8px;
  border-radius: 10px;
  width: 196px;
  height: 54px;
  background-color: #fff;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  position: relative;
  z-index: 0;
}
@media screen and (min-width: 800px) {
  .link-main {
    width: 240px;
    height: 60px;
  }
}

@media screen and (min-width: 800px) {
  .link-main:hover {
    background-color: #008a32;
  }
  .link-main:hover .link-main__text {
    color: #fff;
  }
  .link-main:hover .link-main__icon {
    color: #fff;
  }
}

.link-main__text {
  font-size: clamp(0.875rem, 0.4612068966rem + 0.8620689655vw, 1rem);
  color: #008a32;
  font-weight: 500;
}

.link-main__icon {
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 13px;
  color: #008a32;
  width: 10px;
  height: 24px;
}
@media screen and (min-width: 800px) {
  .link-main__icon {
    width: 13px;
    height: 22px;
  }
}

.link-main__icon svg {
  width: 100%;
}

.text-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

@media screen and (min-width: 800px) {
  .text-link:hover .text-link__icon {
    color: #fff;
    background-color: #008a32;
  }
}

.text-link__text {
  color: #008a32;
  font-size: clamp(0.875rem, 0.4612068966rem + 0.8620689655vw, 1rem);
  font-weight: 500;
}

.text-link__icon {
  display: grid;
  place-items: center;
  color: #008a32;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 2px solid #008a32;
}
@media screen and (min-width: 800px) {
  .text-link__icon {
    width: 30px;
    height: 30px;
  }
}

.text-link__icon svg {
  display: block;
  width: 10px;
  height: 12px;
}
@media screen and (min-width: 800px) {
  .text-link__icon svg {
    width: 10px;
    height: 24px;
  }
}

/*************************************************
header
*************************************************/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: #fff;
  z-index: 100;
}
@media screen and (min-width: 800px) {
  .header {
    height: 80px;
  }
}

.home .header {
  background-color: transparent;
}

.home header.is-scrolled {
  background-color: #fff;
}

.header.is-open {
  background-color: transparent;
}

.header__inner {
  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;
  height: 60px;
  padding-inline: 5% 0;
  margin-inline: auto;
}
@media screen and (min-width: 800px) {
  .header__inner {
    height: 80px;
    padding: 12px 0;
    max-width: 1600px;
    width: 90%;
  }
}

.header__logo {
  position: relative;
  z-index: 51;
}

.header__logo--drawer {
  display: none;
}

@media screen and (min-width: 800px) {
  .header__logo a {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .header__logo a:hover {
    opacity: 0.7;
  }
}

.header__logo img {
  width: 218px;
  height: auto;
}
@media screen and (min-width: 800px) {
  .header__logo img {
    width: 274px;
  }
}

.header-nav__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 800px) {
  .header-nav__lists {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 32px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    z-index: 0;
  }
}

.header-nav__list {
  width: 100%;
}
@media screen and (min-width: 800px) {
  .header-nav__list {
    width: auto;
    position: relative;
    z-index: 0;
  }
}

@media screen and (min-width: 800px) {
  .header-nav__list:hover > .header-subnav__lists,
  .header-nav__list:focus-within > .header-subnav__lists {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (min-width: 800px) {
  .header-nav__list--blank {
    margin-right: -32px;
  }
}

.header-nav__list--blank .header-nav__link-text-ja {
  position: relative;
  z-index: 0;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 800px) {
  .header-nav__list--blank .header-nav__link-text-ja {
    display: none;
  }
}

.header-nav__list--blank .header-nav__link-text-ja::after {
  display: block;
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -24px;
  width: 17px;
  height: 17px;
  background: url(../images/common/icon-link.svg) no-repeat center center/contain;
}

.header-nav__link {
  display: block;
  padding-block: 10px;
  border-bottom: 1px solid #b4b4b4;
  padding-inline: 6%;
}
@media screen and (min-width: 800px) {
  .header-nav__link {
    padding-block: 0;
    padding-inline: 0;
    border-bottom: none;
  }
}

@media screen and (min-width: 800px) {
  .header-nav__link:hover .header-nav__link-text-ja {
    color: #008a32;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .header-nav__link:hover .header-subnav__lists {
    display: block;
  }
}

.header-nav__link-text-ja {
  color: #282828;
  font-size: 16px;
  font-weight: 500;
}
@media screen and (min-width: 800px) {
  .header-nav__link-text-ja {
    font-size: 15px;
  }
}

.header-subnav__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-bottom: 1px solid #b4b4b4;
  padding-block: 4px;
}
@media screen and (min-width: 800px) {
  .header-subnav__lists {
    gap: 8px;
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform: translate(-50%, 8px);
            transform: translate(-50%, 8px); /* X: -50%, Y: 8px */
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: auto;
    min-width: 220px;
    padding: 20px;
    border-radius: 10px;
    background-color: #fff;
    display: none;
    overflow: visible;
    z-index: 52;
  }
}

.header-subnav__lists::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: #fff;
}

.header-subnav__lists::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -10px;
  height: 10px;
}

.header-subnav__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  padding-block: 6px;
  padding-inline: 7%;
}
@media screen and (min-width: 800px) {
  .header-subnav__link {
    padding-block: 0;
    padding-inline: 0;
    gap: 7px;
  }
}

.header-subnav__link-icon svg {
  width: 9px;
  color: #008a32;
}

.header-subnav__link-text {
  font-size: 16px;
  font-weight: 500;
}

/*********************
drawer
*********************/
/* PC表示 */
.header-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
@media (max-width: 800px) {
  .header-nav {
    display: none;
  }
}

/* SP表示（ドロワー開いたら表示） */
.header-nav.is-open {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  padding-top: 60px;
  width: 100vw;
  height: 100dvh;
  z-index: 50;
  padding: 77px 20px;
  background: rgba(255, 255, 255, 0.9);
}

.header-nav.is-open .header-nav__lists {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media screen and (min-width: 800px) {
  .header__open {
    display: none;
  }
}

.drawer-icon__wrapper {
  background: transparent;
  padding: 10px;
  width: 60px;
  height: 60px;
  background-color: #008a32;
  display: grid;
  place-items: center;
  border: none;
  cursor: pointer;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  position: relative;
  z-index: 51;
}
.drawer-icon__wrapper.is-checked .drawer-icon {
  width: 30px;
  height: 20px;
}
.drawer-icon__wrapper.is-checked .drawer-icon__bar {
  background-color: #fff;
}
.drawer-icon__wrapper.is-checked .drawer-icon__bar:nth-of-type(1) {
  top: 10px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.drawer-icon__wrapper.is-checked .drawer-icon__bar:nth-of-type(2) {
  display: none;
}
.drawer-icon__wrapper.is-checked .drawer-icon__bar:nth-of-type(3) {
  top: 10px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media screen and (min-width: 800px) {
  .drawer-icon__wrapper {
    display: none;
  }
}

.drawer-icon {
  width: 30px;
  height: 20px;
  position: relative;
  z-index: 51;
}

.drawer-icon__bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: #fff;
  -webkit-transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear, -webkit-transform 0.3s linear;
}
.drawer-icon__bar:nth-of-type(2) {
  top: 10px;
}
.drawer-icon__bar:nth-of-type(3) {
  top: 19px;
}

/*********************
footer
*********************/
.footer {
  background-color: #dcdcdc;
  padding-block: clamp(1.625rem, -2.9267241379rem + 9.4827586207vw, 3rem);
}

@media screen and (min-width: 800px) {
  .footer__content {
    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;
    gap: 24px;
  }
}

.footer-company {
  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;
}
@media screen and (min-width: 800px) {
  .footer-company {
    width: 35.3535353535%;
  }
}

.footer-logo {
  margin-bottom: 20px;
}
@media screen and (min-width: 800px) {
  .footer-logo {
    margin-bottom: 28px;
  }
}

.footer-logo img {
  width: 274px;
  height: 54px;
}
@media screen and (min-width: 800px) {
  .footer-logo img {
    width: 335px;
    height: 66px;
  }
}

.footer-company__text--email {
  margin-top: 4px;
  padding-left: 8px;
}
@media screen and (min-width: 800px) {
  .footer-company__text--email {
    padding-left: 12px;
  }
}

.footer-company__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px;
  padding-left: 20px;
}
@media screen and (min-width: 800px) {
  .footer-company__contact {
    padding-left: 24px;
  }
}

.footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 800px) {
  .footer-nav {
    width: 41.4141414141%;
  }
}

.footer-nav__lists {
  display: none;
}
@media screen and (min-width: 800px) {
  .footer-nav__lists {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 24px;
  }
}

.footer-nav__col {
  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;
}

.footer-nav__col:nth-child(2) {
  padding-right: 60px;
}

.footer-nav__link {
  font-weight: 500;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

@media screen and (min-width: 800px) {
  .footer-nav__link:hover {
    color: #008a32;
  }
}

.footer-subnav__lists {
  margin-top: 8px;
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 8px;
}

.footer-subnav__link {
  font-weight: 500;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 6px;
}

@media screen and (min-width: 800px) {
  .footer-subnav__link:hover {
    color: #008a32;
  }
}

.footer-subnav__link-icon svg {
  width: 9px;
  color: #008a32;
}

.footer__copyright_wrapper {
  margin-top: clamp(1.5rem, -2.6379310345rem + 8.6206896552vw, 2.75rem);
  text-align: right;
}

.footer__copyright {
  font-size: 14px;
  font-weight: 500;
}

/*********************
top 共通
*********************/
.t-section__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: clamp(0.5rem, -2.8103448276rem + 6.8965517241vw, 1.5rem);
}

.t-section__title-en {
  color: #008a32;
  font-size: clamp(2.125rem, -2.0129310345rem + 8.6206896552vw, 3.375rem);
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 380px) {
  .t-section__title-en {
    font-size: 30px;
  }
}

.t-section__title-ja {
  font-size: clamp(0.875rem, 0.4612068966rem + 0.8620689655vw, 1rem);
  font-weight: 500;
}
@media screen and (max-width: 380px) {
  .t-section__title-ja {
    font-size: 12px;
    padding-bottom: 2px;
  }
}

.t-section__text {
  margin-top: clamp(1.25rem, -4.5431034483rem + 12.0689655172vw, 3rem);
}

/*********************
daiei-hd
*********************/
.daiei-hd-link {
  position: relative;
  z-index: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

@media screen and (min-width: 800px) {
  .daiei-hd-link:hover {
    color: #008a32;
  }
}

.daiei-hd-link::after {
  display: block;
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -24px;
  width: 17px;
  height: 17px;
  background: url(../images/common/icon-link.svg) no-repeat center center/contain;
}

/*********************
top
*********************/
.mv {
  position: relative;
  top: 0;
  width: 100vw;
  height: auto;
  overflow: hidden;
  background: #e4f5e1;
  background: -webkit-gradient(linear, left top, right top, from(rgb(228, 245, 225)), to(rgb(130, 210, 160)));
  background: linear-gradient(90deg, rgb(228, 245, 225) 0%, rgb(130, 210, 160) 100%);
}

.mv__image {
  width: 100%;
  height: 100%;
}

.mv__image img {
  display: block;
  inset: 0;
  width: 100vw;
  height: auto;
  z-index: 0;
}
@media screen and (min-width: 1000px) {
  .mv__image img {
    max-width: 1800px;
    margin-inline: auto;
    aspect-ratio: 1800/776;
  }
}

.mv__inner {
  position: absolute;
  inset: 0;
  z-index: 1;
}
@media screen and (min-width: 1000px) {
  .mv__inner {
    max-width: 1800px;
  }
}

.mv__leads {
  position: absolute;
  top: 46%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 7%;
  z-index: 2;
  width: 90%;
}
@media screen and (min-width: 1600px) {
  .mv__leads {
    left: 10%;
  }
}
@media screen and (max-width: 1200px) {
  .mv__leads {
    top: 50%;
    left: 5%;
  }
}
@media screen and (max-width: 599px) {
  .mv__leads {
    top: 44%;
    left: 0;
  }
}

.mv__lead {
  font-size: clamp(2.5rem, -1.6379310345rem + 8.6206896552vw, 3.75rem);
  color: #fff;
  font-weight: 700;
  text-shadow: 0px 0px 6px rgba(130, 210, 160, 0.6);
  -webkit-filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.15));
          filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.15));
  mix-blend-mode: multiply;
  line-height: 1.4;
}
@media screen and (min-width: 1600px) {
  .mv__lead {
    font-size: 72px;
  }
}
@media screen and (max-width: 1200px) {
  .mv__lead {
    font-size: 40px;
  }
}
@media screen and (max-width: 600px) {
  .mv__lead {
    font-size: 25px;
  }
}

.mv__text {
  margin-top: 8px;
  font-size: clamp(0.625rem, -0.6163793103rem + 2.5862068966vw, 1rem);
}
@media screen and (min-width: 800px) {
  .mv__text {
    margin-top: 27px;
  }
}

.t-service {
  background-color: #f5f5f5;
  padding-top: clamp(3rem, -3.6206896552rem + 13.7931034483vw, 5rem);
  padding-bottom: clamp(4rem, -5.9310344828rem + 20.6896551724vw, 7rem);
}

.t-service__items {
  margin-top: clamp(1.5rem, -5.1206896552rem + 13.7931034483vw, 3.5rem);
  gap: 56px;
}
@media screen and (min-width: 800px) {
  .t-service__items {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 12px;
  }
}

@media screen and (min-width: 800px) {
  .t-service-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 1;
            flex: 0 0 1;
  }
}

@media screen and (min-width: 800px) {
  .t-service-item:hover .t-service-item__image img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .t-service-item:hover .t-service-item__title,
  .t-service-item:hover .t-service-item__text {
    color: #008a32;
  }
}

.t-service-item__image {
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.t-service-item__image img {
  display: block;
  width: 100%;
}
@media screen and (min-width: 800px) {
  .t-service-item__image img {
    width: 310px;
    height: auto;
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    will-change: transform;
  }
}

.t-service-item__icon-arrow {
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background: rgba(40, 40, 40, 0.9);
  display: grid;
  place-items: center;
}

.t-service-item__icon-arrow svg {
  display: block;
  color: #fff;
  width: 10px;
  height: 24px;
}
@media screen and (min-width: 800px) {
  .t-service-item__icon-arrow svg {
    width: 10px;
    height: 24px;
  }
}

.t-service-item__title {
  margin-top: clamp(0.75rem, -1.7327586207rem + 5.1724137931vw, 1.5rem);
  font-size: clamp(1.25rem, 0.8362068966rem + 0.8620689655vw, 1.375rem);
  font-weight: 500;
}

.t-service-item__text {
  margin-top: 8px;
}

.t-about {
  padding-top: clamp(3rem, -0.3103448276rem + 6.8965517241vw, 4rem);
  min-height: 510px;
}
@media screen and (min-width: 800px) {
  .t-about {
    max-height: 500px;
  }
}

.t-about__content.flex {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 16px;
}
@media screen and (min-width: 800px) {
  .t-about__content.flex {
    gap: 0;
  }
}

.t-about__description {
  width: 100%;
}
@media screen and (min-width: 800px) {
  .t-about__description {
    padding-top: 24px;
    width: 46.4646464646%;
  }
}

.t-about__link-wrapper {
  margin-top: clamp(1.5rem, -0.1551724138rem + 3.4482758621vw, 2rem);
}

.t-about__image {
  margin-top: 32px;
  margin-inline: calc(50% - 50vw);
  width: 100vw;
}
@media screen and (min-width: 800px) {
  .t-about__image {
    margin-top: 0;
    margin-left: auto;
    margin-right: calc((100vw - 100%) / -2);
    width: 73%;
    width: min(73vw, 1600px);
    max-width: none;
  }
}
@media (min-width: 1600px) {
  .t-about__image {
    /* 右端ピタリを解除して右に余白をつくる */
    margin-inline: 0; /* ← 基本の全幅は解除 */
    margin-left: calc(50% - 495px); /* ← .l-inner(990px) の左端位置 */
    margin-right: 0; /* ← 右端ピタ解除、余白が右側に生まれる */
    width: 720px; /* ← 幅は頭打ち */
  }
}

.t-about__image img {
  display: block;
  width: 100%;
  height: auto;
}

.t-csr {
  margin-top: -18px;
  margin-bottom: clamp(4rem, -5.9310344828rem + 20.6896551724vw, 7rem);
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 800px) {
  .t-csr {
    margin-top: 0px;
  }
}

.t-csr__content.flex {
  background-color: #d9ffbe;
  border-radius: 10px;
  padding-block: clamp(2rem, -2.9655172414rem + 10.3448275862vw, 3.5rem);
  padding-inline: 6%;
}
@media screen and (min-width: 800px) {
  .t-csr__content.flex {
    margin-top: -60px;
    padding-inline: 9.0909090909%;
    padding-block: 56px;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.t-csr__description {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (min-width: 800px) {
  .t-csr__description {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 61.7794486216%;
  }
}

.t-csr__text {
  margin-top: 32px;
}

.t-csr__link-wrapper {
  margin-top: clamp(1.5rem, -0.1551724138rem + 3.4482758621vw, 2rem);
  margin-right: auto;
}
@media screen and (min-width: 800px) {
  .t-csr__link-wrapper {
    margin-right: 0;
  }
}

.t-csr__link-wrapper .link-main {
  background-color: transparent;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.t-csr__link-wrapper .link-main:hover {
  background-color: #008a32;
}

.t-news {
  background-color: #ebffef;
  padding-top: clamp(3rem, -3.6206896552rem + 13.7931034483vw, 5rem);
  padding-bottom: clamp(4rem, -5.9310344828rem + 20.6896551724vw, 7rem);
}

.t-news__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 16px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.t-news__content {
  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;
  width: 100%;
}

.t-news-link__wrapper {
  margin-top: 32px;
  display: block;
}

.t-news-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 24px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media screen and (min-width: 800px) {
  .t-news-link:hover {
    opacity: 0.5;
  }
}

.t-news-link .icon-link {
  color: #008a32;
}

.t-news-link__text {
  color: #008a32;
}

.t-contact {
  padding-top: clamp(3rem, -0.3103448276rem + 6.8965517241vw, 4rem);
}
@media screen and (min-width: 800px) {
  .t-contact {
    padding-top: 12px;
    overflow-y: hidden;
  }
}

@media screen and (min-width: 800px) {
  .t-contact__content {
    max-height: 432px;
  }
}

.t-contact__title {
  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 screen and (min-width: 800px) {
  .t-contact__title {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
}

@media screen and (min-width: 800px) {
  .t-contact__description {
    margin-right: -88px;
  }
}

@media screen and (min-width: 800px) {
  .t-contact__text {
    white-space: nowrap;
  }
}

.t-contact__link-wrapper {
  margin-top: 40px;
}
@media screen and (min-width: 800px) {
  .t-contact__link-wrapper {
    margin-top: 14px;
  }
}

.t-contact__tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding-inline: 10%;
  padding-block: clamp(0.5rem, -1.1551724138rem + 3.4482758621vw, 1rem);
  background-color: #ebffef;
  border: 1px solid #d9f1d9;
  border-radius: 10px;
  width: 100%;
  max-width: 500px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media screen and (min-width: 800px) {
  .t-contact__tel {
    padding-inline: 41px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 100%;
  }
}

@media screen and (min-width: 800px) {
  .t-contact__tel:hover {
    color: #008a32;
  }
}

.t-contact__tel img {
  width: 37px;
  height: 37px;
}
@media screen and (min-width: 800px) {
  .t-contact__tel img {
    width: 60px;
    height: 60px;
  }
}

.t-contact__tel-text {
  font-size: clamp(2.0625rem, -1.661637931rem + 7.7586206897vw, 3.1875rem);
}
@media screen and (max-width: 599px) {
  .t-contact__tel-text {
    font-size: 28px;
  }
}

.t-contact__image {
  margin-top: -24px;
  margin-inline: calc(50% - 50vw);
  width: 100vw;
}
@media screen and (min-width: 800px) {
  .t-contact__image {
    margin-top: 0;
    margin-inline: -60px auto;
    width: 57.0707070707%;
  }
}

.t-contact__image img {
  aspect-ratio: 683/418;
}
@media screen and (min-width: 800px) {
  .t-contact__image img {
    aspect-ratio: 565/418;
  }
}

/*********************
下層　共通
*********************/
.main {
  margin-top: 60px;
}
@media screen and (min-width: 800px) {
  .main {
    margin-top: 80px;
  }
}

.main.top {
  margin-top: 0;
}

.page-head {
  background: #82d2a0;
  background: -webkit-gradient(linear, left top, right top, from(rgb(130, 210, 160)), color-stop(50%, rgb(193, 240, 208)), to(rgb(240, 255, 240)));
  background: linear-gradient(90deg, rgb(130, 210, 160) 0%, rgb(193, 240, 208) 50%, rgb(240, 255, 240) 100%);
  width: 100vw;
  height: 120px;
}
@media screen and (min-width: 800px) {
  .page-head {
    height: 210px;
  }
}

.page-head__inner {
  height: 100%;
  position: relative;
  z-index: 0;
}

.page-head__title {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
}

.page-head__title--en {
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  font-size: clamp(2.1875rem, -1.7435344828rem + 8.1896551724vw, 3.375rem);
  line-height: 1.4;
  text-shadow: 0px 0px 6px rgba(130, 210, 160, 0.6);
  -webkit-filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.15));
          filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.15));
  mix-blend-mode: multiply;
}

.page-head__title--ja {
  font-size: clamp(0.875rem, 0.4612068966rem + 0.8620689655vw, 1rem);
  font-weight: 500;
  text-shadow: 0px 0px 6px rgba(130, 210, 160, 0.6);
}

@media screen and (min-width: 800px) {
  .p-page-lead {
    max-height: 473px;
  }
}

.p-page-lead__content {
  margin-top: 50px;
}
@media screen and (min-width: 800px) {
  .p-page-lead__content {
    margin-top: 0;
  }
}

@media screen and (min-width: 800px) {
  .p-page-lead__description {
    width: 57.5757575758%;
  }
}

.p-page-lead__text {
  margin-top: clamp(1rem, -0.6551724138rem + 3.4482758621vw, 1.5rem);
  font-size: clamp(1rem, 0.5862068966rem + 0.8620689655vw, 1.125rem);
  line-height: 1.8;
}

.p-page-lead__image {
  margin-top: 60px;
  margin-inline: calc(50% - 50vw);
  width: 100vw;
}
@media screen and (min-width: 800px) {
  .p-page-lead__image {
    margin-top: 0;
    margin-inline: -70px auto;
    width: 57.0707070707%;
  }
}

.p-page-lead__image img {
  aspect-ratio: 565/424;
}
@media screen and (min-width: 800px) {
  .p-page-lead__image img {
    aspect-ratio: 565/470;
  }
}

.c-base__content {
  margin-top: 40px;
  text-align: center;
}

.c-base__button-wrapper {
  margin-block: 24px;
}
.c-base__button-wrapper .link-main {
  margin-inline: auto;
}
@media screen and (min-width: 800px) {
  .c-base__button-wrapper {
    margin-block: 40px;
  }
}

/*********************
c-breadcrumb
*********************/
.c-breadcrumb {
  padding-top: clamp(1rem, -0.6551724138rem + 3.4482758621vw, 1.5rem);
  width: 100%;
}

.c-breadcrumb__inner {
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  overflow: hidden;
}

.c-breadcrumb__list {
  font-size: clamp(0.75rem, 0.5431034483rem + 0.4310344828vw, 0.8125rem);
  white-space: nowrap;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.c-breadcrumb__list:last-child {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0; /* ← Safari 対策*/
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.c-breadcrumb__link {
  font-size: clamp(0.8125rem, 0.6056034483rem + 0.4310344828vw, 0.875rem);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.c-breadcrumb__link:hover {
  color: #008a32;
}

.c-breadcrumb__list:after {
  content: ">";
  margin: 0 0.5em;
}

.c-breadcrumb__list:last-child::after {
  content: none;
}

/*********************
p-service
*********************/
#js-works {
  scroll-margin-top: 60px;
}
@media screen and (min-width: 800px) {
  #js-works {
    scroll-margin-top: 80px;
  }
}

.p-service__image {
  margin-top: clamp(1.5rem, -5.9482758621rem + 15.5172413793vw, 3.75rem);
}
@media screen and (min-width: 800px) {
  .p-service__image {
    margin-top: 0;
  }
}

.p-service__content {
  padding-bottom: clamp(6.25rem, 2.1120689655rem + 8.6206896552vw, 7.5rem);
}

.p-service-search {
  margin-top: clamp(3rem, -2.7931034483rem + 12.0689655172vw, 4.75rem);
}

.p-works-filter {
  display: grid;
  gap: 8px 20px;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (min-width: 800px) {
  .p-works-filter {
    gap: 20px;
    grid-template-columns: repeat(4, 1fr);
  }
}

.p-works-filter__list {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border: 2px solid #008a32;
  border-radius: 10px;
  background-color: #fff;
  display: grid;
  place-items: center;
  min-height: 54px;
  position: relative;
}
@media screen and (min-width: 800px) {
  .p-works-filter__list {
    min-height: 60px;
  }
}

.p-works-filter__list button {
  width: 100%;
  height: 100%;
}

.p-works-filter__list:has(.p-works-filter__btn.is-current) {
  background-color: #008a32;
}
.p-works-filter__list:has(.p-works-filter__btn.is-current) .p-works-filter__icon {
  color: #fff;
}

.p-works-filter__btn {
  color: #008a32;
  font-weight: 500;
  line-height: 1.3;
}

.p-works-filter__btn.is-current {
  color: #fff;
}
.p-works-filter__btn.is-current .p-works-filter__icon {
  color: #fff;
}

.p-works-filter__icon {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 7%;
  width: 13px;
  height: 14px;
  color: #008a32;
}

.p-works-filter__icon svg {
  display: block;
}

.p-works-items {
  margin-top: 96px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 800px) {
  .p-works-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 56px;
    -webkit-column-gap: 24px;
       -moz-column-gap: 24px;
            column-gap: 24px;
  }
}

.p-works-item__image img {
  width: 100%;
}

.p-works-item__cat {
  margin-top: 14px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  width: 143px;
  padding-block: 2px;
  border-radius: 5px;
  display: grid;
  place-items: center;
}

.p-works-item__cat.is-paving {
  background-color: #59b1ef;
}

.p-works-item__cat.is-paving-landscape {
  background-color: #74dd95;
}

.p-works-item__cat.is-paving-maintenance {
  background-color: #ff9b5b;
}

.p-works-item__title {
  margin-top: clamp(0.5rem, -0.3275862069rem + 1.724137931vw, 0.75rem);
  font-size: clamp(1rem, 0.5862068966rem + 0.8620689655vw, 1.125rem);
  font-weight: 500;
  line-height: 1.3;
  min-height: 3.4em;
  padding-bottom: 8px;
  border-bottom: 1px solid #008a32;
}

.p-works-item__detail {
  margin-top: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-works-item__detail-title {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 80px;
}

/*********************
p-about
*********************/
.p-about-overview,
.p-service__content {
  margin-top: 140px;
}
@media screen and (min-width: 800px) {
  .p-about-overview,
  .p-service__content {
    margin-top: 122px;
  }
}

.p-section__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: clamp(0.5rem, -2.8103448276rem + 6.8965517241vw, 1.5rem);
  padding-left: 8px;
  border-left: 10px solid #008a32;
}

.p-section__title--en {
  color: #008a32;
  font-size: clamp(2rem, 0.7586206897rem + 2.5862068966vw, 2.375rem);
  font-weight: 500;
  line-height: 0.9;
}

.p-section__title--ja {
  font-size: clamp(0.875rem, 0.4612068966rem + 0.8620689655vw, 1rem);
  font-weight: 500;
  line-height: 1;
}

.p-section__content {
  margin-top: clamp(2.5rem, -2.4655172414rem + 10.3448275862vw, 4rem);
  max-width: 800px;
  margin-inline: auto;
}

.p-section + .p-section {
  margin-top: clamp(6.25rem, -6.1637931034rem + 25.8620689655vw, 10rem);
}

.p-about-overview__content .dl-lists,
.p-about-history__content .dl-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(1.5rem, -0.1551724138rem + 3.4482758621vw, 2rem);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
}
.p-about-overview__content .dl-list-dl,
.p-about-history__content .dl-list-dl {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (min-width: 800px) {
  .p-about-overview__content .dl-list-dl,
  .p-about-history__content .dl-list-dl {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.p-about-overview__content .dl-list-dt,
.p-about-history__content .dl-list-dt {
  color: #008a32;
  font-weight: 500;
}
@media screen and (min-width: 800px) {
  .p-about-overview__content .dl-list-dt,
  .p-about-history__content .dl-list-dt {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 98px;
            flex: 0 0 98px;
  }
}
.p-about-overview__content .dl-list-dd,
.p-about-history__content .dl-list-dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  z-index: 0;
  padding-left: clamp(1.875rem, -47.7801724138rem + 103.4482758621vw, 16.875rem);
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  min-width: 0;
}
@media screen and (min-width: 800px) {
  .p-about-overview__content .dl-list-dd,
  .p-about-history__content .dl-list-dd {
    white-space: nowrap;
  }
}
.p-about-overview__content .dl-list-dd::before,
.p-about-history__content .dl-list-dd::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 0;
  width: clamp(1.25rem, -40.1293103448rem + 86.2068965517vw, 13.75rem);
  border-bottom: 1px solid #969696;
}
@media screen and (min-width: 800px) {
  .p-about-overview__content .dl-list-dd::before,
  .p-about-history__content .dl-list-dd::before {
    top: 16px;
  }
}
.p-about-overview__content .dl-list-dd--office,
.p-about-history__content .dl-list-dd--office {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.p-about-overview__content .dl-list-dd__text,
.p-about-history__content .dl-list-dd__text {
  white-space: nowrap;
}
.p-about-overview__content .dl-list-dd__link,
.p-about-history__content .dl-list-dd__link {
  font-size: 12px;
  width: 60px;
  height: auto;
  color: #fff;
  border-radius: 5px;
  background-color: #008a32;
  border: 1px solid #008a32;
  display: grid;
  place-items: center;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media screen and (min-width: 800px) {
  .p-about-overview__content .dl-list-dd__link,
  .p-about-history__content .dl-list-dd__link {
    font-size: 14px;
    width: 70px;
  }
  .p-about-overview__content .dl-list-dd__link:hover,
  .p-about-history__content .dl-list-dd__link:hover {
    color: #008a32;
    background-color: #fff;
  }
}
.p-about-overview__content .dl-list-dd__flex,
.p-about-history__content .dl-list-dd__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}

.p-about-business-line__lists {
  counter-reset: outer-counter;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}

.p-about-business-line-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  counter-increment: outer-counter;
}

.p-about-business-line-list::before {
  content: counter(outer-counter) ". ";
  color: #008a32;
  margin-right: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 1em;
}

.p-about-business-line__items {
  margin-top: 8px;
  counter-reset: inner-counter;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: clamp(1.5rem, -0.1551724138rem + 3.4482758621vw, 2rem);
  gap: 4px;
}
@media screen and (min-width: 800px) {
  .p-about-business-line__items {
    display: grid;
    grid-template-rows: repeat(3, auto);
    grid-auto-flow: column;
    gap: 16px 32px;
    gap: 0;
  }
}

.p-about-business-line-item {
  counter-increment: inner-counter;
}

.p-about-business-line-item::before {
  content: counter(inner-counter) ". ";
  margin-right: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: em;
}

.p-about-csr {
  background-color: #ebffef;
  padding-block: clamp(6.25rem, 2.1120689655rem + 8.6206896552vw, 7.5rem);
}

.p-about-csr-boxes.flex {
  margin-top: 40px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 32px;
}
@media screen and (min-width: 800px) {
  .p-about-csr-boxes.flex {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.p-about-csr-box {
  -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;
  width: 100%;
  max-width: 390px;
}
.p-about-csr-box__title {
  color: #008a32;
  font-size: 18px;
  font-weight: 500;
}

.p-about-csr-box__lists {
  margin-top: 12px;
  border: 1px solid #d9f1d9;
  border-radius: 10px;
  background-color: #fff;
  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-block: clamp(1rem, -0.6551724138rem + 3.4482758621vw, 1.5rem);
  padding-inline: clamp(0.75rem, -0.0775862069rem + 1.724137931vw, 1rem);
}
@media screen and (min-width: 800px) {
  .p-about-csr-box__lists {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

/*********************
c-news , p-news
*********************/
.c-news__lists {
  margin-top: clamp(1.5rem, -5.1206896552rem + 13.7931034483vw, 3.5rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-top: 1px solid #969696;
  width: 100%;
}

.p-news__lists {
  margin-top: clamp(3rem, -5.275862069rem + 17.2413793103vw, 5.5rem);
}

.c-news__list.flex {
  gap: 0;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (min-width: 800px) {
  .c-news__list.flex {
    gap: 32px;
  }
}

.c-news-link {
  display: block;
  padding-block: 16px;
  padding-inline: 8px;
  border-bottom: 1px solid #969696;
}
@media screen and (min-width: 800px) {
  .c-news-link {
    padding-block: 24px;
    padding-inline: 28px;
  }
  .c-news-link:hover .c-news-link__title {
    color: #008a32;
  }
}

.c-news-link__date {
  color: #008a32;
  font-size: clamp(1rem, 0.5862068966rem + 0.8620689655vw, 1.125rem);
  font-weight: 500;
}

.c-news-link__title {
  margin-top: 8px;
  letter-spacing: 0.05em;
  font-weight: 400;
  line-height: 1.7;
}
@media screen and (min-width: 800px) {
  .c-news-link__title {
    margin-top: 0;
  }
}

.c-news-link__text {
  margin-top: clamp(0.5rem, -0.3275862069rem + 1.724137931vw, 0.75rem);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.9;
}

.p-news__content {
  padding-bottom: clamp(6.25rem, 2.1120689655rem + 8.6206896552vw, 7.5rem);
}
.p-news__content .pagination {
  margin-top: 64px;
  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;
  gap: clamp(1.25rem, -1.2327586207rem + 5.1724137931vw, 2rem);
}
.p-news__content .page-number {
  display: grid;
  place-items: center;
  width: clamp(2.0625rem, -0.0064655172rem + 4.3103448276vw, 2.6875rem);
  height: clamp(2.0625rem, -0.0064655172rem + 4.3103448276vw, 2.6875rem);
}
.p-news__content .page-numbers {
  color: #282828;
  font-size: 17px;
  font-weight: 500;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #008a32;
  display: grid;
  place-items: center;
}
.p-news__content .page-numbers:hover {
  opacity: 0.5;
}
.p-news__content .page-numbers.current {
  color: #fff;
  background-color: #008a32;
}
@media screen and (min-width: 800px) {
  .p-news__content .page-numbers {
    width: 40px;
    height: 40px;
  }
}
.p-news__content .pagination__prev,
.p-news__content .pagination__next {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
@media screen and (min-width: 800px) {
  .p-news__content .pagination__prev,
  .p-news__content .pagination__next {
    gap: 24px;
  }
}
.p-news__content .pagination__prev svg,
.p-news__content .pagination__next svg {
  width: 13px;
  color: #008a32;
}
.p-news__content .pagination__prev svg:hover,
.p-news__content .pagination__next svg:hover {
  opacity: 0.5;
}

/*********************
single-post
*********************/
.p-news-detail {
  padding-bottom: clamp(4rem, -11.724137931rem + 32.7586206897vw, 8.75rem);
}

.p-news-detail__content {
  margin-top: clamp(4.5rem, -5.8448275862rem + 21.5517241379vw, 7.625rem);
  max-width: 880px;
  margin-inline: auto;
}

.breadcrumb__list-single-post {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  min-width: 0;
}
@media screen and (min-width: 800px) {
  .breadcrumb__list-single-post {
    max-width: 30%;
  }
}

.single-post__title {
  margin-top: 12px;
  font-size: clamp(1.125rem, 0.2974137931rem + 1.724137931vw, 1.375rem);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.1em;
  padding-bottom: clamp(1.5rem, -1.8103448276rem + 6.8965517241vw, 2.5rem);
}
@media screen and (min-width: 800px) {
  .single-post__title {
    line-height: 1.7;
  }
}

.single-post__date {
  color: #008a32;
  font-size: clamp(1.125rem, 0.2974137931rem + 1.724137931vw, 1.375rem);
  font-weight: 500;
}

.single-post__image {
  margin-top: clamp(2.25rem, -7.0603448276rem + 19.3965517241vw, 5.0625rem);
  text-align: center;
}
.single-post__image img {
  width: 500px;
}

.page-nav {
  margin-top: clamp(2.75rem, -4.6982758621rem + 15.5172413793vw, 5rem);
  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;
  position: relative;
  max-width: 288px;
  margin-inline: auto;
}
@media screen and (min-width: 800px) {
  .page-nav {
    max-width: 320px;
  }
}

.page-nav__prev,
.page-nav__next {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 44px;
          flex: 0 0 44px;
}
.page-nav__prev svg,
.page-nav__next svg {
  width: 13px;
}

.page-nav__prev {
  justify-self: start;
}
.page-nav__prev .page-nav-button {
  margin-right: 20px;
}

.page-nav__next {
  justify-self: end;
}
.page-nav__next .page-nav-button {
  margin-left: 20px;
}

.page-nav-button {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 2px solid #008a32;
  border-radius: 50%;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.page-nav-button svg {
  color: #008a32;
}
@media screen and (min-width: 800px) {
  .page-nav-button {
    width: 40px;
    height: 40px;
  }
}

.page-nav-button__wrapper {
  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;
}
@media screen and (min-width: 800px) {
  .page-nav-button__wrapper:hover .page-nav-button {
    background: #008a32;
  }
  .page-nav-button__wrapper:hover .page-nav-button svg {
    color: #fff;
  }
}

.page-nav__top {
  display: block;
  text-align: center;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (min-width: 800px) {
  .page-nav__top:hover span {
    color: #008a32;
  }
}

.page-nav__top-text {
  font-size: clamp(1.125rem, 0.7112068966rem + 0.8620689655vw, 1.25rem);
  font-weight: 500;
}

/*********************
single-postのcontentの中
*********************/
.content-single {
  margin-top: clamp(0.5rem, -6.1206896552rem + 13.7931034483vw, 2.5rem);
  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;
}
.content-single h2 {
  font-size: clamp(1.125rem, 0.7112068966rem + 0.8620689655vw, 1.25rem);
  font-weight: 700;
  line-height: 140%;
}
.content-single h3 {
  font-size: clamp(1rem, 0.5862068966rem + 0.8620689655vw, 1.125rem);
  font-weight: 700;
  line-height: 160%;
}
.content-single h4 {
  font-size: clamp(0.875rem, 0.4612068966rem + 0.8620689655vw, 1rem);
  font-weight: 700;
  line-height: 160%;
  letter-spacing: clamp(0.0625rem, 0.0211206897rem + 0.0862068966vw, 0.075rem);
  padding-bottom: 8px;
}
.content-single ul,
.content-single ol {
  margin-bottom: 24px;
}
.content-single .note-container {
  margin-bottom: 24px;
}
.content-single figure,
.content-single img {
  display: block;
  width: 600px;
  max-width: 100%;
  margin: auto;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.content-single figure {
  margin-top: 60px;
  width: 800px;
  height: auto;
  overflow: hidden;
  margin-bottom: 24px;
}
.content-single figcaption {
  display: none;
}
.content-single table {
  border: solid 1px #ddd;
  border-collapse: collapse;
  margin-bottom: 24px;
}
.content-single tr {
  border-bottom: solid 1px #ddd;
}
.content-single th,
.content-single td {
  padding: 1em;
  border-right: solid 1px #ddd;
}
.content-single ul,
.content-single ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.content-single li {
  font-size: clamp(0.875rem, 0.6681034483rem + 0.4310344828vw, 0.9375rem);
  font-weight: 400;
  line-height: 180%;
  letter-spacing: clamp(0.0625rem, 0.0211206897rem + 0.0862068966vw, 0.075rem);
  display: inline-block;
  padding-left: 24px;
  position: relative;
}
.content-single li::before {
  position: absolute;
  content: "";
  top: 11px;
  left: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #008a32;
  margin-top: 2px;
}
.content-single p {
  font-size: clamp(0.875rem, 0.6681034483rem + 0.4310344828vw, 0.9375rem);
  font-weight: 400;
  line-height: 180%;
  letter-spacing: clamp(0.0625rem, 0.0211206897rem + 0.0862068966vw, 0.075rem);
  margin-bottom: 16px;
}
.content-single strong {
  font-weight: bold;
}
.content-single blockquote {
  margin-bottom: 24px;
}
.content-single blockquote p {
  margin-bottom: 0;
}
.content-single blockquote {
  font-size: clamp(0.875rem, 0.6681034483rem + 0.4310344828vw, 0.9375rem);
  font-weight: 400;
  line-height: 180%;
  letter-spacing: clamp(0.0625rem, 0.0211206897rem + 0.0862068966vw, 0.075rem);
  padding-left: 24px;
  border-left: 1px solid #008a32;
}
.content-single strong {
  font-weight: 700;
}
.content-single a {
  text-decoration: underline;
  text-underline-offset: 2px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.content-single a:hover {
  opacity: 0.7;
}