a{
  text-decoration: none!important;
  transition: opacity 0.25s ease;
}
a:hover{
  opacity: 0.8;
}

:root {
  --color-bg: #f3f7ff;
  --color-surface: #ffffff;
  --color-text: #1f2c3d;
  --color-primary: #2f68c3;
  --color-primary-dark: #1c4c9a;
  --color-accent: #ff5535;
  --color-accent-dark: #de3e20;
  --color-border: #d8e3f5;
  --color-muted: #64748b;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 4px 14px rgba(26, 52, 96, 0.08);
  --shadow-md: 0 10px 26px rgba(26, 52, 96, 0.12);
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
html { scroll-behavior: smooth; }

:target {
  scroll-margin-top: 60px;
}

#top:target {
  scroll-margin-top: 0;
}

body {
  font-family: "Noto Sans JP", "Yu Gothic", "Meiryo", sans-serif;
  color: var(--color-text);
  line-height: 1.7;
  background: #fff;
}

html.is-drawer-open,
body.is-drawer-open {
  overflow: hidden;
}

body.is-drawer-open {
  position: fixed;
  left: 0;
  width: 100%;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }


.container {
  width: min(1240px, calc(100% - 64px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #fff;
  backdrop-filter: saturate(130%) blur(8px);
  transition: box-shadow .25s ease, background-color .25s ease;
}

main {
  padding-top: 70px;
}

.site-header.is-scrolled { box-shadow: 0 6px 18px rgba(15, 37, 73, 0.08); }

.site-header__inner {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  align-self: center;
}

.brand img {
  width: auto;
  max-height: 50px;
}

.global-nav {
  margin-left: auto;
  margin-right: 12px;
}

.header-actions {
  display: flex;
  align-items: stretch;
  gap: 0;
  height: 70px;
}

.header-tel {
  display: inline-flex;
  align-items: center;
  background: #fff;
  /* border: 1px solid #d8e3f5; */
  border-right: 0;
}

.header-tel img {
  display: block;
  height: 80%;
  width: auto;
}

.global-nav__list {
  list-style: none;
  display: flex;
  align-items: stretch;
  gap: 20px;
  height: 70px;
  margin: 0;
  padding: 0;
}

.global-nav__list li {
  display: flex;
  align-items: stretch;
}

.global-nav__list a {
  display: inline-flex;
  align-items: center;
  height: 100%;
  padding: 0 6px;
  font-size: 14px;
  font-weight: 700;
  color: #2f3f59;
  white-space: nowrap;
}

.global-nav__list a:hover { color: var(--color-primary); }

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--color-accent);
  color: #fff !important;
  border-radius: 0;
  padding: 0 18px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
}

.header-cta img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.header-cta:hover { background: var(--color-accent-dark); }

.mobile-header-actions {
  display: none;
  align-items: center;
  justify-content: center;
}

.mobile-header-actions__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: auto;
}

.mobile-header-actions__btn img {
  width: auto;
  height: 100%;
  max-height: 45px;
  object-fit: contain;
}

.menu-toggle {
  display: none;
  border: 0;
  background: #fff;
  width: 44px;
  height: 44px;
  /* border-radius: 50%; */
  padding: 10px;
  /* box-shadow: 0 2px 8px rgba(18, 47, 92, 0.14); */
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: #203556;
}

@media (max-width: 1334px) {
  .site-header__inner {
    align-items: center;
    gap: 10px;
  }

  .global-nav {
    margin-right: 0;
  }

  .global-nav__list {
    gap: 8px;
  }

  .global-nav__list a {
    padding: 0 4px;
    font-size: 12px;
  }

  .global-nav__list .global-nav__item--line {
    display: none !important;
  }

  .header-tel {
    display: none;
  }

  .header-actions {
    order: 4;
    margin-left: 0;
  }

  .mobile-header-actions {
    display: flex;
    order: 3;
    align-items: center;
    gap: 6px;
  }

  .global-nav {
    order: 2;
  }
}

