@charset "UTF-8";
/**************************************↓↓全体**********************************************/
* {
  margin: 0;
  padding: 0;
}
.wrapper{
  overflow: hidden;
}
html{
  scroll-behavior: smooth;
}
body{
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: 0.1em;
  color: #333;
  animation: fadeIn 2.5s ease 0s 1 normal;
  -webkit-animation: fadeIn 2.5s ease 0s 1 normal;
}
h5{
  font-weight: bold;
}
@keyframes fadeIn {
  0% {opacity: 0}
  100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
  0% {opacity: 0}
  100% {opacity: 1}
}
.section-title{
  font-family: 'Questrial', sans-serif;
  font-weight: bold;
}

.zoom{
  animation: animationZoom1 15s ease-out forwards;
}
@keyframes animationZoom1 {
  0% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1.0);
  }
}
/***↓↓ボタン***/
.btn-flat-simple {
  position: relative;
  display: inline-block;
  font-weight: bold;
  margin-bottom: 30px;
  padding: 0.25em 0.5em;
  text-decoration: none;
  background: #333;
  color: white;
  transition: .3s;
  font-family: 'Questrial', sans-serif;
}
.btn-flat-simple:hover {
  color: #D3D3D3;
  background:#F5F5F5;
  text-decoration: none;
}
/***↓↓メニュー***/
.navbar{
  height: 50px;
  font-family: 'Questrial', sans-serif;
}
.navbar-brand{
  margin-left: 1%;
  margin-right: 39%;
  font-family: serif;
  font-size: 120%;
}
.navbar-brand:hover{
 opacity: 0.5;
}
.navbar-toggler-icon{
  width: 25px;
  height: 25px;
  border: none;
}
.navbar-toggler{
  border: none;
}
.navbar-expand-lg .navbar-nav .nav-link {
    color:#333;
    font-size: 100%;
    width: 100%;
  }
  .nav-item{
    font-size: 18px;
    font-weight: bold;
  }
/***↓↓四角***/
  .area{
    width: 100%;
    height:100%;
    z-index: -9999999;
}
.circles{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2950px;
    overflow: hidden;
    z-index: -999999999;
}
.circles li{
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background:#333;
    animation: animate 25s linear infinite;
    bottom: -150px;
}
.circles li:nth-child(1){
    left: 75%;
    width: 50px;
    height: 50px;
    animation-delay: 0s;
}
.circles li:nth-child(2){
    left: 25%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 15s;
}
.circles li:nth-child(3){
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}
.circles li:nth-child(4){
    left: 55%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}
