@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans&display=swap');
body{
	font-family: sans-serif ;
}
.pc{
    display: block;
}
.sp{
    display: none;
}
@media screen and (min-width:599px){
.sp-only{
	display:none;
}
}
@media screen and (max-width:599px){
  .pc{
    display: none;
}
.sp{
    display:block;
}  
}
.bgfff{
    background:#fff;
}
 .inner {
    width:100%;
    margin: 0 auto;
}
.inner:after {
    content: "";
    clear: both;
    display: block;
}
 
/* header */
.site-ttl {
    white-space: pre;
    background-color: #000;
    color: #FFF;
    height: 60px;
    display: flex;
    align-items: center;
	z-index:1;
}
.site-ttl a{
	height:60px;
	display:flex;
    align-items:center;
}
.site-ttl a img {
	margin-left:2em;
    height: 100%;
}

@media screen and (max-width:599px){

.site-ttl a img {
	margin-left:1em;
    height: 80%;
}
}
#top-head {
    position: fixed;
    width: 100%;
    margin: 0px auto 0;
    padding: 0px 0 0;
    line-height: 1;
    z-index: 999;
    height:60px;
}
#top-head a,
#top-head {
    color: #000;
    text-decoration: none;
}
#top-head .inner {
    position: relative;
	display: flex;
    align-items: center;
}
#top-head .logo {
    position:absolute;
    top:10px;
    left:10px
}
#top-head .logo img{
    height:40px;
    width:auto;
}
#global-nav ul {
    list-style: none;
    position: absolute;
    top:48%;
    left:50%;
    transform: translate(-50%,-50%);
    font-size: 12px;
}
#global-nav ul li{
    line-height: 1.3;
    letter-spacing: 0.1em;
}
#global-nav ul li a span {
    font-family:sans-serif;
    font-size: 20px;
    font-weight: 700;
    opacity: .3;
}
#global-nav ul li a {
    padding: 0 14px;
}
@media screen and (max-width:599px){
    #global-nav ul {
        font-size:14px;
        top:40%;
		position: absolute;
        top: 50%;
    }
    #global-nav ul li a span{
    font-size:18px;
}
h1.postTitle {
    font-size: 110%;
    line-height: normal;
}
}
 
/* Fixed */
#top-head.fixed {
    margin-top: 0;
    top: 0;
    position: fixed;
    padding-top: 10px;
    height: 55px;
    background: #fff;
    background: rgba(255,255,255,.7);
    transition: top 0.65s ease-in;
    -webkit-transition: top 0.65s ease-in;
    -moz-transition: top 0.65s ease-in;
}
#top-head.fixed .logo {
    font-size: 24px;
    color: #333;
}
#top-head.fixed #global-nav ul li a {
    color: #333;
    padding: 0 9px;
}
 
/* Toggle Button */
#nav-toggle {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 60px;
    height: 60px;
    cursor: pointer;
    z-index: 10000;
    background:#000;
padding:15px;
}
#nav-toggle div {
    position: relative;
}
#nav-toggle span {
    display: block;
    position: absolute;
    height: 1px;
    width: 100%;
    background: #fff;
    left: 0;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
}
#nav-toggle span:nth-child(1) {
    top: 5px;
}
#nav-toggle span:nth-child(2) {
    top: 13px;
}
#nav-toggle span:nth-child(3) {
    top: 21px;
}
    

    #top-head,
    .inner {
        width: 100%;
        padding: 0;
    }
    #top-head {
    }
    /* Fixed reset */
    #top-head.fixed {
        padding-top: 0;
        background: transparent;
    }
#mobile-head {
    width: 100%;
    z-index: 999;
    position: relative;
    background-color: #000;
    height: 60px;
}
    #top-head.fixed .logo,
    #top-head .logo {
        position: absolute;
        left: 13px;
        top: 13px;
        color: #333;
        font-size: 26px;
    }


    #global-nav {
        position: absolute;
        background: #000;
        width: 100%;
        height:100vh;
		top:50%;
        text-align: center;
        padding: 10px 0;
        animation-name: fadeOut;
    animation-duration: .5s; 
    animation-timing-function: ease-out; 
    animation-iteration-count: 1; 
    animation-direction: normal; 
    animation-fill-mode: forwards;
    }

.transparent{
    background-color:transparent !important;
}
    #global-nav ul li {
        float: none;
		position: static;
    }
    #top-head #global-nav ul li a,
    #top-head.fixed #global-nav ul li a {
        width: 100%;
        display: block;
        color: #fff;
        padding: 9px 0;
    }
    #nav-toggle {
        display: block;
    }
    /* #nav-toggle 切り替えアニメーション */
    .open #nav-toggle span:nth-child(1) {
        top: 11px;
        -webkit-transform: rotate(315deg);
        -moz-transform: rotate(315deg);
        transform: rotate(315deg);
    }
    .open #nav-toggle span:nth-child(2) {
        width: 0;
        left: 50%;
    }
    .open #nav-toggle span:nth-child(3) {
        top: 11px;
        -webkit-transform: rotate(-315deg);
        -moz-transform: rotate(-315deg);
        transform: rotate(-315deg);
    }
    /* #global-nav スライドアニメーション */
    .open #global-nav {
        animation-name: fadeIn;
    animation-duration: .5s; 
    animation-timing-function: ease-out; 
    animation-iteration-count: 1; 
    animation-direction: normal; 
    animation-fill-mode: forwards;
        display: block;
    }
@keyframes fadeIn { 
  0% {
      opacity: 0;
      transform: translate3d(0, -20px, 0);
    }
    100% {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }

}
.close #global-nav {
        animation-name: fadeOut;
    animation-duration: .5s; 
    animation-timing-function: ease-out; 
    animation-iteration-count: 1; 
    animation-direction: normal; 
    animation-fill-mode: forwards;
        display: none;
    }
@keyframes fadeOut{
     0% {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
    100% {
      opacity: 0;
      transform: translate3d(0, -20px, 0);
    }
}

.default #global-nav{
    animation-name: default;
    animation-duration: .0s;
    display: none;
}
@keyframes default { 
    100% {opacity: 0;}
}
.fv{
    width:100%;
    height: calc(100vh - 60px);
    background:url("img/jpg/fv.jpg") no-repeat center top;
    background-size:cover;
    position:relative;
	top: 60px;
}
section#sec1 {
    position: relative;
    top: 60px;
}
@media screen and (max-width:599px){
     #top-head #global-nav ul li a,
    #top-head.fixed #global-nav ul li a {
        width: 100%;
        display: block;
        color: #fff;
        padding: 9px 0;
    }
    .fv{
        height:60vh;
    }
}
.fv::before{
    content:'';
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.4);
    position:absolute;
    top:0;
    left:0;
}
.fvInner{
    width:360px;
    position:absolute;
    top:30%;
    left:calc(50% - 180px);
    color: #fff;
    text-align: center;
    animation-name: fadeIn2;
    animation-duration: .5s; 
    animation-timing-function: ease-out; 
    animation-iteration-count: 1; 
    animation-direction: normal; 
    animation-fill-mode: forwards;
}
@media screen and (max-width:599px){
    .fvInner{
        width:260px;
        left:calc(50% - 130px);
    }
}

@keyframes fadeIn2 { 
  0% {
      opacity: 0;
      transform: translate3d(0, 40px, 0);
    }
    100% {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }

}
.fvInner img{
    width:100%;
    height:auto;
}
.fvInner h2{
    font-family:sans-serif;
    font-size:200%;
    letter-spacing: 0.2em;
    margin-top:1em;
}
.fvInner h2 span{
    font-size:40%;
    letter-spacing: 0.3em;
}
@media screen and (max-width:599px){
.fvInner img {
    width: 70%;
    height: auto;
}
   .fvInner h2{
    font-size:140%;
}
    .fvInner h2 span{
        line-height: 1;
        font-size:55%;
    }
}


