.evt {
  visibility: hidden;
}

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 3rem, 0);
  }
  30% {
    opacity: 0.5;
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUp {
  animation-duration: 0.8s;
  animation-name: fadeInUp;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: min(0.6944444444vw, 10px);
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  html {
    font-size: min(2.6666666667vw, 10px);
  }
}

img {
  display: block;
  max-width: 100%;
}

ul, ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

strong, em, i {
  font-style: normal;
}

@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}
#header {
  position: fixed;
  inset: 0 auto auto 0;
  width: 100vw;
  padding: 3rem 3rem 0 4rem;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  #header {
    padding: 2rem 2rem 0;
  }
}
#header .row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
#header .site_logo {
  width: 15rem;
}
@media screen and (max-width: 767px) {
  #header .site_logo {
    width: 8rem;
  }
}
#header .nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  #header .nav {
    flex-direction: column-reverse;
    padding: 8rem 2rem 0;
  }
}
#header .nav .nav01 {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  #header .nav .nav01 {
    flex-direction: column;
    align-items: flex-end;
  }
}
#header .nav .nav01 .contact a {
  background: #FF7108;
  color: #fff;
  display: block;
  width: 19rem;
  padding: 1rem 0;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  border-radius: 10rem;
}
@media screen and (max-width: 767px) {
  #header .nav .nav01 .contact a {
    width: 14rem;
    padding: 0.7rem 0;
    font-size: 1.4rem;
  }
}
#header .nav .nav01 .sns {
  display: flex;
  align-items: center;
  gap: 2rem;
}
#header .nav .nav01 .sns a {
  display: block;
}
#header .nav .nav01 .sns a.insta {
  width: 3.5rem;
}
#header .nav .nav01 .sns a.youtube {
  width: 4rem;
}
#header .nav .nav02 .link {
  background: rgba(255, 255, 255, 0.5);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2.5rem;
  padding: 1rem 2rem;
  border-radius: 1rem;
}
#header .nav .nav02 .link a {
  display: block;
  position: relative;
  padding-left: 1rem;
  font-size: 1.6rem;
  font-weight: 700;
}
#header .nav .nav02 .link a::before {
  content: "";
  background: #80AB51;
  display: block;
  position: absolute;
  inset: 50% auto 0 0;
  translate: 0 -50%;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  #header #toggleMenu {
    transform: translateX(100%);
    background: #eee7dd;
    position: fixed;
    inset: 0 0 0 auto;
    transition: transform 0.2s;
  }
  #header #toggleMenu.show {
    transform: translateX(0);
  }
}
#header #toggleBtn {
  background: #FF7108;
  position: relative;
  width: 4rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
}
#header #toggleBtn::before, #header #toggleBtn::after {
  content: "";
  background: #fff;
  position: absolute;
  inset: 50% auto auto 50%;
  translate: -50% -50%;
  width: 2.5rem;
  height: 2px;
  transition: transform 0.2s;
}
#header #toggleBtn::before {
  transform: translateY(-0.4rem);
}
#header #toggleBtn::after {
  transform: translateY(0.4rem);
}
@media screen and (min-width: 768px) {
  #header #toggleBtn {
    display: none;
  }
}
#header #toggleBtn.active::before {
  transform: translateY(0) rotate(30deg);
}
#header #toggleBtn.active::after {
  transform: translateY(0) rotate(-30deg);
}

#footer {
  padding: 12rem 2rem 3rem;
}
@media screen and (max-width: 767px) {
  #footer {
    padding: 8rem 2rem 3rem;
  }
}
#footer .inner {
  width: min(100%, 104rem);
  margin: auto;
}
#footer .site_logo {
  width: 15rem;
  margin: 0 auto 4rem;
}
#footer .link {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.6rem;
  padding-bottom: 3rem;
}
#footer .link a {
  display: block;
  position: relative;
  padding-left: 1rem;
  font-size: 1.6rem;
  font-weight: 500;
}
#footer .link a::before {
  content: "";
  background: #80AB51;
  display: block;
  position: absolute;
  inset: 50% auto 0 0;
  translate: 0 -50%;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
}
#footer .sns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.8rem;
  padding-bottom: 3rem;
}
#footer .sns a {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 1.4rem;
  font-weight: 500;
}
#footer .sns a.insta img {
  width: 3.5rem;
}
#footer .sns a.youtube img {
  width: 4rem;
}
#footer .policy {
  padding-bottom: 2rem;
  font-size: 1.2rem;
  text-align: center;
}
#footer .policy a {
  text-decoration: underline;
}
#footer .copy {
  font-size: 1.2rem;
  text-align: center;
}

