@charset "UTF-8";

/*
Theme Name: agri-info
Theme URI:
Description: agri-ssのinformation 等のページです。
Version: 1.1
Author: owndmedia-lab
*/
/*--------------------------------------------------------------
## 共通
--------------------------------------------------------------*/
body {
  width: 100%;
  font-size: 16px;
  color: #000;
  font-family: "Noto Serif JP", serif;
  font-feature-settings: "palt";
  letter-spacing: 4px;
  line-height: 2rem;
  margin: 0 auto;
}

.container1 {
  margin: auto;
  width: calc(100% - 288px);
}

.container2 {
  margin: auto;
  width: 1180px;
}

h1 {
  font-size: 5rem;
  line-height: 6rem;
  margin: 2rem 0;
}

h2 {
  font-size: 2rem;
  line-height: 4rem;
  margin: 0.5rem 0;
}

h3 {
  font-size: 1.6rem;
  line-height: 2.6rem;
}

a {
  text-decoration: none;
  color: #999;
}

table {
  width: 100%;
  margin: 1.5rem auto;
}

table tr th,
table tr td {
  border: 1px solid;
  padding: 1rem 2rem;
}

table tr th {
  font-weight: bold;
}

strong {
  font-weight: 900;
}

/*追記修正*/
.br_pc {
  display: block;
}

.br_sp {
  display: none;
}
/*--END--*/

/*ボタンデザイン*/
.more-btn {
  font-size: 0.9rem;
}

.more-btn a {
  position: relative;
  color: #000;
  padding: 5rem 3rem 5rem 5rem;
}

.more-btn a::before,
.more-btn a::after {
  position: absolute;
  content: "";
  height: 1px;
  background: #000;
  right: 0;
}

.more-btn a::before {
  width: 2.5rem;
  top: 5.6rem;
}

.more-btn a::after {
  width: 0.5rem;
  top: 5.45rem;
  transform: rotate(30deg);
}

.more-btn2 {
  font-size: 0.9rem;
}

.more-btn2 span {
  position: relative;
  color: #000;
  padding: 5rem 3rem 5rem 5rem;
}

.more-btn2 span::before,
.more-btn2 span::after {
  position: absolute;
  content: "";
  height: 1px;
  background: #000;
  right: 0;
}

.more-btn2 span::before {
  width: 2.5rem;
  top: 5.6rem;
}

.more-btn2 span::after {
  width: 0.5rem;
  top: 5.45rem;
  transform: rotate(30deg);
}

/* その他共通 */
.only-pc {
  display: block;
}

.only-mobile {
  display: none;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.flex--grid {
  justify-content: space-around;
}

.deco-title {
  position: relative;
  margin: auto;
}

.deco-title::before {
  position: absolute;
  content: "";
  height: 1px;
  width: 360px;
  background-color: #000;
  top: 3.5rem;
  z-index: -1;
}

.deco-title h2 {
  display: inline-block;
  background-color: #fff;
  padding-right: 3rem;
}

.deco-title p {
  font-size: 0.9rem;
  margin-bottom: 2rem;
  padding-left: 0.2rem;
}

/*スクロールバーデザイン*/
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #fff;
  border-left: solid 1px #ececec;
}

::-webkit-scrollbar-thumb {
  background: #1dc066;
  border-radius: 10px;
  box-shadow: inset 0 0 0 2px #fff;
}

/*--------------------------------------------------------------
## loading
--------------------------------------------------------------*/
.loader-wrap {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 10000;
}

.loader-wrap .loader {
  position: absolute;
  margin: auto;
  top: 38vh;
  left: 0;
  right: 0;
}

.loader-wrap .loader .ball {
  width: 10px;
  height: 10px;
  margin: 10px auto;
  border-radius: 50px;
}

.loader-wrap .loader .ball:nth-child(1) {
  background: #1dc066;
  -webkit-animation: right 1s infinite ease-in-out;
  animation: right 1s infinite ease-in-out;
}