.scb a {
  position: absolute;
  bottom: 20px;
  left: 50%;
  z-index: 2;
  display: inline-block;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  text-decoration: none;
}
@media screen and (max-width:599px){
    .scb a {
        bottom: 10px;
    }
}
.scb a {
  padding-top: 60px;
}
.scb a span {
  position: absolute;
  bottom: -30px;
  left: 50%;
  width: 30px;
  height: 50px;
  margin-left: -15px;
  border: 2px solid #fff;
  border-radius: 50px;
  box-sizing: border-box;
}
.scb a span::before {
  position: absolute;
  top: 10px;
  left: 50%;
  content: '';
  width: 6px;
  height: 6px;
  margin-left: -3px;
  background-color: #fff;
  border-radius: 100%;
  -webkit-animation: sdb 2s infinite;
  animation: sdb 2s infinite;
  box-sizing: border-box;
}
@-webkit-keyframes sdb {
  0% {
    -webkit-transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    -webkit-transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes sdb {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.wrapper {
    max-width: 1080px;
    margin: 0 auto;
    position: relative;
    width: 96%;
}

.pd30-0{
    padding:30px 0;
}
.pd60-0{
    padding:60px 0;
}
@media screen and (max-width:599px){
    .pd60-0{
    padding:40px 0 80px;
}
}


.flWrap{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
	align-items:end;
}

.flBox{
    width:50%;
    padding:0 20px;
    position:relative;
}

.mainCopy{
    font-size:140%;
    letter-spacing: 0.2em;
    line-height: 1.5;
    margin-bottom:1.5em;
	text-align:center;
}

.blog{
    font-size:150%;
    letter-spacing: 0.2em;
	text-align:center;
}

.readMore::before{
    content:'';
    display: inline-block;
    width:20px;
    height:20px;
    background-image: url("img/png/arrow.png")no-repeat bottom right;
    background-size: contain;
  vertical-align: middle;
    position:absolute;
    left:5px;
    top:-2px;
}

/* メディア情報 */
.media {
    margin-bottom: 60px;
}
.mediaBox{
	text-align:center;
}
.mediamainCopy{
    font-size:150%;
    letter-spacing: 0.2em;
    line-height: 1.5;
    margin-bottom:1.5em;
	text-align:center;
}
.medialist{
    font-size:115%;
    letter-spacing: 0.2em;
    line-height: 1.5;
    margin-bottom:8px;
	text-align:center;
	display: flex;
	justify-content: center;
}
.medialist li {
	width:40%;
	margin:0 10px;
    border: 1.2px solid #333; /* 2ピクセルのボーダーを設定（#000はボーダーの色を指定） */
	background-color:#FFF;
}
.medialist li a{
    padding: 15px 30px; /* 上下に10px、左右に20pxのパディングを設定 */
	display: block;
}
.medialist li:hover {
    opacity: 0.6; /* カーソルが乗ったときの透明度 */
}
@media screen and (max-width:599px){
	.medialist{
		display: inline-block; /* インラインブロック要素に変更 */
    	width: 100%; /* 幅を100%に設定して横幅いっぱいに表示 */
	}
	.medialist li{
		width:90%;
		margin:5px auto;
	}
}



/* メディア情報 */

@media screen and (max-width:599px){
    .flWrap{
        flex-direction: column;
    }
    .flBox{
    width:100%;
    padding:0 20px;
    position:relative;
	margin-bottom:40px;
}
    
}
.cptxt{
    font-weight:bold;
    letter-spacing: 0.1em;
    line-height: 1.8;
    font-size:90%;
    margin-left:40%;
    margin-bottom:80px;
}
/*
.dots{
    background: url("img/png/dots.png") no-repeat left bottom;
    background-size:35%;
}
*/
@media screen and (min-width:600px) and (max-width:899px){
    .mainCopy{
        font-size:110%;
    }
    .cptxt{
        margin-left:20%;
    }
}
@media screen and (max-width:599px){
    .mainCopy{
        font-size:120%;
    }
    .cptxt{
        margin-left:0;
        margin-bottom:20px;
		width: max-content;
        margin: 0 auto 20px;
    }
    .dots{
    background-size:50%;
}
}
.bdl{
    border-left:solid 1px #000;
}
@media screen and (max-width:599px){
    .bdl{
    border-left:none;
}
}
.infoList{
    margin:1em 0 2em ;
	font-size:90%;
}
.infoList li{
    letter-spacing: 0.1em;
    line-height: 1.5em;
}
@media screen and (min-width:600px) and (max-width:899px){
    .infoList li{
        font-size:90%;
    }
}
.infoList li a:before{
    content:'';
    width:1em;
    height:1px;
    background:#000;
    position:absolute;
    top:50%;
    left:-20px;
}
.infoList li a{
    padding:0.6em 0 0.2em 0.2em;
    position:relative;
}
.infoList li a span{
    margin-right:1em;
	display:block;
}
.infoList li a:hover{
   border-bottom:5px solid #000;
}

.readMore {
        border: 1px #000 solid;
        border-radius: 100px;
        width: max-content;
        padding: 10px 50px;
        margin: 20px auto 0;
    }
@media screen and (min-width:600px) and (max-width:899px){
.readMore {
        border: 1px #000 solid;
        border-radius: 100px;
        width: max-content;
        padding: 10px 50px;
        margin: 20px auto 0;
    }
}
@media screen and (max-width:599px){
.readMore {
        border: 1px #000 solid;
        border-radius: 100px;
        width: max-content;
        padding: 10px 50px;
        margin: 20px auto 0;
    }
}

.readMore:hover,.readMore a:hover{
    background-color:#000;
	color:#FFF;
	opacity:1;
}
.readMore a:hover{
	opacity:1;
}
video{
    width:100%;
    height:auto;
    margin:20px 0;
}
#sec4{
    margin:0;
	background-color: #000;
	border-bottom: 50px #000 solid;
}
#sec3 {
    background-color: #000;
}
@media screen and (max-width:599px){
    #sec4{
    margin:0;
}
}
.flWrap2{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  align-items: center;
}
.contentsBox{
     display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
  align-items: center;
    position:relative;
}
.contentsBox a{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(33,51,92,0.4);
    transition: all .3s;
}
.contentsBox a:hover{
    background:rgba(33,51,92,0);
}
.contentsBox:first-child,.contentsBox:nth-child(2){
    width:50%;
    height:380px;
}
@media screen and (max-width:599px){
    .contentsBox:first-child,.contentsBox:nth-child(2){
    width:50%;
    height:280px;
}
}
.contentsBox:nth-child(3),.contentsBox:nth-child(4),.contentsBox:nth-child(5){
    width:33.33%;
    height:320px;
}
@media screen and (max-width:599px){
    .contentsBox:nth-child(3),.contentsBox:nth-child(4),.contentsBox:nth-child(5){
    width:33.33%;
    height:200px;
}
}
h2.recrut-ttl {
    font-size: 300%;
    letter-spacing: .1em;
    color: #FFF;
    width: max-content;
    margin: 0 auto;
    line-height: 1.3em;
    font-weight: 700;
	padding-left: 0.7em;
}
h2.cowtv-ttl {
    font-size: 300%;
    letter-spacing: .1em;
    color: #FFF;
    width: max-content;
    margin: 0 auto;
    line-height: 1.3em;
    font-weight: 700;
	padding-right: 0.7em;
}

.contentsBox:first-child{
    background:url("img/jpg/job.jpg") no-repeat center center;
    background-size:cover;
}
.contentsBox:nth-child(2){
    background:url("img/jpg/staff.jpg") no-repeat center center;
    background-size:cover;
}
.contentsBox:nth-child(3){
    background:url("img/jpg/company.jpg") no-repeat center center;
    background-size:cover;
}
.contentsBox:nth-child(4){
    background:url("img/jpg/farmer.jpg") no-repeat center center;
    background-size:cover;
}
.contentsBox:nth-child(5){
    background:url("img/jpg/blog.jpg") no-repeat center center;
    background-size:cover;
}
.contentsBox h2 span{
    color:#fff;
    z-index: 10;
    font-family:sans-serif;
    font-size:140%;
    letter-spacing: 0.1em;
    position:relative;
    display: inline-block;
}
@media screen and (min-width:600px) and (max-width:899px){
    .contentsBox h2 span{
        font-size:120%;
    }
}
@media screen and (max-width:599px){
    .contentsBox h2 span{
        font-size:110%;
    font-family:sans-serif;
    }
    .contentsBox:nth-child(3),.contentsBox:nth-child(4),.contentsBox:nth-child(5){
        font-size:80%;
    }
h2.recrut-ttl{
    font-size: 200%;
    letter-spacing: .1em;
    color: #FFF;
    width: max-content;
    margin: 0 auto;
    line-height: 1.3em;
    font-weight: 700;
	padding-left: 0.7em;
}
h2.cowtv-ttl{
    font-size: 200%;
    letter-spacing: .1em;
    color: #FFF;
    width: max-content;
    margin: 0 auto;
    line-height: 1.3em;
    font-weight: 700;
	padding-right: 0.7em;
	padding-top: 100px;
}
}
.contentsBox h2 span::before{
    content:'';
    width:100%;
    height:1px;
    position:absolute;
    bottom:-25px;
    left:-1em;
    background:#fff;
    padding:0 1em;
    vertical-align: middle;
}
.contentsBox h2 span::after{
    content:'';
    width:23px;
    height:12px;
    border-top:solid 1px #fff;
     -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    display: inline-block;
    position:absolute;
    bottom:-27px;
    right:-1em
}
@media screen and (max-width:599px){
    .contentsBox h2 span::before,.contentsBox h2 span::after{
        content:none;
    }
	.sp-order01{
		order:1!important;
	}
	.sp-order02{
		order:2!important;
	}
}
.flBox2{
    width:50%;
    background:#000;
}