.circles li:nth-child(5){
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 10s;
}
.circles li:nth-child(6){
    left: 30%;
    width: 30px;
    height: 30px;
    animation-delay: 13s;
}
.circles li:nth-child(7){
    left: 10%;
    width: 95px;
    height: 95px;
    animation-delay: 7s;
}
.circles li:nth-child(8){
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 20s;
    animation-duration: 45s;
}
.circles li:nth-child(9){
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 25s;
    animation-duration: 35s;
}
.circles li:nth-child(10){
    left: 85%;
    width: 25px;
    height: 25px;
    animation-delay: 27s;
    animation-duration: 25s;
}
.circles li:nth-child(11){
  left: 35%;
  width: 100px;
  height: 100px;
  animation-delay: 31s;
  animation-duration: 20s;
}
.circles li:nth-child(12){
  left: 50%;
  width: 75px;
  height: 75px;
  animation-delay: 35s;
  animation-duration: 17s;
}
@keyframes animate {
    0%{
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 25%;
    }
    100%{
        transform: translateY(-2400px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }
}
@media screen and (min-width:1450px) {
  .circles{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3575px;
    overflow: hidden;
    z-index: -999999999;
}

}
/***↓↓フェードイン***/
.fadein{
  opacity : 0;
   transform : translate(0, 50px);
   transition : all 390ms;
}
.fadein.scrollin {
   opacity : 1;
   transform : translate(0, 0);
}
.fadein2{
  opacity : 0;
   transform : translate(0, 50px);
   transition : all 390ms;
}
.fadein2.scrollin {
   opacity : 1;
   transform : translate(0, 0);
}
.fadein4{
  opacity : 0;
   transform : translate(0, 50px);
   transition : all 390ms;
}
.fadein4.scrollin {
   opacity : 1;
   transform : translate(0, 0);
}

/***↓↓モバイル***/
@media screen and (max-width:572px) {
  .navbar-brand{
    margin-left: 0%;
    margin-right: 0%;
    font-family: serif;
    font-size: 120%;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    color:#fff;
    font-size: 100%;
    width: 120%;
    text-align: center;
    background-color: #333;
    opacity: 0.8;
    margin-left: -10%;
  }
  .circles{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3200px;
    overflow: hidden;
}
@keyframes animate {
  0%{
      transform: translateY(0) rotate(0deg);
      opacity: 1;
      border-radius: 0%;
  }
  100%{
      transform: translateY(-2800px) rotate(720deg);
      opacity: 0;
      border-radius: 50%;
  }
}
.fadein{
  opacity : 0;
   transform : translate(0, 50px);
   transition : all 750ms;
}
.fadein.scrollin {
   opacity : 1;
   transform : translate(0, 0);
}
.fadein2{
  opacity : 0;
   transform : translate(0, 50px);
   transition : all 750ms;
}
.fadein2.scrollin {
   opacity : 1;
   transform : translate(0, 0);
}

.btn-flat-simple {
  position: relative;
  display: inline-block;
  font-weight: bold;
  text-align: center;
  padding: 0.7em 1em;
  width: 200px;
  text-decoration: none;
  background: #333;
  color: white;
  transition: .3s;
  font-family: 'Questrial', sans-serif;
}
.btn-flat-simple:hover {
  color: #D3D3D3;
  background:#F5F5F5;
  text-decoration: none;
}
}
@media screen and (max-width:320px){
  .navbar-brand{
    margin-left: 0%;
    margin-right: -5%;
    font-family: serif;
    font-size: 120%;
  }
}
/**********************************【ホーム】**********************************************/
 /*********************************↓↓トップ****************************************/

#carousel1{
	width: 100%;
}
#carousel2{
	display: none;
}
/***↓↓モバイル***/
@media screen and (max-width:572px) {
  #carousel1{
    display: none;
  }
  #carousel2{
    display: block;
    width: 100%;
  }
}
/*********************************↓↓セクション１****************************************/

 .subtitle{
   margin-top: 180px;
   font-weight: bold;
   text-align: center;
   line-height: 2em;
 }
 .subsentences{
   margin-top: 170px;
   line-height: 3em;
 }
 .box17{
  margin:2em 0;
  margin-top: 180px;
  width: 90%;
  position: relative;
  padding: 1em 1.5em;
  border-top: solid 2px #333;
  border-bottom: solid 2px #333;
}
.box17:before, .box17:after{
  content: '';
  position: absolute;
  top: -10px;
  width: 2px;
  height: -webkit-calc(100% + 20px);
  height: calc(100% + 20px);
  background-color: #333;
}
.box17:before {left: 10px;}
.box17:after {right: 10px;}
.box17 p {
  margin: 0; 
  padding: 0;
}
/***↓↓モバイル***/
@media screen and (max-width:572px){
  .box17{
    margin:2em 0;
    margin-top: 100px;
    width: 100%;
    position: relative;
    padding: 1em 1.5em;
    border-top: solid 2px #333;
    border-bottom: solid 2px #333;
  }
  .subtitle{
    font-size: 21px;
  }
  .subsentences{
    margin-top: 0px;
    line-height: 3em;
  }
}
@media screen and (max-width:321px){
  .subtitle{
    margin-top: 110px;
    font-size: 130%;
    font-weight: bold;
    text-align: center;
    line-height: 2em;
  }
}
  /**********************************↓↓プロダクト****************************************/

  .product-title{
    margin-top: 150px;
    margin-bottom: 100px;
    text-align: left;
  }
  .product-title1{
    letter-spacing: 0em;
    margin-top: 150px;
  }
  .product-title2{
    letter-spacing: 0em;
  }
  .product-img1{
    margin-top: 120px;
  }
  .product-img2{
    margin-top: 50px;
    margin-left: 25%;
    margin-right: 20%;
  }
  .product-img3{
    margin-top: 50px;
    margin-left: 10%;
    margin-right: 10%;
  }
  .product-sentences{
    line-height: 3em;
    margin-bottom: 10px;
    font-family: 'Questrial', sans-serif;
  }
