@charset "UTF-8";

/* ----------------------------------------------------------------------
 reset css
---------------------------------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table:not(.tinymce-table), caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
html {
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  font-size: 62.5%;
  scroll-behavior: smooth;
}

html * {
        /* padding/border差し引きなし */
        box-sizing: border-box;
    }
ul, ol {
  list-style: none;
}

body {
        -webkit-text-size-adjust: 100%;
        /* remのフォント単位指定 */
        font-size: 1.6rem;
        /* 基本フォント */
         font-family: "M PLUS 1", serif;
         font-weight: 400;
        color: #222;
        line-height: 1.7;
        letter-spacing: 1px;
    }
img {
        display: block;
        height: auto;
        max-width: 100%;
    }

a,
a:before,
a:after,
input {
  -webkit-transition-property: background-color, color;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease;
  -moz-transition-property: background-color, color;
  -moz-transition-duration: 0.2s;
  -moz-transition-timing-function: ease;
  -o-transition-property: background-color, color;
  -o-transition-duration: 0.2s;
  -o-transition-timing-function: ease;
  transition-property: background-color, color;
  transition-duration: 0.2s;
  transition-timing-function: ease;
}
a:hover {
  text-decoration: none;
}
h1 {
  font-size: 6rem;
  font-weight: 700;
}

h2 {
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  color: #094b0e;
}

h3 {
   font-size: 2.4rem;
  font-weight: 600;
}

h4 {
  font-size: 1.8rem;
  font-weight: 700;
}
.wrapper {
  overflow: hidden;
  padding-bottom: 150px;
}


footer {
    background-color: #679E32;
    margin-top: 70px;
    margin: 0 auto;
    position: relative;
    bottom: 0;
    width: 100%;
}
.footer-main {
    padding: 50px 4% 10px;
}
footer ul li {
  display: inline-block;
  margin-right: 15px;
  vertical-align: middle;
}
footer ul li a {
  color: #fff;
  font-size: 1.4rem;
}
footer a:hover {
  color: #fff000;
  transition: all .4s;
}

.f-company {
  margin-bottom: 40px;
}

.f-btn{
  position: relative;
  text-decoration: none;
  display: inline-block;
  background:#fff;
  color:#679E32;
  padding: 10px 40px 10px 20px;
  border-radius:8px;
    text-align: center;
    outline: none;
    transition: ease .2s;
    font-size: 1.3rem;
    margin-top: 15px;
    margin-right: 15px;
}

.f-btn:hover{
  background:#4E7924;
  color: #fff000;
}
.f-btn02 {
  padding: 20px 40px 20px 20px;
}
.f-logo {
  width: 180px;
}
.f-company {
    color: #fff;
    margin-top: 20px;
    font-size: 1.4rem;
}
.f-company a {
  color: #fff;
}
.copy {
    background-color: #4E7924;
    color: #fff;
    font-size: 1.8rem;
    padding: 10px 0 0;
    text-align: center;
    position: absolute;
    width: 100%;
}
.copy li {
  display:inline-block;
  margin: 0 20px;
}
.copy a:hover {
  color: #fff000;
  transition: all .4s;
}
.clight {
float: right;
font-size: 1rem;
padding: 0 10px 10px;
}


/*==================================================
　5-2-4 MENUがCLOSEに
===================================*/

.openbtn{
  position: relative;
  background:#679E32;
  cursor: pointer;
    width: 50px;
    height:50px;
  border-radius: 5px;
}

/*ボタン内側*/
.openbtn span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
    left: 14px;
    height: 2px;
    border-radius: 5px;
  background: #fff;
    width: 45%;
  }


.openbtn span:nth-of-type(1) {
  top:13px; 
}

.openbtn span:nth-of-type(2) {
  top:19px;
}

.openbtn span:nth-of-type(3) {
  top:25px;
}

.openbtn span:nth-of-type(3)::after {
  content:"Menu";/*3つ目の要素のafterにMenu表示を指定*/
  position: absolute;
  top:6px;
  left:1px;
  color: #fff;
  font-size: 0.6rem;
  text-transform: uppercase;
}

/*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/

.openbtn.active span:nth-of-type(1) {
    top: 14px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 26px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(3)::after {
  content:"Close";/*3つ目の要素のafterにClose表示を指定*/
    transform: translateY(0) rotate(-45deg);
  top:5px;
  left:4px;
}
/*========= ナビゲーションのためのCSS ===============*/

#g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
  top:-120%;
    left:0;
  width:100%;
    height: 55vh;/*ナビの高さ*/
  background:#679E32;
    /*動き*/
  transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    top: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 50vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

