@charset "utf-8";
/* Import Stylesheet */
@import url("../plugin/bootstrap/css/bootstrap.min.css");
@import url("../plugin/bootstrap-icons/font/bootstrap-icons.css");
@import url("../plugin/fontawesome/css/all.min.css");
@import url("../plugin/wow/css/libs/animate.css");
@import url("../plugin/swiper/swiper-bundle.css");
@import url("../plugin/fancybox/dist/fancybox/fancybox.css");
/* Google Font */
.noto-sans-jp-<uniquifier> {
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
.noto-serif-jp-<uniquifier> {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
.open-sans-<uniquifier> {
  font-family: "Open Sans", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}
/* Root */
:root {
  --font-primary: "Noto Serif JP", "Open Sans", 'Helvetica Neue', 'Arial', sans-serif;
  --font-second: "Noto Sans JP", "Open Sans", 'Helvetica Neue', 'Arial', sans-serif;
  --text-10: 10px;
  --text-12: 12px;
  --text-14: 14px;
  --text-16: 16px;
  --text-18: 18px;
  --text-20: 20px;
  --text-22: 22px;
  --text-24: 24px;
  --text-30: 30px;
  --text-32: 32px;
  --text-36: 36px;
  --text-48: 48px;
  --color-white: #ffffff;
  --color-black: #000;
  --color-green1: #c5e0b4;
  --color-green2: #a9d18e;
  --color-green3: #548235;
  --color-green4: #385723;
  --color-lightgray: #e5e5e5;
  --color-border: #7f7f7f;
  --box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.15);
  --border-radius: 24px;
  --border-circle: 999px;
  --border-radius-0: 0;
}
*, *:before, *:after {
  margin: 0;
  padding: 0; 
  box-sizing: border-box;
  outline: 0;
}
html { 
  position: relative;
  min-height: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  position: relative;
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100vh;
  background-color: var(--color-white);
  font-family: var(--font-primary);
  font-size: var(--text-16);
  font-weight: 400;
  line-height: 1.75;
  color: var(--color-black);
  word-break: normal;
  outline: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.50);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
input:not([type=range]), select, textarea {
  outline: none;
}
main {
  position: relative;
  overflow: hidden;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  transition: all .3s;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
  color: var(--color-green4);
}
ul, li, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
button {
  margin: 0;
  padding: 0;
  background-color: transparent;
  border: 0;
  border-radius: var(--border-radius-0);
  text-decoration: none;
}
button:focus {
  outline: 0;
}
/**/
.text-align-left {
  text-align: left;
}
.text-align-center {
  text-align: center;
}
.text-align-right {
  text-align: right;
}
.text-uppercase {
  text-transform: uppercase;
}
.btn1 {
  display: inline-block;
  position: relative;
  margin: 0 10px;
  padding: 0 30px 0 10px;
  min-width: 120px;
  height: 36px;
  background-color: var(--color-green4);
  border: solid 1px var(--color-green4);
  border-radius: var(--border-circle);
  text-align: center;
  cursor: pointer;
  transition: transform .5s ease-in-out;
  z-index: 0;
}
.btn1 span {
  color: var(--color-white);
  font-size: var(--text-12);
  line-height: 34px;
}
.btn1:hover {
  background-color: var(--color-green3);
  border: solid 1px var(--color-green3);
  color: var(--color-white);  
}
.btn1::after {
  position: absolute;
  top: 50%;
  right: 15px;
  content: "";
  width: 18px;
  height: 7px;
  background-image: url(../img/arrow-more.svg);
  background-size: 18px 7px;
  background-repeat: no-repeat;
  transform: translateY(-50%);
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.btn1:hover::after {
  right: 7px;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
/**/
.page-top::before {
  position: fixed;
  top: 0;
  right: 0;
  display: block;
  content:'';
  width: calc(100vw - 34%);
  height: 400px;
  background-color: var(--color-green3);
  z-index: -1;
}
.page-top::after {
  position: fixed;
  top: 0;
  right: 0;
  display: block;
  content:'';
  width: calc(100vw - 34%);
  height: 55px;
  background-color: var(--color-green4);
  z-index: -1;
}
.wrap {
  position: relative;
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}
.header {
  position: relative;
  margin: 0;
  width: 100%;
}
.header-bg {
  background-color: transparent;
  box-shadow: unset;
}
.header-sticky {
  position: relative;
}
.logo {}
.logo img {
  height: 60px;
}
.header-contact {
  position: fixed;
  top: 0;
  right: 0;
  padding: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.contact-number {
  color: var(--color-white);
  font-size: var(--text-18);
  font-weight: 700;
  line-height: 40px;
  letter-spacing: 5px;
}
.contact-number i {
  margin-right: 10px;
}
.navbar-nav {
  padding-top: 3rem;
}
.nav-item {}
.nav-link {
  position: relative;
  padding: var(--bs-nav-link-padding-y) 15px !important;
  color: var(--color-white);
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show, .nav-link:hover {
  color: var(--color-white);
}
.nav-link::before {
  content: '';
  position: absolute;
  width: calc(100% - 30px);
  height: 2px;
  background-color: var(--color-white);
  bottom: 0;
  left: 15px;
  right: 15px;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform .3s ease-in-out;
}
.nav-link:hover::before {
  transform-origin: left;
  transform: scaleX(1);
}
.scroll-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  background-color: var(--color-white);
  box-shadow: var(--box-shadow);
  z-index: 10;
}
.scroll-header::before {
  position: fixed;
  top: 0;
  right: 0;
  display: block;
  content:'';
  width: calc(100vw - 34%);
  height: 92px;
  background-color: var(--color-green3);
  z-index: -1;
}
.scroll-header::after {
  position: fixed;
  top: 0;
  right: 0;
  display: block;
  content:'';
  width: calc(100vw - 34%);
  height: 48px;
  background-color: var(--color-green4);
  z-index: -1;
}
.scroll-header .navbar {
  padding: 0;
}
.scroll-header .logo img {
  height: 50px;
}
.scroll-header .header-contact {
  padding: 5px 10px;
  height: 48px;
}
.main {
  position: relative;
  padding-bottom: 150px;
}
.footer {
  position: absolute;
  bottom: 0;
  padding: 20px 0;
  width: 100%;
  height: 150px;
  background-color: var(--color-green4);
  color: var(--color-white);
}
.main-footer {
  position: relative;
  margin: 0 auto;
  width: 100%;
}
.footer-logo {
  padding: 0;
}
.footer-logo img {
  height: 50px;
}
.footer-link {
  margin-top: 10px;
}
.footer-link ul {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: flex-end;
  height: 50px;
}
.footer-link ul li {
  flex: 0 0 auto;
}
.footer-link a {
  position: relative;
  display: inline-block;
  margin: 0 0 10px 20px;
  font-size: var(--text-16);
  font-weight: 400;
  line-height: 30px;
  color: var(--color-white);
}
.footer-link a:hover {}
.footer-link a::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--color-white);
  bottom: 0;
  left: 0;
  right: 0;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform .3s ease-in-out;
}
.footer-link a:hover::before {
  transform-origin: left;
  transform: scaleX(1);
}
.copyright {
  font-size: var(--text-14);
  text-align: center;
}
.footer hr {
  color: var(--color-white);
  opacity: 1;
}
.scroll-top {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 48px;
  height: 48px;
  background: var(--color-white);
  box-shadow: var(--box-shadow);
  cursor: pointer;
  display: none;
  transform-origin: bottom center;
  transform: translate(0, 0);
  transition: all .6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  z-index: 9;
  color: var(--color-black);
}
.scroll-top span {
  display: flex;
  justify-content: center;
  font-size: var(--text-12);
  color: var(--color-black);
  line-height: 48px;
  text-align: center;
}
.scroll-top span::after {
  content:'\f148';
  font-family: "bootstrap-icons";
}
.scroll-top:hover {
  bottom: 20px;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.section-main {
  position: relative;
  padding: 30px 0;
}
.main-banner-top {}
.main-banner {
  position: relative;
  margin: 0 auto;
  padding: 0 0 60px 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.main-banner-img {
  position: relative;
  margin: 0 auto;
  z-index: 0;
}
.section-title {
  position: relative;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.title {
  margin: 0;
  font-size: var(--text-24);
  font-weight: 700;
  color: var(--color-black);
}
.blog-news {
  position: absolute;
  bottom: 38px;
  left: 0;
  margin: 0;
  padding: 0;
  width: 50%;
  background-color: var(--color-white);
  border-radius: 0 24px 24px 0;
  box-shadow: var(--box-shadow);
}
.blog-news-inside {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.header-news {
  margin: 0;
  padding: 20px;
  width: 24%;
  background-color: var(--color-green4);
  text-align: center;
}
.title-news {
  font-size: var(--text-24);
  font-weight: 700;
  line-height: 36px;
  color: var(--color-white);
}
.news-list {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  width: 76%;
}
.news-list a {
  display: block;
  transition: all 400ms cubic-bezier(0.42,0,0.58,1);
}
.news-item {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  margin: 10px 0 0 0;
}
.news-list a:first-child .news-item {
  margin: 0;
}
.news-item .news-date {
  margin-right: 20px;
  width: 90px;
  color: var(--color-black);
}
.news-item .news-desc {
  flex: 1;
  color: var(--color-black);
}
.news-item .news-desc span {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-right: 10px;
}
.news-list a:hover .news-item .news-desc span {
  color: var(--color-green4);
  transition: all .3s cubic-bezier(.165,.84,.44,1);
}
.news-list a.btn1 {
  margin: 0;
}
.section-message {
  position: relative;
  background-color: var(--color-white);
}
.main-message {
  position: relative;
  margin: 0 auto;
  padding: 0 0 30px 0;
}
.section-message .section-title {
  align-items: flex-start;
}
.img-message {
  position: relative;
  display: inline-block;
  margin: 0 0 100px 0;
  padding: 0;
  z-index: 1;
  text-align: center;
}
.img-message img {
  position: relative;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}
.bg-main-message {
  position: absolute;
  top: 70px;
  right: 0;
  padding: 45px 80px 0 320px;
  width: 800px;
  height: 480px;
  background-color: var(--color-green1);
  border-radius: var(--border-radius);
  z-index: 0;
}
.bg-main-message::before {
  position: absolute;
  bottom: 0;
  right: 0;
  content: "Soil Vision";
  font-size: 110px;
  line-height: 110px;
  opacity: 0.2;
  color: var(--color-white);
  text-transform: uppercase;
  z-index: 0;
}
.bg-main-message p .btn1 {
  display: table;
  margin-left: auto;
  margin-right: 0;
} 
.section-contact {
  padding: 40px 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.section-contact.contact-1 {
  background-image: url(../img/bg-contact-1.png);
}
.section-contact.contact-2 {
  background-image: url(../img/bg-contact-2.png);
}
.section-contact::before {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  content: "";
  width: 100%;
  height: auto;
  background-color: rgba(0, 0, 0, .5);
}
.contact-info {
  color: var(--color-white);
  text-align: center;
}
.contact-info h6 {
  margin: 0 0 20px 0;
  font-size: var(--text-18);
  font-weight: 700;
}
.contact-info p {
  font-size: var(--text-16);
  font-weight: 400;
}
.section-business-content, .section-company-profile {
  background-color: var(--color-white);
}
.business-content-inside {
  margin: 0 auto;
}
.business-content {
  text-align: center;
}
.company-profile {
  margin-bottom: 30px;
}
.company-profile ul {
  overflow: hidden;
  background-color: var(--color-lightgray);
}
.company-profile ul li {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-content: flex-start;
  width: 100%;
}
.company-profile ul li span {
  flex: 30%;
  padding: 15px 20px;
  border-bottom: solid 1px var(--color-border);
  color: var(--color-black);
}
.company-profile ul li span+span {
  flex: 70%;
  background-color: var(--color-white);
  border-bottom: solid 1px var(--color-border);
  color: var(--color-black);
}
.company-profile ul li:first-child span {
  border-top: solid 1px var(--color-border);
}
.company-profile ul li:first-child span+span {
  border-top: solid 1px var(--color-border);
}

.page-inside::before {
  position: fixed;
  top: 0;
  right: 0;
  display: block;
  content:'';
  width: calc(100vw - 34%);
  height: 108px;
  background-color: var(--color-green3);
  z-index: -1;
}
.page-inside::after {
  position: fixed;
  top: 0;
  right: 0;
  display: block;
  content:'';
  width: calc(100vw - 34%);
  height: 55px;
  background-color: var(--color-green4);
  z-index: -1;
}
.section-page-inside {
  padding: 35px 0;
  background: rgb(185,210,168);
  background: linear-gradient(90deg, rgba(185,210,168,1) 0%, rgba(0,0,0,1) 100%);
}
.page-info {
  color: var(--color-white);
  text-align: center;
}
.page-info h6 {
  margin: 0;
  font-size: var(--text-24);
  font-weight: 700;
}
.bg-breadcrumb {
  background-color: var(--color-green1);
}
.breadcrumb {
  margin-bottom: 0;
  padding: 5px 0;
  background-color: transparent;
  border-radius: 0;
  font-size: var(--text-14);
}
.breadcrumb>li+li:before {
  padding: 0 10px;
  content: "/\00a0";
}
.contact-page, .page-other {
  background-color: var(--color-white);
}
.contact-page .bloc-inside {
  padding: 15px;
}
.contact-page .bloc-inside h6 {
  margin: 0 0 20px 0;
  font-weight: 700;
}
.contact-page .bloc-inside form {
  margin: 0;
  padding: 0;
}
.contact-page .bloc-inside form .form-group {
  margin-bottom: 1rem;
}
.contact-page .bloc-inside form .form-group span {
  color: #f00;
}
.contact-page .bloc-inside form label {
  margin-bottom: 5px;
}
.form-control:focus {
  border-color: var(--color-green2);
  box-shadow: 0 0 0 0.2rem rgba(84, 130, 53, 0.25);
}
.bloc-comingsoon {
  padding: 30px 0 0 0;
  text-align: center;
  font-size: var(--text-36);
}
.bloc-qa {
  padding: 20px 0;
}
.accordion {
  border-color: unset;
  border-radius: unset;
}
.accordion-button {
  background-color: var(--color-lightgray);
  border-radius: unset;
}
.accordion-item {
  margin-bottom: 10px;
}
.accordion-item:first-of-type, .accordion-item:first-of-type .accordion-button, .accordion-item:last-of-type .accordion-button.collapsed, .accordion-item:last-of-type {
  border-radius: unset;
}
.accordion-button:not(.collapsed) {
  background-color: var(--color-green2);
  color: var(--color-black);
}
.accordion-button:focus {
  box-shadow: unset;
}
.accordion-button::before {
  content: 'Q.';
  margin: 0 20px 0 0;
}
.accordion-body {
  position: relative;
  padding: 30px 20px 30px 50px;
}
.accordion-body::before {
  position: absolute;
  top: 30px;
  left: 20px;
  content: 'A.';
}
.blog-news-list {
  position: relative;
}
.blog-news-list {
  margin: 0 0 30px 0;
}
.blog-news-list .news-list {
  padding: 10px;
  width: 100%;
  border-bottom: dashed 1px var(--color-border);
}
.blog-news-list .news-item .news-date {
  width: 120px;
}
.blog-news-detail {
  padding: 20px;
}
.news-topic {
  position: relative;
  margin: 0 0 20px 0;
  font-size: var(--text-24);
  font-weight: 700;
  line-height: 60px;
  color: var(--color-black);
}
.news-topic::before {
  content:"";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background-image: linear-gradient(90deg, var(--color-green1) 0%, var(--color-black) 85%, var(--color-black) 100%);
}
.news-full-desc {
  margin: 0 0 30px 0;
}
.blog-news-detail .news-date {
  font-size: var(--text-14);
  color: var(--color-black);
}
.page-button {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.page-button .btn2 {
  display: inline-block;
  position: relative;
  margin: 0;
  padding: 0;
  min-width: 36px;
  height: 36px;
  background-color: var(--color-green4);
  border: solid 1px var(--color-green4);
  border-radius: var(--border-circle);
  color: var(--color-white);
  text-align: center;
  cursor: pointer;
  transition: transform .5s ease-in-out;
  z-index: 0;
}
.page-button .btn2 i {
  margin: 0;
  line-height: 32px;
}
.page-button .btn2 span {
  padding: 0 10px;
  line-height: 32px;
}
.page-button .btn2:hover {
  background-color: var(--color-green3);
  border: solid 1px var(--color-green3);
  color: var(--color-white);  
}
.page-button .btn3 {
  display: inline-block;
  position: relative;
  margin: 0;
  padding: 0 10px;
  min-width: 36px;
  height: 36px;
  background-color: var(--color-lightgray);
  border: solid 1px var(--color-lightgray);
  border-radius: var(--border-circle);
  color: var(--color-black);
  text-align: center;
  cursor: pointer;
  transition: transform .5s ease-in-out;
  z-index: 0;
}
.page-button .btn3 i {
  margin: 0;
  line-height: 32px;
}
.page-button .btn3 span {
  padding: 0 10px;
  line-height: 32px;
}
.page-button .btn3:hover {
  background-color: var(--color-green3);
  border: solid 1px var(--color-green3);
  color: var(--color-white);  
}
.page-button .page-button-nummber { }
.business-content-detail {
  position: relative;
}
.img-img, .img-img img { 
  position: relative;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}
.business-content-detail .img-img {
  margin: 20px 20px 20px 0;
}
.sub-title {
  position: relative;
  padding: 0 0 0 25px;
}
.sub-title::before {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  content:"";
  width: 15px;
  height: 5px;
  background: var(--color-green4);
  transform: translateY(-50%);
}
.sub-title::after {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  content:"";
  width: 5px;
  height: 5px;
  background: var(--color-green2);
  transform: translateY(-50%);
}
.business-content-detail dl {
  display: grid;
  grid-template-columns: max-content auto;
  padding: 0 0 0 10px;
}
.business-content-detail dl dt {
  width: 150px;
  grid-column-start: 1;
}
.business-content-detail dl dd {
  grid-column-start: 2;
}  