.btn_green {
  position: absolute;
  left: 50%;
  bottom: 4%;
  transform: translateX(-50%);
  width: 70%;
  max-width: 420px;
  padding: 0.9rem 0;
  background-color: #329a1e;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  border-radius: 999px;
}

@media screen and (min-width: 1040px) {
  .btn_green {
    width: 300px;
    bottom: 119px;
  }
}
.rollover {
  transition: filter 0.1s;
}

.rollover:hover {
  filter: brightness(0.95);
}

html {
  scrollbar-width: none;
}
html::-webkit-scrollbar {
  display: none;
}

.l-hero__left {
  display: none;
}
.l-hero__right {
  display: none;
}
.l-hero__main img {
  display: block;
  width: 100%;
}
@media screen and (min-width: 781px) and (max-width: 1039px) {
  .l-hero {
    display: grid;
    grid-template-columns: 480px 1fr;
    grid-template-areas: "main right";
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
  }
  .l-hero__main {
    grid-area: main;
    overflow-y: auto;
    scrollbar-width: none;
  }
  .l-hero__main::-webkit-scrollbar {
    display: none;
  }
  .l-hero__right {
    display: flex;
    grid-area: right;
    align-items: center;
    overflow: hidden;
    background: #fff;
    border-left: 1px solid #a8d2d1;
  }
}
@media screen and (min-width: 1040px) {
  .l-hero {
    display: grid;
    grid-template-columns: 1fr 480px 1fr;
    grid-template-areas: "left main right";
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
  }
  .l-hero__left {
    display: block;
    grid-area: left;
    overflow: hidden;
  }
  .l-hero__main {
    grid-area: main;
    overflow-y: auto;
    scrollbar-width: none;
  }
  .l-hero__main::-webkit-scrollbar {
    display: none;
  }
  .l-hero__right {
    display: flex;
    grid-area: right;
    align-items: center;
    overflow: hidden;
  }
}

.p-slideshow {
  position: relative;
  width: 100%;
  height: 100%;
}
.p-slideshow__item {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.p-slideshow__item--active {
  opacity: 1;
}
.p-slideshow__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.l-hero__right {
  background-color: #f9fbfa;
}
.l-hero__right .p-menu {
  width: 100%;
  padding: 10%;
}
.l-hero__right .p-menu__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.l-hero__right .p-menu__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 13px 12px 13px 16px;
  border: 1.5px solid #a8d2d1;
  border-radius: 15px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.l-hero__right .p-menu__link:hover {
  background: #6bbdbc;
  border-color: #6bbdbc;
}
.l-hero__right .p-menu__label {
  font-size: 16px;
  color: #6bbdbc;
  line-height: 1.45;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: bold;
  transition: color 0.2s ease;
}
.l-hero__right .p-menu__link:hover .p-menu__label {
  color: #fff;
}
.l-hero__right .p-menu__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border: 1.5px solid #6bbdbc;
  border-radius: 50%;
  color: #6bbdbc;
  font-size: 11px;
  transition: background 0.2s ease, color 0.2s ease;
}
.l-hero__right .p-menu__link:hover .p-menu__icon {
  background: #6bbdbc;
  color: white;
  border: 1.5px solid white;
}

.footer {
  text-align: center;
  padding: 2rem 0 2rem 0;
  margin-top: 0px;
  background-color: #6bbdbc;
}
.footer a {
  color: white;
  text-decoration: none;
}
.footer a:hover {
  text-decoration: underline;
}
.footer .footer_menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  color: white;
}
.footer .footer_menu li {
  margin: 0;
  padding: 0 20px;
  line-height: 1.7;
}
.footer .copyright {
  margin: 0;
  padding: 20px 0 0 0;
}
.footer .footer_menu li:nth-child(2) {
  border-left: 1px solid white;
}
.footer .footer_menu li:nth-child(3) {
  border-left: 1px solid white;
}
@media screen and (min-width: 1040px) {
  .footer {
    padding: 2rem 0 2rem 0;
  }
}