.nav-top {
  padding-top: 70px;
}
.nav-top a {
  color: #fff;
}
.toma-ico {
  margin-bottom: 30px;
}
.toma-no {
  margin-left: 30px;
  margin-bottom: 10px;
}
.toma-ico a:before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 20px;
  background-image: url(../img/tomato-icon.png);
  background-size: contain;
  vertical-align: middle;
  margin-right: 10px;
}
.nav-bt01 {
  border: 1px solid #fff;
  border-radius: 8px;
  color: #fff;
  font-size: 1.3rem;
  position: relative;
    text-decoration: none;
    display: inline-block;
    padding: 15px 50px 15px 30px;
    text-align: center;
    outline: none;
    transition: ease .2s;
}

.nav-bt01:hover{
  background:#4E7924;
  color: #fff000;
}
.nav-under {
  margin-top: 50px;
}
.nav-under a {
  color: #fff;
  margin-right: 30px;
  align-self: center;
}
.nav-under i {
  font-size: 2rem;
}
nav a:hover {
  color: #fff000;
    transition: 0.5s;
}




/*========= ボタンのためのCSS ===============*/
.openbtn{
  position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
  top:10px;
  right: 10px;
  cursor: pointer;
    width: 50px;
    height:50px;
} 
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
  background-color: #fff;
    width: 45%;
  }
.openbtn span:nth-of-type(1) {
  top:15px; 
}
.openbtn span:nth-of-type(2) {
  top:23px;
}
.openbtn span:nth-of-type(3) {
  top:31px;
}
.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}
.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}
.header-main {
  background: url("../img/fv.jpg")no-repeat;
  width: 100vw;
  height: 100svh;
  background-size: cover;
  position: relative;
}
.logo {
  position: absolute;
  top: 50px;
  left: 3%;
}
.logo img {
  width: 200px;
}

.fv-l,
.fv-r {
background-color: #679E32;
color: #fff;
text-align: center;
border-radius: 50%;
padding: 20px;
width: 200px;
height: 200px;
display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  opacity: 0;
  animation-fill-mode: forwards;
}
.fv-l {
  font-size: 4rem;
}
.fv-r {
  font-size: 2.4rem;
}
/*.fv-l,
.fv-r {
  animation: zoomOut 2.0s ease-in-out;
}
@keyframes zoomOut {
  0% {
    transform: scale(100.0);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}*/
.tomatoma img {
  animation: tomatoma 2s ease-out infinite;
  opacity: 1;
}
@keyframes tomatoma {
  0%, 40%, 60%, 80% {
    transform: scale(1.0);
  }
  50%, 70% {
    transform: scale(0.85);
  }
}

.fv-main {
  padding-top: 3%;
}


.fv-c {
  font-size: 6rem;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  color: #dd4d0c;
  background-color: #fff;
  padding: 20px;
  letter-spacing: 5px;
  font-weight: 800;
  font-size: 5vh;
}
.cont01 .cont01-l {
  line-height: 2.8;
}
.cont01 .cont01-r img {
  width: 100%;
}
.cont01 h2 {
  font-size: 3.3rem;
  color: #094B0e;
  margin-bottom: 70px;
}
.cont01 {
  margin-top: 100px;
  margin-bottom: 100px;
}
.cont02 h2,
.cont03 h2,
.cont04 h2,
.cont05 h2,
.cont07 h2,
.cont08 h2,
.cont09 h2 {
  border-bottom: 1px solid #acacac;
  padding-bottom: 10px;
  display: inline-block;
  position: relative;
}
.cont02,
.cont03,
.cont04,
.cont05,
.cont06,
.cont07,
.cont08,
.cont09 {
  margin-bottom: 100px;
}
.cont03 h2,
.cont08 h2,
.cont09 h2 {
  margin-bottom: 50px;
}
.cont02 h2:before,
.cont03 h2:before,
.cont04 h2:before,
.cont05 h2:before,
.cont07 h2:before,
.cont08 h2:before,
.cont09 h2:before {
  position: absolute;
    top: 39px;
    left: -10px;
    content: '';
    width: 10px;
    height: 10px;
    background-color: #acacac;
    border-radius: 50%;
}
.cont02 h2:after,
.cont03 h2:after,
.cont04 h2:after,
.cont05 h2:after,
.cont07 h2:after,
.cont08 h2:after,
.cont09 h2:after  {
  position: absolute;
    top: 39px;
    right: -10px;
    content: '';
    width: 10px;
    height: 10px;
    background-color: #acacac;
    border-radius: 50%;
}
.h2cont {
  text-align: center;
}
.cont02-txt {
  text-align: center;
  margin-bottom: 50px;
}
.cont02-read {
  text-align: center;
margin-bottom: 40px;
margin-top: 20px;
}
.cont02-inner {
  border-top :1px solid #acacac;
  border-left: 1px solid #acacac;
  padding: 40px 20px;
  position: relative;
  text-align: center;
  height: 100%;
}
.cont02-inner:before,
.cont02-inner02:before {
  position: absolute;
    top: -5px;
    left: -5px;
    content: '';
    width: 10px;
    height: 10px;
    background-color: #acacac;
    border-radius: 50%;
}
.cont02-inner02 {
  border-top :1px solid #acacac;
  border-bottom :1px solid #acacac;
  border-left: 1px solid #acacac;
  padding: 40px 20px 70px;
  position: relative;
  text-align: center;
  height: 100%;
}
.cont02-inner h3,
.cont02-inner02 h3 {
  color: #094b0e;
  text-align: center;
}
.cont02-inner img,
.cont02-inner02 img {
  margin: 30px auto;
  height: 200px;
  width: 200px;
  border-radius: 10px;
  object-fit: cover;
}
/* ボタン共通設定 */