.loader-wrap .loader .ball:nth-child(2) {
  background: #1dc066;
  -webkit-animation: left 1.1s infinite ease-in-out;
  animation: left 1.1s infinite ease-in-out;
}

.loader-wrap .loader .ball:nth-child(3) {
  background: #1dc066;
  -webkit-animation: right 1.05s infinite ease-in-out;
  animation: right 1.05s infinite ease-in-out;
}

.loader-wrap .loader .ball:nth-child(4) {
  background: #1dc066;
  -webkit-animation: left 1.15s infinite ease-in-out;
  animation: left 1.15s infinite ease-in-out;
}

.loader-wrap .loader .ball:nth-child(5) {
  background: #1dc066;
  -webkit-animation: right 1.1s infinite ease-in-out;
  animation: right 1.1s infinite ease-in-out;
}

.loader-wrap .loader .ball:nth-child(6) {
  background: #1dc066;
  -webkit-animation: left 1.05s infinite ease-in-out;
  animation: left 1.05s infinite ease-in-out;
}

.loader-wrap .loader .ball:nth-child(7) {
  background: #1dc066;
  -webkit-animation: right 1s infinite ease-in-out;
  animation: right 1s infinite ease-in-out;
}

@-webkit-keyframes right {
  0% {
    -webkit-transform: translate(-15px);
  }

  50% {
    -webkit-transform: translate(15px);
  }

  100% {
    -webkit-transform: translate(-15px);
  }
}

@-webkit-keyframes left {
  0% {
    -webkit-transform: translate(15px);
  }

  50% {
    -webkit-transform: translate(-15px);
  }

  100% {
    -webkit-transform: translate(15px);
  }
}

@keyframes right {
  0% {
    transform: translate(-15px);
  }

  50% {
    transform: translate(15px);
  }

  100% {
    transform: translate(-15px);
  }
}

@keyframes left {
  0% {
    transform: translate(15px);
  }

  50% {
    transform: translate(-15px);
  }

  100% {
    transform: translate(15px);
  }
}

/*--------------------------------------------------------------
## header
--------------------------------------------------------------*/
.site-title {
  position: fixed;
  top: 50px;
  left: 144px;
  z-index: 100;
}

.site-title h1 {
  font-size: 1.2rem;
  line-height: 1.2rem;
  margin: auto;
}

.site-title h1 a {
  color: #fff;
  transition: 0.3s;
}

.site-title h1 a:hover {
  opacity: 0.7;
  transition: 0.3s;
}

/*-- ▼drower-nav▼ --*/
.menu-trigger {
  position: fixed;
  width: 60px;
  height: 60px;
  top: 20px;
  right: 20px;
  border: none;
  z-index: 100;
  cursor: pointer;
}

.menu-trigger-bar {
  position: absolute;
  width: 28px;
  height: 3px;
  margin: auto;
  left: 0;
  right: 0;
  background-color: #fff;
}

.menu-trigger-bar.top {
  top: 15px;
}

.menu-trigger-bar.middle {
  top: 25px;
}

.menu-trigger-bar.bottom {
  top: 35px;
}

.close-trigger {
  display: none;
  position: fixed;
  top: 16px;
  right: 20px;
  width: 60px;
  height: 60px;
  z-index: 1100;
  cursor: pointer;
}

.close-trigger-bar {
  position: absolute;
  width: 30px;
  height: 4px;
  background-color: #fff;
  margin: auto;
  top: 30px;
  left: 0;
  right: 0;
}

.close-trigger-bar.left {
  transform: rotate(45deg);
}

.close-trigger-bar.right {
  transform: rotate(135deg);
}

/*-- ▼site-navi▼ --*/
.global-nav {
  background-color: rgba(0, 0, 0, 0.8);
  width: 560px;
  height: 100vh;
  position: fixed;
  top: 0;
  right: -560px;
  z-index: 1000;
  overflow-x: hidden;
}