@media (max-width: 1079px) {
  .site-header__inner {
    align-items: center;
  }

  .brand {
    order: 1;
  }

  .global-nav,
  .header-actions {
    display: none;
  }

  .mobile-header-actions {
    display: flex;
    order: 2;
    align-self: center;
    height: 44px;
    gap: 6px;
    margin-left: auto;
  }

  .mobile-header-actions__btn {
    height: 44px;
  }

  .mobile-header-actions__btn img {
    display: block;
    height: 100%;
  }

  .menu-toggle {
    display: inline-flex;
    order: 3;
    align-self: center;
    margin-left: 0;
  }

  main {
    padding-top: 60px;
  }
}

.mobile-drawer__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
  z-index: 98;
}

.mobile-drawer__backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100dvh;
  width: 100%;
  max-width: none;
  background: rgba(0, 0, 0, 0.58);
  color: #1f2c3d;
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform .25s ease, opacity .2s ease, visibility 0s linear .25s;
  padding: 14px 12px 18px;
  z-index: 99;
  overflow-y: auto;
}

.mobile-drawer.is-open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: transform .25s ease, opacity .2s ease;
}

.mobile-drawer__close {
  border: 0;
  background: transparent;
  color: #233a5e;
  font-size: 36px;
  line-height: 1;
  margin: 0;
  display: block;
  cursor: pointer;
}

.mobile-drawer__panel {
  border: 1px solid #c7d1e3;
  border-radius: 10px;
  background: #fff;
  padding: 12px 10px 10px;
}

.mobile-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}

.mobile-drawer__brand {
  display: inline-flex;
  width: 178px;
  max-width: 100%;
  margin-bottom: 0;
}

.mobile-drawer__brand img {
  width: 100%;
  height: auto;
}

.mobile-drawer__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0;
}

.mobile-drawer__list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e8edf7;
  padding: 13px 6px;
  font-size: 16px;
  font-weight: 700;
  color: #223a5c;
}

.mobile-drawer__list a::after {
  content: "";
  width: 9px;
  height: 9px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  flex: 0 0 auto;
}

.mobile-drawer__list--primary .is-current a {
  background: #ebe7d8;
  color: #5f7e24;
}

.mobile-drawer__list--primary .is-current a::after {
  color: #8aa54b;
}

.mobile-drawer__tel,
.mobile-drawer__banner {
  display: block;
  margin-top: 10px;
}

.mobile-drawer__tel img,
.mobile-drawer__banner img {
  width: 100%;
  max-width: 300px;
  margin: auto;
  height: auto;
}

.mobile-drawer__list--secondary {
  margin-top: 16px;
}

.mobile-drawer__list--secondary a {
  font-size: 17px;
  color: #1d3f76;
  border-bottom-color: #d6dce8;
}

.mobile-drawer__cta {
  margin-top: 16px;
  display: block;
  text-align: center;
  background: var(--color-accent);
  color: #fff;
  border-radius: 999px;
  padding: 14px 16px;
  font-weight: 800;
  font-size: 18px;
}

.site-footer {
  background: #5f9b28;
  color: #fff;
  text-align: center;
  padding: 42px 16px;
}

.site-footer p {
  margin: 0 0 8px;
  font-weight: 700;
  font-size: 15px;
}

.footer-link {
  display: inline-block;
  margin-bottom: 8px;
  color: #d4e4ff;
  text-decoration: underline;
}

.site-footer small {
  opacity: 0.9;
  font-size: 12px;
}

.bottom-visual {
  background: url("../images/top/works-section__hero.webp") center / cover no-repeat;
}

.bottom-visual__overlay {
  padding: 130px 0 120px;
  background: rgba(255, 255, 255, 0.22);
}

.bottom-visual__inner {
  max-width: 980px;
  display: grid;
  gap: 22px;
}

.bottom-visual__card {
  background: #fff;
  border-radius: 12px;
  padding: 30px 50px;
  display: grid;
  align-items: center;
  gap: 16px;
}

.bottom-visual__card--company p {
  margin: 0;
  color: #2c2c2c;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 700;
}

.bottom-visual__card--company p strong {
  color: #ff5535;
}

.bottom-visual__inner .works-section__cta {
  margin-top: 0;
  grid-template-columns: 1fr 320px;
}

.bottom-visual__card--company {
  grid-template-columns: 1fr 330px;
}

.bottom-visual__card--company img {
  width: 100%;
  max-width: 270px;
  margin: auto;
  justify-self: end;
}

.subpage-hero {
  position: relative;
  color: #2b3748;
  overflow: hidden;
  padding: 18px 0 10px;
}

