<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*--------------------------
common
---------------------------*/
html {
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
}

svg {
  width: 100%;
}

.__green {
  color: #399D26;
}

.__beige {
  color: #E39D15;
}

.bg__green {
  background-color: #399D26;
}

.container {
  max-width: 1000px;
}
.container .graph_box {
  background-color: #fff;
  padding: 60px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 0 0.5rem #ddd;
}
.container .graph_box .graph__title {
  font-size: 1.5rem;
  background-color: #F1F1F1;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 2rem;
  padding: 0.5rem 2rem;
}
.container .graph_box .graph__text {
  font-weight: bold;
  font-size: 1.25rem;
  line-height: 1.75rem;
  margin-top: 1.5rem;
}

img:not(.mail_icon__img) {
  width: 100%;
}

h2 {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: normal;
  color: #4EAE76;
  margin-bottom: 2.5rem;
  padding-left: 2.5rem;
}
h2::before {
  position: absolute;
  left: 0;
  display: inline-block;
  content: "";
  background: url(../image/title-slash.webp) no-repeat;
  background-size: contain;
  width: 20px;
  height: 50px;
}
h2 span {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
}

@media screen and (min-width: 769px) {
  .sp__only {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
  h2 {
    font-size: 0.8rem;
    padding-left: 2rem;
  }
  h2::before {
    width: 20px;
    height: 56px;
  }
  h2 span {
    font-size: 1.5rem;
  }
  .container .graph_box {
    padding: 30px 20px;
  }
  .container .graph_box .graph__title {
    font-size: 1rem;
    line-height: 1.25rem;
  }
  .container .graph_box .graph__text {
    font-size: 14px;
    line-height: 1.3rem;
  }
}
/*--------------------------
header
---------------------------*/
#header:not(.fixed) .logo_black {
  display: none;
}
#header.fixed .logo_white {
  display: none;
}
#header h1 img {
  width: auto;
  max-height: 76px;
}
#header .header_nav_sp {
  display: none;
}
@media only screen and (max-width: 1170px) {
  #header .header_nav_sp li {
    display: inline-block;
    cursor: pointer;
  }
  #header .header_nav_sp .menu_lang {
    position: relative;
  }
  #header .header_nav_sp .menu_lang .icon::before {
    position: absolute;
    font-family: "fontello";
    font-style: normal;
    font-weight: normal;
    speak: none;
    display: inline-block;
    text-decoration: inherit;
    text-align: center;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\e800";
    font-size: 28px;
    top: -33px;
    right: 9px;
    color: #666;
  }
  #header .header_nav_sp .menu_lang .icon p {
    font-size: 8px;
    position: absolute;
    top: -6px;
    right: 13px;
    color: #666;
  }
}
@media only screen and (max-width: 768px) {
  #header .header_nav_sp {
    display: block;
    position: absolute;
    top: 36px;
    right: 64px;
  }
}
#header .navarea .navarea-top {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 0;
}
#header .navarea .navarea-top .language_navi ul {
  display: flex;
}
#header .navarea .navarea-top .language_navi ul li a {
  color: #fff;
  font-size: 1rem;
  text-align: left;
  padding: 0.5rem 0.75rem 1rem;
  display: block;
  position: relative;
}
#header .navarea .navarea-top .language_navi ul li a.active {
  color: #ee3844;
  pointer-events: none;
}
@media only screen and (max-width: 1170px) {
  #header .navarea .navarea-top .language_navi {
    transition: left 0.5s;
    position: fixed;
    padding: 0 0 0 0;
    top: 65px;
    left: -60%;
    bottom: 0;
    width: 60%;
    background-color: #f8f8f8;
    z-index: 100;
    border: none;
    border-right: 1px solid #ccc;
  }
  #header .navarea .navarea-top .language_navi.is-open {
    left: 0;
  }
  #header .navarea .navarea-top .language_navi ul {
    position: static;
    display: block;
    width: 100%;
    max-height: inherit;
    overflow: inherit;
    border-right: none;
  }
  #header .navarea .navarea-top .language_navi ul li {
    border-bottom: 1px solid #ccc;
    border-left: 1px solid #ccc;
  }
  #header .navarea .navarea-top .language_navi ul li a {
    display: block;
    padding: 15px 10px;
    color: #333;
  }
  #header .navarea .navarea-top .language_navi ul li a::after {
    color: #282828;
    position: absolute;
    font-family: "fontello";
    font-style: normal;
    font-weight: normal;
    speak: none;
    display: inline-block;
    text-decoration: inherit;
    text-align: center;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\f105";
    font-size: 14px;
    right: 10px;
  }
}
#header .navarea .nav_wrap .global_nav ul li:not(:last-child) {
  padding-right: 1.5rem;
  margin-right: 1.5rem;
}
#header .navarea .nav_wrap .global_nav ul li a {
  transition: all 0.3s ease;
}
#header .navarea .nav_wrap .global_nav ul li a:hover {
  color: #399D26;
  text-shadow: 0 0 2px #fff;
}
#header .navarea .nav_wrap .contact {
  margin-left: 1.5rem;
}
#header .navarea .nav_wrap .contact a {
  width: 160px;
  height: 42px;
  justify-content: space-between;
  align-items: center;
}
#header .navarea .nav_wrap .contact a span {
  display: block;
}
#header .navarea .nav_wrap .contact a span.mail_icon {
  width: 36px;
  text-align: center;
  padding-left: 1px;
}
#header .navarea .nav_wrap .contact a span:last-child {
  width: 124px;
  line-height: 40px;
  text-align: center;
  background-color: #fff;
  padding-right: 4px;
  padding-bottom: 2px;
  transition: all 0.3s ease;
}
#header.fixed .navarea .navarea-top .language_navi ul li a:not(.active) {
  color: #000;
}
#header.fixed span:last-child {
  color: #fff;
  background-color: #399D26 !important;
}

