html {
  scroll-behavior: smooth;
}

body {
  color: #707070;
  font-family: "M PLUS 1p", sans-serif;
  font-size: 20px;
  font-weight: 300;
  background-color: #FAFAFA;
}

.navigation ul {
  display: flex;
  justify-content: space-between;
}

.contents-area {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding-top: 160px;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 1360px) {
  .contents-area {
    max-width: 800px;
  }
}

.section-container {
  display: flex;
  column-gap: 40px;
  position: relative;
  z-index: 0;
}

.section-container__column {
  max-width: 540px;
  width: 100%;
}

.section-headline {
  margin-bottom: 80px;
}
.section-headline .headline--en {
  margin-bottom: 16px;
  font-size: 36px;
  font-weight: 500;
  color: #70AA43;
}
.section-headline .headline--ja {
  font-size: 24px;
  font-weight: 300;
  color: #707070;
}

.header {
  width: 100%;
  height: 112px;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 100;
  background-color: rgba(112, 170, 67, 0.8);
}
.header .contents-area {
  max-width: 1280px;
  width: 100%;
  height: 112px;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1360px) {
  .header .contents-area {
    max-width: 800px;
  }
}
.header h1 {
  font-size: 36px;
  font-weight: 400;
  color: #EFEFEF;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .header__nav--wide {
    display: none;
  }
}
.header__nav--wide ul {
  font-size: 16px;
  font-weight: 400;
  color: #EFEFEF;
  letter-spacing: 0.1em;
  column-gap: 80px;
}
.header__nav--ham {
  display: none;
}
@media screen and (max-width: 768px) {
  .header__nav--ham {
    display: block;
  }
}
.header__nav--ham .ham-menu {
  display: flex;
  flex-flow: column;
  row-gap: 8px;
  width: 32px;
}
.header__nav--ham .ham-menu span {
  width: 100%;
  height: 2px;
  background-color: #EFEFEF;
}
.header__nav--ham .overlay {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 100vw;
  background-color: rgba(112, 170, 67, 0.8);
  z-index: 1;
}
.header__nav--ham .drawer {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 264px;
  padding: 44px 50px;
  background-color: #FFF;
  z-index: 2;
}

.keyvisual {
  height: 100vh;
  width: 100%;
  margin: 0px;
  padding: 0px;
  background-image: url(../img/main-visual.jpg);
  background-size: cover;
}
.keyvisual .contents-area {
  height: 100%;
}
.keyvisual h2 {
  font-size: 36px;
  font-weight: 400;
  color: #EFEFEF;
  position: absolute;
  top: 50%;
}

.about .contents-area {
  height: 800px;
}
.about .section-container {
  display: flex;
  column-gap: 40px;
}
.about .section-container__column {
  width: 540px;
  height: 100%;
  font-size: 20px;
  font-weight: 300;
  color: #707070;
  line-height: 1.8em;
  letter-spacing: 0.1em;
}
.about .section-container__column--secondary .section__image {
  position: absolute;
}
.about .section-container__column--secondary .section__image--large {
  width: 540px;
  height: 336px;
  top: 0px;
  left: 580px;
  background-color: #D9D9D9;
}
.about .section-container__column--secondary .section__image--small {
  width: 360px;
  height: 224px;
  top: 260px;
  left: 290px;
  background-color: #EFEFEF;
}

.works .contents-area {
  width: 980px;
}
.works .section-headline {
  text-align: center;
}
.works .works-list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 180px;
  row-gap: 112px;
}
.works .works-list .works-card {
  width: 400px;
  height: 288px;
}
.works .works-list .works-card__image {
  margin-bottom: 24px;
}
.works .works-list .works-card .text-area {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 300;
}
.works .works-list .works-card .text-area .fa-caret-right {
  padding-right: 4px;
}

.contact .contents-area {
  width: 800px;
  margin-bottom: 160px;
}
.contact .section-headline {
  text-align: center;
}
.contact p {
  width: 100%;
  margin-bottom: 40px;
}
.contact .contact-form label {
  display: block;
  margin-bottom: 16px;
  font-size: 22px;
  font-weight: 400;
}
.contact .contact-form input {
  width: 100%;
  height: 48px;
  padding-left: 40px;
  margin-bottom: 36px;
  border: #707070 solid 1px;
  border-radius: 8px;
}
.contact .contact-form input::placeholder {
  color: #CCCCCC;
}
.contact .contact-form__name {
  position: relative;
}
.contact .contact-form__name-icon::before {
  position: absolute;
  top: 54px;
  left: 11px;
  width: 1em;
  height: 1em;
  text-align: center;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f007";
  color: #CCCCCC;
}
.contact .contact-form__email {
  position: relative;
}
.contact .contact-form__email-icon::before {
  position: absolute;
  top: 56px;
  left: 12px;
  width: 1em;
  height: 1em;
  text-align: center;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f0e0";
  color: #CCCCCC;
}
.contact .contact-form textarea {
  width: 100%;
  height: 320px;
  padding: 8px;
  margin-bottom: 80px;
  border: #707070 solid 1px;
  border-radius: 8px;
}
.contact .contact-form textarea::placeholder {
  color: #CCCCCC;
}
.contact .contact-form__submit {
  text-align: center;
}
.contact .contact-form__submit button {
  width: 160px;
  height: 40px;
  text-align: center;
  letter-spacing: 0.5em;
  color: #EFEFEF;
  font-weight: 400;
  background-color: #179A5B;
  border-radius: 4px;
}
.contact .contact-form__submit button:hover {
  opacity: 0.8;
}
.contact .contact-form__submit button i {
  padding-left: 10px;
  padding-right: 16px;
  letter-spacing: normal;
}

.footer {
  width: 100%;
  height: 136px;
  background-color: #70AA43;
}
.footer .contents-area {
  height: 136px;
  padding: 0;
}
.footer .footer-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer h1 {
  padding-top: 32px;
  padding-bottom: 16px;
  font-size: 24px;
  font-weight: 400;
  color: #EFEFEF;
}
.footer__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #EFEFEF;
  font-size: 16px;
  font-weight: 400;
}
.footer__nav--section {
  padding-right: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 80px;
  border-right: solid 1px #EFEFEF;
}
.footer__nav--sns {
  padding-left: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 32px;
  font-size: 18px;
}
.footer__copyright {
  font-size: 16px;
  font-weight: 400;
  color: #EFEFEF;
}/*# sourceMappingURL=style.css.map */