.cont02 .btn-agr {
    position: absolute;
    text-decoration: none;
    display: inline-block;
    background: #679e32;
    color: #fff;
    padding: 15px 55px 20px 40px;
    border-radius: 8px;
    text-align: center;
    outline: none;
    transition: ease .2s;
    bottom: 20px;
    width: 80%;
    left: 40px;
  }
.btn-agr {
    position: relative;
    text-decoration: none;
    display: inline-block;
    background: #679e32;
    color: #fff;
    padding: 15px 55px 20px 40px;
    border-radius: 8px;
    text-align: center;
    outline: none;
    transition: ease .2s;
}

.btn-agr:hover{
  background:#4E7924;
  color: #fff000;
}

/* 矢印が回転 */

.btnarrow3::after{
    content: '';
    /*絶対配置で矢印の位置を決める*/
  position: absolute;
    top: 35%;
    right: 13px;
    /*矢印の形状*/    
    font: var(--fa-font-solid);
   content: "\f0a9";
    /*アニメーションの指定*/    
    transition: all .3s;
}

/*hoverした際のアニメーション*/
.btnarrow3:hover::after{
  animation: arrowrotate .4s;
}

@keyframes arrowrotate {
100% {
    transform: rotate(360deg);
  }
}

.cont02-txt {
  text-align: left;
}
img.smart-agri {
    height: 35px;
    width: 140px;
    margin: 0 auto 20px;
    border-radius: unset;
    object-fit: unset;
}
.info-ph img {
    border-radius: 10px;
    height: 140px;
    object-fit: cover;
  }
.info-day {
  font-size: 1.2rem;
  color: #094B0E;
  margin-bottom: 10px;
  text-align: left;
}
.info-cate {
  border: 1px solid #ccc;
  padding: 5px 20px;
  border-radius: 50px;
  text-align: center;
  margin-bottom: 10px;
  font-size: 1.3rem;
  display: inline-block;
  position: relative;
}
.info-cate::after {
    content: '●';
    display: inline-block;
    margin-right: 5px;
    position: absolute;
    top: -10px;
    right: 5px;
    color: #ccc;
}
.info-txt {
  color: #094B0E;
  text-align: left;
}
.info-cont {
  text-align: left;
}
.cont03-inner {
    border-top: 1px solid #acacac;
    padding: 40px 20px;
    position: relative;
    text-align: center;
    height: 100%;
}
.cont03-inner:before,
.cont03-inner02:before {
  position: absolute;
    top: -5px;
    left: -5px;
    content: '';
    width: 10px;
    height: 10px;
    background-color: #acacac;
    border-radius: 50%;
}
.cont03-inner02 {
  border-top :1px solid #acacac;
  border-bottom :1px solid #acacac;
  padding: 40px 20px;
  position: relative;
  text-align: center;
  height: 100%;
}
.info-more {
  text-align: right;
  padding: 30px 0;
}
.cont04-txt {
  text-align: center;
  margin: 40px auto;
}
.cont04-ph img {
  border-radius: 20px;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cont04 h3 {
  color: #094B0E;
  margin-bottom: 30px;
}
.cont04 .chiba h3 span {
  font-size: 1.8rem;
}
.cont04-txt02 ul {
  margin-top: 30px;
}
.cont04-kagome {
  background-color: #FCFBE8;
  padding: 20px;
  border: 1px solid #C6C6C6;
  margin: 50px auto;
}
.saien-ph img {
  border-radius: 20px;
  margin-bottom: 20px;
}
.chiba {
  margin-top: 100px;
}
.cont05 h2 {
  margin-bottom: 50px;
}
.cont05 img {
  border-radius: 20px;
}
.cont05-hanbai {
  border: 1px solid #999;
  padding: 30px;
  height: 100%;
}
.cont05 h3 {
  color: #094B0E;
  margin-bottom: 30px;
}
.cont05 h3.choku:before {
content: '';
  display: inline-block;
  width: 30px;
  height: 40px;
  background-image: url(../img/logo_2.svg);
  background-size: contain;
  vertical-align: middle;
  margin-right: 20px;
}
.cont05-hanbai img {
  border-radius: 20px;
  margin-top: 20px;
}
.cont05-choku {
  margin-top: 50px;
}
.cont05-l {
  margin-bottom: 30px;
}
.cont05-choku a {
  color: #222;
}
.cont05-choku .cont05-hanbai:hover {
  background-color: #FDF9DB;
  transition: .5s;
}
.cont06 {
  border: 1px solid #ccc;
  padding: 50px 40px;
}
.cont06 img {
  border-radius: 30px;
}
.cont06 a {
  margin-top: 30px;
}
.cont06 h2 {
  margin-bottom: 40px;
}
.cont07 img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.cont07 h2 {
  margin-bottom: 40px;
}
.cont07 p {
  margin-bottom: 40px;
  line-height: 2.3;
}
.cont08 table {
  text-align: left;
}
.cont08 table th,
.cont08 table td {
  padding: 15px;
  line-height: 2;
}
.cont09 .btn-agr {
  margin-top: 50px;
}
.fv-main-ab {
  background: url("../img/about-tit.jpg")no-repeat;
  background-position: center;
  background-size: cover;
  height: 330px;
  position: relative;
}
.main-tit {
  position: absolute;
  text-align: center;
  top: 230px;
  padding: 20px;
  right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}
.fv-main-ab h1 {
  background-color: #fff;
    color: #DD4D0C;
    font-size: 32px;
    display: inline-block;
    padding: 8px 10px;
}
#container{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

#main-area{
  width:70%;
  position: relative;
  padding-right: 40px;
}
.nav-l{
    position: -webkit-sticky;
      position: fixed;
border-radius: 10px;
  top: 100px;
    left: 3%;
    background:#fff;
  border: 1px solid #eee;
  box-shadow:0 0 5px #ddd;
  padding: 20px;
  line-height: 3;
  display: none;
}
.nav-l a {
  color:#094B0E;
  font-size: 1.4rem;
}
.nav-l a:hover {
  color: #DD4D0C;
  transition : all 0.s ease 0s;
}
#sub-area{
  width:25%;
  padding: 0px 20px 0 0;
}