.subpage-hero .hero-section__bg-shape {
  display: none;
}

.subpage-hero__inner {
  position: relative;
  z-index: 2;
  min-height: auto;
  padding: 0;
}

.breadcrumb-nav {
  margin-bottom: 10px;
}

.breadcrumb-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 0;
  padding: 0;

  line-height: 1.4;
  color: #6b7280;
}

.breadcrumb-list li{
  font-size: 12px !important;
  font-weight: 300 !important;
}
.breadcrumb-list a{
  font-size: 12px !important;
  font-weight: 600 !important;
}

.breadcrumb-list li + li {
  display: inline-flex;
  align-items: center;
  
}

.breadcrumb-list li + li::before {
  content: ">";
  margin: 0 8px;
  opacity: 0.9;
}

.breadcrumb-list a {
  color: #4b5563;
  text-decoration: none;
}

.subpage-hero__card {
  background: #f6f8ef;
  border-radius: 8px;
  padding: 5em 24px 4em;
}

.subpage-hero__layout {
  display: grid;
  grid-template-columns: clamp(42px, 8vw, 92px) 1fr clamp(42px, 8vw, 92px);
  gap: clamp(12px, 2vw, 28px);
  align-items: end;
}

.subpage-hero__side {
  display: block;
  margin: 0;
}


.subpage-hero__side img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.subpage-hero__main {
  text-align: center;
  align-self: center;
}

.subpage-hero__main p {
  margin: 12px 0 0;
  font-size: 16px;
  line-height: 1.6;
  color: #4b5563;
}

.subpage-hero__title {
  margin: 0;
  font-size: clamp(26px, 3.2vw, 44px);
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #5f9b28;
}
.subpage-hero__back {
  display: block;
  align-items: center;
  justify-content: center;
  margin: 4em auto 0;
  min-width: 220px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #fff;
  color: #1f3760!important;
  font-size: 16px!important;
  font-weight: 800;
  line-height: 1.2;
  box-shadow: 0 6px 14px rgba(31, 55, 96, 0.15)!important;
  text-align: center;
  width: 80%!important;
  max-width: 300px!important;
}


#tree-disposal > .case-section__panel,#weed-control{
  background: #f6f8ef;
}

.kisetu_oteire{
  max-width: 600px;
  width: 90%;
    display: block;
    margin: auto!important;
}

.pageTitle2{
  font-size: 2em;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #5f9b28;
  text-align: center;

}
img.r {
  width: 100%;
  max-width: 220px;
}

.bousou_teian,div.bousou_teian {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  grid-template-areas: "text media";
  align-items: center;
  gap: 24px;
  padding: 2em;
  margin: 2em auto!important;
}
.bousou_teian__text {
  grid-area: text;
}

.bousou_teian__media {
  grid-area: media;
  display: flex;
  justify-content: center;
}

.bousou_teian__text p {
  margin: 1em 0;
}

div#content p {
  margin: 1em 0;
  font-size: 16px;
  line-height: 1.6;
  display: block;
}
.imgFR2{
  display: block;
  margin: 2em auto!important;
}

#content{
  width: 100%;
  max-width: 960px;
  display: block;
  margin: auto!important;
}

.jirei_waku img{
  display: block;
  margin: auto!important;
}

.bousou_box .jirei_waku {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 14px 70px;
  align-items: start;
  margin: 24px 0;
  padding: 20px;
}

.bousou_box .jirei_waku > p {
  grid-column: 1 / -1;
  margin: 0;
}

.bousou_box .jirei_waku > div {
  text-align: center;
}

.bousou_box .jirei_waku > div:nth-of-type(1) {
  position: relative;
}

.bousou_box .jirei_waku > div:nth-of-type(1):after {
  content: "";
  position: absolute;
  top: 50%;
  right: -58px;
  width: 43px;
  height: 43px;
  transform: translateY(-50%);
  background: url("../../images/top/use_next.png") center / contain no-repeat;
}

.bousou_box .jirei_waku > img[src*="/sp/images/common/use_next2.png"] {
  display: none;
}

.bousou_box .jirei_waku .clr {
  display: none;
}

.jirei_waku::after {
  content: "";
  display: block;
  clear: both;
}