@media screen and (min-width: 769px) {
  #header {
    height: 100px;
  }
}
@media screen and (max-width: 768px) {
  #header .logo_black {
    display: block !important;
  }
  #header .logo_white {
    display: none !important;
  }
  #header h1 img {
    max-height: 54px;
  }
  #header .nav_wrap .contact a {
    width: 80px;
    height: 65px;
  }
  #header .nav_wrap .contact a span.mail_icon {
    display: none;
  }
  #header .nav_wrap .contact a span:last-child {
    color: #fff;
    background-color: #399D26;
    width: 100%;
  }
}
/*--------------------------
footer
---------------------------*/
#footer {
  padding-top: 0;
}
#footer .contact_btn:first-child {
  margin-bottom: 30px;
}
#footer .contact_btn a {
  background: #399D26;
  border-color: #399D26;
  border-width: 1px;
}
#footer .contact_btn a:hover {
  color: #399D26;
}
#footer .contact_btn:nth-of-type(2) a {
  color: #399D26;
  background: #fff;
}
#footer h1 a img {
  max-width: 232px;
}

@media screen and (max-width: 768px) {
  #footer h1 a img {
    max-width: 200px;
  }
}
/*--------------------------
main_visual
---------------------------*/
#main_visual {
  position: relative;
  display: flex;
  align-items: center;
  height: 600px;
  padding: 0 90px;
  background-image: url("../image/bg-kv.webp");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
#main_visual .txt_box {
  width: 100%;
  max-width: 1170px;
  margin: 3rem auto 0;
}
#main_visual .txt_box h1 {
  font-size: 2.75rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  margin: 0 0 15px;
}
#main_visual .txt_box h1 span {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 4px 1rem 0.5rem;
  margin: 1.5rem 0;
}
#main_visual .txt_box p {
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
}

@media only screen and (min-width: 1600px) {
  #main_visual {
    height: 740px;
  }
}
@media only screen and (max-width: 1024px) {
  #main_visual {
    height: 480px;
  }
}
@media only screen and (max-width: 768px) {
  #main_visual {
    height: 180px;
    padding: 0 20px;
  }
  #main_visual .txt_box {
    margin-top: 0;
  }
  #main_visual .txt_box h1 {
    font-size: 1.25rem;
    text-shadow: 0 2px 4px #999;
    margin-bottom: 0.5rem;
  }
  #main_visual .txt_box h1 span {
    margin: 0.5rem 0;
    padding: 2px 1rem;
  }
  #main_visual .txt_box p {
    font-size: 0.75rem;
    font-weight: normal;
    line-height: 17px;
    text-shadow: 1px 1px 0 #888, -1px 1px 0 #888, 1px -1px 0 #888, -1px -1px 0 #888;
  }
}
@media only screen and (max-width: 380px) {
  #main_visual {
    height: 180px;
  }
}
/*--------------------------
section01
---------------------------*/
#section01 {
  position: relative;
  padding: 100px 0;
  background: url(../image/bg-environment.webp) no-repeat center;
  background-size: contain;
}
#section01 .container h2 + .graph_box {
  margin-bottom: 60px;
}

@media only screen and (max-width: 768px) {
  #section01 {
    padding: 60px 0;
    background-size: cover;
  }
  #section01 .text_img {
    margin: 1rem auto 0;
  }
}
/*--------------------------
section02
---------------------------*/
#section02 {
  padding: 100px 0 0;
}