.ab-cont {
  background-color: #fff;
  border-radius: 15px;
  padding: 40px 25px;
  margin: 40px auto;
}
.ab-cont h3{
  font-size: 2rem;
  color: #094B0E;
  margin-bottom: 50px;
  display: flex;
      justify-content: left;
}
.ab-cont h3 img {
  margin-right: 10px;
  width: 30px;
}
.ab-cont h4 {
  border: 1px solid #efefef;
  padding: 20px;
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
  color: #094B0E;
}
.about {
  background-color: #ddd;
}

#main-area h2 {
    border-bottom: 1px solid #acacac;
    padding-bottom: 10px;
    display: inline-block;
    position: relative;
    margin-top: 70px;
}
#main-area h2:before {
  position: absolute;
    top: 39px;
    left: -10px;
    content: '';
    width: 10px;
    height: 10px;
    background-color: #acacac;
    border-radius: 50%;
}
#main-area h2:after {
  position: absolute;
    top: 39px;
    right: -10px;
    content: '';
    width: 10px;
    height: 10px;
    background-color: #acacac;
    border-radius: 50%;
}
.area1-ph01 img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  margin-bottom: 50px;
  border-radius: 15px;
  margin-top: 30px;
}
.area1-ph02 img,
.area1-ph03 img {
  border-radius: 15px;
  margin-bottom: 15px;
  width: 40%;
}
#area-1 .area1-ph02 img {
  border-radius: 15px;
  margin-bottom: 15px;
  width: 100%;
}
.area1-ph02 p {
  font-size: 1.4rem;
}
.area1-ph02 {
  font-size: 2rem;
  height: 100%;
}
.area1-ph03 {
  border: 1px solid #efefef;
  padding: 20px;
  font-size: 2rem;
  color: #094B0E;
  height: 100%;
}
.area2-arrow {
  text-align: center;
margin: 20px auto;
}
.area2-cont03 {
  border: 1px solid #efefef;
  background-color: #FFFDD5;
  padding: 30px 20px;
}

