@charset "utf-8";
/* CSS Document */

/*サイト全体*/
body {
background-color: #e6e6e6;
padding: 0 3%;
color: #333;
letter-spacing: 1px;
}

#wrapper {
background-color: #fff;
background: url("../../new-img/common/bg_01.png");
max-width: 1800px;
margin: 0 auto;
}

/*タイトル*/
.mintit {
font-size: 16px;
color: #65a387;
text-align: center;
font-weight: bold;
margin-bottom: 10px;
}
.tit {
font-size: 34px;
text-align: center;
font-weight: bold;
margin-bottom: 20px;
}
.subtit {
font-size: 18px;
text-align: center;
font-weight: bold;
border-bottom: 1px solid #ccc;
line-height: 65px;
margin-bottom: 20px;
}
.conte_tit {
line-height: 70px;
border-bottom: 1px solid #ccc;
border-top: 1px solid #ccc;
font-size: 24px;
margin-bottom: 30px;
}
.conte_subtit {
font-size: 18px;
line-height: 70px;
text-indent: 30px;
border-left: 1px solid #ccc;
margin-bottom: 30px;
}
/*テキスト*/
.read1{
font-size: 16px;
line-height: 30px;
text-align: center;
font-weight: bold;
margin-bottom: 40px;
}
.read2{
font-size: 14px;
line-height: 24px;
text-align: center;
font-weight: bold;
margin-bottom: 20px;
}
.u_line {
background: linear-gradient(transparent 50%, yellow 50%);
}
/*リンクボタン*/
a.btn_green {
display: block;
max-width: 840px;
width: 90%;
line-height: 70px;
text-align: center;
color: #fff;
font-weight: bold;
background: #65a387;
border-radius: 4px;
margin: auto;
}

a.btn_green_min {
display: block;
max-width: 100px;
width: 100%;
line-height: 30px;
text-align: center;
color: #fff;
font-weight: bold;
font-size: 12px;
background: #65a387;
border-radius: 4px;
margin: auto;
}
/*画像装飾*/
.up_border {
position: relative;
line-height: 0;
}
.up_border:before {
content: "";
position: absolute;

top: 50%;
left: 50%;
transform: translateY(-50%) translateX(-50%);
-webkit-transform: translateY(-50%) translateX(-50%);

height: 90%;
width: 90%;
border: 1px solid #fff;
box-sizing: border-box;
}

/*ヘッダー*/
header {
height: 75px;
max-width: 1200px;
margin: auto;
display: flex;
justify-content: space-between;
}

header ul {
display: flex;
}
header ul li {
line-height: 75px;
font-size: 16px;
font-weight: bold;
margin-right: 15px;
position:relative;
}

/*ナビホバーエフェクト*/
header nav ul li:before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 15px;/*線の上下位置*/
  display: inline-block;
  width: 0;/*線の長さ*/
  height: 1px;/*線の太さ*/
  background:#ccc;
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);/*位置調整*/
  border-radius: 2px;/*線の丸み*/
	-webkit-transition: all .2s ease;
	transition: all .2s ease;
}
header nav ul li:hover:before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 15px;/*線の上下位置*/
  display: inline-block;
  width: 80%;/*線の長さ*/
  height: 2px;/*線の太さ*/
  background:#ccc;
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);/*位置調整*/
  border-radius: 2px;/*線の丸み*/
}

/*ハンバーガーメニュー指定*/
header nav #nav-input {
	visibility:hidden;
}
header nav #nav-open {
	width:60px;
	height:60px;
	position:absolute;
	top:0;
	right:0;
	background:url(../../new-img/common/open.png);
	background-size:cover;
	z-index:9;
}
header nav #nav-input:checked + #nav-open {
	background:url(../../new-img/common/close.png);
	background-size:cover;
}
/*ハンバーガーメニュー内デザイン指定*/
header nav #nav-input + #nav-open + div#open_wrap {
	position:fixed;
	left:100%;
	top:60px;
	padding:30px 20px;
	box-sizing:border-box;
	width:100vw;
	height: 100vh;
	background:rgba(255,255,255,.93);
	opacity:0;
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
	z-index: 9;
}
header nav #nav-input:checked + #nav-open + div#open_wrap {
	top:60px;
	left:0;
	opacity:1;
}
header nav ul#open_menu {
display: block;
max-width:1024px;
}

header nav ul#open_menu li {
font-size: 12px;
font-weight: 100;
color: #333;
line-height: 22px;
padding: 10px 0;
margin: 0;
border-bottom:1px solid #ccc;
}

