body {
  font-size: 62.5%;
  font-family: "Klee One", sans-serif;
}

.is-fixed {
  overflow: hidden;
  width: 100%;
}

ul {
  list-style: none;
}

.mainInner {
  width: 100%;
  max-width: 58%;
  margin: 0 auto;
}
@media screen and (max-width: 1400px) {
  .mainInner {
    max-width: 89%;
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  background-color: #fff;
  width: 100%;
}
header .headerBottom {
  background-color: #fff;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1640px) {
  header .headerBottom {
    padding: 20px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
header .headerBottom .headerTop {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 64px;
  padding-top: 65px;
}
@media screen and (max-width: 1640px) {
  header .headerBottom .headerTop {
    padding: 0 !important;
    position: relative;
    z-index: 1000;
  }
}
header .headerBottom .headerTop .logoArea img {
  width: 100%;
  max-width: 338px;
  display: block;
}
@media screen and (max-width: 768px) {
  header .headerBottom .headerTop .logoArea img {
    width: 210px;
  }
}
header .headerBottom .mainNav {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 7px;
  width: 100%;
}
@media screen and (max-width: 1640px) {
  header .headerBottom .mainNav {
    flex-direction: column-reverse;
    width: auto;
  }
}
header .headerBottom .mainNav .hamberger {
  display: none;
}
@media screen and (max-width: 1640px) {
  header .headerBottom .mainNav .hamberger {
    display: block;
    position: relative;
    z-index: 1000;
  }
  header .headerBottom .mainNav .hamberger:focus-visible {
    outline: 2px solid #333;
    outline-offset: 4px;
  }
  header .headerBottom .mainNav .hamberger span {
    width: 42px;
    height: 3px;
    background-color: #333;
    display: flex;
    transition: all 0.5s;
  }
  header .headerBottom .mainNav .hamberger span:nth-child(1) {
    margin-bottom: 14px;
  }
  header .headerBottom .mainNav .hamberger span:nth-child(2) {
    margin-bottom: 14px;
  }
  header .headerBottom .mainNav .hamberger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
    margin-bottom: 0;
  }
  header .headerBottom .mainNav .hamberger.active span:nth-child(2) {
    opacity: 0;
  }
  header .headerBottom .mainNav .hamberger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(3px, -5px);
  }
}
header .headerBottom .mainNav .bottomNav {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 7px;
  width: 100%;
}
@media screen and (max-width: 1640px) {
  header .headerBottom .mainNav .bottomNav {
    transition: opacity 0.4s ease, visibility 0.4s ease;
    position: fixed;
    background-color: #fff;
    width: 100%;
    height: 100vh;
    top: 0;
    right: -100%;
    z-index: 999;
    padding: 100px 40px 160px;
    box-sizing: border-box;
    visibility: hidden;
  }
  header .headerBottom .mainNav .bottomNav.open.is-active {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 100dvh;
    width: 100%;
    max-width: 430px;
    right: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    visibility: visible;
  }
}
@media screen and (max-width: 600px) {
  header .headerBottom .mainNav .bottomNav.open {
    max-width: 100%;
  }
}
header .headerBottom .mainNav .bottomNav .topNav {
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 1640px) {
  header .headerBottom .mainNav .bottomNav .topNav {
    order: 2;
    justify-content: center;
    flex-shrink: 0;
  }
}
header .headerBottom .mainNav .bottomNav .topNav .hoiku {
  display: flex;
  justify-content: flex-end;
  gap: 40px;
  padding: 10px 64px 16px 24px;
  background-color: #fdffd6;
  border-radius: 0 0 0 20px;
}
@media screen and (max-width: 1640px) {
  header .headerBottom .mainNav .bottomNav .topNav .hoiku {
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 300px;
    border-radius: 0 0 0 0;
  }
}
header .headerBottom .mainNav .bottomNav .topNav .hoiku li {
  padding-bottom: 0 !important;
  margin-left: 0 !important;
  padding-left: 0;
}
header .headerBottom .mainNav .bottomNav .topNav .hoiku li::before {
  display: none;
}
header .headerBottom .mainNav .bottomNav .topNav .hoiku li a {
  color: #333;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-family: "Zen Kaku Gothic New", sans-serif;
  position: relative;
  text-decoration: none !important;
}
header .headerBottom .mainNav .bottomNav .topNav .hoiku li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  background-color: #5c7100;
  transform: scaleX(0);
  transition: all 0.3s;
  transform-origin: left;
}
header .headerBottom .mainNav .bottomNav .topNav .hoiku li a:hover {
  color: #333 !important;
}
header .headerBottom .mainNav .bottomNav .topNav .hoiku li a:hover::after {
  transform: scaleX(1);
}
header .headerBottom .mainNav .bottomNav .topNav .kaigo {
  display: flex;
  justify-content: flex-end;
  gap: 40px;
  padding: 10px 64px 16px 24px;
  background-color: #e4fef4;
  border-radius: 0 0 0 20px;
  margin-bottom: 15px;
}
@media screen and (max-width: 1640px) {
  header .headerBottom .mainNav .bottomNav .topNav .kaigo {
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 300px;
    border-radius: 0 0 0 0;
  }
}
header .headerBottom .mainNav .bottomNav .topNav .kaigo li {
  padding-bottom: 0 !important;
  margin-left: 0 !important;
  padding-left: 0;
}
header .headerBottom .mainNav .bottomNav .topNav .kaigo li::before {
  display: none;
}
header .headerBottom .mainNav .bottomNav .topNav .kaigo li a {
  color: #333;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-family: "Zen Kaku Gothic New", sans-serif;
  position: relative;
  text-decoration: none !important;
}
header .headerBottom .mainNav .bottomNav .topNav .kaigo li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  background-color: #00804f;
  transform: scaleX(0);
  transition: all 0.3s;
  transform-origin: left;
}
header .headerBottom .mainNav .bottomNav .topNav .kaigo li a:hover {
  color: #333 !important;
}
header .headerBottom .mainNav .bottomNav .topNav .kaigo li a:hover::after {
  transform: scaleX(1);
}
header .headerBottom .mainNav .bottomNav .navColumn {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 45px;
  padding-right: 64px;
}
@media screen and (max-width: 1640px) {
  header .headerBottom .mainNav .bottomNav .navColumn {
    order: 1;
    flex-shrink: 0;
    margin-bottom: 16px;
    flex-direction: column-reverse;
    padding-right: 0;
    gap: 10px;
  }
}
header .headerBottom .mainNav .bottomNav .navColumn .mainNavReversible {
  display: flex;
  gap: 45px;
}
@media screen and (max-width: 1640px) {
  header .headerBottom .mainNav .bottomNav .navColumn .mainNavReversible {
    flex-direction: column;
    gap: 16px;
    padding-bottom: 0;
    width: 100%;
    max-width: 300px;
  }
}
header .headerBottom .mainNav .bottomNav .navColumn .mainNavReversible li {
  padding-left: 0;
  padding-bottom: 0;
}
header .headerBottom .mainNav .bottomNav .navColumn .mainNavReversible li::before {
  display: none;
}
header .headerBottom .mainNav .bottomNav .navColumn .mainNavReversible li a {
  color: #333;
  font-size: 20px !important;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-family: "Zen Kaku Gothic New", sans-serif;
  position: relative;
  text-decoration: none !important;
}
header .headerBottom .mainNav .bottomNav .navColumn .mainNavReversible li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  background-color: #5c7100 !important;
  transform: scaleX(0);
  transition: all 0.3s;
  transform-origin: left;
}
header .headerBottom .mainNav .bottomNav .navColumn .mainNavReversible li a:hover {
  color: #333 !important;
}
header .headerBottom .mainNav .bottomNav .navColumn .mainNavReversible li a:hover::after {
  transform: scaleX(1);
}
header .headerBottom .mainNav .bottomNav .navColumn .kaigo {
  display: flex;
  align-items: center;
  gap: 45px;
  padding: 0 0 8px 0;
}
@media screen and (max-width: 1640px) {
  header .headerBottom .mainNav .bottomNav .navColumn .kaigo {
    align-items: flex-start;
    gap: 16px;
  }
}
header .headerBottom .mainNav .bottomNav .navColumn .kaigo li {
  padding-bottom: 0 !important;
  margin-left: 0 !important;
  padding-left: 0 !important;
}
header .headerBottom .mainNav .bottomNav .navColumn .kaigo li a {
  color: #333;
  font-size: 20px !important;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-family: "Zen Kaku Gothic New", sans-serif;
  position: relative;
  text-decoration: none !important;
}
header .headerBottom .mainNav .bottomNav .navColumn .kaigo li a::after {
  background-color: #00804f !important;
}
header .headerBottom .mainNav .bottomNav .navColumn .guardianBtn {
  width: 100%;
  max-width: 245px;
}
@media screen and (max-width: 1640px) {
  header .headerBottom .mainNav .bottomNav .navColumn .guardianBtn {
    max-width: 300px;
  }
}
header .headerBottom .mainNav .bottomNav .navColumn .guardianBtn a {
  font-size: clamp(16px, 0.9375vw, 18px);
  font-style: normal;
  font-weight: 700 !important;
  line-height: normal;
  letter-spacing: 1.8px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #333;
  background-color: #eaeea2;
  border-radius: 3px;
  padding: 16px 62px 16px 32px;
  position: relative;
  text-decoration: none !important;
  transition: all 0.3s;
  width: 100%;
  text-align: center;
  display: inline-block;
}
header .headerBottom .mainNav .bottomNav .navColumn .guardianBtn a::after {
  position: absolute;
  content: "";
  display: inline-block;
  background-image: url(../img/btn-icon/hogosya.svg);
  background-position: center;
  width: 16px;
  height: 16px;
  right: 0;
  top: 0;
  background-color: #5c7100;
  border-radius: 0 3px 3px 0;
  width: 45px;
  height: 100%;
}
header .headerBottom .mainNav .bottomNav .navColumn .guardianBtn a:hover {
  background-color: #5c7100;
  color: #fff !important;
  transition: all 0.3s;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 10000;
}
.modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.modal .modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.modal .modal-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 78%;
  background-color: #fff;
  border-radius: 10px;
  z-index: 2;
  padding: 64px;
}
@media screen and (max-width: 1640px) {
  .modal .modal-wrapper {
    padding: 64px 16px;
  }
}
.modal .modal-wrapper .close {
  font-size: 30px;
  position: absolute;
  top: 20px;
  right: 20px;
  text-decoration: none;
  color: #333;
}
.modal .modal-wrapper .close:hover {
  color: #333;
}
.modal .modal-wrapper .modal-content .modalTitle {
  text-align: center;
  padding-bottom: 24px;
  color: #000;
  font-family: "Klee One", sans-serif;
  font-size: clamp(24px, 1.7708333333vw, 34px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.modal .modal-wrapper .modal-content .contactFlex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}
@media screen and (max-width: 1640px) {
  .modal .modal-wrapper .modal-content .contactFlex {
    gap: 10px;
  }
}
.modal .modal-wrapper .modal-content .contactFlex .btn.mail:hover {
  background-color: #5c7100;
  color: #fff;
}
.modal .modal-wrapper .modal-content .contactFlex .btn:hover {
  background-color: #5c7100;
  color: #fff;
}

.recruitImgArea {
  position: relative;
  margin-bottom: 160px;
}
@media screen and (max-width: 768px) {
  .recruitImgArea {
    margin-bottom: 96px;
  }
}
.recruitImgArea .txtArea {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .recruitImgArea .txtArea {
    top: 40%;
    width: 86%;
  }
}
@media screen and (max-width: 600px) {
  .recruitImgArea .txtArea {
    top: 35%;
  }
}
.recruitImgArea .txtArea h2 {
  font-size: clamp(28px, 2.1875vw, 42px);
  margin: 0 auto;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #333;
  text-align: center;
  width: fit-content;
  margin-bottom: 24px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .recruitImgArea .txtArea h2 {
    width: 120px;
  }
}
.recruitImgArea .txtArea h2::first-letter {
  color: #5c7100;
}
.recruitImgArea .txtArea h2::before {
  position: absolute;
  content: "";
  display: inline-block;
  background-image: url(../img/h-title-circle.svg);
  width: 90px;
  height: 70px;
  bottom: 8px;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .recruitImgArea .txtArea h2::before {
    bottom: -10px;
  }
}
.recruitImgArea .txtArea p {
  color: #333;
  font-size: clamp(16px, 0.9375vw, 18px);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  text-align: center;
  margin-bottom: 24px;
}
.recruitImgArea .txtArea .linkArea {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  max-width: 306px;
  gap: 24px;
}
@media screen and (max-width: 600px) {
  .recruitImgArea .txtArea .linkArea {
    max-width: 300px;
  }
}
.recruitImgArea .txtArea .linkArea .totalTopBtn {
  font-size: clamp(16px, 0.9375vw, 18px) !important;
  font-style: normal !important;
  font-weight: 700 !important;
  line-height: normal !important;
  letter-spacing: 1.6px;
  color: #333 !important;
  font-family: "Zen Kaku Gothic New", sans-serif !important;
  background-color: #eaeea2;
  border-radius: 3px;
  padding: 16px 60px 16px 16px;
  display: inline-block;
  position: relative;
  transition: all 0.3s;
  text-align: center;
  text-decoration: none;
}
.recruitImgArea .txtArea .linkArea .totalTopBtn::after {
  position: absolute;
  content: "";
  display: inline-block;
  background-image: url(../img/btn-icon/btn-arrow.svg);
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #44694e;
  border-radius: 0 3px 3px 0;
  background-position: center;
  width: 45px;
  height: 100%;
}
.recruitImgArea .txtArea .linkArea .totalTopBtn:hover {
  background-color: #5c7100 !important;
  color: #fff !important;
  transition: all 0.3s;
}
.recruitImgArea img {
  width: 100%;
}
@media screen and (max-width: 1200px) {
  .recruitImgArea img {
    height: 400px;
  }
}
@media screen and (max-width: 1230px) {
  .recruitImgArea .sp-img {
    object-fit: cover;
    object-position: center 85%;
  }
}
@media screen and (max-width: 768px) {
  .recruitImgArea .sp-img {
    height: 600px;
    object-position: center 60%;
  }
}
@media screen and (max-width: 600px) {
  .recruitImgArea .sp-img {
    height: 100%;
  }
}
.tipsArea {
  position: absolute;
  color: #5c7100;
  font-size: 20px;
  right: 10px;
  bottom: 10px;
  padding: 0 5px;
  background: #fff;
  border-radius: 10px;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .tipsArea {
    font-size: 16px;
  }
}

.topFooter .footerInner {
  padding-left: 21%;
  gap: 11.5%;
  display: flex;
}
@media screen and (max-width: 999px) {
  .topFooter .footerInner {
    flex-direction: column-reverse;
    padding-left: 0;
  }
}
.topFooter .footerInner .address {
  padding: 64px 0 0 0;
}
@media screen and (max-width: 999px) {
  .topFooter .footerInner .address {
    padding: 32px 20px;
  }
}
.topFooter .footerInner .address img {
  margin-bottom: 21px;
  width: auto;
}
@media screen and (max-width: 999px) {
  .topFooter .footerInner .address img {
    margin: 0 auto;
    display: block;
    width: auto;
  }
}
@media screen and (max-width: 600px) {
  .topFooter .footerInner .address img {
    margin: 0 auto;
    display: block;
    padding-bottom: 24px;
    width: 100%;
    max-width: 310px;
  }
}
.topFooter .footerInner .address p {
  color: #000;
  font-size: clamp(16px, 0.9375vw, 18px);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin-bottom: 21px;
}
@media screen and (max-width: 999px) {
  .topFooter .footerInner .address p {
    margin-bottom: 0;
    text-align: center;
  }
}
.topFooter .footerInner .address .footerBtnArea {
  max-width: 245px;
  padding-top: 21px;
}
@media screen and (max-width: 999px) {
  .topFooter .footerInner .address .footerBtnArea {
    margin: 0 auto;
  }
}
@media screen and (max-width: 600px) {
  .topFooter .footerInner .address .footerBtnArea {
    padding-top: 21px;
    max-width: 300px;
  }
}
.topFooter .footerInner .address .footerBtnArea .mailBtn {
  font-size: clamp(16px, 0.9375vw, 18px) !important;
  font-style: normal !important;
  font-weight: 700 !important;
  line-height: normal !important;
  letter-spacing: 1.6px;
  color: #333 !important;
  font-family: "Zen Kaku Gothic New", sans-serif !important;
  background-color: #eaeea2;
  border-radius: 3px;
  padding: 16px 64px 16px 32px;
  position: relative;
  display: block;
  text-align: center;
  text-decoration: none !important;
  transition: all 0.3s;
}
.topFooter .footerInner .address .footerBtnArea .mailBtn::after {
  position: absolute;
  content: "";
  display: inline-block;
  background-image: url(../img/btn-icon/mail.svg);
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #5c7100 !important;
  border-radius: 0 3px 3px 0 !important;
  height: 100%;
  width: 45px;
  background-position: center;
}
.topFooter .footerInner .address .footerBtnArea .mailBtn:hover {
  background-color: #5c7100 !important;
  color: #fff !important;
  transition: all 0.3s !important;
}
@media screen and (max-width: 999px) {
  .topFooter .footerInner .address .footerBtnArea .mailBtn {
    margin: 0 auto;
  }
}
.topFooter .footerInner .address .footerNav {
  padding-top: 42px;
}
@media screen and (max-width: 999px) {
  .topFooter .footerInner .address .footerNav {
    display: inline-block;
    width: 100%;
  }
}
.topFooter .footerInner .address .footerNav nav {
  height: 100%;
}
.topFooter .footerInner .address .footerNav nav .mainNavReversible {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 15px;
  max-width: 425px;
  height: 230px;
}
@media screen and (max-width: 999px) {
  .topFooter .footerInner .address .footerNav nav .mainNavReversible {
    flex-wrap: nowrap;
    text-align: center;
    height: auto;
    margin: 0 auto;
  }
}
.topFooter .footerInner .address .footerNav nav .mainNavReversible li {
  padding-left: 0;
  margin-left: 0;
  padding-bottom: 0 !important;
  margin-bottom: 0;
}
.topFooter .footerInner .address .footerNav nav .mainNavReversible li::before {
  display: none;
}
.topFooter .footerInner .address .footerNav nav .mainNavReversible li a {
  color: #333;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(16px, 1.0416666667vw, 20px);
  position: relative;
  text-decoration: none !important;
}
.topFooter .footerInner .address .footerNav nav .mainNavReversible li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  background-color: #5c7100 !important;
  transform: scaleX(0);
  transition: all 0.3s;
  transform-origin: left;
}
.topFooter .footerInner .address .footerNav nav .mainNavReversible li a:hover {
  color: #333 !important;
}
.topFooter .footerInner .address .footerNav nav .mainNavReversible li a:hover::after {
  transform: scaleX(1);
}
.topFooter .footerInner .address .copyright {
  color: #5c7100;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin-top: 100px;
}
@media screen and (max-width: 999px) {
  .topFooter .footerInner .address .copyright {
    margin-top: 21px;
  }
}
.topFooter .footerInner .map {
  width: 100%;
}
@media screen and (max-width: 999px) {
  .topFooter .footerInner .map {
    width: 100%;
  }
}
.topFooter .footerInner .map iframe {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 999px) {
  .topFooter .footerInner .map iframe {
    height: 280px;
  }
}

body .error {
	width: 100%;
    max-width: 58%;
    margin: 0 auto;
}
  @media screen and (max-width: 1400px) {
   body .error {
     max-width: 89%;
  }
}
body .error #main {
	padding-top: 140px;
	padding-bottom: 0;
}
@media screen and (max-width: 768px) {
   body .error #main {
	 padding-top: 115px;
   }
}
body .error #main .titIndex {
	margin-bottom: 25px;
}

/*# sourceMappingURL=common.css.map */