.area2-cont03 h3 {
  color: #094B0E;
  font-size: 2rem;
  margin-bottom: 20px;
}
.area2-cont04 {
  margin: 50px auto;
  text-align: center;
}
.area2-cont04 img {
  border-radius: 15px;
  margin-bottom: 10px;
  width: 80%;
  margin: 0 auto;
}
.area2-cont04 p {
  font-size: 1.4rem;
  margin-top: 10px;
}
.head-border:after {
    margin-left: 1rem;
}
.area3-cont01 img {
  border-radius: 15px;
  margin-bottom: 20px;
}
.head-border {
    display: flex;
    align-items: center;
    font-size: 18px;
    margin-bottom: 10px;
    margin-top: 20px;
    color: #094B0E;
}
.head-border:after {
    content: "";
    height: 1px;
    flex-grow: 1;
    background-color: #679E32;
}
.ab-cont03 h3 {
  margin-top: 10px;
  margin-bottom: 20px;
}
.area3-cont01 {
  margin-bottom: 40px;
}
.ab-cont03-txt {
  margin-bottom: 40px;
}
.area3-cont01 h4 {
  border: none;
  padding: 0;
  color: #094B0E;
  font-size: 2rem;
  margin-bottom: 10px;
  text-align: left;
}
.area4-tit {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 30px;
}
.area4-cont01 {
  border: 2px solid #679E32;
  padding: 30px;
}
.area4-cont01 h5 {
  color: #094B0E;
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
}
.ab-cont04 .sensor p {
  text-align: center;
  margin-top: 10px;
  font-size: 1.4rem;
}
.area4-cont02 {
  margin: 30px auto;
}
.area4-cont03 img {
  border-radius: 15px;
  width: 100%;
  margin-bottom: 50px;
  height: 380px;
    object-fit: cover;
}
.area4-cont04 {
  border: 2px solid #679E32;
  padding: 40px 20px 20px;
  margin-top: 50px;
}
.ab-cont04 ul {
  margin-top: 30px;
}
.area4-cont04 h3 {
  text-align: center;
  color: #094B0E;
  margin-bottom: 50px;
}
.ab-cont04.ab-cont h4 {
    font-size: 2rem;
    color: #094B0E;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    margin: 40px auto;
}
.area5-cont01 img {
  border-radius: 15px;
}
.ab-cont04 h4.head-border {
  border: none;
}
.ab-cont04 h3 {
  display: block;
  margin-bottom: 0;
}
.agrion {
  position: relative;
  width: 30%;
  text-align: center;
  font-size: 1.2rem;
margin: 20px auto;
}
.agrion img {
    margin: 20px auto 5px;
}
.agrion-txt .agrion img {
    width: 240px;
}
.agrion:after {
    font: var(--fa-font-solid);
    content: "\f054";
    position: absolute;
    top: 70px;
    right: -20px;
    font-size: 2.4rem;
}
.agrion:last-child:after {
  display: none;
}
.agrion04 {
  width: 30%;
}
.agrion04 img {
    width: 80%;
    margin: 0 auto;
}
#area-4 h3,
#area-5 h3,
#area-6 h3 {
  text-align: center;
}
.area6-cont01 {
  border-bottom: 1px solid #679E32;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.area6-cont02 img {
  width: 30%;
  height: fit-content;
}
.ab-cont05 h3,
.ab-cont06 h3 {
  display: block;
    font-size: 2.6rem;
    margin-bottom: 40px;
}
.animate__delay-05s {
 animation-delay: calc(var(--animate-delay) * 0.5);
}
.animate__delay-08s {
 animation-delay: calc(var(--animate-delay) * 0.8);
}
.animate__delay-13s {
 animation-delay: calc(var(--animate-delay) * 1.3);
}
.animate__delay-16s {
 animation-delay: calc(var(--animate-delay) * 1.6);
}
.animate__delay-23s {
 animation-delay: calc(var(--animate-delay) * 2.3);
}
.animate__delay-26s {
 animation-delay: calc(var(--animate-delay) * 2.6);
}
.animate__delay-29s {
 animation-delay: calc(var(--animate-delay) * 2.9);
}
.breadcrumbs {
  margin: 10px 3% 10px;
  font-size: 1.2rem;
  color: #999;
}

.main-tit {
  position: absolute;
  text-align: center;
  top: 230px;
  padding: 20px;
  right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}
.about .main-tit {
  top: 130px;
}
.fv-main-news h1 {
  background-color: #fff;
    color: #DD4D0C;
    font-size: 32px;
    display: inline-block;
    padding: 8px 10px;
}
.news header {
  position: relative;
}
.news-head {
  position: relative;
  top:0;
}
.news-head img {
  height: 300px;
  width: 100%;
  object-fit: cover;
}

.news-tit-area {
  margin: 40px 0;
  border-bottom: 1px dotted #ccc;
}
.news-date {
  color: #999;
  font-size: 1.2rem;
  margin-right: 30px;
}
.news-category {
  font-size: 1.2rem;
}
.news-category a {
  color: #679E32;
}
.main-tit h1 {
    background-color: #fff;
    color: #DD4D0C;
    font-size: 32px;
    display: inline-block;
    padding: 8px 10px;
}
.news .main-tit {
    top: 130px;
  }
