@charset "UTF-8";
html {
  font-size: 10px;
}

body {
  background-color: #FFFFFF;
  padding-bottom: 2rem;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  color: #162402;
}

li {
  list-style: none;
}

a {
  display: block;
  color: #162402;
  text-decoration: none;
}

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

input[type=text], input[type=number], input[type=tel], input[type=pass], sekect,
input[type=text]:active, input[type=number]:active, input[type=tel]:active, input[type=pass]:active, select:active,
input[type=text]:focus, input[type=number]:focus, input[type=tel]:focus, input[type=pass]:focus, select:focus {
  border: none;
  color: #162402;
  box-shadow: none;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

button {
  background-color: transparent;
  border: none;
  box-shadow: none;
}

button:focus, button:active, button:hover {
  outline: none;
}

main {
  flex: 1;
  overflow-x: hidden;
}

.max-width {
  width: 90%;
  max-width: 102.4rem;
  margin-right: auto;
  margin-left: auto;
}
@media only screen and (max-width: 780px) {
  .max-width {
    width: 96%;
  }
}

.pc {
  display: block;
}
@media only screen and (max-width: 780px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media only screen and (max-width: 780px) {
  .sp {
    display: block;
  }
}

.blank {
  width: 100%;
  display: block;
}
@media only screen and (max-width: 780px) {
  .blank {
    display: none;
  }
}

.spblank {
  display: none;
}
@media only screen and (max-width: 780px) {
  .spblank {
    width: 100%;
    display: block;
  }
}

* {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 400;
}

.mon {
  font-family: "Montserrat", sans-serif;
}

.inview[data-animation=opacity] {
  opacity: 0;
  transition: all 2s ease;
}
.inview[data-animation=opacity].opacityactive {
  opacity: 1;
  transition: all 2s ease;
}

.inview[data-animation=right] {
  transform: translateX(5%);
  opacity: 0;
  transition: all 1s ease;
}
.inview[data-animation=right].rightactive {
  transform: translateX(0);
  opacity: 1;
  transition: all 1s ease;
}

.inview[data-animation=left] {
  transform: translateX(-5%);
  opacity: 0;
  transition: all 1s ease;
}
.inview[data-animation=left].leftactive {
  transform: translateX(0);
  opacity: 1;
  transition: all 1s ease;
}

.inview[data-animation=bottom] {
  transform: translateY(30%);
  opacity: 0;
  transition: all 1s ease;
}
.inview[data-animation=bottom].bottomactive {
  transform: translateY(0);
  opacity: 1;
  transition: all 1s ease;
}

.inview[data-animation=top] {
  transform: translateY(-30%);
  opacity: 0;
  transition: all 1s ease;
}
.inview[data-animation=top].topactive {
  transform: translateY(0);
  opacity: 1;
  transition: all 2s ease;
}

.mainvisual {
  width: 100%;
  height: 100vh;
  position: relative;
}
.mainvisual img {
  width: 66%;
  position: absolute;
  right: 0;
  bottom: 12vh;
}
@media only screen and (max-width: 780px) {
  .mainvisual img {
    width: 94.6%;
  }
}

section {
  padding: 11.2rem 0 6rem;
}

.works_list {
  margin: 0 -1rem;
  position: relative;
}
@media only screen and (max-width: 780px) {
  .works_list {
    width: 94.6%;
    margin: 0 auto;
  }
}
.works_list_title {
  color: #66981E;
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 1.5rem;
}
.works_list_item {
  padding: 0 1rem;
}
.works_list_item dl {
  height: 100%;
  border: solid 0.2rem rgba(127, 189, 38, 0.2);
  box-shadow: 0px 0px 6px 0px #8fc31f f;
  border-radius: 0.4rem;
  padding: 4rem 1.6rem 6rem;
}
@media only screen and (max-width: 780px) {
  .works_list_item dl {
    padding: 4rem 1.6rem;
  }
}
.works_list_item ul {
  padding: 0 0.4rem;
}
.works_list_item ul li {
  color: #243A05;
  font-size: 1.4rem;
  padding-left: 1.2rem;
  position: relative;
}
.works_list_item ul li:not(:nth-last-of-type(1)) {
  margin-bottom: 1.5rem;
}
.works_list_item ul li::before {
  content: "";
  width: 0.6rem;
  height: 0.6rem;
  display: block;
  background-color: #FAF000;
  border-radius: 50%;
  position: absolute;
  top: 0.89rem;
  left: 0;
}

.company_wrap {
  display: flex;
  justify-content: space-between;
  padding-left: 6.6%;
}
@media only screen and (max-width: 780px) {
  .company_wrap {
    width: 94.6%;
    display: block;
    padding-left: 0;
    margin: 0 auto;
  }
}
.company_figure {
  width: 48%;
}
@media only screen and (max-width: 780px) {
  .company_figure {
    width: 100%;
    margin-bottom: 5rem;
  }
}
.company_figure_img {
  margin-bottom: 2rem;
}
.company_figure_nav {
  margin: 0 0 0 -1rem;
}
.company_figure_nav li {
  width: 12rem !important;
  padding: 0 1rem;
}
@media only screen and (max-width: 780px) {
  .company_figure_nav li {
    width: 10rem !important;
  }
}
.company_figure_nav li:hover {
  cursor: pointer;
}
.company_detail {
  width: 44%;
  padding: 0;
}
@media only screen and (max-width: 780px) {
  .company_detail {
    width: 100%;
  }
}
.company_detail h3 {
  font-size: 1.8rem;
  margin-bottom: 3rem;
}
@media only screen and (max-width: 780px) {
  .company_detail h3 {
    text-align: center;
  }
}
.company_detail_wrap {
  margin-bottom: 3rem;
}
.company_detail dl {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
}
@media only screen and (max-width: 780px) {
  .company_detail dl {
    justify-content: center;
  }
}
.company_detail dl:not(.name):not(:nth-last-of-type(1)) {
  margin-bottom: 0.6rem;
}
.company_detail dl:not(.name) dt {
  padding-right: 1rem;
  margin-right: 0.6rem;
  position: relative;
}
.company_detail dl:not(.name) dt::after {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  display: block;
  background-color: #66981E;
  border-radius: 50%;
  transform: translateY(-50%);
  position: absolute;
  top: 50%;
  right: 0;
}
@media only screen and (max-width: 780px) {
  .company_detail dl.name {
    display: block;
  }
}
.company_detail dl.name dt {
  font-size: 1.4rem;
  border-right: solid 0.1rem #8FC31F;
  padding-right: 1rem;
  margin-right: 1rem;
}
@media only screen and (max-width: 780px) {
  .company_detail dl.name dt {
    width: 100%;
    border: none;
    text-align: center;
    padding-bottom: 0.9rem;
    position: relative;
  }
  .company_detail dl.name dt::after {
    content: "";
    width: 12rem;
    height: 0.1rem;
    display: block;
    background-color: #8FC31F;
    transform: translateX(-50%);
    position: absolute;
    bottom: 0;
    left: 50%;
  }
  .company_detail dl.name dt .blank {
    width: 1rem;
    display: inline-block;
  }
}
.company_detail dl.name dd {
  font-size: 1.6rem;
}
@media only screen and (max-width: 780px) {
  .company_detail dl.name dd {
    width: 100%;
    text-align: center;
    padding-top: 0.8rem;
  }
}
.company_detail dl.name:not(:nth-last-of-type(1)) {
  margin-bottom: 2rem;
}
.company_detail dl.number dt {
  width: 10%;
}
.company_detail address {
  font-size: 1.6rem;
  font-style: normal;
}
@media only screen and (max-width: 780px) {
  .company_detail address {
    text-align: center;
  }
}
.company_detail address span {
  display: block;
  font-size: 1.4rem;
}

.map {
  border-top: solid 0.4rem rgba(127, 189, 38, 0.2);
  border-bottom: solid 0.4rem rgba(127, 189, 38, 0.2);
}
.map iframe {
  width: 100%;
}

.slick-track {
  display: flex;
}

.slick-slide {
  height: auto !important;
}

.slick-arrow {
  width: 3.2rem;
  height: 3.2rem;
  background-image: url(../images/icon/arrow.svg);
  background-repeat: no-repeat;
  font-size: 0;
  position: absolute;
  bottom: 0;
}
.slick-arrow.slick-prev {
  left: 0;
}
.slick-arrow.slick-next {
  transform: scale(-1, 1);
  right: 0;
}
.slick-arrow:hover {
  cursor: pointer;
}
@media only screen and (max-width: 780px) {
  .slick-arrow {
    bottom: -4.2rem;
  }
}

.slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
}
.slick-dots::after {
  content: "/7";
  height: 3.2rem;
  display: flex;
  align-items: center;
  color: #9A9A9A;
  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  padding-top: 1rem;
  padding-left: 0.6rem;
}
.slick-dots li {
  height: 3.2rem;
  display: flex;
  padding-top: 1rem;
}
.slick-dots li:hover {
  cursor: pointer;
}
.slick-dots li:nth-of-type(1) button {
  font-size: 0;
}
.slick-dots li:nth-of-type(1) button::after {
  content: "1 ~ 3";
  display: none;
  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
}
.slick-dots li:nth-of-type(1).slick-active button::after {
  display: block;
}
.slick-dots li:nth-of-type(2) button {
  font-size: 0;
}
.slick-dots li:nth-of-type(2) button::after {
  content: "4 ~ 6";
  display: none;
  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
}
.slick-dots li:nth-of-type(2).slick-active button::after {
  display: block;
}
.slick-dots li:nth-of-type(3) button {
  font-size: 0;
}
.slick-dots li:nth-of-type(3) button::after {
  content: "7";
  display: none;
  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
}
.slick-dots li:nth-of-type(3).slick-active button::after {
  display: block;
}

header {
  width: calc(100% - 10rem);
  display: flex;
  justify-content: space-between;
  transform: translateX(-50%);
  position: fixed;
  top: 4rem;
  left: 50%;
  z-index: 1000;
}
@media only screen and (max-width: 780px) {
  header {
    width: 100%;
    padding: 1rem calc(1.2rem + 2.9%);
    top: 0;
  }
}
@media only screen and (max-width: 780px) {
  header h1 {
    width: 52.2%;
    z-index: 1100;
  }
}
header #nav-button {
  display: none;
}
@media only screen and (max-width: 780px) {
  header #nav-button {
    width: 5rem;
    height: 5rem;
    display: block;
    position: relative;
    z-index: 1100;
  }
  header #nav-button span {
    width: 2.6rem;
    height: 0.2rem;
    display: block;
    background-color: #7FBD26;
    transition: all 0.4s ease;
    position: absolute;
    left: 1.2rem;
  }
  header #nav-button span:nth-of-type(1) {
    top: 1.7rem;
  }
  header #nav-button span:nth-of-type(2) {
    top: 2.5rem;
  }
  header #nav-button span:nth-of-type(3) {
    top: 3.3rem;
  }
  header #nav-button.active span:nth-of-type(1) {
    width: 1.8rem;
    transform: translateY(-50%) rotate(-45deg);
    top: 2.4rem;
    left: 2rem;
  }
  header #nav-button.active span:nth-of-type(2) {
    opacity: 0;
  }
  header #nav-button.active span:nth-of-type(3) {
    width: 1.8rem;
    transform: translateY(-50%) rotate(45deg);
    top: 2.4rem;
    left: 2rem;
  }
}
header nav ul {
  display: flex;
}
header nav ul li:nth-of-type(1) {
  padding-right: 0.6rem;
  position: relative;
}
header nav ul li:nth-of-type(1)::after {
  content: "";
  width: 0.6rem;
  height: 0.6rem;
  display: block;
  background-color: #7FBD26;
  border-radius: 50%;
  transform: translateY(-50%);
  position: absolute;
  top: 50%;
  right: 0;
}
header nav ul li a {
  font-size: 1.4rem;
  padding: 0 1.4rem;
}
@media only screen and (max-width: 780px) {
  header nav {
    width: 100%;
    height: 100vh;
    display: none;
    background-color: #fff;
    padding-top: 30%;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
  }
  header nav ul {
    flex-wrap: wrap;
  }
  header nav ul li {
    width: 100%;
  }
  header nav ul li:nth-of-type(1) {
    margin-bottom: 2rem;
  }
  header nav ul li:nth-of-type(1)::after {
    display: none;
  }
  header nav ul li a {
    display: flex;
    align-items: center;
    font-size: 2rem;
    padding: 1rem 10%;
  }
  header nav ul li a::before {
    content: "";
    width: 1rem;
    height: 0.1rem;
    display: inline-flex;
    background-color: #7FBD26;
    margin-right: 1rem;
  }
  header nav.active {
    display: block;
    opacity: 1;
  }
}

.title {
  font-size: 2.6rem;
  text-align: center;
  margin-bottom: 6rem;
}
@media only screen and (max-width: 780px) {
  .title {
    font-size: 2.4rem;
    margin-bottom: 3.8rem;
  }
}
.title span {
  display: block;
  color: #7FBD26;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 780px) {
  .title span {
    font-size: 1.6rem;
  }
}/*# sourceMappingURL=style.css.map */