.global-nav_list {
  flex-direction: column;
  padding: 50px 100px;
}

.global-nav_list li {
  margin: 1rem 0;
}

.global-nav_list li h2 {
  color: #fff;
  margin: 3rem 0;
}

.global-nav_list li a {
  display: inline-block;
  color: #fff;
  padding: 1rem;
  transition: 0.3s;
}

.global-nav_list li a:hover {
  color: #3cb371;
  transition: 0.3s;
}

/*-- ▼sns-navi▼ --*/
.sns-nav {
  display: none;
  position: fixed;
  left: 144px;
  bottom: 100px;
  z-index: 100;
}

.sns-nav ul li {
  display: inline-block;
  margin-right: 1rem;
  font-size: 1.5rem;
}

.sns-nav ul li a {
  color: #999;
  display: block;
  transition: 0.3s;
}

.sns-nav ul li a:hover {
  transform: scale(1.2);
  transition: 0.3s;
}

/*-- ▼ページャー▼ --*/
.page-numbers {
  display: flex;
  justify-content: space-around;
  margin-top: 3rem;
}

.page-numbers li span {
  padding: 1rem;
  background-color: #999;
  color: #fff;
}

.page-numbers li a {
  padding: 1rem;
  background-color: #86e0aa;
  color: #fff;
  transition: 0.3s;
}

.page-numbers li a:hover {
  background-color: #3cb371;
  transition: 0.3s;
}

.page-numbers li .prev,
.page-numbers li .next {
  background-color: transparent;
  color: #86e0aa;
  transition: 0.3s;
}

.page-numbers li .prev:hover,
.page-numbers li .next:hover {
  background-color: transparent;
  color: #3cb371;
  transition: 0.3s;
}

/*--------------------------------------------------------------
## TOP
--------------------------------------------------------------*/
.home_header-img {
  position: relative;
  height: 100vh;
}

.home_header-img .header_slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.home_header-img .header_slider .slick-list {
  height: 100vh;
}

.home_header-img .header_slider .slick-list .slick-track {
  height: 100%;
}

.home_header-img .header_slider img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.home_header-img .home_site-title {
  position: absolute;
  top: 48%;
  left: 144px;
  color: #fff;
}

.home_header-img .home_site-title p {
  font-size: 2rem;
}

.fixed-title {
  display: none;
}

.home .content1 {
  /*-- ▼content1▼ --*/
  padding: 160px 0;
  text-align: right;
}

.home .content1_text h2 {
  font-size: 2.5rem;
  margin: 0 0 3rem 0;
}

.home .concept {
  /*-- ▼concept▼ --*/
  position: relative;
  margin-bottom: 100px;
}