.entry-content {
  padding-bottom: 150px;
  line-height: 2.3;
}
.news-category li {
  list-style-type: none;
}
.news-tit-area h2 {
  font-size: 2.4rem;
  margin: 30px 0 50px;
  text-align: left;
}
.main {
  width: 80%;
}
.side {
  width: 20%;
  margin-left: 30px;
}
.side h3 {
  background-color: #ccc;
  color: #fff;
  padding: 10px;
  text-align: center;
  margin-bottom: 0;
  font-size: 1.8rem;
}
.side01 {
  margin-bottom: 40px;
  border: 1px solid #ccc;
}
.side02 .txt-block h3 {
  background-color: none;
  color: #000;
  font-size: 1.8rem;
  text-align: left;
}
.side02 li {
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 10px;

}
.side02 .img-block img {
  width: 100%;
  object-fit: cover;
  height: 80px;
  margin: 10px auto;
  margin-bottom: 10px;
}
.side02 .txt-block time {
    font-size: 1.2rem;
    text-align: center;
    color: #679E32;
    letter-spacing: 0;
}
.side02 .txt-block h3 {
  font-size: 1.3rem;
  line-height: 1.6;
  font-weight: normal;
  background-color: unset;
  padding: 5px 0;
}
.side01 li {
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
  padding: 10px;
}
.side01 li:last-child {
  border-bottom: none;
}
ul.prev_next_list {
  display: flex;
  justify-content: center;
}
.prev_next_list li {
  margin: 0 20px;
}
.prev_next_list {
  border-top: 1px solid #ccc;
  padding-top: 30px;
}

.side02 li a {
  display: flex;
}
.txt-block {
  padding-left: 10px;
  width: 60%;
}
.fv-main-con {
  background: url("../img/contact-tit.jpg")no-repeat;
  background-position: center;
  background-size: cover;
  height: 230px;
  position: relative;
}
.contact .main-tit {
  position: absolute;
  text-align: center;
  top: 80px;
  padding: 20px;
  right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}
.fv-main-con h1 {
  background-color: #fff;
    color: #DD4D0C;
    font-size: 32px;
    display: inline-block;
    padding: 8px 10px;
}
.page header {
  background: url("../img/page-title.jpg")no-repeat;
  background-position: center;
  background-size: cover;
  height: 230px;
  position: relative;
}
.contact textarea {
  padding: 10px;
}
.news .col-md-3 {
  padding-left: 0;
  padding-right: 0;
}
.news .cont02-inner02 {
  padding: 0 15px;
  text-align: left;
}
.news .cont02-inner02 img {
    margin: 15px 0;
    height: 180px;
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}
.news .col-md-3:nth-child(4n),
.news .col-md-3:last-child {
  border-right: 1px solid #ccc;
}
.news .cont02-inner02 h3 {
  font-size: 1.8rem;
  text-align: left;
  margin-bottom: 20px;
}
.news .cont02-txt {
    text-align: left;
    font-size: 1.4rem;
}
.news .cont02-inner02 .day {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #649D2E;
}
.pagination {
    margin: 40px auto;
    justify-content: center;
}
.pagination .current {
    padding: 5px 10px;
    background: #49873d;
    color: #fff;
}
.pagination .page-numbers {
    display: inline-block;
    margin-right: 20px;
    padding: 5px 10px;
    color: #333;
    border-radius: 3px;
    border: 1px solid #ddd;
    background: #fff;
}
.fv-main-pri {
  background: url("../img/privacy-titl.jpg")no-repeat;
  background-position: center;
  background-size: cover;
  height: 230px;
  position: relative;
}
.fv-main-pri h1 {
  background-color: #fff;
    color: #DD4D0C;
    font-size: 32px;
    display: inline-block;
    padding: 8px 10px;
    top
}
.privacy .main-tit {
  position: absolute;
  text-align: center;
  top: 80px;
  padding: 20px;
  right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}
.privacy h2 {
  text-align: left;
  margin-top: 50px;
  margin-bottom: 20px;
}

.privacy p {
  margin-bottom: 40px;
}
.privacy ul li {
  list-style-type: disc;
 margin-left: 30px;
}
.privacy nav ul li {
  list-style-type: none;
}
.privacy .con-cont01 {
  margin: 70px 0 100px;
}
.oic_logo {
  width: 200px;
  margin-bottom: 5px;
}
.contact-ph img {
	border-radius: 30px;
}































* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.sp { display: none !important; }
.tb { display: none !important; }
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 590px) {
.pc { display: none !important; }
.tb { display: none !important; }
.sp { display: block !important; }
}
@media screen and (min-width:591px) and (max-width:920px){
.pc { display: none !important; }
.tb { display: block !important; }
.sp { display: none !important; }
}


@media only screen and (min-width: 992px) and (max-width: 1253px) {
  .new-cont01-ti {
    width: 87%;
  }

}








