@charset "UTF-8";
/**********************
共通
***********************/
:root {
  --color-main: #52A242;
  --color-base: #333333;
  --color-white: #fff;
  --color-head: #4F662ECC;
  --color-bg: #efeded;
  --color-line: #9D9898;
}

@font-face {
  font-family: "MOBO";
  src: url("./font/MOBO-SemiBold.woff2") format("woff2"), url("./font/MOBO-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  color: var(--color-base);
  line-height: 1.8;
}

body.is-menu-open {
  position: fixed;
  width: 100%;
  overflow: hidden;
}

main {
  position: relative;
  padding-top: 1px;
  background: url(../images/sub_bg.jpg) center/contain;
}
main::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)), url(../images/sub_bg.jpg) center/cover no-repeat;
}
main > * {
  position: relative;
  z-index: 1;
}

section {
  padding-bottom: 80px;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

a {
  display: inline-block;
  width: 100%;
  color: var(--color-base);
  text-decoration: none;
}

.nav a {
  color: var(--color-white);
  font-family: "Lexend Exa", sans-serif;
  font-weight: 700;
  transition: 0.3s;
}
.nav a:hover {
  color: #EDBC32;
}

li {
  list-style: none;
}

.en {
  padding-top: 40px;
  color: var(--color-head);
  font-family: "Lexend Exa", sans-serif;
  font-weight: 800;
  font-size: clamp(2.25rem, 4vw, 4rem);
  text-align: center;
  line-height: 1;
}

.ja {
  color: var(--color-head);
  font-family: "MOBO", "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: clamp(0.75rem, 4vw, 1.25rem);
  text-align: center;
}

.btn__more {
  width: 175px;
  margin-top: 20px;
}
.btn__more a {
  position: relative;
  display: block;
  width: 100%;
  padding: 12px 20px;
  color: var(--color-white);
  font-family: "Lexend Exa", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  text-decoration: none;
  border-radius: 30px;
}
.btn__more a::before {
  content: "";
  position: absolute;
  inset: 1px;
  background: var(--color-main);
  border-radius: inherit;
  z-index: 0;
  transition: transform 0.3s ease;
}
.btn__more a:hover::before {
  transform: scale(1.1);
}
.btn__more a:hover .arrow {
  transform: translate(10px, -50%);
}
.btn__more .text {
  display: block;
}

.text,
.arrow {
  position: relative;
  z-index: 1;
}

.arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  width: 15px;
  height: 2px;
  background-color: var(--color-white);
  transition: transform 0.3s ease;
}
.arrow::before, .arrow::after {
  content: "";
  position: absolute;
  right: 0;
  width: 8px;
  height: 2px;
  background-color: var(--color-white);
}
.arrow::before {
  top: -3px;
  transform: rotate(45deg);
}
.arrow::after {
  top: 3px;
  transform: rotate(-45deg);
}

.btn__more.white a {
  color: var(--color-main);
  border: 1px solid var(--color-main);
}
.btn__more.white a::before {
  background: var(--color-white);
}
.btn__more.white .arrow {
  background-color: var(--color-main);
}
.btn__more.white .arrow::before, .btn__more.white .arrow::after {
  background-color: var(--color-main);
}

.btn__arrow {
  position: relative;
  width: 40px;
  height: 40px;
  background: var(--color-main);
  border-radius: 50px;
  transition: 0.3s;
}
.btn__arrow a {
  height: 100%;
}
.btn__arrow .arrow {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.swiper__button {
  display: flex;
  align-items: center;
  gap: 35px;
  margin-top: 20px;
}
.swiper__button .btn__more {
  margin-top: 0;
}

.swiper__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100px;
  padding-block: 5px;
  background: var(--color-white);
  border-radius: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.swiper__nav .swiper-button-prev::after,
.swiper__nav .swiper-button-next::after {
  content: none;
}
.swiper__nav .swiper-button-prev,
.swiper__nav .swiper-button-next {
  position: relative;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.swiper__nav .swiper-button-prev::before,
.swiper__nav .swiper-button-next::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 2px;
  background: var(--color-main);
}
.swiper__nav .swiper-button-prev::after,
.swiper__nav .swiper-button-next::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--color-main);
  border-right: 2px solid var(--color-main);
}
.swiper__nav .swiper-button-prev::before {
  transform: translateX(2px);
}
.swiper__nav .swiper-button-prev::after {
  transform: rotate(-135deg);
  left: 8px;
}
.swiper__nav .swiper-button-next::before {
  transform: translateX(-2px);
}
.swiper__nav .swiper-button-next::after {
  transform: rotate(45deg);
  right: 8px;
}