.sec_top {
  position: relative;
}
.sec_top .anchor {
  position: absolute;
  inset: 0 auto auto 0;
}
.sec_top .inner {
  position: relative;
  width: min(100%, 104rem);
  margin: auto;
}
@media screen and (max-width: 767px) {
  .sec_top .inner {
    padding: 0 2rem;
  }
}
.sec_top h1 {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: flex-start;
  padding-bottom: 8rem;
  font-size: 6.4rem;
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .sec_top h1 {
    padding-bottom: 4rem;
    font-size: 4.4rem;
  }
}
.sec_top h1 span {
  background: #DFF3CA;
  color: #80AB51;
  padding: 2rem 0.5rem;
  writing-mode: tb;
}
@media screen and (max-width: 767px) {
  .sec_top h1 span {
    padding: 1rem 0.5rem;
  }
}
.sec_top h2 {
  background: #DFF3CA;
  color: #80AB51;
  display: table;
  margin: 0 auto 2rem;
  padding: 0.5rem 2rem;
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sec_top h2 {
    padding: 0.5rem 1rem;
    font-size: 3rem;
  }
}
.sec_top h3 {
  padding-bottom: 2rem;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sec_top h3 {
    font-size: 2.2rem;
  }
}
.sec_top h4 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .sec_top h4 {
    font-size: 2rem;
  }
}
.sec_top h4 + .txt {
  padding-top: 1.5rem;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .sec_top h4 + .txt {
    padding-top: 1rem;
    font-size: 1.4rem;
  }
}
.sec_top .lead {
  padding-bottom: 4rem;
  font-size: 1.6rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sec_top .lead {
    font-size: 1.4rem;
  }
}
.sec_top .c_btn {
  margin-top: 2rem;
}
.sec_top .c_btn a {
  color: #fff;
  display: block;
  width: 19rem;
  padding: 1rem 0;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  border-radius: 10rem;
}
@media screen and (max-width: 767px) {
  .sec_top .c_btn a {
    width: 16rem;
    font-size: 1.4rem;
  }
}
.sec_top .c_btn.center a {
  margin: auto;
}
.sec_top .c_btn.primary a {
  background: #80AB51;
}
.sec_top .c_btn.tertiary a {
  background: #FF7108;
}

.sec_home {
  background: url(../img/home_bg.jpg) no-repeat center/cover;
  padding: 17.5rem 0 6rem;
}
@media screen and (max-width: 767px) {
  .sec_home {
    padding: 10rem 0 6rem;
  }
}
.sec_home p {
  color: #fff;
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sec_home p {
    font-size: 1.6rem;
  }
}

.sec_point {
  background: url(../img/point_bg.jpg) no-repeat center/cover;
  padding: 12rem 0 18rem;
}
@media screen and (max-width: 767px) {
  .sec_point {
    padding: 8rem 0;
  }
}
.sec_point .list {
  display: flex;
  justify-content: center;
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .sec_point .list {
    flex-wrap: wrap;
  }
  .sec_point .list li {
    width: calc(50% - 1.5rem);
  }
}