@media only screen and (max-width: 768px) {
  #section02 {
    padding: 60px 0;
  }
  #section02 .text_img {
    margin: 2rem auto 0;
  }
}
/*--------------------------
section03
---------------------------*/
#section03 {
  position: relative;
  padding: 100px 0;
  background: url(../image/bg-product.webp) no-repeat center bottom;
  background-size: cover;
}
#section03 .container .graph_box .graph__text {
  margin: 0 0 30px;
}
#section03 .container .graph_box img + .graph__text {
  font-weight: normal;
  text-align: left;
  max-width: 700px;
  margin: 2rem auto 0;
}

@media only screen and (max-width: 768px) {
  #section03 {
    padding: 60px 0;
  }
  #section03 .container .graph_box .graph__text {
    margin-bottom: 20px;
  }
  #section03 .container .graph_box img + .graph__text {
    margin-top: 1rem;
  }
}
/*--------------------------
section04
---------------------------*/
#section04 {
  padding: 100px 0 0;
  background: url("../image/bg-solution.webp") no-repeat left bottom;
  background-size: cover;
}
#section04 .container h2 + .item__wrapper {
  margin-bottom: 100px;
}
#section04 .container .item__wrapper {
  text-align: center;
}
#section04 .container .item__wrapper .item_title__container {
  position: relative;
}
#section04 .container .item__wrapper .item_title__container::before {
  display: none;
  content: "";
  position: absolute;
  left: 0;
  background: url(../image/sl-no-1.webp) no-repeat;
  background-size: contain;
  width: 62px;
  height: 120px;
}
#section04 .container .item__wrapper .item_title__container h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
#section04 .container .item__wrapper .item_title__container p {
  font-size: 18px;
  line-height: 1.75rem;
  margin-bottom: 1.5rem;
}
#section04 .container .item__wrapper .list__wrapper {
  text-align: left;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 2.5rem;
}
#section04 .container .item__wrapper .list__wrapper li {
  display: flex;
  align-items: center;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.5;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 1rem;
}
#section04 .container .item__wrapper .list__wrapper li::before {
  content: "";
  display: inline-block;
  background: url(../image/check-mark.svg) no-repeat center;
  width: 30px;
  height: 30px;
  margin-right: 0.75rem;
}
#section04 .container .item__wrapper .data_item__container {
  display: flex;
  justify-content: space-between;
  gap: 2.5rem;
}
#section04 .container .item__wrapper .data_item__container .data_item p {
  font-size: 14px;
  line-height: 1.3rem;
  text-align: left;
  margin-top: 1rem;
}
#section04 .container .item__wrapper + .item__wrapper .item_title__container::before {
  background: url(../image/sl-no-2.webp) no-repeat;
  width: 90px;
  background-size: contain;
}
#section04 .container .item__wrapper + .item__wrapper .data_item__container .data_item p {
  text-align: center;
}

@media only screen and (min-width: 769px) {
  #section04 .data_item__container .data_item {
    width: calc(33.33% - 1.7rem);
  }
  #section04 .data_item__container .data_item.__double {
    width: calc(66.66% - 1.25rem);
  }
}
@media only screen and (max-width: 768px) {
  #section04 {
    padding: 60px 0 0;
  }
  #section04 .container h2::before {
    width: 26px;
    height: 76px;
  }
  #section04 .container .item__wrapper .item_title__container::before {
    height: 72px;
  }
  #section04 .container .item__wrapper .item_title__container h3 {
    font-size: 1.25rem;
    line-height: 1.75rem;
    margin-bottom: 2rem;
    padding-left: 1rem;
  }
  #section04 .container .item__wrapper .item_title__container p {
    font-size: 16px;
    line-height: 1.5rem;
    text-align: left;
  }
  #section04 .container .item__wrapper + .item__wrapper .item_title__container::before {
    background-size: contain;
  }
  #section04 .container .item__wrapper .list__wrapper li {
    font-size: 15px;
    line-height: 1.25rem;
  }
  #section04 .container .item__wrapper .list__wrapper li + li {
    margin-top: 0.5rem;
  }
  #section04 .container .item__wrapper .list__wrapper li::before {
    width: 20px;
    min-width: 20px;
    height: 20px;
    background-size: contain;
  }
  #section04 .container .item__wrapper .data_item__container {
    flex-direction: column;
  }
  #section04 .container .item__wrapper .data_item__container .data_item p {
    text-align: center;
  }
}/*# sourceMappingURL=style.css.map */</pre></body></html>