.bousou_box{
  width: 100%;
  max-width: 960px;
  display: block;
  margin: 2em auto!important;
}

@media (max-width: 960px) {
  .global-nav__list .global-nav__item--line {
    display: none !important;
  }

  .bousou_teian,div.bousou_teian {
    display: flex;
    flex-direction: column;
  }

  .bousou_box .jirei_waku {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px 12px;
  }

  .bousou_box .jirei_waku > p {
    grid-column: auto;
  }

  .bousou_box .jirei_waku > div:nth-of-type(1):after {
    display: none;
  }

  .bousou_box .jirei_waku > img[src*="/sp/images/common/use_next2.png"] {
    display: block;
    width: 34px;
    margin: 2px auto;
  }
  .bousou_box .jirei_waku > div {
    display: block;
    margin: auto!important;
  }
  
  div#content table {
    width: 100%;
    display: block;
    overflow-x: auto;
    margin: 1em auto;
  }
  .step-list_box {
    padding: 0;
    padding-top:10px;
  }
  .step-list_textbox{
    padding: 0;
    padding-top:10px;
  }
  .step-list_rect{
    margin-left: 10px;
  }
  div.bousou_teian{
    width: 90%;
    margin: 1.5em auto!important;
  }

  div#content p {
    font-size: 14px;
    width: 85%;
    margin: 1em auto;
  }

  .bousou_teian {
    grid-template-columns: 1fr;
    grid-template-areas:
      "media"
      "text";
    gap: 16px;
    padding: 1.5em;
  }

  .bousou_teian__text {
    grid-area: text;
    order: 2;
    width: 100%;
  }

  .bousou_teian__text p {
    width: 100%;
    margin: 0 0 1em;
  }

  .bousou_teian__text p:last-child {
    margin-bottom: 0;
  }

  .bousou_teian__media {
    grid-area: media;
    order: 1;
    display: flex;
    justify-content: center;
    width: 100%;
  }

  img.r {
    width: 100%;
    max-width: 180px;
  }
  
  .subpage-hero__inner {
    padding: 0;
  }

  .breadcrumb-nav {
    margin-bottom: 8px;
  }

  .breadcrumb-list {
    font-size: 12px;
  }

  .subpage-hero__card {
    padding: 16px 10px 12px;
  }
  .subpage-hero__title {
    font-size: clamp(20px, 6.2vw, 27px);
    line-height: 1.35;
  }

  .subpage-hero__back {
    margin-top: 12px;
    min-width: auto;
    padding: 8px 12px;
    font-size: 12px !important;
  }
  .bottom-visual__overlay {
    padding: 44px 0 40px;
  }

  .bottom-visual__card {
    padding: 16px;
    gap: 12px;
  }

  .bottom-visual__card--company p {
    font-size: 13px;
    line-height: 1.6;
  }

  .bottom-visual__inner .works-section__cta,
  .bottom-visual__card--company {
    grid-template-columns: 1fr;
  }
}

.subpage-hero__back--spacer {
  margin-bottom: 5em;
}

.bousou-content {
  width: min(960px, calc(100% - 32px));
  margin: 0 auto;
}

.kiji_list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.kiji_list li + li {
  margin-top: 12px;
}

.kiji_list__link {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr) auto;
  align-items: center;
  gap: 0 16px;
  padding: 12px 14px;
}

.kiji_list__thumb {
  display: block;
  width: 100px;
  height: auto;
}

.kiji_list__body {
  min-width: 0;
}

.kiji_list__title {
  color: #2f3f59;
  font-weight: 700;
  line-height: 1.45;
}

.kiji_list__meta {
  margin-top: 4px;
  color: #2f3f59;
  line-height: 1.2;
}

.kiji_list__meta span {
  font-weight: 700;
}

.kiji_list__arrow {
  color: #2f3f59;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

@media (max-width: 640px) {
  .kiji_list__link {
    grid-template-columns: 84px minmax(0, 1fr) auto;
    gap: 0 12px;
    padding: 10px 12px;
  }

  .kiji_list__thumb {
    width: 84px;
  }

  .kiji_list__title {
    font-size: 14px;
  }

  .kiji_list__meta {
    margin-top: 3px;
    font-size: 14px;
  }

  .kiji_list__arrow {
    font-size: 18px;
  }
}