/* タブレット */
@media only screen and (min-width: 767px) and (max-width: 991px) {
 .new-cont01-ti {
    width: 87%;
  }
  #g-nav {
    height: 45vh;
  }
.cont02 .btn-agr {
    padding: 15px 35px 20px 15px;
    left: 20px;
  }
.cont05 .btn-agr {
    padding: 15px 40px 20px 30px;
  }
.area2-cont04 img {
    width: 100%;
  }
.area4-cont05 .col-lg-4,
.area4-cont06 .col-lg-4,
.area4-cont07 .col-lg-4 {
margin-bottom: 30px;
}
.area3-cont01 .col-lg-6 {
  margin-bottom: 30px;
}
.area5-cont01 p {
  margin-bottom: 20px;
}
.agrion:after {
    font: var(--fa-font-solid);
    content: "\f054";
    position: absolute;
    top: 50px;
    right: -20px;
    font-size: 2.0rem;
}























}






/* スマホ */
@media screen and (max-width: 590px) {
h2 {
    font-size: 2.1rem;
  }
#main-area h2:before,
#main-area h2:after {
    top: 31px;
  }
#main-area{
  width:100%;
}
#sub-area {
        width: 100%;
        padding: 30px 0;
}
.nav-l{
  position:relative;/*stickyからrelativeに戻す*/ 
    top:0;
}
    .fv-c {
        font-size: 5.5vh;
        margin-top: 70px;
        padding: 30px 20px 20px;
        margin-right: 0;
    }

.fv-l {
    font-size: 2.2rem;
}
.fv-l, .fv-r {
    padding: 10px;
    width: 100px;
    height: 100px;
    line-height: 1.3;
}
#g-nav {
    height: 100vh;
  }
.nav-under {
    margin-top: 0px;
}
.nav-under a {
    color: #fff;
    margin-right: 15px;
    align-self: center;
    padding-left: 15px;
    margin-bottom: 20px;
    width: 100%;
}
.nav-bt01 {
    display: inline-block;
    padding: 15px 45px 15px 20px;
    width: 100%;
  }
.nav-logo {
  margin-bottom: 30px;
}
.logo {
    position: absolute;
    top: 20px;
    left: 3%;
}
.cont01 h2 {
    font-size: 2.3rem;
    line-height: 2.0;
}
.cont01 {
    margin-top: 50px;
  }
.cont01 h2 {
    margin-bottom: 30px;
  }
.cont01-r {
  margin-top: 30px;
}
.cont02-inner:after,
.cont02-inner02:after {
 position: absolute;
    top: -5px;
    right: -5px;
    content: '';
    width: 10px;
    height: 10px;
    background-color: #acacac;
    border-radius: 50%;
}
.cont02-inner,
.cont02-inner02 {
    padding: 30px 10px;
    border-right: 1px solid #acacac;
}
.cont02 .col-md-4 {
  padding-left: 0;
  padding-right: 0;
}
.cont02-txt {
    margin-bottom: 100px;
}
.cont03-inner:after, .cont03-inner02:after {
    position: absolute;
    top: -5px;
    right: -5px;
    content: '';
    width: 10px;
    height: 10px;
    background-color: #acacac;
    border-radius: 50%;
}
.cont03 .col-md-6 {
  padding-left: 0;
  padding-right: 0;
}
.info-day {
    font-size: 1.4rem;
    margin-top: 10px;
  }
.info-cate {
  width: 100%;
}
.btn-agr {
  display: block;
}
.cont04-txt {
    text-align: left;
  }
.cont04 .col-md-5,
.cont04 .col-md-7 {
  padding-left: 0;
  padding-right: 0;
}
.cont04-txt02 {
  margin-bottom: 30px;
}
.cont04-kagome .col-md-8 {
  padding-left: 0;
  padding-right: 0;
}
.cont04-kagome img {
  margin-top: 30px;
}
.cont05 h2 {
    font-size: 2.2rem;
}
.cont05 h2:before,
.cont05 h2:after {
position: absolute;
    top: 32px;
  }
.cont05 a {
  margin-bottom: 30px;
}
.cont05-choku .col-md-6 {
  padding-left: 0;
  padding-right: 0;
}
.cont05-hanbai {
    border: 1px solid #999;
    padding: 30px 15px;
    margin-bottom: 30px;
  }
.cont06 {
    border: 1px solid #ccc;
    padding: 50px 5px;
}
.cont06 h2 {
  font-size: 2.3rem;
}
.btn-agr {
  margin-bottom: 30px;
}
.cont07 h2 {
  font-size: 1.8rem;
}
.cont07 h2:before,
.cont07 h2:after {
  top: 30px;
}
.cont08 table th {
  padding: 5px;
  width: 26%;
}
.cont09 {
  margin-bottom: 20px;
}
.f-btn {
  display: block;
}
footer ul li {
    display: block;
    margin-right: 15px;
    vertical-align: middle;
    margin: 15px 0;
}
.f-company {
    margin-top: 50px;
  }