.home .concept_img {
  position: relative;
  width: 75vw;
  height: 30vw;
  background-image: url("img/top-concept.JPG");
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.home .concept_bk {
  position: absolute;
  content: "";
  height: 120%;
  width: 100%;
  background-color: #1dc066;
  z-index: -1;
}

.home .content2 {
  /*-- ▼content2▼ --*/
  padding: 160px 0;
}

.home .content2 .content2-section {
  width: 33%;
}

.home .content2 .content2-section_title {
  width: 420px;
}

.home .content2 .content2-section_img {
  position: relative;
  width: 420px;
  margin: auto;
}

.home .content2 .content2-section_img .content2-section_img-bk {
  background-color: transparent;
  position: absolute;
  width: 420px;
  height: 420px;
  content: "";
  top: 0;
}

.home .content2 .content2-section_img img {
  width: 100%;
  height: 420px;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -1;
  transition: 0.3s;
}

.home .content2 .content2-section_img p {
  position: absolute;
  bottom: 1rem;
  padding: 2rem;
  color: #fff;
  visibility: hidden;
  transition: 0.2s;
}

.home .content2 .content2-section_img a:hover .content2-section_img-bk {
  background: rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}

.home .content2 .content2-section_img a:hover img {
  z-index: -1;
  transition: 0.3s;
}

.home .content2 .content2-section_img a:hover p {
  visibility: visible;
  transition: 0.2s;
}

.home .content3 {
  /*-- ▼content3▼ --*/
  position: relative;
  background-color: rgba(181, 182, 145, 0.45);
  padding: 80px 0 160px;
}

.home .content3 .news-title {
  text-align: center;
  margin-bottom: 5rem;
}

.home .content3 .news-title p {
  font-size: 0.9rem;
}

.home .content3 .news-content {
  justify-content: space-between;
}

.home .content3 .news-content .news-article {
  background-color: #fff;
  width: 48%;
  margin-bottom: 2%;
  transition: 0.3s;
}

.home .content3 .news-content .news-article:hover {
  transform: rotate(-1.5deg);
  transition: 0.3s;
}

.home .content3 .news-content .news-article:hover a {
  color: #999;
  transition: 0.3s;
}

.home .content3 .news-content .news-article:hover .news-article_text {
  border-top: 1px solid #999;
  transition: 0.3s;
}

.home .content3 .news-content .news-article a {
  color: #000;
  padding: 2rem;
  display: block;
  transition: 0.3s;
}

.home .content3 .news-content .news-article_date {
  font-size: 0.7rem;
  padding-left: 0.1rem;
  color: #3cb371;
}

.home .content3 .news-content .news-article_text {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #000;
  transition: 0.3s;
}

.home .content3 .more-btn {
  position: absolute;
  right: calc(144px + 3rem);
  bottom: 90px;
  transition: 0.3s;
}

.home .content3 .more-btn:hover {
  right: calc(114px + 3rem);
  transition: 0.3s;
}

.home .content4 {
  /*-- ▼content4▼ --*/
  padding: 160px 0;
  justify-content: space-between;
}

.home .content4.--pb160 {
  padding: 0 0 160px 0;
}

.home .content4 .content4-section {
  position: relative;
  width: 35vw;
}

.home .content4 .content4-section_bk {
  position: absolute;
  content: "";
  width: 90%;
  height: 70%;
  background: #1dc066;
  z-index: -1;
  left: 0;
}

.home .content4 .content4-section a {
  display: block;
  height: 70%;
  /* padding-top: 8.5rem; */
  padding: 5.5rem;
  color: #000;
}

.home .content4 .content4-section a:hover .more-btn2 {
  left: calc(440px - 5rem);
  transition: 0.3s;
}

.home .content4 .content4-section_title {
  padding-left: 144px;
}

.home .content4 .content4-section_title h2 {
  background: #1dc066;
}

.home .content4 .content4-section_text {
  padding-top: 2.5rem;
  padding-left: 144px;
}

.home .content4 .more-btn2 {
  position: absolute;
  top: 70%;
  left: calc(410px - 5rem);
  transition: 0.3s;
}

.home .content4 .content4-img {
  width: 60vw;
}

.home .content4 .content4-img img {
  width: 100%;
}

.home .content5 {
  /*-- ▼content5▼ --*/
  padding: 0 0 160px 0;
  justify-content: space-between;
}

.home .content5 .content5-img {
  width: 60vw;
}

.home .content5 .content5-img img {
  width: 100%;
}

.home .content5 .content5-section {
  position: relative;
  width: 35vw;
}

.home .content5 .content5-section_bk {
  position: absolute;
  content: "";
  width: 90%;
  height: 70%;
  background: #ddf3cd;
  z-index: -1;
  right: 0;
}

.home .content5 .content5-section a {
  display: block;
  height: 70%;
  padding-top: 8.5rem;
  color: #000;
}

.home .content5 .content5-section a:hover .more-btn2 {
  right: 124px;
  transition: 0.3s;
}

.home .content5 .content5-section_title {
  text-align: right;
  padding-right: 144px;
}

.home .content5 .content5-section_title::before {
  right: 144px;
}

.home .content5 .content5-section_title h2 {
  background: #ddf3cd;
  padding-right: 0;
  padding-left: 3rem;
}

.home .content5 .content5-section_text {
  padding-top: 2.5rem;
  padding-right: 144px;
}

.home .content5 .more-btn2 {
  position: absolute;
  top: 70%;
  right: 154px;
  transition: 0.3s;
}

.home .gallery ul li {
  /*-- ▼gallery▼ --*/
  height: 25vw;
}

.home .gallery ul li img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  overflow: hidden;
}