.top__btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.top__btn.active {
  opacity: 1;
  pointer-events: auto;
}

.fadein {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease, transform 1s ease;
}

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

@media (min-width: 480px) {
  body {
    font-size: 16px;
  }
}
@media (min-width: 1024px) {
  section {
    padding-bottom: 140px;
  }
  .en {
    padding-top: 80px;
  }
  .btn__more {
    width: 230px;
    margin-top: 40px;
  }
  .btn__more a {
    padding: 12px 30px;
    font-size: 1rem;
  }
  .btn__more .arrow {
    right: 50px;
  }
  .top__btn img {
    width: 80px;
    height: 80px;
  }
}
.header {
  position: absolute;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 60px;
  padding: 10px 20px;
}
.header__logo {
  position: relative;
  z-index: 999;
  width: 40px;
  line-height: 0;
}
.header__nav {
  position: fixed;
  top: 10px;
  right: 20px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 20px;
  opacity: 1;
}
.header__nav.active {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.header__nav-pc {
  display: none;
}
.header__nav .toggle {
  display: block;
  position: relative;
  z-index: 99;
  width: 40px;
  height: 40px;
  background: var(--color-main);
  border-radius: 50%;
}
.header__nav .toggle span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 2px;
  background: var(--color-white);
  transition: 0.3s;
}
.header__nav .toggle span:nth-of-type(1) {
  top: 35%;
}
.header__nav .toggle span:nth-of-type(2) {
  top: 63%;
}
.header__nav-sp {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 10px;
  width: 100%;
  height: 100vh;
  padding: 80px 20px;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
.header__nav-sp::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 50px;
  background: url(../images/tree.svg) repeat center/contain;
}
.header__nav-sp li {
  margin-bottom: 20px;
}
.header__nav-sp a {
  color: var(--color-main);
  font-size: 1rem;
}
.header__nav-company {
  padding-top: 15px;
  max-height: 550px;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: #bfc7b3 transparent;
}
.header__nav-company li {
  padding-left: 25px;
  margin-bottom: 10px;
  text-indent: -1em;
}
.header__nav-company a {
  color: #4F662E;
  font-weight: 400;
  font-size: 0.75rem;
}
@media (min-width: 1024px) {
  .header {
    padding: 20px 40px;
    height: 105px;
  }
  .header__logo {
    width: 80px;
  }
  .header .toggle {
    width: 60px;
    height: 60px;
  }
  .header__nav {
    top: 20px;
  }
  .header__nav-pc {
    display: block;
    padding: 20px 60px;
    background: var(--color-main);
    border-radius: 50px;
  }
  .header__nav-pc ul {
    display: flex;
    align-items: center;
    gap: 40px;
  }
  .header__nav-pc ul li a {
    font-size: 1.125rem;
  }
  .header__nav-sp {
    gap: 140px;
    padding-top: 40px;
  }
  .header__nav-sp a {
    font-size: 2.25rem;
  }
  .header__nav-sp li {
    margin-bottom: 40px;
  }
  .header__nav-company {
    max-height: 450px;
  }
  .header__nav-company a {
    font-size: 1rem;
  }
  .header__nav-company li {
    margin-bottom: 10px;
  }
}

.open .header__nav-sp {
  opacity: 1;
  visibility: visible;
}

.open .header__nav-pc {
  opacity: 0;
  visibility: hidden;
}

.open .bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  height: 100vh;
  background: rgba(217, 217, 217, 0.9490196078);
  border-radius: 10px;
}

.open .toggle span:nth-of-type(1) {
  top: 50%;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  z-index: 999;
}

.open .toggle span:nth-of-type(2) {
  top: 50%;
  left: 50%;
  transform: translateX(-50%) rotate(-45deg);
  z-index: 999;
}