/***↓↓モバイル***/
@media screen and (max-width:572px){
  .product-img1{
    margin-top: 120px;
    margin-left: 15%;
    margin-right: 10%;
  }
  .product-img2{
    margin-top: 50px;
    margin-left: 45%;
    margin-right: 40%;
  }
  .product-img3{
    margin-top: 50px;
    margin-left: 25%;
    margin-right: 25%;
    width: 55%;
  }
  .product-title2{
    margin-top: 25px;
    font-size: 21px;
    text-align: center;
  }
  .product-title1{
    text-align: center;
    margin-top: 100px;
  }
  .product-img4{
    width: 80%;
    margin-left: 10%;
    margin-right: 10%;
  }
  .product-sentences{
    line-height: 3em;
    margin-top: 35px;
    margin-bottom: 25px;
    text-align: left;
  }
  .btn1{

  }
}
 /**********************************↓↓ニュース********************************************/
 
 #section4{
  padding-top: 10px;
  margin-top: -10px;
}
.news{
background-color:rgb(250, 250, 250)  ;
margin-left: 30%;
margin-top: 150px;
height: 375px;
z-index: 999999;
}
.news-title{
    padding: 50px;
}
.news-sentences{
  text-decoration: underline;
  text-decoration-color: #333;
}
ul{
    list-style: none;
    padding-left: 50px;
}
 .msr_newslist02 {
  width: 100%;
}
.msr_newslist02 li {
  font-size: 14px;
  background-color:rgb(250, 250, 250)  ;
}
.msr_newslist02 li:nth-child(odd) {
  background-color: rgb(250, 250, 250) ;
}
.msr_newslist02 li a {
  box-sizing: border-box;
  color: #000000;
  display: table;
  padding: 10px;
  text-decoration: none;
  transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -webkit-transition: 0.2s ease-in-out;
  width: 100%;
}


.msr_newslist02 li div {
  display: table-cell;
  width: 144px;
}
.msr_newslist02 li p {
  display: table-cell;
  padding-left: 20px;
  vertical-align: middle;
}

/* 時間の設定 */
.msr_newslist02 li time {
  display: table-cell;
  vertical-align: top;
  width: 90px;
}
/***↓↓モバイル***/
@media screen and (max-width:572px){
  .news{
    background-color:rgb(250, 250, 250) ;
    margin-left: 10%;
    margin-top: 150px;
    height: 350px;
    }
    .news-title{
      padding-left: 23px;
      padding-top: 50px;
  }
  .news-sentences{
    text-decoration: underline;
    text-decoration-color: #333;
    width: 67%;
  }
  ul{
      list-style: none;
      padding-left: 17px;
  }
  time{
    margin-right: -20px;
  }
    .msr_newslist02 li p {
      display: table-cell;
      padding-left: 0px;
      vertical-align: middle;
    }
    .msr_newslist02 li p {
      display: table-cell;
      vertical-align: middle;
    }
}
@media screen and (max-width:320px){
  .news{
    background-color:rgb(250, 250, 250) ;
    margin-left: 10%;
    margin-top: 150px;
    height: 600px;
    }
}
 /*******************************↓↓ファーマーズ********************************************/
 #section5{
  padding-top: 25px;
  margin-top: -25px;
}
.farmers-title{
  text-align: center;
  margin-top: 200px;
  margin-bottom: 25px;
}
.farmers-sentences{
  line-height: 3em;
  text-align: center;
  font-family: 'Questrial', sans-serif;
}
/***↓↓モバイル***/
@media screen and (max-width:572px) {
  .farmers-title{
    text-align: center;
    margin-top: 150px;
    margin-bottom: 50px;
  }
  .farmers-sentences{
    line-height: 3em;
    margin-top: 75px;
  }
  .btn1{
   
  }
}
 /*******************************↓↓フッター********************************************/

 footer{
   height: 700px;
   background-color: #333;
   margin-top: 300px;
   color: #fff;
   font-size: 10px;
   text-align: center;
   padding-top: 350px;
 }
 /***↓↓モバイル***/