.sec_service .block_type {
  position: relative;
  background: #fff;
  padding: 12rem 0 8rem;
}
@media screen and (max-width: 767px) {
  .sec_service .block_type {
    padding: 8rem 0;
  }
}
.sec_service .block_type::before {
  content: "";
  background: url(../img/service_type_bg.jpg) no-repeat center top/cover;
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 51rem;
}
@media screen and (max-width: 767px) {
  .sec_service .block_type::before {
    height: 41rem;
  }
}
.sec_service .block_type h3, .sec_service .block_type .lead {
  color: #fff;
}
.sec_service .block_type .list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .sec_service .block_type .list {
    gap: 3rem 2rem;
  }
}
.sec_service .block_type .list .img {
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .sec_service .block_type .list .img {
    margin-bottom: 1rem;
  }
}
.sec_service .block_step {
  background: #DFF3CA url(../img/service_step_bg.png) no-repeat center bottom/contain;
  padding: 8rem 0;
}
.sec_service .block_step .list {
  display: flex;
  flex-direction: column;
  gap: 8rem;
  padding-top: 5rem;
}
@media screen and (max-width: 767px) {
  .sec_service .block_step .list {
    gap: 6rem;
    padding-top: 4rem;
  }
}
.sec_service .block_step .list li {
  background: #fff;
  position: relative;
  padding: 7rem 2rem 4rem;
  border: 2px solid #80AB51;
  text-align: center;
}
.sec_service .block_step .list li span {
  background: #80AB51;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  inset: 0 auto auto 50%;
  translate: -50% -50%;
  width: 10rem;
  aspect-ratio: 1/1;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .sec_service .block_step .list li span {
    width: 8rem;
    font-size: 1.6rem;
  }
}
.sec_service .block_step .list li span i {
  display: block;
  font-size: 3.2rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .sec_service .block_step .list li span i {
    font-size: 2.2rem;
  }
}
.sec_service .block_management {
  background: #fff;
  padding: 8rem 0 12rem;
}
@media screen and (max-width: 767px) {
  .sec_service .block_management {
    padding: 8rem 0;
  }
}
.sec_service .block_management .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .sec_service .block_management .list {
    grid-template-columns: repeat(1, 1fr);
    gap: 6rem;
  }
}
.sec_service .block_management .list .img {
  margin-bottom: 2rem;
}
.sec_service .block_management .list h4 {
  position: relative;
  padding-right: 9.6rem;
}
.sec_service .block_management .list h4 span {
  background: #DFF3CA;
  color: #80AB51;
  position: absolute;
  inset: 0.2rem 0 auto auto;
  width: 9.6rem;
  padding: 0.4rem 0;
  font-size: 1.4rem;
  font-weight: 400;
  text-align: center;
  border-radius: 10rem;
}

.sec_case {
  background: #80AB51;
  color: #fff;
  padding: 12rem 0;
}
@media screen and (max-width: 767px) {
  .sec_case {
    padding: 8rem 0;
  }
}
.sec_case h2 {
  background: none;
  color: #fff;
}
.sec_case .list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4rem 3rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .sec_case .list {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 2rem;
  }
}
.sec_case .list .img {
  margin-bottom: 1rem;
}

.sec_company {
  background: #fff;
  padding: 12rem 0;
}
@media screen and (max-width: 767px) {
  .sec_company {
    padding: 8rem 0;
  }
}
.sec_company h2 {
  background: none;
}
.sec_company dl {
  display: grid;
  grid-template-columns: max-content max-content;
  justify-content: center;
  align-items: flex-start;
  gap: 1.2rem 3rem;
  font-size: 1.6rem;
  white-space: nowrap;
  padding-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .sec_company dl {
    justify-content: flex-start;
    gap: 1rem 2rem;
    font-size: 1.4rem;
  }
}
.sec_company dl dt {
  position: relative;
  padding-left: 1rem;
  width: calc(50% - 3rem);
  font-weight: 500;
}
.sec_company dl dt::before {
  content: "";
  background: #80AB51;
  display: block;
  position: absolute;
  inset: 50% auto 0 0;
  translate: 0 -50%;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
}
.sec_company dl dd {
  width: 50%;
}
.sec_company .list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .sec_company .list {
    grid-template-columns: repeat(1, 1fr);
    gap: 6rem;
  }
}
.sec_company .list .map {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  margin-bottom: 2rem;
}
.sec_company .list .map iframe {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 100%;
  border: none;
}

.sec_contact .box {
  background: #FFDDB6;
  padding: 6rem 2rem;
  text-align: center;
}
.sec_contact .box h3 {
  color: #FF7108;
}
.sec_contact .box .lead {
  padding-bottom: 0;
}/*# sourceMappingURL=style.css.map */