/*--------------------------------------------------------------
## lower
--------------------------------------------------------------*/
.lower_header-img {
  position: relative;
  height: 600px;
}

.lower_header-img::before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(0, 0, 0, 0.3);
}

.lower_header-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.lower_header-img .page-title {
  position: absolute;
  text-align: center;
  top: calc(50% - 3.5rem);
  left: 0;
  right: 0;
  color: #fff;
}

.lower_header-img .page-title h2 {
  font-size: 2.5rem;
  line-height: 5rem;
}

.lower_header-img .page-title p {
  font-size: 1.5rem;
}

/*--------------------------------------------------------------
## archive※使わない場合は削除してください
--------------------------------------------------------------*/
.archive {
  background-color: rgba(181, 182, 145, 0.45);
  padding: 160px 0;
}

.archive-title {
  font-size: calc(1em + 6px);
  position: relative;
  border-bottom: 6px solid #ccc;
}

.archive-title:before {
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 20%;
  height: 6px;
  content: "";
  background: #00cc5b;
}

.archive .wrap {
  margin-bottom: 4rem;
}

.archive .wrap img {
  max-width: 245px;
  width: 100%;
  height: 190px;
  -o-object-fit: cover;
  object-fit: cover;
}

.archive .link-btn a {
  color: #333;
  transition: 0.3s;
}

.archive .link-btn a:hover {
  color: #fc566c;
}

.archive .articles .article {
  background-color: #fff;
  margin-bottom: 2rem;
}

.archive .articles .article a {
  display: block;
  color: #000;
  transition: 0.3s;
}

.archive .articles .article a:hover {
  color: #999;
  transition: 0.3s;
}

.archive .articles .article a:hover .article_contents-data p {
  color: #1dc066;
  transition: 0.3s;
}

.archive .articles .article a:hover .article_contents-text {
  border-top: 1px solid #999;
  transition: 0.3s;
}

.archive .articles .article_contents {
  padding: 1rem;
}

.archive .articles .article_contents-data p {
  font-size: 0.7rem;
  padding-left: 0.1rem;
  color: #3cb371;
  transition: 0.3s;
}

.archive .articles .article_contents-title {
  font-size: calc(1em + 2px);
  padding-left: 1rem;
}

.archive .articles .article_contents-text {
  margin-top: 1rem;
  padding: 1rem;
  border-top: 1px solid #000;
  transition: 0.3s;
}

.wrap {
  width: 80%;
  margin: 0 auto;
}

/*--------------------------------------------------------------
## taxonomy※使わない場合は削除してください
--------------------------------------------------------------*/
#main_col {
  width: 60%;
  margin: 0 auto;
}

#main_col img {
  max-width: 245px;
  width: 100%;
  height: 190px;
  -o-object-fit: cover;
  object-fit: cover;
}

#main_col .flex--grid {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-pack: distribute;
  margin: 24px;
}

#main_col .flex--grid li {
  margin-bottom: 2.5rem;
  background-color: #fff;
}

#main_col .flex--grid .title {
  padding: 1rem;
  box-sizing: border-box;
}

.pagination ul {
  display: flex;
  justify-content: space-around;
  margin-top: 3rem;
}

.pagination ul li span {
  padding: 1rem;
  background-color: #999;
  color: #fff;
}