header nav #nav-input + #nav-open + div#open_wrap p {
padding-top: 40px;
font-size: 12px;
text-align: center;
}
header nav #nav-input + #nav-open + div#open_wrap .head_tel {
display: block;
font-size: 18px;
font-weight: bold;
text-align: center;
}

input #nav-input {
}
header nav #nav-open {
	display:none;
}

/*コンテンツラッパー*/
#content_wrap {
padding: 70px 0; 
max-width: 1200px;
margin: auto;
}

/*ボトムマップ*/
#foot_map {
}
#foot_map ul {
display: flex;
}
#foot_map ul li {
max-width: 1080px;
width: 100%;
line-height: 0;
}
#foot_map ul li.map_tit {
max-width: 720px;
width: 100%;
}

/*フッター*/
footer {
}
footer nav {}
footer nav ul {
display: flex;
justify-content: center;
background: #fffbec;
}
footer nav ul li {
line-height: 100px;
font-size: 16px;
}
footer nav ul li a {
padding: 0 20px;
border-right: 1px solid #333;
}
footer nav ul li:last-child a {
border: none;
}
footer p {
line-height: 90px;
text-align: center;
font-size: 14px;
font-weight: bold;
}

/*野菜ページタイムラインあしらい*/

.vege_table dl {
width: 700px;
margin: auto;
margin-bottom: 20px;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
font-weight: bold;
font-size: 12px;
}

.vege_table2 dl {
justify-content: center;
max-width: 1200px;
width: auto;
}

.vege_table2 dl dt {
margin: 0 5px;
}

.vege_table dl dt {
width: 160px;
line-height: 30px;
background: #f7f7f7;
border-radius: 6px;
margin-bottom: 6px;
text-indent: 35px;
}
.vege_table dl dt.blank {
background: #fff;
}
.vege_table dl dt a {
display: block;
}
.vege_table dl dd {
width: 42px;
line-height: 30px;
background: #f7f7f7;
border-radius: 6px;
margin-bottom: 6px;
text-align: center;
}

.vege_table dl dt.vege1 {
background: url("../../new-img/common/prod_arrow_01.png") left center no-repeat #f7f7f7;
background-position-x: -15px;
}
.vege_table dl dt.vege2 {
background: url("../../new-img/common/prod_arrow_02.png") left center no-repeat #f7f7f7;
background-position-x: -15px;
}
.vege_table dl dt.vege3 {
background: url("../../new-img/common/prod_arrow_03.png") left center no-repeat #f7f7f7;
background-position-x: -15px;
}
.vege_table dl dt.vege4 {
background: url("../../new-img/common/prod_arrow_04.png") left center no-repeat #f7f7f7;
background-position-x: -15px;
}
.vege_table dl dd.c1 {
background: #ff3300;
}
.vege_table dl dd.c2 {
background: #ffcc00;
}
.vege_table dl dd.c3 {
background: #cc6633;
}
.vege_table dl dd.c4 {
background: #33cc66;
}

/*ここからレスポンシブ指定*/
/*アイパッド*/
@media screen and (max-width: 768px) {

body {
padding: 0;
}

#sub_mv {
display: none;
}

/*ヘッダー*/
header {
height: 60px;
}
header h1 {
width: 100%;
padding-left: 10px;
}

header h1 img {
max-height: 60px;
}
.pc_menu {
display: none;
}
header nav #nav-open {
display:block;
}

/*コンテンツラッパー*/
#content_wrap {
padding: 0 20px 40px;
}

/*ボトムマップ*/
#foot_map ul {
display: block;
}
#foot_map ul li.map_tit {
margin: auto;
}

.vege_table {
overflow-x: scroll;
}

.vege_table dl {

}

.swipe-conte- {
font-style: italic;
    font-weight: bold;
    text-align: right;
    margin: -20px 0 20px;
}

}


/*アイホン678＋*/
@media screen and (max-width: 414px) {

.conte_tit {
line-height: 30px;
padding: 10px;
font-size: 20px;
}

#foot_map ul li.map_tit {
max-width: 100%;
}
#foot_map ul li.map_tit img {
max-width: 100%;
}

/*フッター*/
footer nav ul {
display: block;
}
footer nav ul li {
line-height: 40px;
font-size: 12px;
font-weight: bold;
}
footer nav ul li a {
display: block;
border-right:none;
border-bottom: 1px solid #ccc;
line-height: 40px;
}
footer p {
font-size: 10px;
}


.subtit {
line-height: 25px;
padding-bottom: 20px;
}


}