.flBox2:first-child{
    padding:120px 0 0;
}
.flBox2 img{
    width:100%;
    height:auto;
	height: 350px;
    object-fit: cover;
}
h2.recrut-ttl:before {
    content: "RECRUT";
    display: block;
    opacity: 0.3;
}
h2.cowtv-ttl:before {
    content: 'WORK MOVIE';
	display: block;
    opacity: 0.3;

}
@media screen and (max-width:599px){
    .flBox2{
    width:100%;
}

    .flBox2:first-child{
        order:2;
		padding: 100px 0 0;
    }
    .flBox2:nth-child(2){
        order:1;
    }
}
.btn {
    text-align: center;
    background: #ffe422;
    width: max-content;
    margin: 20px auto 50px;
}
.btn a {
    padding: 1em;
    display: block;
    font-size: 140%;
    letter-spacing: 0.1em;
    border: solid 1px #fcee21;
    font-weight: 700;
}
.btn a:hover{
    opacity: 0.5 !important;
}
@media screen and (max-width:599px){
.btn a {
    padding: 1em;
    display: block;
    font-size: 120%;
    letter-spacing: 0.1em;
    border: solid 1px #fcee21;
    font-weight: 700;
}
}
#footer{
    background:#000;
    color:#fff;
    text-align: center;
    padding:0 0 20px;
    line-height: 1.5;
    letter-spacing: 0.05em
}
.footerLogo{
	margin-top:50px;
    margin-bottom:20px;
}
.footerLogo img{
    width:180px;
    height:auto;
}
/*--新SNSロゴテスト--*/
.fotter_top {
    padding: 50px 30px;
    background-color:#8dc21f;
}
.fotter_umamogu{
	width:40%;
	padding:25px 0 25px 0;
}

/*--楽天市場--*/
.EC{
	margin-bottom:30px;
	color:#500d1b;
}
.EC h2 {
 	font-size: 42px;
	font-weight: bold;
	font-family: "BIZ UDPMincho";
	margin-bottom:30px;
	color:#500d1b;
}
.EC ul {
	margin:30px auto;
}
.EC ul li a {
 	transition: opacity 0.3s ease; /* 透明度の変化を滑らかにする */
	display: inline-block; /* 要素の横幅に合わせる */
}
/* マウスが上に乗ったときのaタグのスタイル */
.EC a:hover {
  opacity: 0.75; /* マウスが上に乗ったときの透明度 */
}
.ma-bottom{
	margin-bottom:10px;
}
.EC h3 {
 	font-size: 20px;
	font-weight: bold;
	font-family: "BIZ UDPMincho";
	color:#500d1b;
}

/* 画像のスタイル */
.image-container {
  display: flex;
}

.image-container img {
  width: 98%;
  height: auto;
  margin-right: 10px; /* 画像間の余白を調整 */
}




.SNS{
	height:auto;
	padding:0 15% 0 15%;
	padding-bottom:16px;
}

.sns_left{
	height:auto;
	font-size:22px;
	margin-right:10px;
}
.sns_right{
	display: flex;
	justify-content: center; /* 水平方向の中央揃え */
	align-items: center; /* 垂直方向の中央揃え */
}
/*.container{
	display: flex;  flexコンテナにする 
}*/
.container p{
	color:#500d1b;
	font-weight: bold;
}
.flex{
  flex: 1; /* 横幅を均等にする */
}

/*--SNSロゴ--*/
.SNSLogo{
	display: inline-block;
	margin: 3em;
	display: flex;
	width:auto;
}
.SNSLogo .logo{
	flex-direction:row;
	text-align:center;
	font-size:16px;
	margin-right:12px;
}
.SNSLogo .logo img{
	width:101px;
}
.MerukariLogo{
	margin-right:0;
}
.LINE {
    background-color: #00B900;
}
.LINELogo {
    padding-top: 20px;
    padding-bottom: 18px;
}
a.line img {
    width: 150px;
    height: auto;
}
/*--スマホ--*/
@media screen and (max-width:599px){
    #footer{
        font-size:85%;
    }
	.fotter_umamogu{
		width:60%;
		padding:25px 0 5px 0;
	}
	.SNS{
		padding:0 5% 20px 5%;
	}
	.container{
	display: block;
	}
	.EC{
		margin:20px auto;
		color:#500d1b;
	}
	.EC h2 {
		font-size: 25px;
		font-weight: bold;
		font-family: "BIZ UDPMincho";
		margin-bottom:16px;
	}
	.EC ul {
		margin:30px auto;
	}
	.EC ul li a {
		text-decoration: none;
		transition: opacity 0.3s ease; /* 透明度の変化を滑らかにする */
		display: inline-block; /* 要素の横幅に合わせる */
	}
	/* 画像のスタイル */
	.image-container {
    	display: block; /* フレックスを解除し、上下に並べる */
	}

 	.image-container img {  
		margin-right: 0; /* スマートフォンでは余白を解除 */
		margin-bottom: 10px; /* 上下の余白を追加 */
	}
	.sns_left{
	padding-top:20px;
	font-size:13px;
	}
	.flex{
	flex: none; /* flexを解除 */
	width: 100%; /* 幅を100%に設定 */
	}
	.sns_right{
	margin-left:0px;
	}
	.sns_right p{
		font-size:12px;
	}
	.SNSLogo .logo img{
	width:70px;
	}
}
.copyright{
    margin:2em 0 1em;
}
.mainContents{
    padding:100px 0 0;
}

.page-fv{
    width:calc(100% - 80px);
    padding-top:36%;
    margin:80px auto;
    position:relative;
}
.exp{
    background:url("img/jpg/exp-fv.jpg") no-repeat center center;
    background-size:cover;
}
.otl{
    background:url("https://www.kobayashi-seika.com/wp/wp-content/uploads/2025/06/outline-fv-2-scaled.jpg") no-repeat center center;
    background-size:cover;
}
.stf{
    background:url("img/jpg/staff-fv.jpg") no-repeat center center;
    background-size:cover;
}
.fmr{
    background:url("img/jpg/farmer-fv.jpg") no-repeat center center;
    background-size:cover;
}
.inf{
    background:url("img/jpg/blog.jpg") no-repeat center center;
    background-size:cover;
}
.rec{
    background:url("img/jpg/recruit-fv.jpg") no-repeat center center;
    background-size:cover;
}

.pageTitleBox{
    position:absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    text-align: center;
    color:#fff;
    width:450px;
}