.pagination ul li a {
  padding: 1rem;
  background-color: #86e0aa;
  color: #fff;
  transition: 0.3s;
}

.pagination ul li a:hover {
  background-color: #3cb371;
  transition: 0.3s;
}

.pagination ul li .prev,
.pagination ul li .next {
  background-color: transparent;
  color: #86e0aa;
  transition: 0.3s;
}

.pagination ul li .prev:hover,
.pagination ul li .next:hover {
  background-color: transparent;
  color: #3cb371;
  transition: 0.3s;
}

/*--------------------------------------------------------------
## single※使わない場合は削除してください
--------------------------------------------------------------*/
.single {
  padding: 160px 0;
  background-color: rgba(181, 182, 145, 0.45);
}

.single .container2 {
  position: relative;
}

.single .container2 .breadcrumb {
  /*-- ▼パンくず▼ --*/
  position: absolute;
  top: -4.5rem;
  font-size: 0.9rem;
}

.single .container2 .breadcrumb a {
  transition: 0.3s;
}

.single .container2 .breadcrumb a:hover {
  color: #86e0aa;
  transition: 0.3s;
}

.single .container2 .flexslider img {
  width: 50%;
  margin: 0 auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.single .container2 .flex-control-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.single .container2 .flex-control-nav img {
  max-width: 245px;
  width: 100%;
  height: 190px;
  -o-object-fit: cover;
  object-fit: cover;
}

.single .container2 .article {
  /*-- ▼記事▼ --*/
  background-color: #fff;
  padding: 5rem 3rem;
}

.single .container2 .article_data {
  border-bottom: 1px solid #000;
  padding-bottom: 1rem;
}

.single .container2 .article_data h3 {
  text-align: center;
  font-size: 2rem;
  line-height: 3.5rem;
}

.single .container2 .article_data p {
  color: #3cb371;
  padding-top: 1rem;
  font-size: 0.9rem;
  text-align: right;
}

.single .container2 .article_text {
  padding-top: 5rem;
}

.single .container2 .page-btn {
  /*-- ▼前後の投稿ボタン▼ --*/
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
}

.single .container2 .page-btn a {
  transition: 0.3s;
}

.single .container2 .page-btn a:hover {
  color: #86e0aa;
  transition: 0.3s;
}

.single .article_text--link {
  padding-top: 24px;
}

.single .article_text--link a {
  text-decoration: none;
  display: inline-block;
  background: #333;
  color: #fff;
  padding: 1.5rem;
  transition: 0.3s;
}

.single .article_text--link a:hover {
  opacity: 0.9;
}

.single .wp-block-image img {
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.single .wp-block-image .alignleft {
  float: none;
}

.single .wp-block-image .alignright {
  float: none;
  width: 100%;
  text-align: right;
}

/*--------------------------------------------------------------
## footer
--------------------------------------------------------------*/
footer {
  background: #333;
  padding: 160px 0 150px;
}

footer .container1 {
  justify-content: space-between;
}

footer .container1 .footer-section {
  color: #fff;
  width: 49%;
}

footer .container1 .footer-section a {
  color: #fff;
  transition: 0.3s;
}

footer .container1 .footer-section a:hover {
  opacity: 0.7;
  transition: 0.3s;
}

footer .container1 .footer-section h2 {
  font-size: 2.5rem;
  margin-top: 1rem;
}

footer .container1 .footer-section .footer-text {
  margin: 5.5rem 0 8rem;
}

footer .container1 .footer-section .footer-text_address {
  margin-bottom: 1rem;
}

footer .container1 .footer-section .footer-copyright {
  font-size: 0.7rem;
}

/*追記修正*/
span.htmlembed-page-title {
  color: #fff !important;
}
.period-range {
  color: #fff;
}

iframe #subscribe-link a {
  color: #fff !important;
}
#currentDate1 {
  color: #fff;
}
/*--END--*/