.footer {
  position: relative;
  padding-top: 10px;
  color: var(--color-white);
  background: url("../images/bg.webp") center/cover no-repeat;
}
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(115, 161, 60, 0.8);
  z-index: 0;
  pointer-events: none;
}
.footer > * {
  position: relative;
  z-index: 1;
}
.footer a {
  color: var(--color-white);
}
.footer__icon {
  width: 100%;
  margin-top: -25px;
  aspect-ratio: 389/219;
  background: url(../images/footer_bg.webp) no-repeat center/cover;
}
.footer__adress {
  margin-block: 40px;
}
.footer__adress > p:not(.footer__logo) {
  margin-bottom: 10px;
}
.footer__adress-name {
  font-weight: 700;
  font-size: 1rem;
}
.footer__adress .no-break {
  white-space: nowrap;
}
.footer__adress-map {
  position: relative;
  padding-left: 20px;
  font-weight: 700;
}
.footer__adress-map span {
  border-bottom: 1px solid var(--color-white);
}
.footer__adress-map::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(../images/map-pin.svg) no-repeat center/contain;
}
.footer__logo {
  width: 250px;
  margin: 20px 0;
}
.footer__area {
  position: relative;
  padding-inline: 40px;
}
.footer__area nav {
  margin-bottom: 40px;
  font-family: "Lexend Exa", sans-serif;
  font-weight: 700;
}
.footer__area nav ul {
  display: flex;
  flex-direction: column;
}
.footer__area nav li {
  width: fit-content;
  margin-bottom: 10px;
}
.footer__area nav .mark {
  position: relative;
}
.footer__area nav .mark span {
  content: "";
  position: absolute;
  top: -3px;
  right: -35px;
  width: 25px;
  height: 25px;
  background: url(../images/plus.svg);
}
.footer__leaf span:nth-child(1) {
  position: absolute;
  top: 50%;
  left: 60%;
  width: 30px;
  aspect-ratio: 31/16;
  background: url(../images/leaf.svg) no-repeat center/cover;
}
.footer__leaf span:nth-child(2) {
  position: absolute;
  top: 55%;
  left: 68%;
  width: 25px;
  aspect-ratio: 31/16;
  background: url(../images/leaf.svg) no-repeat center/cover;
}
.footer__modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.footer__modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.footer__modal-inner {
  position: relative;
  width: 90%;
  height: auto;
  max-height: calc(100vh - 40px);
  border-radius: 10px;
  background: url(../images/modal_bg.webp) no-repeat center/cover;
}
.footer__modal-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  background: rgba(217, 217, 217, 0.9019607843);
  border-radius: 10px;
}
.footer__modal-company {
  position: relative;
  z-index: 1;
  padding-block: 20px;
  width: 85%;
  margin: 0 auto;
}
.footer__modal-company li {
  padding-left: 5px;
  margin-bottom: 15px;
}
.footer__modal-company a {
  color: #4F662E;
  font-weight: 700;
}
.footer__modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 35px;
  height: 35px;
  z-index: 2;
  cursor: pointer;
}
.footer__marquee {
  overflow: hidden;
  width: 100%;
}
.footer__label {
  display: inline-block;
  padding-inline: 40px;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.6);
  font-family: "Lexend Exa", sans-serif;
  font-weight: 700;
  font-size: 3.75rem;
  letter-spacing: 0.1em;
  animation: marquee-left 30s linear infinite;
}
@keyframes marquee-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.footer small {
  display: block;
  padding: 10px;
  background: #4F662E;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.625rem;
  text-align: center;
}
@media (min-width: 1024px) {
  .footer__wrapper {
    display: flex;
    align-items: flex-start;
  }
  .footer__icon {
    width: 60%;
    margin-top: -3.8%;
    background: url(../images/footer_bg-pc.webp) no-repeat center/contain;
  }
  .footer__area {
    width: 40%;
  }
  .footer__leaf {
    display: none;
  }
  .footer__modal-inner {
    padding: 40px;
  }
  .footer__modal-company {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 20px;
  }
  .footer__modal-company a {
    transition: 0.3s;
  }
  .footer__modal-company a:hover {
    color: #EDBC32;
  }
  .footer__modal-close {
    width: 50px;
    height: 50px;
  }
  .footer nav ul {
    position: relative;
  }
  .footer nav ul .mark {
    position: absolute;
    top: 0;
    left: 185px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .footer nav ul a {
    transition: 0.3s;
  }
  .footer nav ul a:hover {
    color: #EDBC32;
  }
  .footer small {
    padding: 20px;
    font-size: 0.75rem;
  }
}

.contact {
  padding-bottom: 100px;
}
.contact .en {
  padding-top: 100px;
}
.contact .btn__more {
  margin: 40px auto 0;
}
@media (min-width: 1024px) {
  .contact {
    padding-bottom: 160px;
  }
  .contact .en {
    padding-top: 160px;
  }
}/*# sourceMappingURL=common.css.map */