.pageTitleBox img{
    width:100%;
    height:auto;
    animation-name: fadeIn;
    animation-duration: .5s; 
    animation-timing-function: ease-out; 
    animation-iteration-count: 1; 
    animation-direction: normal; 
    animation-fill-mode: forwards;
}
@media screen and (max-width:599px){
    
  .mainContents{
    padding:80px 0 0;
}  
    .page-fv{
    width:96%;
    padding-top:46%;
    margin:0 auto;
    position:relative;
}
    .pageTitleBox{
    width:60%;
}
}
.pageTitleBox h1 span{
    font-family:sans-serif;
    font-size:150%;
    letter-spacing: 0.25em;
}
.pageTitleBox h1{
    font-size:120%;
    letter-spacing: 0.3em;
    line-height: 1.5;
    margin-top:20px;
    animation-name: fadeIn;
    animation-duration: .5s; 
    animation-timing-function: ease-out; 
    animation-iteration-count: 1; 
    animation-direction: normal; 
    animation-fill-mode: forwards;
}
@media screen and (max-width:599px){
    .pageTitleBox h1{
        font-size:80%;
    }
   .pageTitleBox h1 span{
    font-size:120%;
    letter-spacing: 0.25em;
} 
}
#breadcrumb{
    width:calc(100% - 80px);
    margin:0 auto;
    position:relative;
    height:40px;
}
@media screen and (max-width:599px){
    #breadcrumb{
    width:96%;
    }
}
#breadcrumb ul{
    position:absolute;
    top:50%;
    transform: translateY(-50%);
    font-size:90%;
}
#breadcrumb ul li{
    display: inline-block;
    position:relative;
}
#breadcrumb ul li:first-child{
    font-size:110%;
}
#breadcrumb ul li:not(:last-child)::after{
    content: '>';
    font-family:sans-serif;
}
#breadcrumb ul li a{
    padding:1em
}
#breadcrumb ul li:last-child {
    margin-left: 1em;
    line-height: 1.3em;
    margin-bottom: 3em;
}
.contentsBox2{
     display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width:50%;
  align-items: center;
    position:relative;
}
@media screen and (max-width:599px){
    .contentsBox2{
        width:90%;
        margin:0 auto 20px;
    }
    .flWrap2:nth-of-type(2) .contentsBox2:first-child{
        order:2;
    }
}
.contentsBox2 img{
    width:100%;
    height:auto;
}
.contentsBox2 h2{
    font-size:140%;
    letter-spacing: 0.15em;
    line-height: 1.5;
    margin-bottom:1em;
}
.contentsBox2 h2 span{
    font-family:sans-serif;
    font-size:70%;
}
.contentsBox2 p{
    font-weight:bold;
    line-height: 1.8;
    letter-spacing: 0.1em;
}
@media screen and (max-width:599px){
    .contentsBox2 p,.contentsBox2 div p{
        font-size:3.6vw;
    }
}
.m-b-40{
    margin-bottom:40px;
}
.pd-0-20{
    padding:0 20px;
}
.pd-0-40{
    padding:0 40px;
}
.mt-40-0-0{
    margin-top:40px
}
@media screen and (max-width:599px){
   .pd-0-40{
    padding:0;
} 
}
.secDevide{
    width:100%;
    text-align: center;
    background:url("img/jpg/vegi.jpg") no-repeat center center;
    background-size:cover;
    padding:180px 0;
    color:#fff;
}

.devTitle{
    font-size:140%;
    line-height: 1.8;
    letter-spacing: 0.2em;
    position:relative;
}
.devTitle span{
    font-family:sans-serif;
    font-size:120%;
}
.devTitle::before{
    content:'';
    display: block;
    width:60px;
    height:38px;
    background:url("img/png/skew.png") no-repeat;
    background-size:contain;
    position:absolute;
    top:-40px;
    left:50%;
    transform:translateX(-50%);
}
@media screen and (max-width:599px){
    .secDevide{
         padding:90px 0;
    }
    .devTitle{
    font-size:120%;
    }
}
.contentsBox2 h2 span.gl{
    font-size:100% !important;
    color:#555;
}
.cta{
    width:100%;
    text-align: center;
    background:url("img/jpg/ctabg.jpg") no-repeat center center;
    background-size:cover;
    padding:180px 0;
    color:#fff;
}
.cta a{
	 color:#fff;
}
.ctaTitle{
    font-size:140%;
    line-height: 1.8;
    letter-spacing: 0.2em;
    position:relative;
}
.ctaTitle span{
    font-family:sans-serif;
    font-size:120%;
}
.ctaTitle::before{
    content:'';
    display: block;
    width:60px;
    height:38px;
    background:url("img/png/skew.png") no-repeat;
    background-size:contain;
    position:absolute;
    top:-40px;
    left:50%;
    transform:translateX(-50%);
}
.btn2 a{
    background:#fff;
    padding:1.3em 3em;
    font-weight:bold;
    display: block;
    width:460px;
    margin:20px auto;
    letter-spacing: 0.1em;
    border:solid 1px #2992C9;
	color:#000;
}
.btn2 a:hover{
    background:#2992C9;
    color:#fff;
}

.phone{
    font-size:320%;
    position:relative;
    font-weight:bold;
}
.phone:before{
	content: 'TEL ';
    font-family:sans-serif;
}
@media screen and (max-width:599px){
    .cta{
        padding:90px 0;
    }
    .ctaTitle{
    font-size:120%;
    }
    .btn2 a{
        width:90%;
    }
    .phone{
    font-size:8vw;
    }
}
.grtwrapper {
    width: 100vw;
    margin: 0 auto;
    position: relative;
}
.gwrap{
    width: 100vw;
    margin: 0 auto;
    position: relative;
    background-color: #f8f8f8;
    padding: 3em;
}

.grtWrp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 30px;
    background: -moz-linear-gradient(-45deg, #aad1ea 0%, #cbdded 50%, #fff 100%);
    /* background: -webkit-linear-gradient(-45deg, #aad1ea 0%, #cbdded 50%, #fff 100%); */
    /* background: linear-gradient(135deg, #aad1ea 0%, #cbdded 50%, #fff 100%); */
    margin-bottom: 120px;
    width: 1080px;
    margin: 0 auto 3em;
}
.grBox{
    width:50%;
    padding:2%;
}
@media screen and (max-width:599px){
  .grtWrp{
      flex-direction: column;
	  width:100%;
    }
    .grBox{
        width:100%;
    }
}
/*
.grBox:first-child{
    background:url("img/png/message.png")no-repeat right top;
    background-size:40%
}
*/
.grBox h2 {
    font-family:sans-serif;
    font-size: 130%;
    letter-spacing: 0.2em;
    border-bottom: solid 4px #000;
    padding-bottom: 0.4em;
    margin-top: 1.8em;
    margin-bottom: 1.5em;
}
.grBox p{
    text-indent: 1em;
    line-height: 1.8;
    text-align: justify;
    margin-bottom:1em;
    font-weight:bold;
}
.grBox img{
    width:100%;
    height:auto;
}
.pres{
    text-align: right !important;
    font-family:sans-serif;
     font-weight:bold;
}
.ceo{
    font-size:90%;
}
.name{
    font-size:120%;
}
.subTitle1{
    text-align: center;
    font-size:150%;
    letter-spacing: 0.2em;
    position:relative;
    margin-bottom:60px;
}
.subTitle1::after{
    content:'';
    width:40px;
    height:2px;
    background:#395780;
    position:absolute;
    bottom:-20px;
    left:50%;
    transform: translateX(-50%);
}
.outline{
    color:#395780;
    font-weight:bold;
    padding:120px;
}
.co{
    background:#EEEEEE;
}
.ol{
    background:#e2e2e2;
}
.outline dt{
    float:left;
  clear:left;
    width:30%;
}.outline dd{
    width:70%;
    float:left;
}
.outline dt,.outline dd{
    line-height: 1.8;
    padding:1em;
    letter-spacing: 0.1em
}
.outline dd p{
    margin-bottom:1em;
}
@media screen and (min-width:1200px){
.cf {
    min-height: 1px;
    width: 60%;
    margin: 0px auto;
    padding-left: 3em;
}
}
@media screen and (max-width:599px){
	.gwrap {
		padding:1em;
	}
    .subTitle1{
    font-size:130%;
    }
    .outline{
        padding:15% 5%;
    }
    .outline dt,.outline dd{
        font-size:85%;
    }
}
.outline:nth-of-type(3) dt{
    width:33%;
}
.outline:nth-of-type(3) dd{
    width:67%;
}
.subTitle2 {
    text-align: center;
    font-size:110%;
    letter-spacing: 0.2em;
    margin:3em 0;
}
.subTitle2 span{
    color:#2992C9;
    padding:0.8em 5em;
    border:solid 2px #2992C9;
    border-radius:30px;
    background:#fff;
}
.bizWrap{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap:wrap;
    align-items: stretch;
}
.bizBox{
    width:46%;
    margin:2%;
    border:solid 2px #2992C9;
}
.bizBox2{
    width:100%;
    margin:2% 0;
    border:solid 2px #2992C9;
}
@media screen and (max-width:599px){
    .subTitle2 {
    font-size:100%;
         margin:3em 0 2em;
        /*--padding:0.8em 4em;--*/
}
    .bizBox,.bizBox2{
    width:90%;
    margin:2% auto;
}
}
.bizBox ul{
    text-align: center;
    margin:40px 0
}
.bizBox ul li{
    display: inline-block;
    margin:0 20px;
    line-height: 1.5;
    font-weight:bold;
}
.bizBox img{
    width:130px;
    height:130px;
    object-fit: cover;
    object-position: top;
    border-radius:50%;
}
.bizBox2 ul{
    text-align: center;
    margin:40px 0
}
.bizBox2 ul li{
    display: inline-block;
    margin:0 20px 10px;
    line-height: 1.3;
    font-weight:bold;
}
.bizBox2 ul li span{
	font-size:85%;
}
.bizBox2 img{
    width:130px;
    height:130px;
    object-fit: cover;
    object-position: top;
    border-radius:50%;
}
.subj {
    width:90%;
    margin:0 auto 20px;
}
.subj h3{
    margin-bottom:30px;
    text-align: center;
    position:relative;
    letter-spacing: 0.1em;
}
.subj h3:after{
    content:'';
    width:100%;
    height:1px;
    background:#2992C9;
    position:absolute;
    left:0;
    top:50%;
    z-index: 1
}
.subj h3 span{
    border:solid 1px #2992C9;
    color:#2992C9;
    padding:0.5em 1.5em;
    border-radius:20px;
    font-size:90%;
    background:#fff;
    position:relative;
    z-index:10;
    
}
.subj p{
    line-height: 1.8;
    font-weight:bold;
    font-size:90%;
}
.fContents{
    margin:80px 0;
}
.subTitle3{
    font-family:sans-serif;
    font-size:300%;
    line-height: 1.5;
}
.fName{
    text-align: right;
    font-size:130%;
    font-style: italic;
    letter-spacing: 0.1em;
    color:#2992C9;
}
.fArticle{
    margin:60px 0
}
.fArticle p{
    font-family:sans-serif;
    font-size:130%;
    line-height: 1.8;
}
.gallery{
    width:100%;
    margin:0 auto;
    position:relative;
    font-size:0;
}
.gallery li{
    width:30.3%;
    position:relative;
    display: inline-block;
    vertical-align: top;
    margin:1.5%;
}
.gallery li img{
    max-width:100%;
    height:auto;
}
@media screen and (max-width:599px){
    .fContents{
        width:90%;
    margin:40px auto;
}
    .subTitle3{
    font-family:sans-serif;
    font-size:9vw;
}
    .fName{
    font-size:110%;
        margin:0.6em 0;
}
    .gallery li{
    width:47%;
    margin:1.5%;
}
}