.footer-main {
    padding: 50px 4%;
}
.main-tit {
    top: 200px;
  }
#container {
    padding-left: 15px;
    padding-right: 15px;
  }
#main-area {
    padding-right: 0;
}
.nav-l {
  left: 0;
}
.ab-cont h3 img {
    margin-right: 10px;
    width: 30px;
    height: 30px;
}
.ab-cont h4 {
    text-align: left;
    font-size: 1.8rem;
    line-height: 1.8;
}
.area1-ph01 img {
    height: auto;
  }
    .ab-cont {
        padding: 40px 15px 10px;
    }
.area1-ph01 {
  margin-bottom: 30px;
  border-bottom: 1px solid #ccc;
}
.ab-cont .col-md-4 {
  padding-left: 0;
  padding-right: 0;
}
.area1-ph02 {
  margin-bottom: 40px;
}
.area1-ph03 {
  margin-bottom: 15px;
}
.area2-cont03 {
    padding: 30px 10px;
}
.area2-cont04 img {
    width: 100%;
}
.area3-cont01 .col-md-6 {
  margin-bottom: 20px;
  padding-left: 0;
  padding-right: 0;
}
.area3-cont01 {
margin-bottom: 0;
}
.ab-cont03 h3 {
    margin-top: 30px;
  }
.ab-cont03 h3 {
    margin-top: 50px;
  }
.area4-cont01 {
    margin-bottom: 30px;
  }
.area4-cont03 img {
    height: auto;
  }
.ab-cont h4 {
    padding: 20px 0;
  }
.ab-cont04.ab-cont h4 {
    margin: 40px auto 0;
}
.area4-cont05 .col-md-4,
.area4-cont06 .col-md-4,
.area4-cont07 .col-md-4 {
  margin-bottom: 30px;
}
.area4-cont04 .col-md-8 {
  padding-left: 0;
  padding-right: 0;
}
.area4-cont04 h3 {
  margin-bottom: 20px;
  line-height: 1.8;
}
#area-5 .ab-cont h4 {
        padding: 20px;
    }
.area5-cont01 .col-md-7,
.area5-cont01 .col-md-5 {
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 30px;
}
.agrion {
    width: 100%;
    font-size: 1.4rem;
}
.agrion:after {
    top: 100%;
    right: 0;
    font-size: 2.4rem;
    left: 0;
    transform: rotate(90deg);
    margin-top: 10px;
}
.agrion-txt .agrion img {
    width: 100%;
}
.agrion04 {
    width: 90%;
    margin: 0 auto;
}
.agrion04 img {
    width: 100%;
    margin: 20px auto;
}
.area6-cont02 img {
    width: 100%;
    height: fit-content;
    margin-bottom: 30px;
}
.collabo h2 {
        font-size: 2.7rem;
    }
#main-area .collabo h2:before, #main-area .collabo h2:after {
        top: 37px;
      }
.nav-under .sns a {
        width: 20%;
        text-align: center;
    }
.nav-under .sns {
  background-color: #56832C;
  padding-top: 20px;
  margin-bottom: 20px;
}
.nav-under .sns i {
    font-size: 2.5rem;
}
.nav-top {
    padding-top: 20px;
}
.toma-ico {
    margin-bottom: 20px;
}
.cont02 h2:before, .cont03 h2:before, .cont04 h2:before, .cont05 h2:before, .cont07 h2:before, .cont08 h2:before, .cont09 h2:before {
    position: absolute;
    top: 30px;
}
.cont02 h2:after, .cont03 h2:after, .cont04 h2:after, .cont05 h2:after, .cont07 h2:after, .cont08 h2:after, .cont09 h2:after {
    position: absolute;
    top: 30px;
  }
.cont02 .btn-agr {
  bottom: 0;
}
.wrapper {
    padding-bottom: 120px;
}
#sub-area {
  display:none;
}
.news .main,
.area .main {
    width: 100%;
    margin-bottom: 100px;
}
.news .side,
.area .side {
    width: 100%;
    margin-left: 0;
    margin-bottom: 50px;
}
ul.prev_next_list {
    border-bottom: 1px solid #ccc;
    padding-bottom: 30px;
}
.prev-c {
  border-left: 1px solid #ccc;
  margin-left: 10px;
}
.prev_next_list li {
    margin: 0 10px;
}
.prev_next_list li.next {
    text-align: right;
}
 .prev_next_list li.prev {
    text-align: left;
}
footer {
  top: -2px;
}
footer img {
  margin: 0 auto;
}











































}