@media screen and (max-width:572px) {
  footer{
    height: 500px;
    background-color: #333;
    margin-top: 350px;
    padding-top: 350px;
  }
}
/**********************************【アバウト】**********************************************/
 /*********************************↓↓トップ****************************************/
.about{
  text-align: center;
  margin-top: 250px;
  margin-bottom: 200px;
  font-weight: bold;
  font-family: 'Questrial', sans-serif;
}
.about-sentences{
  text-align: center;
  margin-top: 50px;
  line-height: 3em;
}
.about-title{
  text-align: center;
  margin-top: 150px;
  font-weight: bold;
  font-family: 'Questrial', sans-serif;
}
.about-title2{
  text-align: center;
  margin-top: 150px;
  font-weight: bold;
  font-family: 'Noto Sans JP', sans-serif;
}
.about-title3{
  text-align: center;
  font-size: 12px;
  margin-top: 150px;
  font-weight: bold;
  font-family: 'Questrial', sans-serif;
}
.about-title4{
  font-weight: bold;
  font-family: 'Questrial', sans-serif;
}

/***↓↓モバイル***/
@media screen and (max-width:572px) {
  .about{
    text-align: center;
    margin-top: 350px;
    margin-bottom: 350px;
    font-weight: bold;
    font-family: 'Questrial', sans-serif;
  }
  .about-title{
    text-align: center;
    margin-top: 150px;
    font-weight: bold;
    width: 90%;
    margin-left: 5%;
    margin-right: 5%;
    font-family: 'Questrial', sans-serif;
  }
  .about-title2{
    text-align: center;
    margin-top: 150px;
    font-weight: bold;
    width: 96%;
    margin-left: 2%;
    margin-right: 2%;
    letter-spacing: 0.01em;
    font-family: 'Noto Sans JP', sans-serif;

  }
}
/**********************************【カンパニー】**********************************************/
 /*********************************↓↓トップ****************************************/

 table{
  border-collapse:collapse;
  margin:0 auto;
  width: 40%;
}
tr{
  height: 55px;
}
th{
  width: 32%;
}
td,th{
  border-top:1px solid #666;
  padding:10px;
}
tr:last-child td,
tr:last-child th{
  border-bottom:1px solid #666;  
}
 @media screen and (max-width:572px) {
  table{
    border-collapse:collapse;
    margin:0 auto;
    width: 85%;
  }
  tr{
    height: 70px;
  }
  th{
    width: 100%;
  }
}
/**********************************【プロダクト】**********************************************/
 /*********************************↓↓トップ****************************************/
 .product-sentences2{
  margin-bottom: 150px;
  font-family: 'Questrial', sans-serif;
  text-align: center;
}
.product-sentences3{
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 3em;
  margin-top: 50px;
}
.product-sentences4{
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 3em;
  margin-top: 50px;
}
.about2{
  text-align: center;
  margin-top: 200px;
  margin-bottom: 100px;
  font-weight: bold;
  font-family: 'Questrial', sans-serif;
}
@media screen and (max-width:572px) {
  .product-sentences3{
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 3em;
    margin-bottom: 25px;
    margin-top: 25px;
  }
  .btn2{
    margin-left: 22%;
    margin-right: 22%;
  }
  .product-sentences4{
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 3em;
    margin-top: 0px;
    margin-bottom: 30px;
    text-align: center;
  }
  .service{
    text-align: center;
  }
}
@media screen and (max-width:320px){
  .about{
    text-align: center;
    margin-top: 250px;
    margin-bottom: 300px;
    font-weight: bold;
    font-family: 'Questrial', sans-serif;
  }
  .btn2{
    margin-left: 15%;
    margin-right: 15%;
  }
}