.farmerList{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap:wrap;
    align-items: stretch;
}
.farmerList li{
    width:33.3%;
    padding:2%;
    display: flex;
  flex-direction: column;
}
.farmerList li img{
    width:100%;
    height:220px;
    object-fit: cover;
}
.farmerList li h2{
    font-style: italic;
    letter-spacing: 0.1em;
    color:#2992C9;
    font-size:110%;
    margin:1em 0;
    line-height: 1.3;
}
.farmerList li h3{
    font-size:110%;
    line-height: 1.5;
}
.fmBtn{
    text-align: center;
    margin-top:auto;
}
.fmBtn a{
    border:solid 1px #2992C9;
    color:#2992C9;
    font-weight:bold;
    display: block;
    width:80%;
    margin:20px auto;
    padding:1em;
    letter-spacing: 0.15em;
}
.fmBtn a:hover{
    background:#2992C9;
    color:#fff;
}
@media screen and (max-width:599px){
  .farmerList li{
    width:50%;
    padding:2%;
}
    .farmerList li img{
    width:100%;
    height:120px;
    object-fit: cover;
}
    .farmerList li h2{
        font-size:100%;
    }
    .farmerList li h3{
    font-size:90%;
    }
    .fmBtn a{
        width:90%;
        font-size:3vw;
    }
}


.article{
    margin:80px 0;
}
@media screen and (max-width:599px){
	.article{
		width:90%;
    margin:40px auto;
}
}
.postTitle{
    font-size:150%;
    font-weight:600;
    letter-spacing: 0.2em;
    border-bottom:solid 1px #000;
    padding:0.6em 0;
    margin-bottom:20px;
	line-height: 1.5em;
}
.postDate{
    text-align: right;
    font-weight:bold;
    font-size:110%;
    letter-spacing: 0.1em;
}
.post-content{
    margin:40px 0;
    font-size:110%;
    line-height: 2;
    letter-spacing: 0.1em;
}
.post-content img{
    width:100%;
	height:auto;
	display:block;
    margin:0 auto;
}
.wp-block-group__inner-container.is-layout-constrained.wp-block-group-is-layout-constrained {
    margin-bottom: 2em;
}
@media only screen and (max-width: 767px) {
    .post-content img {
        width: 100%;
    }
}

.post-content p .img-left{
    width: 40%;/* 画像の幅を適切なサイズに調整 */
    height: auto; /* 高さは自動調整 */
    margin-right: 20px; /* 画像間の余白を設定 */
    display: inline-block; /* inline-blockを使用して横に並べる */
}

/*--知っ得--*/
.postWrap{
   display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}
.postWrap li{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    width:30.3%;
    margin:1.5%;
}
.postWrap li img{
    width:100%;
	/*--もともと入ってた
	height:auto;
	--*/
	/*↓二行追加*/
	height: 280px;
    object-fit: cover;
}
.postWrap li h2{
    font-size:110%;
    margin:1em 0;
}

@media screen and (max-width:599px){
	.postWrap li{
		width:100%;
}
}
	
.postBtn{
    text-align: center;
    margin-top:auto;
}
.postBtn a{
    display: block;
    width:90%;
    border:solid 1px #000;
    padding:1em;
    margin:30px auto;
    font-weight:bold;
    font-size:90%;
    letter-spacing: 0.1em;
}
.postBtn a:hover{
    background:#000;
    color:#fff;
}


.recWrap{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
 
    background: -moz-linear-gradient(-45deg, #6692bf 0%, #00395e 50%, #38062e 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(-45deg, #6692bf 0%,#00395e 50%,#38062e 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(135deg, #6692bf 0%,#00395e 50%,#38062e 100%); 
    color:#fff;
    padding:40px 50px;
    margin-bottom:40px;
}


.ftr1{
    font-family:sans-serif;
    font-size:220%;
    letter-spacing: 0.2em;
}
.ftr2{
    font-family:sans-serif;
    font-size:360%;
    color:#EB1729;
    margin:0.5em 0;
    letter-spacing: 0.2em;
}
.old1{
    font-family:sans-serif;
    font-size:320%;
    line-height: 1.3;
}
.fy{
    font-size:120%;
    line-height: 1.5;
    font-weight:bold;
    margin:1em 0;
}
.recBox{
    width:50%;
    padding:60px 0 60px;
         display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  align-items: center;
}
.recBox:first-child{
      background:url("img/png/dots2.png") no-repeat left bottom;
     background-size:contain;
}
@media screen and (min-width:600px) and (max-width:899px){
    .ftr1{
    font-size:220%;
}
.ftr2{
    font-size:300%;
}
.old1{
    font-size:220%;
}
}
@media screen and (max-width:599px){
    .recWrap{
        flex-direction:column;
        padding:8% 5%;
    }
    .ftr1{
    font-size:6vw;
}
    .ftr2{
      font-size:11vw;   
    }
    .old1{
    font-size:10vw;
}
    .recBox{
        width:100%;
        padding:0;
    }
}
.recExp{
    font-weight:bold;
    letter-spacing: 0.1em;
    font-size:120%;
}
.rightBlock{
    width:75%;
    float:right;
    position:relative;
    margin:120px 0;
}
.rightBlock::before{
    content:'';
    width:160px;
    height:10px;
    background:#000;
    position:absolute;
    top:-30px;
    left:-160px;
    transform: rotate(45deg);
}
.rightBlock h2{
    font-size:5vw;
    line-height: 1.8;
    position:relative;
    margin:0.5em 0;
}

.rightBlock h2 span{
   position:relative;
    z-index:10;
}
.rightBlock h2 span:after{
    content:''; 
    width:100%;
    height:20px;
    background:#EB1729;
    position:absolute;
    left:0;
    bottom:0;
     z-index:-1;
}
.rightBlock p{
    font-size:2vw;
    line-height: 1.5;
}
@media screen and (min-width:600px) and (max-width:899px){
    .rightBlock h2{
    font-size:7vw;
    }
    .rightBlock p{
    font-size:3vw;
}
}
@media screen and (max-width:599px){
    .recExp{
    font-size:4vw;
}
    .rightBlock{
    width:90%;
    float:right;
    position:relative;
    margin:80px 0;
}
    .rightBlock::before{
    content:'';
    width:80px;
    height:5px;
    background:#000;
    position:absolute;
    top:-30px;
    left:-20px;
    transform: rotate(45deg);
}
    .rightBlock h2{
    font-size:8vw;
    }
    .rightBlock h2 span:after{
    content:''; 
    width:100%;
    height:10px;
}
    .rightBlock p{
    font-size:4vw;
}
}
.leftBlock{
    width:75%;
    position:relative;
    margin:120px 0 100px;
}
.leftBlock::before{
    content:'';
    width:160px;
    height:10px;
    background:#000;
    position:absolute;
    top:-120px;
    left:120px;
    transform: rotate(-60deg);
}
.leftBlock h2{
    font-size:5.5vw;
    line-height: 1.8;
    position:relative;
    margin:0.5em 0;
}
.leftBlock h2 span{
   position:relative;
    z-index:10;
}
.leftBlock h2 span:after{
    content:''; 
    width:100%;
    height:20px;
    background:#EB1729;
    position:absolute;
    left:0;
    bottom:0;
     z-index:-1;
}
.leftBlock p{
    font-size:2vw;
    line-height: 1.5;
}

@media screen and (min-width:600px) and (max-width:899px){
    .leftBlock{
    width:75%;
    position:relative;
    margin:120px 0 100px 20px;
}
    .leftBlock h2{
    font-size:7vw;
}
    .leftBlock p{
    font-size:3vw;
}
}
@media screen and (max-width:599px){
    .leftBlock{
    width:90%;
    position:relative;
    margin:80px 0 40px 10px;
}
.leftBlock::before{
    content:'';
    width:80px;
    height:5px;
    background:#000;
    position:absolute;
    top:-80px;
    left:120px;
    transform: rotate(-60deg);
}
.leftBlock h2{
    font-size:8vw;
    line-height: 1.8;
    position:relative;
    margin:0.5em 0;
}

.leftBlock h2 span:after{
    content:''; 
    width:100%;
    height:10px;
    background:#EB1729;
    position:absolute;
    left:0;
    bottom:0;
     z-index:-1;
}
.leftBlock p{
    font-size:4vw;
    line-height: 1.5;
}
    
}


.ideal{
    border:solid 1px #000;
    margin-bottom:60px;
    padding:8% 5%;
}
.ideal h2{
    text-align: center;
    font-size:180%;
    margin-bottom:1.5em;
    letter-spacing: 0.1em;
}
.ideal ul{
    width:80%;
    margin:60px auto;
}
.ideal ul li{
    list-style-type: disc;
    font-size:120%;
    font-weight:bold;
    margin:1em 0;
    line-height: 1.5;
}
.ideal p{
    font-weight: bold;
    line-height: 1.8;
    font-size:160%;
}
.ideal h3{
    font-family:sans-serif;
    font-size:200%;
    line-height: 1.8;
    margin:1em 0;
}
@media screen and (max-width:599px){
    .ideal{
    margin-bottom:60px;
    padding:12% 5%;
        width:90%;
        margin:0 auto 60px;
}
   .ideal h2{
    text-align: center;
    font-size:140%;
    margin-bottom:1em;
    letter-spacing: 0.1em;
} 
   .ideal p{
    font-size:120%;
} 
    .ideal h3{
    font-size:120%;
   
    }
}
.wpcf7 img{
	max-width:200px;
	height:auto;
	margin:0;
}
div.wpcf7 { background:#fafafa; border:1px solid #ddd; padding:0px; -moz-border-radius:10px; -khtml-border-radius:10px; -webkit-border-radius:10px; border-radius:10px; margin:0 0 30px 0; }
div.wpcf7 p { padding:20px 20px 0; margin:0; font-size:11px; }
div.wpcf7 input, .wpcf7 textarea { border:1px solid #ccc; padding:8px; font-size:16px; -webkit-appearance: none; 
  -moz-appearance: none; 
  appearance: none; width:100%;}
div.wpcf7 textarea { width:100%; height:300px; }
div.wpcf7 input.wpcf7-submit {
   cursor:pointer; color:#fff; font-weight:bold; font-size:14px; width:200px; height:45px; margin:0 auto; display:block;
   -moz-border-radius:5px; -khtml-border-radius:5px; -webkit-border-radius:5px; border-radius:5px;
   background:#333; box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.5), inset 0px 32px 0px -12px #808080; border:1px solid #666;
}
div.wpcf7 input.wpcf7-submit:hover { background:#006080; box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.5), inset 0px 32px 0px -12px #007ea8; border:1px solid #006080; }
.wpcf7 input.wpcf7-submit:active { box-shadow:none; bottom:-2px; position:relative; }
.wpcf7 input:focus, .wpcf7 textarea:focus { border:1px solid #009de1; }
.wpcf7-captchac { border:1px solid #ccc; }
 
 
/* エラー個所をわかりやすく表示 */
.wpcf7 .wpcf7-not-valid { background: #ffb6c1; }
.wpcf7 span.wpcf7-not-valid-tip {font-size: 80%;}
.wpcf7 .wpcf7-response-output {margin: 10px 0 0; padding: 8px 35px 8px 14px; text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
    -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; }
.wpcf7 .wpcf7-validation-errors {color: #B94A48; background-color: #F2DEDE; border: 1px solid #EED3D7;}
.wpcf7 .wpcf7-mail-sent-ok {color: #3A87AD; background-color: #D9EDF7; border: 1px solid #BCE8F1;}
 
/* 必須赤色表示 */
.wpcf7 .required { color: #f00;}
/* 任意緑色表示 */
.wpcf7 .any{ color: #080;}

.wpcf7-captchar{
	width:200px !important;
}
.pageNav{
	font-size:110%;
	padding:30px 0;
}

/*うまもぐエリア*/
h3.MmartLogo a, h3.MmartLogo a img {
    border-radius: 10px;
}
p.caption {
    font-size: 120%;
    color: #FFF;
    letter-spacing: 0.1em;
    line-height: 1.8em;
	font-weight:700;
}
.channel ul{
	max-width:650px;
	margin:0 auto;
	display:flex;
	flex-wrap:wrap;
	justify-content: space-between;
}
.channel li {
    width: 100%;
    margin: 10px 0;
    font-size: 120%;
    border-radius: 20px;
	background-color:#8dc21f;
	border:2px solid #FFF;
}
@media screen and (min-width:600px){
.channel ul li:nth-child(n+3){
	width:49%;
}
}
.channel li a {
	color:#FFF;
	font-weight:700;
	display:block;
	width:100%;
	padding: 20px;
	
}

.channel li:hover{
	background-color: #FFF;
}
.channel li a:hover {
	color:#8dc21f;
}
ul.service {
    display: flex;
    max-width: 800px;
    margin: 5em auto;
}

ul.service li p{
    color:#FFF;
	font-size:110%;
	font-weight:700;
}
ul.service li img {
    width: 80%;
    text-align: center;
}
@media screen and (max-width:599px){
ul.service li p{
	font-size:80%;
}
ul.service {
	max-width:100%;
	margin: 3em auto;
	align-items:center;
}
ul.service li {
	width:100%;
}
.channel li {
    font-size: 100%;
	}
.SNSLogo {
    margin: 1.5em;
	}
.fotter_top {
    padding: 50px 30px 10px 30px;
    background-color: #8dc21f;
}
}
.logo p {
    color: #FFF;
}
/*インスタグラム*/
.insta{
	background-color: #8dc21f;
	padding-bottom:2em;
}
.instagram-media{
	width:40%;
}
figure{
	margin-left:0;
}
.sb_instagram_header.sbi_header_palette_light {
    width: fit-content;
    margin: 0 auto;
}
.width-100{
	width:100%;
}
.width-100 img{
	width:100%;
}
span.date {
    font-size: 80%;
    color: #888888;
}
#sb_instagram .sb_instagram_header, .sb_instagram_header {
    width: max-content;
    margin: 0 auto;
}
/*投稿*/
.post-content a {
    color: navy;
    background-color: unset;
}
.post-content a:hover {
	opacity:0.5;
}

/*リキャプチャロゴ削除*/
.grecaptcha-badge { visibility: hidden; }

/*メディア掲載一覧*/
h2.wp-block-heading.cmedia {
    font-size: 300%;
    line-height: 1.2em;
    font-style: oblique;
    margin-bottom: 1em;
}
.media-list {
    width: 85%;
    margin: 0 0 5em auto;
}

.media-list ul {
    margin-bottom: 1em;
}
.media-list ul li {
    display: flex;
    justify-content: space-between;
	border-bottom:1px solid #c0c0c0;
	padding:10px;
	align-items: center;
}
.media-list ul li a {
    color: #000;
    font-weight: 100;
    display: flex;
    justify-content: space-between;
    padding: 5px 0px 5px 10px;
	width:100%;
	align-items:end;
}
.media-list-2 div {
    display: flex;
    justify-content: space-between;
}
.media-list-2 {
    width: 90%;
}
span.post-cat {
    font-weight: 700;
}
.media-list a:hover,
.media-list-2 a:hover {
    border-bottom: 5px solid #ffe422;
}
@media screen and (max-width:599px){
h2.wp-block-heading.cmedia {
    font-size: 180%;
	margin-left:0.5em;
	}
.media-list {
    width: 90%;
}
.media-list-2 {
        width: 100%;
        padding-right: 0.2em;
    }
.media-list ul li {
	display:block;
}
.media-list ul li a {
	padding:0.5em 0 0 0;
	display:block;
	}
.media-list-2 a h2 {
	order: 2;
	padding-bottom: 0.5em;
	line-height: 1.4em;
    }
p.post-date {
    font-size: 80%;
    text-align: end;
}
}
.pagination.csr-pagination,
.pagination.trivia-pagination{
    text-align: end;
}
.pagination.csr-pagination a,
.pagination.trivia-pagination a {
    padding: 0.2em;
}
.page-numbers.current {
  font-weight: bold;  /* 太字 */
  color: #000;        /* 色を変えたい場合 */
}
h2.article-ttl {
	font-size: 110%;
    font-weight: 100;
	line-height: 1.5em;
}
p.post-date {
    font-size: 80%;
}
.media-cf img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}
@media screen and (max-width:599px){
.media-cf img {
	height: 250px;
}
}
.post-content a:hover {
    margin-bottom: 3px solid #000;
}
.media-cf p,
.media-cf a,
a .url-text {
	line-height:1.5em;
}
.media-cf a,
a .url-text {
	color:navy;
	line-height: 1.5em;
}
.media-cf a:hover {
    opacity:0.5;
}
.media-cf p.honbun{
	margin:2em 0;
	line-height: 1.5em;
}
.media-cf {
    margin-bottom: 4em;
    margin-left: 1em;
    margin-right: 1em;
}
.media-logo-inner {
    text-align: center;
}
.introduction p {
    line-height: 1.5em;
}
.introduction {
	margin: 3em auto;
	max-width: 600px;
	width: fit-content;
}
p.top-space-3{
	margin-top:3em;
}

/*--最新記事--*/
p.postDate {
    text-align: end!important;
}
ul.media-post-list {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 1em;
    padding: 0 1em 0.5em; 
    background-clip: content-box; 
	text-align: justify;
}


li.media-post-card {
    flex: 0 0 auto;
    width: 250px; 
    background-color: #f4f1ed;
    border-radius: 8px;
    scroll-snap-align: start;
}
.media-post-content {
    padding: 0.5em;
    font-weight: 100;
    line-height: 1.3em;
    background-color: #f4f1ed;
}
	li.media-post-card a img {
    width: 100%;
	height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}
h3.media-post-title {
    color: #707070;
}
.fullwide-wrapper {
    background-color: #f5f5f5;
}
.fullwide-inner {
    padding: 3em 0;
}
h2.new-article-ttl {
    font-size: 120%;
    text-align: center;
	margin-bottom: 2em;
}
@media screen and (min-width:1200px){
.fullwide-inner>.media-post-list-wrap>ul.media-post-list>li.media-post-card {
    width: 400px; 
}
}
@media screen and (max-width:832px){
li.media-post-card.article-list {
    width: 31%;
}
}
@media screen and (max-width:599px){
	li.media-post-card {
    width: 40%;
}
li.media-post-card.article-list {
    width: 48%!important;
}
li.media-post-card a img {
    aspect-ratio: 1 / 1;
}
	h3.media-post-title {
    font-size: 70%;
}
}

/*--------*/

@media screen and (min-width:600px){
.flex-box {
    width: 100%;
    margin: 2em auto;
	margin-bottom: 5em;
}
.about-.flex-box img {
    width: 30%;
}
.introduction p {
    text-align:left;
}
}
@media screen and (max-width:599px){
.flex-box {
    width: 100%;
    margin: 2em auto 6em!important;
}
.about-.flex-box img {
    width: 80%;
	margin:0 auto;
	display: block;
}
.introduction {
    width: 90%;
}
ul.media-post-list {
    gap: 0.5em;
    padding: 0 0.5em 0.5em;
}
}
.about- p {
    letter-spacing: 0.1em;
    padding-bottom: 0.5em;
    width: fit-content;
    margin: 0 auto;
}
h3.MediaName {
    font-size: 120%;
    font-weight: 100;
    margin-bottom: 0.8em;
}
button.media-post,
button.fam-link
{
    display: block;
    background-color: #000;
    color: #FFF;
    font-weight: 700;
    letter-spacing: 0.2em;
    padding: 0.5em 5em;
    margin: 0 auto;
    font-size: 110%;
    margin-top: 2em;
	border: none;
	margin-bottom: 4em;
}
button.media-post:hover {
	color:#000;
	background-color:#fff;
	border:1px solid #000;
}


nav.wp-block-query-pagination.is-layout-flex.wp-block-query-pagination-is-layout-flex {
    margin-top: 3em;
    width: fit-content;
    margin: 3em auto;
}
.wp-block-query-pagination-numbers {
    letter-spacing: 0.3em;
}
.en-ttl {
    font-size: 400%;
    opacity: 0.3;
    text-align: end;
    font-style: oblique;
    margin-top: -2.2em;
    margin-bottom: 2em;
}

video {
    margin: 0;
}
/*--------メディア掲載---------*/
/*　一覧　*/
mark.yellow-line {
    background-color: #ffe422!important;
}
.media-list ul {
    margin-bottom: 0; 
}

button#load-more-trivia,
button#close-trivia,
button#load-more-csr,
button#close-csr,
button#load-more-ts,
button#close-ts{
    background: none;
    border: none;
    margin: 1em;
    text-align: center;
    width: 100%;
	font-size:120%;
	background-color: #ffe422;
    color: #555;
    padding: 0.5em;
}


.load-more-wrap {
    margin-top: 1em;
    display: flex;
    margin: 1em auto;
}
.post-content.editor p {
    line-height: 1.5em;
	margin-bottom:2em;
}
.post-content.editor{
	margin-bottom: 4em;
	padding: 0 1em;
}
@media screen and (max-width:599px){
.load-more-wrap {
	flex-wrap: wrap;
	}
button#load-more-trivia,
button#close-trivia,
button#load-more-csr,
button#close-csr,
button#load-more-ts,
button#close-ts{
	width: 80%;
	margin: 0 auto;
	padding:0.5em;
}
button#load-more-trivia,
button#close-trivia{
	margin: 0.25em;
	font-size:initial;
}
button#load-more-ts {
    margin-bottom: 0.5em;
}
}
/*--------知っ得!---------*/
/*　記事　*/
.shittoku-fb img {
	width:70%;
    max-width: 400px;
    margin-bottom: 2em;
}
.shittoku-fb {
    text-align: center;
	margin-top:6em;
}
.shittoku-fb h3 {
    font-size: 120%;
}
.mainContents.shittoku h3 {
    margin-bottom: 1em;
    margin-top: 0.5em;
}
.shittoku-fb p {
    line-height: 1.5em;
	font-weight: bold;
}
hr.stk-hr {
    height: 5px;
    background-color: #000;
    display: block;
    border: none;
}
.article h2 {
    font-size: 120%;
    text-align: center;
    margin-bottom: 0.5em;
    margin-top: 0.5em;
}
.article p {
    line-height: 2em;
	margin-bottom:1em;
	text-align:justify;
}
.article img {
    height: 500px!important;
    object-fit: cover;
}
p.media-post-excerpt {
    margin-top: 10px;
	font-size:80%;
}
@media screen and (max-width:700px){
.article img {
    height: 300px !important;
}
}
@media screen and (max-width:599px){
.shittoku-fb h3 {
    font-size: 100%;
	margin-bottom:1em;
}
.shittoku-fb p {
    font-size:90%;
}
.article h2 {
	text-align:left;
	line-height:1.5em;
	}
.article p {
    line-height: 2em;
    font-size: 90%;
    line-height: 1.8em;
	letter-spacing:normal;
    }
}
}
/*　一覧　*/
li.media-post-card.article-list {
    width: 23.5%;
}
.shittoku-fb.list-page {
    margin: 3em auto;
	padding: 0 1em;
}
ul.media-post-list.articlelist-page {
    flex-wrap: wrap!important;
	overflow:hidden;
	justify-content: start;
}
.pagination.stk-pagination {
    text-align: center;
    margin: 2em;
    letter-spacing: 0.8em;
}
@media screen and (max-width:1050px){
li.media-post-card.article-list {
    width: 31%;
}
}
/*　問い合わせフォーム　*/
img.wpcf7-form-control.wpcf7-captchac.wpcf7-captcha-captcha-170 {
    height: unset !important;
    margin-bottom: 1em;
}
/*　ふるさと納税レビューフォーム　*/
.furusato h2 {
    /* width: 80%; */
    padding: 0 0.5em;
	font-size: 120%;
    text-align: center;
    margin-bottom: 0.5em;
    margin-top: 1.5em;
}
div.wpcf7 input, .wpcf7 textarea,
select.wpcf7-form-control.wpcf7-select.wpcf7-validates-as-required {
	height:3em;
}

/*------　産地紹介　-------*/

main.post-detail {
    padding-top: 4em;
}
.farmers-2 {
    margin-bottom: 6em;
}
.farmers-2 h1,
.farmers-2 h2,
.farmers-2 h3{
	font-family: "source-han-sans-cjk-ja", sans-serif;
	}
.farmers-2 h2.ttl {
	font-size: 20px;
	text-align:center;
	margin-right: 0.5em;
    /*margin-bottom: 0.3em;*/
}
h1.post-title {
    font-size: 32px;
    letter-spacing: 0.05em;
    text-align: center;
}
section.farmar {
	margin-top: 4em;
    margin-bottom: 3em;
	}
.main-image img {
    border-radius: 100px 10px 10px 10px;
	height: 100%;
    max-width: 100vw;
    object-fit: cover;
}

section.ttl {
    display: flex;
    justify-content: center;
    align-items: end;
}
ul.item-list {
    display: flex;
    gap: 0.3em;
    width: fit-content;
    margin: 0 auto;
}
ul.item-list li {
    background-color: #000;
    color: #FFF;
    padding: 0.3em 1em;
    border-radius: 100px;
}
section.intro {
    margin: 2em;
}
.main-image {
    height: 500px;
    width: 500px;
	max-width: 100%;
}
.main-image img {
    height: 100%;
}

.text {
    margin: 1em;
}
	small{
		font-size:80%;
	}
hr.fam-fb {
    display: block;
    height: 3px;
    background-color: #000;
    border: none;
    border-radius: 100px;
    margin: 2em 0;
}
hr.article-heading {
    display: block;
    width: 80px;
    height: 4px;
    background-color: #000;
    border: none;
    border-radius: 100px;
    margin: 1rem auto 1.5rem auto;
}
.spec {
    display: flex;
    gap: 1em;
	align-items:center;
}
.spec svg {
    width: 30%;
}	
.environment p {
    font-size: 100% !important;
}
section.article-block,
section.gallery{
	margin-bottom:5em;
	}
section.intro h2,
section.article-block h3,
section.gallery h3,
section.posts h3{
    font-size: 22px;
    line-height: 1.4em;
    letter-spacing: 0.1em;
	font-weight: 500;
}
section.intro h2{
	margin-bottom: 1em;	
	}
section.article-block h3,
section.gallery h3,
section.posts h3{
	margin: 0.3em 0;
	text-align:center;
	}
section.intro p{
    line-height: 1.7em;
    text-align: justify;
	font-size:large;
}
.text p {
    line-height: 2em;
    text-align: justify;
	font-size:large;
	margin: 1em;
}
section.article-block img {
    width: 100%;
    height: 500px;
	object-fit: cover;
}
section.article-block,
section.gallery{
    margin-top: 4em;
}
ul.gallery-list li {
    aspect-ratio: 1 / 1;
    margin: 0;
	width: 33.3%;
}
ul.gallery-list li img {
    height: 100%;
    object-fit: cover;
	padding: 2.5px;
	
}
ul.gallery-list {
    display: flex;
    flex-wrap: wrap;
	align-items:space-between;

}
ul.related-posts {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    white-space: nowrap;
    padding: 3em 0 0 3em; 
    margin: 0;
}

ul.related-posts li {
    flex: 0 0 auto;
}
li.related-item {
    width: 22%;
	 background-color: #FFF;
}
li.related-item a{
	width:100%;
}
li.related-item a img {
    width: 100% !important;
    height: min-content;
    height: 300px !important;
    object-fit: cover;
}
li.related-item h4 {
    font-size: 1em;
    font-weight: 500;
    padding: 10px;
    text-align: center;
    white-space: normal;
    line-height: 1.3em;
}
section.posts {
    background-color: #f5f5f5;
    padding: 4em 0 2em 0;
}
@media screen and (min-width:1080px){
.fam-fv {
    display: flex;
	gap:2em;
	margin-bottom:2.5em;
}
	}
@media screen and (max-width:1080px){
section.intro {
    margin-top: 2em;
	text-align:center;
}
.main-image {
    margin: 0 auto;
	overflow:hidden;
}
.spec {
	justify-content:center;
}
li.related-item {
    width: 40%;
}
}
@media screen and (max-width:598px){
section.article-block img {
	height:auto;
	aspect-ratio: 5 / 4;
	}
	li.related-item {
    width: 55%;
}
	li.related-item a img {
		height:200px !important;
	}
}

/*-- 産地紹介 一覧 --*/
section.farmar-list-content{
	margin-bottom:6em;
}
section.farmar-ttl {
    margin-top: 4em;
    margin-bottom: 3em;
}
section.farmar-ttl h1 {
    font-size: 200%;
    text-align: center;
    margin-bottom: 1em;
}
section.farmar-ttl h2 {
    font-size: 150%;
    text-align: center;
    line-height: 1.5em;
}
section.farmar-ttl h2.read {
    margin-bottom: 2em;
}
section.farmar-ttl p {
    display: block;
    font-size: large;
    font-weight: 600;
    margin: 0 auto;
    width: fit-content;
    line-height: 1.5em;
    padding-left: 1.5em;
}
ul.fam-posts {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    gap: 1em;
}
ul.fam-posts li {
    width: 31%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
li.fam-posts-item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}
span.farm-location {
    display: block;
}

.farm-excerpt p {
    width: fit-contents;
    margin: 0 auto;
    font-size: 96%;
    line-height: 1.3em;
    text-align: justify;
    letter-spacing: 0.05em;
    display: block;
    width: fit-content !important;
	padding: 0.5em 2em;
}
li.fam-posts-item h4 {
    text-align: center;
    line-height: 1.2em;
    font-size: 110%;
    letter-spacing: 0.1em;
}
span.farm-location {
    display: block;
    font-size: 0.8em;
}
li.fam-posts-item img {
    margin-bottom: 0.5em;
    border-radius: 50px 5px 0 0;
}
ul.farm-items {
    margin-top: 0.5em;
    padding-left: 1.2em;
    list-style-type: disc;
    font-size: 0.95em;
    color: #444;
    display: flex;
    gap: 0.3em;
    align-items: center;
    justify-content: center;
}
ul.farm-items li {
    width: fit-content!important;
    margin-bottom: 0.2em;
    list-style: none;
    background-color: #000;
    color: #FFF;
    padding: 0.3em 0.8em;
    font-size: small;
    border-radius: 100px;
}
li.fam-posts-item * {
    width: 100%;
}
	ul.related-posts li,ul.related-posts li a img{
	border-radius: 50px 5px 5px 5px;
	}
@media screen and (max-width:1080px){
ul.fam-posts li {
    width: 48%;
}
}
@media screen and (max-width: 598px) {
    ul.fam-posts li {
        width: 100%;
    }

ul.related-posts {
	padding: 2em 0 0 2em;
	}
section.farmar-ttl p {
	padding:0 1em;
	font-size: medium;
	}
section.farmar-ttl h2.read {
    margin-bottom: 1em;
	}
ul.farm-items li{
	font-size:100%;		
}
section.ttl{
	display:block;
	}
h2.ttl {
    margin: 0 0 0.3em 0;
}	
}

figure.wp-block-image.size-large.asis img {
    height: unset !important;
}