@charset "UTF-8";
/*
Theme Name: YOROZUYA-YAKKYOKU
Theme URI: http://www.asahi-brains.jp/theme/
Author: ASAHI Brains
Author URI: http://www.asahi-brains.jp/
Description: Original Theme for yorozuya-yakkyoku 2022 
Version: 2.0
License: ASAHI Brains
License URI: http://www.asahi-brains.jp/
Tags: 
Text Domain: 
*/

/**
	1.共通
	2.レイアウト
	3.ヘッダー
	4.グローバルナビゲーション
	5.フロントページ専用スタイル
	6.商品・サービス一覧ページ専用スタイル
	7.商品一覧ページ専用スタイル
	8.商品の個別ページ専用スタイル
	9.レシピ個別ページ専用スタイル
	10.情報誌くるみ専用スタイル
	11.薬膳の取組みページ専用スタイル
	12.店舗案内ページ専用スタイル
	13.企業情報ページ専用スタイル
	14.お問い合わせページ専用スタイル
	15.固定ページ専用スタイル
	16.シングルページ専用スタイル
	17.アーカイブページ専用スタイル
	18.フッター
	19.フッターナビゲーション
 */

/* ------------------------------------------------ */
/* 1.共通
/* ------------------------------------------------ */

/* ボックスサイズの計算方法を指定 */
* {
	box-sizing: border-box;
}

/* ページ全体の基本スタイル */
body {
	color: #4d4d4d;
	background-color: #ffffff;
	font-family: メイリオ,Meiryo,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","ＭＳ Ｐゴシック",sans-serif;
	line-height: 1.5;
}

/* 段落の基本スタイル */
p {
	word-wrap: break-word;
	margin-top: 8px;
	margin-left: 5px;
	margin-right: 5px;
	margin-bottom: 8px;
}

/* リンクの基本スタイル */
a {
	color: #006633;
	transition: 0.5s;
	text-decoration: none;
}

/* リンクにマウスが乗ったときのスタイル */
a:hover {
	opacity: 0.7;
}

/* 編集リンク */
a.post-edit-link {
	display: block;
	height: 28px;
	width: 70px;
	padding-left:1px;
	text-decoration: none;
	line-height: 30px;
	text-align: center;
	text-shadow: 0px 1px 0px #fafafa;
	border: 1px solid #dcd9d8;
	border-bottom: 1px solid #c1c1bd;
	box-shadow:  0 0 1px #c7c5c1;
	border-radius: 15px;
}

/* 画像の基本スタイル */
img {
	vertical-align: bottom;
}
@media screen and (max-width: 599px) {
	img {
		max-width: 100%;
		height: auto;
	}
}

/* 画像 キャプション */
.wp-caption-text {
	margin: 0px;
	font-size: 90%;
	text-align: center;
}
@media screen and (max-width: 599px) {
	.wp-caption-text {
		max-width: 100%;
		height: auto;
	}
}

/* 画像 スタイル中央 */
.aligncenter {
	display: block;
	margin-top: 30px;
	margin-right: auto;
	margin-bottom: 30px;
	margin-left: auto;
}
/* 画像 スタイル左 */
.alignleft {
	float: left;
	margin-top: 10px;
	margin-right: 25px;
	margin-bottom: 20px;
}
/* 画像 スタイル右 */
.alignright {
	float: right;
	margin-top: 10px;
	margin-left: 25px;
	margin-bottom: 20px;
}
@media screen and (max-width: 599px) {
	.alignleft,
	.alignright {
		float: none;
		display: block;
		margin-top: 30px;
		margin-right: auto;
		margin-bottom: 30px;
		margin-left: auto;
	}
}

/* 画像 スタイルなし */
.alignnone {
	float: none;
	margin: 10px;
	display: inline-block;
}

/* 文字の揃え */
.alignleft {
	text-align: left;
}
.aligncenter {
	text-align: center;
}
.alignright {
	text-align: right;
}

/* パンくずリスト */
.breadcrumbs {
	margin-bottom: 20px;
	font-family: メイリオ,Meiryo,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","ＭＳ Ｐゴシック",sans-serif;
}
.breadcrumbs > p {
	font-size: 12px;
	color: #999999;
}
@media screen and (max-width: 599px) {
	.breadcrumbs > p {
		font-size: 12px;
	}
}
.breadcrumbs > p > a {
	font-size: 12px;
	text-decoration: none;
}
@media screen and (max-width: 599px) {
.breadcrumbs > p > a {
		font-size: 12px;
	}
}

/* ページネーション */
.pagination {
	margin: 40px 0 30px;
	text-align: center;
}
.pagination ul {
	display: inline-block;
	margin: 0;
	padding: 0;
	list-style: none;
}
.pagination li a,
.pagination li > span {
	display: block;
	margin: 0 5px;
	padding: 6px 8px;
	border: solid 1px #cccccc;
	color: #000000;
	font-size: 14px;
	text-decoration: none;
}
.pagination li > span {
	background-color: #efefef;
}
.pagination li a:hover {
	background-color: #eeeeee;
}
.pagination li {
	float: left;
	width: auto;
}

/* ------------------------------------------------ */
/* 2.レイアウト
/* ------------------------------------------------ */

/* ページ全体を囲む枠 */
@media screen and (max-width: 999px) {
	#wrapper {
		margin: 0 auto;
		width: 100%;
	}
}
@media print, screen and (min-width: 1000px) {
	#wrapper {
		margin: 0 auto;
		width: 960px;
	}
}

/* エリア外枠のスタイル */
#contents {
	margin-bottom: 60px;
}

/* ------------------------------------------------ */
/* 3.ヘッダー
/* ------------------------------------------------ */

/* エリア外枠のスタイル */
header {
	padding-top: 15px;
	padding-bottom: 0px;
	overflow: hidden;
}
@media screen and (min-width: 600px) and (max-width: 999px) {
	header {
		padding-top: 10px;
		padding-bottom: 0px;
		overflow: hidden;
	}
}
@media screen and (max-width: 599px) {
	header {
		padding-top: 0px;
		padding-bottom: 0px;
		overflow: hidden;
	}
}

/* 見出しのスタイル */
h1 {
	color: #666666;
	font-size: 12px;
	font-weight: normal;
}

/* ロゴのスタイル */
#header-logo {
	width: 420px;
	height: 70px;
	float: left;
}
@media screen and (min-width: 600px) and (max-width: 999px) {
	#header-logo {
		width: 420%;
		height: 50px;
		float: none;
	}
}
@media screen and (max-width: 599px) {
	#header-logo {
		width: 420%;
		height: 50px;
		float: none;
	}
}
#header-logo img {
	width: 250px;
	height: 50px;
}

/* 電話メール */
#tel-mail {
	margin-top: 23px;
	float: left;
}
@media screen and (min-width: 600px) and (max-width: 999px) {
	#tel-mail {
		float: left;
	}
}
@media screen and (max-width: 599px) {
	#tel-mail {
		margin-top: 0px;
		float: none;
	}
}

#tel-mail p {
	font-size: 14px;
}
@media screen and (max-width: 599px) {
	#tel-mail p {
		font-size: 12px;
	}
}

/* ヘッダーＳＮＳシェアボタン */
#share-bottons-head {
	margin-top: 18px;
	float: right ;
}
@media screen and (min-width: 600px) and (max-width: 999px) {
	#share-bottons-head {
		margin-top: 0px;
		float: right ;
	}
}
@media screen and (max-width: 599px) {
	#share-bottons-head {
		margin-top: 0px;
		float: none ;
	}
}

#share-bottons-head li {
	float:left;
	width:auto;
	display: block;
	padding-top: 3px;
	padding-right: 3px;
	padding-bottom: 3px;
	padding-left: 3px;
}
#share-bottons-head ul:after {
	content: "";
	display: block;
	clear: both;
}

/* ------------------------------------------------ */
/* 4.グローバルナビゲーション
/* ------------------------------------------------ */

/* エリア外枠のスタイル */
#gNav {
	clear: both;
	margin-bottom: 25px;
}
@media screen and (min-width: 600px) and (max-width: 999px) {
	#gNav {
		clear: both;
		margin-bottom: 15px;
	}
}
@media screen and (max-width: 599px) {
	#gNav {
		clear: both;
		margin-bottom: 0px;
	}
}

/* メニューリストを囲む枠 */
#gNav ul {
    display:-webkit-box;
    display:-moz-box;
    display:-ms-flexbox;
    display:-webkit-flex;
    display:-moz-flex;
    display:flex;
    flex-direction:row;
}
@media screen and (min-width: 600px) and (max-width: 999px) {
	#gNav ul {
		display:-webkit-box;
		display:-moz-box;
		display:-ms-flexbox;
		display:-webkit-flex;
		display:-moz-flex;
		display:flex;
		flex-direction:row;
	}
}
@media screen and (max-width: 599px) {
	#gNav ul {
		border-top: 1px solid #006633;
		display:-webkit-box;
 		display:-moz-box;
		display:-ms-flexbox;
		display:-webkit-flex;
		display:-moz-flex;
		display:flex;
		flex-flow: row wrap;
	}
}

/* メニューリストの共通スタイル */
#gNav li {
	border-left: 1px solid #006633;
	text-align: center;
	width: 25%;
}
@media screen and (min-width: 600px) and (max-width: 999px) {
	#gNav li {
		border-left: 1px solid #006633;
		text-align: center;
		width: 25%;
	}
}
@media screen and (max-width: 599px) {
	#gNav li {
		border-left: none;
		border-bottom: 1px solid #006633;
		border-right: 1px solid #006633;
		text-align: center;
		width: 50%;
	}
}

/* 一番右のメニューリストのスタイル */
#gNav li:last-child {
	border-right: 1px solid #006633;
}

/* メニューのリンクスタイル */
#gNav a {
	display: block;
	font-size: 12px;
	padding-top:15px;
	padding-right:3px;
	padding-left:3px;
	padding-bottom:15px;
	text-decoration: none;
}
@media screen and (min-width: 600px) and (max-width: 999px) {
	#gNav a {
		display: block;
		font-size: 12px;
		padding-top:12px;
		padding-right:1px;
		padding-left:1px;
		padding-bottom:12px;
		text-decoration: none;
	}
}
@media screen and (max-width: 599px) {
	#gNav a {
		display: block;
		padding-top: 8px;
		padding-right: 8px;
		padding-left: 8px;
		padding-bottom: 8px;
		text-decoration: none;
		color: #ffffff;
		font-size: 12px;
		margin-top: 1px;
		background: linear-gradient(to bottom, rgba(21,153,78,1) 0%,rgba(15,110,56,1) 100%);
	}
}
	
/* メニューにマウスを乗せたときのスタイル */
#gNav a:hover {
	background-color: #ff6600;
}

/* 現在ページのメニュースタイル */
#gNav .current-menu-item a,
#gNav .current-menu-item a span {
	background-color: #ff6600;
	color: #ffffff;
	font-size: 13px;
	font-weight: 600;
}
@media screen and (max-width: 599px) {
	#gNav .current-menu-item a,
	#gNav .current-menu-item a span {
		background-color: #ff6600;
		font-size: 12px;
		font-weight: 500;
		background: linear-gradient(to bottom, rgba(255,102,0,1) 0%,rgba(204,81,0,1) 100%);
	}
}

/* ------------------------------------------------ */
/* 5.フロントページ専用スタイル
/* ------------------------------------------------ */


/*
/* スライドショー「slick」のスタイルは slick-theme.css にて設定
/*


/* 見出し */
#frontpage h2 {
	color: #ffffff;
	font-size: 18px;
	font-weight: 500;
	margin-top: 0px;
	margin-bottom: 20px;
	padding-top: 3px;
	padding-left: 12px;
	padding-bottom: 3px;
	background: linear-gradient(to bottom, rgba(21,153,78,1) 0%,rgba(15,110,56,1) 100%);
}
@media screen and (max-width: 599px) {
	#frontpage h2 {
		color: #ffffff;
		font-size: 14px;
		font-weight: 500;
		margin-top: 0px;
		margin-bottom: 20px;
		padding-top: 3px;
		padding-left: 12px;
		padding-bottom: 3px;
		background: linear-gradient(to bottom, rgba(21,153,78,1) 0%,rgba(15,110,56,1) 100%);
	}
}

/* 最新情報セクション */
#info-section:after {
	content: "";
	display: block;
	clear: both;
}

/* 新着情報 ボックス */
#info-box {
	width: 640px;
	float: left;
}
@media screen and (min-width: 600px) and (max-width: 999px) {
	#info-box {
		max-width: 760px;
		width:100%;
		padding-left: 20px;
		padding-right: 20px;
		float: left;
	}
}
@media screen and (max-width: 599px) {
	#info-box {
		width:100%;
		padding-left: 20px;
		padding-right: 20px;
		float: left;
	}
}
/* 新着情報のリスト */
#info-list {
    display:-webkit-box;
    display:-moz-box;
    display:-ms-flexbox;
    display:-webkit-flex;
    display:-moz-flex;
    display:flex;
	flex-flow: row wrap;
	justify-content: space-between;
}
#info-list li {
	width: 150px;
	margin-bottom: 15px;
}
@media screen and (max-width: 599px) {
	#info-list li {
		width: 46%;
		padding-left:15px;
		padding-right:15px;
		margin-bottom: 15px;
	}
}
#info-list .date {
	font-weight: bold;
	font-size: 12px;
}
@media screen and (max-width: 599px) {
	#info-list .date {
		font-weight: bold;
		font-size: 10px;
	}
}
#info-list .thumb {
	margin-bottom: 10px;
}
#info-list .thumb img {
	width: 100%;
	height: auto;
}
#info-list p {
	font-size: 90%;
	line-height: 1.2;
}
@media screen and (max-width: 599px) {
	#info-list p {
		font-size: 14px;
		line-height: 1.2;
	}
}
#info-list a {
	color: inherit;
	text-decoration: none;
}

/* 新着情報一覧を見る */
#readmore {
	display: block;
	padding-right: 18px;
	margin-bottom: 18px;
	text-align: right;
	text-decoration: none;
	font-size: 90%;
}
@media screen and (max-width: 599px) {
	#readmore {
		display: block;
		padding-right: 18px;
		margin-bottom: 18px;
		text-align: right;
		text-decoration: none;
		font-size: 14px;
	}
}
#readmore a {
	text-decoration: none;
}
#readmore .icon {
	vertical-align: top;
}

/* 情報誌くるみ ボックス */
#kurumi-box {
	display: block;
	height: 260px;
	width: 300px;
	float: right;
	overflow: hidden;
	background: linear-gradient(to bottom, 
				rgba(245,245,245,1) 0%,
				rgba(238,238,238,1) 45%,
				rgba(221,221,221,1) 100%);
}
@media screen and (min-width: 600px) and (max-width: 999px) {
	#kurumi-box {
		display: block;
		height: 260px;
		width: 300px;
		float: none;
		overflow: hidden;
		background: linear-gradient(to bottom, 
					rgba(245,245,245,1) 0%,
					rgba(238,238,238,1) 45%,
					rgba(221,221,221,1) 100%);
	}
}
@media screen and (max-width: 599px) {
	#kurumi-box {
		display: block;
		height: 260px;
		width: 300px;
		margin-left: auto;
		margin-right: auto;
		float: none;
		overflow: hidden;
		background: linear-gradient(to bottom, 
					rgba(245,245,245,1) 0%,
					rgba(238,238,238,1) 45%,
					rgba(221,221,221,1) 100%);
	}
}
#kurumi-box a {
	text-decoration: none;
	color:#333333;
}
#kurumi-box p {
	color: #333333;
	font-size: 90%;
	line-height: 1.2;
	margin-right: 16px;
	margin-left: 16px;
}

/* ------------------------------------------------ */
/* フロントナビゲーション
/* ------------------------------------------------ */
#our-business {
    display:-webkit-box;
    display:-moz-box;
    display:-ms-flexbox;
    display:-webkit-flex;
    display:-moz-flex;
    display:flex;
	flex-wrap: wrap;
	flex-direction: row;
    box-sizing: content-box;
}
@media screen and (min-width: 600px) and (max-width: 999px) {
	#our-business {
 		display:-webkit-box;
 		display:-moz-box;
		display:-ms-flexbox;
		display:-webkit-flex;
		display:-moz-flex;
	}
}
@media screen and (max-width: 599px) {
	#our-business {
 		display:-webkit-box;
 		display:-moz-box;
		display:-ms-flexbox;
		display:-webkit-flex;
		display:-moz-flex;
	}
}

div.front-box {
	padding: 0px;
	margin-bottom: 40px;
	width: calc((100% - 80px) / 4);
	color: #4d4d4d;
	text-align: center;
	margin-left: 10px;
	margin-right: 10px;
}
@media screen and (min-width: 600px) and (max-width: 999px) {
	div.front-box {
		padding: 0px;
		margin-bottom: 40px;
		width: 180px;
		color: #4d4d4d;
		text-align: center;
		margin-left: 20px;
		margin-right: 20px;
	}
}
@media screen and (max-width: 599px) {
	div.front-box {
		padding: 0px;
		margin-bottom: 20px;
		width: 160px;
		color: #4d4d4d;
		text-align: center;
		margin-left: 20px;
		margin-right: 20px;
	}
}

div.front-box h3 {
	font-size: 110%;
	font-weight: 600;
	clear: inherit;
	text-align: center;
	margin: 0px;
	padding: 0px;
	clear: both;
}
@media screen and (min-width: 600px) and (max-width: 999px) {
	div.front-box h3 {
		position: static ;
		background-color: inherit;
		font-size: 14px;
		font-weight: 600;
		clear: inherit;
		text-align: center;
		margin: 0px;
		padding: 0px;
		clear: both;
	}
}
@media screen and (max-width: 599px) {
	div.front-box h3 {
		position: static ;
		background-color: inherit;
		font-size: 14px;
		font-weight: 600;
		clear: inherit;
		text-align: center;
		margin: 0px;
		padding: 0px;
		clear: both;
	}
}

div.front-box img {
	border: 1px solid #cccccc;
	border-radius: 4px;
	box-shadow: 3px 3px 3px 3px #999999;
	padding: 15px;
}

/* ＴＶＣＭの枠 */
#tvcm {

}
div#video {
	margin: 0px auto 40px;
	border-style: none;
	padding: 0px;
	max-width: 640px;
	max-height: 360px;
}

@media screen and (min-width: 600px) and (max-width: 999px) {
	div#video {
		margin: 0px auto 30px;
		border-style: none;
		padding: 0px;
	}
}
@media screen and (max-width: 599px) {
	div#video {
		position: relative;
		width: 100%;
		height: 0px;
		padding-top: 56.25%;
		overflow: hidden;
		margin: 0px auto 30px;
		border-style: none;
/*		float: none; */
	}
	div#video iframe {
		position:absolute;
		top: 0px;
		left: 0px;
		width: 100%;
		height:100%;
	}
}

/* ウィジェットエリア */
aside.front-widget {
	display: block;
	overflow: hidden;
}
aside.front-widget li {
	font-size: 90%;
	margin-top: 0px;
	margin-bottom: 20px;
}
aside.front-widget li h4 {
	margin: 0px;
	font-weight: 600;
	font-size: 110%;
}


/* ------------------------------------------------ */
/* 6.商品・サービス一覧ページ専用スタイル
/* ------------------------------------------------ */

/* サービスナビゲーション */
/* サービスの個別ページでも使用 */

#our-service-4 {
	margin-top: 40px;
	margin-bottom: 40px;
	display:-webkit-box;
	display:-moz-box;
	display:-ms-flexbox;
	display:-webkit-flex;
	display:-moz-flex;
	display:flex;
	flex-flow: row wrap;
}
@media screen and (min-width: 600px) and (max-width: 999px) {
	#our-service-4 {
		margin-top: 40px;
		margin-bottom: 40px;
		display:-webkit-box;
		display:-moz-box;
		display:-ms-flexbox;
		display:-webkit-flex;
		display:-moz-flex;
		display:flex;
		flex-flow: row wrap;
	}
}
@media screen and (max-width: 599px) {
	#our-service-4 {
		margin-top: 0px;
		margin-bottom: 20px;
		display:-webkit-box;
		display:-moz-box;
		display:-ms-flexbox;
		display:-webkit-flex;
		display:-moz-flex;
		display:flex;
		flex-flow: row wrap;
	}
}
	
#our-service-4 div.service-box-4 {
	padding: 0x;
	margin-bottom: 40px;
	width: 24%;
	color: #4d4d4d;
}
@media screen and (min-width: 600px) and (max-width: 999px) {
	#our-service-4 div.service-box-4 {
		padding: 0x;
		margin-bottom: 40px;
		margin-left: 20px;
		margin-right: 20px;
		width: 180px;
		color: #4d4d4d;
		text-align: center;
	}
}
@media screen and (max-width: 599px) {
	#our-service-4 div.service-box-4 {
		padding: 0x;
		margin-top: 10px;
		margin-bottom: 20px;
		margin-left: 20px;
		margin-right: 20px;
		width: 160px;
		color: #4d4d4d;
		text-align: center;
	}
}

#our-service-4 h3 {
    position: static ;
	background-color: inherit;
	border: none;
	font-size: 120%;
	font-weight: 600;
	clear: inherit;
	text-align: center;
	margin: 0px;
	padding: 0px;
	clear: both;
}
@media screen and (min-width: 600px) and (max-width: 999px) {
	#our-service-4 h3 {
	    position: static ;
		background-color: inherit;
		border: none;
		font-size: 14px;
		font-weight: 600;
		clear: inherit;
		text-align: center;
		margin: 0px;
		padding: 0px;
		clear: both;
	}
}
@media screen and (max-width: 599px) {
	#our-service-4 h3 {
	    position: static ;
		background-color: inherit;
		border: none;
		font-size: 14px;
		font-weight: 600;
		clear: inherit;
		text-align: center;
		margin: 0px;
		padding: 0px;
		clear: both;
	}
}

#our-service-4 div.service-box-4 p {
	margin-top: 0px;
	text-align: center;
	font-size: 90%;
}
#our-service-4 div.service-box-4 img {
	border: 1px solid #cccccc;
	border-radius: 4px;
	box-shadow: 3px 3px 3px 3px #999999;
	padding: 15px;
}


/* ------------------------------------------------ */
/* 7.商品一覧ページ専用スタイル
/* ------------------------------------------------ */

/* 中見出し h3 */
body#products h3:before {
	position: absolute;
	left: 0px;
	top: 0px;
	content: url("img/icon_h3_products.png");
}
body#products h3 {
	position: relative;
	background-color: inherit;
	margin-top: 60px;
	margin-left: 0px;
	margin-bottom: 20px;
	padding-top: 5px;
	padding-left: 36px;
	padding-bottom: 0px;
	border-top: none;
	border-left: none;
	border-bottom: solid 1px #0f6e38;
	border-radius: 0px;
	font-size: 120%;
	font-weight: 600;
	clear: both;
}

/* 商品ナビゲーション */
/* 商品の個別ページでも使用 */
#our-products-nav {
	margin-top: 40px;
	margin-bottom: 40px;
	display:-webkit-box;
	display:-moz-box;
	display:-ms-flexbox;
	display:-webkit-flex;
	display:-moz-flex;
	display:flex;
	flex-flow: row wrap;
}
@media screen and (min-width: 600px) and (max-width: 999px) {
	#our-products-nav {
		margin-top: 40px;
		margin-bottom: 40px;
		display:-webkit-box;
		display:-moz-box;
		display:-ms-flexbox;
		display:-webkit-flex;
		display:-moz-flex;
		display:flex;
		flex-flow: row wrap;
	}
}
@media screen and (max-width: 599px) {
	#our-products-nav {
		margin-top: 0px;
		margin-bottom: 20px;
		display:-webkit-box;
		display:-moz-box;
		display:-ms-flexbox;
		display:-webkit-flex;
		display:-moz-flex;
		display:flex;
		flex-flow: row wrap;
	}
}

#our-products-nav div.product-box {
	padding: 0px;
	margin-bottom: 40px;
	width: 25%;
	color: #4d4d4d;
}
@media screen and (min-width: 600px) and (max-width: 999px) {
	#our-products-nav div.product-box {
		padding: 0x;
		margin-bottom: 40px;
		margin-left: 20px;
		margin-right: 20px;
		width: 180px;
		color: #4d4d4d;
		text-align: center;
	}
}
@media screen and (max-width: 599px) {
	#our-products-nav div.product-box {
		padding: 0x;
		margin-top: 10px;
		margin-bottom: 20px;
		margin-left: 20px;
		margin-right: 20px;
		width: 160px;
		color: #4d4d4d;
		text-align: center;
	}
}

#our-products-nav div.product-box h4 {
    position: static ;
	background-color: inherit;
	border: none;
	font-size: 120%;
	font-weight: 600;
	clear: inherit;
	text-align: center;
	margin: 0px;
	padding: 0px;
	clear: both;
}
@media screen and (min-width: 600px) and (max-width: 999px) {
	#our-products-nav div.product-box h4 {
	    position: static ;
		background-color: inherit;
		border: none;
		font-size: 14px;
		font-weight: 600;
		clear: inherit;
		text-align: center;
		margin: 0px;
		padding: 0px;
		clear: both;
	}
}
@media screen and (max-width: 599px) {
	#our-products-nav div.product-box h4 {
	    position: static ;
		background-color: inherit;
		border: none;
		font-size: 14px;
		font-weight: 600;
		clear: inherit;
		text-align: center;
		margin: 0px;
		padding: 0px;
		clear: both;
	}
}

#our-products-nav div.product-box img {
	border: 1px solid #cccccc;
	border-radius: 4px;
	box-shadow: 3px 3px 3px 3px #999999;
	padding: 15px;
}

#our-products-nav div.product-box p {
	text-align: center;
	font-size: 80%;
	margin-top: 0px;
}


/* レシピナビゲーション */
/* レシピの個別ページでも使用 */
#our-recipes {
	overflow : hidden;
	margin-top: 30px;
	margin-bottom: 60px;
	display:-webkit-box;
	display:-moz-box;
	display:-ms-flexbox;
	display:-webkit-flex;
	display:-moz-flex;
	display:flex;
	flex-flow: row wrap;
}
@media screen and (min-width: 600px) and (max-width: 999px) {
	#our-recipes {
		overflow : hidden;
		margin-top: 30px;
		margin-bottom: 60px;
		display:-webkit-box;
		display:-moz-box;
		display:-ms-flexbox;
		display:-webkit-flex;
		display:-moz-flex;
		display:flex;
		flex-flow: row wrap;
	}
}
@media screen and (max-width: 599px) {
	#our-recipes {
		overflow : hidden;
		margin-top: 0px;
		margin-bottom: 20px;
		display:-webkit-box;
		display:-moz-box;
		display:-ms-flexbox;
		display:-webkit-flex;
		display:-moz-flex;
		display:flex;
		flex-flow: row wrap;
	}	
}

#our-recipes div.recipes-box {
	color: #333333;
	padding: 0px;
	border: 2px solid #ffcc66;
	width: 45%;
	display: block;
	overflow : hidden;
	margin-top: 15px;
	margin-right: 15px;
	margin-bottom: 15px;
	margin-left: 15px;
}
@media screen and (min-width: 600px) and (max-width: 999px) {
	#our-recipes div.recipes-box {
		color: #333333;
		padding: 0px;
		border: 2px solid #ffcc66;
		width: 420px;
		display: block;
		overflow : hidden;
		margin-top: 15px;
		margin-right: 15px;
		margin-bottom: 15px;
		margin-left: 15px;
	}
}
@media screen and (max-width: 599px) {
	#our-recipes div.recipes-box {
		color: #333333;
		padding: 0px;
		border: 2px solid #ffcc66;
		width: 100%;
		display: block;
		overflow : hidden;
		margin-top: 5px;
		margin-right: 5px;
		margin-bottom: 10px;
		margin-left: 5px;
	}
}

#our-recipes div.recipes-box a {
	text-decoration: none; 
}
#our-recipes img {
	padding: 0px;
	float: left;
	border-right-width: 2px;
	border-top-style: none;
	border-right-style: solid;
	border-bottom-style: none;
	border-left-style: none;
	border-right-color: #ffcc66;
	margin-top: 0px;
	margin-right: 10px;
	margin-bottom: 0px;
	margin-left: 0px;
}
@media screen and (max-width: 599px) {
	#our-recipes img {
		width:100px;
		padding: 0px;
		float: left;
		border-right-width: 2px;
		border-top-style: none;
		border-right-style: solid;
		border-bottom-style: none;
		border-left-style: none;
		border-right-color: #ffcc66;
		margin-top: 0px;
		margin-right: 10px;
		margin-bottom: 0px;
		margin-left: 0px;
	}
}

#our-recipes h4 {
	color: #663300;
	font-size: 100%;
	font-weight: 600;
	background: linear-gradient(to bottom, #ffcc66 0%,#ffbb33 100%);
	box-shadow: 0px 0px 0px 3px #ffcc66;
	border: dashed 2px #cc6600;
	padding-top: 8px;
	padding-left: 8px;
	padding-right: 8px;
	padding-bottom: 8px;
	margin-top: 0px;
	margin-right: 3px;
	margin-left: 154px;
	margin-bottom: 15px;
	border-radius: 0px;
	line-height: 1.2em;
}
@media screen and (max-width: 599px) {
	#our-recipes h4 {
		color: #663300;
		font-size: 14px;
		font-weight: 600;
		background: linear-gradient(to bottom, #ffcc66 0%,#ffbb33 100%);
		box-shadow: 0px 0px 0px 3px #ffcc66;
		border: dashed 2px #cc6600;
		padding-top: 5px;
		padding-left: 6px;
		padding-right: 6px;
		padding-bottom: 5px;
		margin-top: 0px;
		margin-right: 3px;
		margin-left: 103px;
		margin-bottom: 6px;
		border-radius: 0px;
		line-height: 1.1em;
	}
}

#our-recipes p {
	font-size: 90%;
	padding: 0px;
	margin-top: 0px;
	margin-right: 10px;
}
@media screen and (max-width: 599px) {
	#our-recipes p {
		font-size: 14px;
		padding: 0px;
		margin-top: 0px;
		margin-right: 5px;
		line-height: 1.1em;
	}
}


/* ------------------------------------------------ */
/* 8.商品の個別ページ専用スタイル
/* ------------------------------------------------ */

/* いいものねっto山形 リンクバナー */
#iimono-net-link {
	display: block;
	margin-top: 60px;
	margin-bottom: 40px;
}

#iimono-net-link img {
	display: block;
	margin-top: 0px;
	margin-right: auto;
	margin-left: 5px;	
	margin-bottom: 0px;
}

/* ------------------------------------------------ */
/* 9.レシピ個別ページ専用スタイル
/* ------------------------------------------------ */


body.page-template-recipe-page > div > section > article > h2 {
	background: linear-gradient(to bottom, #ffcc66 0%,#ffbb33 100%);
	box-shadow: 0px 0px 0px 5px #ffcc66;
	border: dashed 2px #cc6600;
	padding-left: 20px;
	padding-top: 10px;
	padding-right: 20p;
	padding-bottom: 10px;
    margin-top: 40px;
    margin-bottom: 40px;
	color: #663300;
    text-shadow: none;
}
@media screen and (min-width: 600px) and (max-width: 999px) {
	body.page-template-recipe-page > div > section > article > h2 {
		font-size: 160%;
	}
}
@media screen and (max-width: 599px) {
	body.page-template-recipe-page > div > section > article > h2 {
		padding-left: 8px;
		padding-top: 8px;
		padding-right: 8p;
		padding-bottom: 8px;
		margin-bottom: 20px;
		font-size: 110%;
		line-height: 1.2em;
	}
}

body.page-template-recipe-page > div > section > article h3 {
	position: relative;
	font-size: 120%;
	font-weight: 600;
	background: linear-gradient(to bottom, #ffcc66 0%,#ffbb33 100%) !important;
	box-shadow: 0px 0px 0px 5px #ffcc66;
	border-top: dashed 2px #cc6600 !important;
	border-left: dashed 2px #cc6600 !important;
	border-right: dashed 2px #cc6600 !important;
	border-bottom: dashed 2px #cc6600 !important;
	padding-left: 20px !important;
	padding-top: 8px !important;
	padding-right: 20px !important;
	padding-bottom: 3px !important;
	margin-top: 60px; !important;
	margin-right: 0px; !important;
	margin-bottom: 20px; !important;
	margin-left: 0px; !important;
	border-radius:0 !important;
	clear: both;
}
@media screen and (max-width: 599px) {
	body.page-template-recipe-page > div > section > article h3 {
		font-size: 110%;
		padding-left: 8px !important;
		padding-top: 8px !important;
		padding-right: 8px !important;
		padding-bottom: 3px !important;
		margin-top: 30px; !important;
		margin-right: 0px; !important;
		margin-bottom: 10px; !important;
		margin-left: 0px; !important;
	}
}
body.page-template-recipe-page h3:after{
	position: absolute;
	content: '';
	left: -8px;
	top: -8px;
	border-width: 0 0 18px 18px;
	border-style: solid;
	border-color: #ffffff #ffffff #ff9933 #ffffff ;
	box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.15);
}

body.page-template-recipe-page div.entry-content h4 {
	position: relative;
	width: 250px;
	font-size: 95% !important;
	color: #4d4d4d !important;
	padding-left: 8px !important;
	padding-top: 2px !important;
	padding-bottom: 2px !important;
	margin-left: 25px !important;
	margin-bottom: 0px !important;
	border-radius: 0 !important;
	border-top: solid 1px #4d4d4d !important;
	border-bottom: solid 1px #4d4d4d !important;
	border-right-style: none !important;
	border-left-style: none !important;
	clear: both;
}

/* リスト */
body.page-template-recipe-page div.entry-content ul {
	list-style: circle;
	padding-left: 50px;
}
body.page-template-recipe-page div.entry-content li {
	position: relative;
	margin-top: 8px;
	margin-bottom: 8px;
}


/* ------------------------------------------------ */
/* 10.情報誌くるみ専用スタイル
/* ------------------------------------------------ */

/* 見出し */
body#kurumi h3:before {
	position: absolute;
	left: 0px;
	top: 0px;
	content: url("img/icon_h3_press.png");
}
body#kurumi h3 {
	position: relative;
	background-color: inherit;
	margin-top: 40px;
	margin-bottom: 20px;
	padding-top: 6px;
	padding-left: 34px;
	padding-bottom: 0px;
	border-top: none;
	border-left: none;
	border-bottom: solid 1px #0f6e38;
	border-radius: 0px;
	font-size: 120%;
	clear: both;
}

/* リスト */
body#kurumi div.entry-content ul {
	list-style-image: url(img/PDF_icon_32x32.png);
	margin-left: 100px;
}
@media screen and (max-width: 599px) {
	body#kurumi div.entry-content ul {
		list-style-image: url(img/PDF_icon_32x32.png);
		margin-left: 5px;
	}
}
body#kurumi div.entry-content ul > li {
	position: relative;
	margin-top: 8px;
	margin-bottom: 8px;
	font-size: 110%;	
}
@media screen and (max-width: 599px) {
	body#kurumi div.entry-content ul > li {
		position: relative;
		margin-top: 6px;
		margin-bottom: 6px;
		font-size: 100%;	
	}
}

/* ------------------------------------------------ */
/* 11.薬膳の取組みページ専用スタイル
/* ------------------------------------------------ */

/* 薬膳ナビゲーション */
/* 薬膳の個別ページでも使用 */
#yakuzen-menu-title {
	color: #0f6e38;
	background-color: #ffffff;
	padding-left: 16px;
	padding-top: 6px;
	padding-right: 1px;
	padding-bottom: 1px;
	border-top: #CACACA 1px solid;
	border-bottom: #CACACA 1px solid;
	border-right: #CACACA 1px solid;
	border-left: 8px solid #0f6e38;
	border-radius: 5px;
	width: 100%;
	font-weight: 600;
	font-size: 120%;
	margin-top: 60px;
	margin-right: 0px;
	margin-bottom: 20px;
	margin-left: 0px;
	clear: both;
}
#yakuzen-4 {
	margin-top: 40px;
	margin-bottom: 60px;
	display:-webkit-box;
	display:-moz-box;
	display:-ms-flexbox;
	display:-webkit-flex;
	display:-moz-flex;
	display:flex;
	flex-flow: row wrap;
}
@media screen and (min-width: 600px) and (max-width: 999px) {
	#yakuzen-4 {
		margin-top: 40px;
		margin-bottom: 40px;
		display:-webkit-box;
		display:-moz-box;
		display:-ms-flexbox;
		display:-webkit-flex;
		display:-moz-flex;
		display:flex;
		flex-flow: row wrap;
	}
}
@media screen and (max-width: 599px) {
	#yakuzen-4 {
		margin-top: 0px;
		margin-bottom: 20px;
		display:-webkit-box;
		display:-moz-box;
		display:-ms-flexbox;
		display:-webkit-flex;
		display:-moz-flex;
		display:flex;
		flex-flow: row wrap;
	}
}
#yakuzen-4 div.yakuzen-box {
	padding: 0x;
	margin-bottom: 40px;
	margin-left: 20px;
	margin-right: 20px;
	width: 180px;
	color: #4d4d4d;
	text-align: center;
}
@media screen and (min-width: 600px) and (max-width: 999px) {
	#yakuzen-4 div.yakuzen-box {
		padding: 0x;
		margin-bottom: 40px;
		margin-left: 20px;
		margin-right: 20px;
		width: 180px;
		color: #4d4d4d;
		text-align: center;
	}
}
@media screen and (max-width: 599px) {
	#yakuzen-4 div.yakuzen-box {
		padding: 0x;
		margin-top: 10px;
		margin-bottom: 20px;
		margin-left: 20px;
		margin-right: 20px;
		width: 180px;
		color: #4d4d4d;
		text-align: center;
	}
}
#yakuzen-4 h4 {
    position: static ;
	background-color: inherit;
	border: none;
	font-size: 100%;
	font-weight: 600;
	text-align: left;
	margin: 0px;
	padding-left: 16px;
	padding-right: 16px;
	clear: both;
}
@media screen and (min-width: 600px) and (max-width: 999px) {
	#yakuzen-4 h4 {
		position: static ;
		background-color: inherit;
		border: none;
		font-size: 100%;
		font-weight: 600;
		text-align: left;
		margin: 0px;
		padding-left: 16px;
		padding-right: 16px;
		clear: both;
	}
}
@media screen and (max-width: 599px) {
	#yakuzen-4 h4 {
		position: static ;
		background-color: inherit;
		border: none;
		font-size: 14px;
		font-weight: 600;
		text-align: left;
		margin: 0px;
		padding-left: 16px;
		padding-right: 16px;
		clear: both;
	}
}
#yakuzen-4 div.yakuzen-box img {
	border: 1px solid #cccccc;
	border-radius: 4px;
	box-shadow: 3px 3px 3px 3px #999999;
	padding: 15px;
}
#yakuzen-4 div.yakuzen-box p {
	margin-top: 0px;
	text-align: center;
	font-size: 90%;
}

/* ------------------------------------------------ */
/* 12.店舗案内ページ専用スタイル
/* ------------------------------------------------ */

body#tenpo h3:before {
	position: absolute;
	left: 0px;
	top: 0px;
	content: url("img/icon_h3_tenpo.png");
}
body#tenpo h3 {
	position: relative;
	background-color: inherit;
	margin-top: 60px;
	margin-left: 0px;
	margin-bottom: 20px;
	padding-top: 8px;
	padding-left: 36px;
	padding-bottom: 0px;
	border-top: none;
	border-right: none;
	border-left: none;
	border-bottom: solid 1px #0f6e38;
	border-radius: 0px;
	font-size: 120%;
	font-weight: 600;
	clear: both;
}
@media screen and (max-width: 599px) {
	body#tenpo h3 {
		margin-top: 40px;
		font-size: 110%;
	}
}

body#tenpo h4 {
	color: #0f6e38;
	margin-top: 15px !important;
	margin-bottom: 0px !important;
	padding-left: 10px;
	border-left: 6px solid #0f6e38;
	border-radius: 0px !important;
	font-size: 110%;
	margin-top: 30px;
	margin-right: 0px;
	margin-bottom: 15px;
	margin-left: 14px;
}
@media screen and (max-width: 599px) {
	body#tenpo h4 {
		padding-left: 8px;
		font-size: 100%;
		margin-top: 20px;
		margin-right: 0px;
		margin-bottom: 15px;
		margin-left: 0px;
	}
}

body#tenpo div.entry-content p {
	margin-left: 20px;
	margin-top: 0px;
}
@media screen and (max-width: 599px) {
	body#tenpo div.entry-content p {
		margin-left: 5px;
	}
}


/* 埋め込み地図 */

body#tenpo h3 + p {
	float: right;
}
@media screen and (min-width: 600px) and (max-width: 999px) {
	body#tenpo h3 + p {
		float: none;
	}
}
@media screen and (max-width: 599px) {
	body#tenpo h3 + p {
		position: relative;
		width: 100%;
		height: 0px;
		float: none;
		padding-top: 73.3%;
		overflow: hidden;
		margin-top: 0px;
		margin-left: 0px !important;
		margin-right: 0px !important;
		margin-bottom: 10px;
		border-style: none;
	}
}

body#tenpo iframe {
	margin-top: 0px !important;
	margin-left: 10px !important;
	margin-right: 0px !important;
	margin-bottom: 10px !important;
	display: block;
	float: right;
	vertical-align: top;
}
@media screen and (min-width: 600px) and (max-width: 999px) {
	body#tenpo iframe {
		float: none;
	}
}
@media screen and (max-width: 599px) {
	body#tenpo iframe {
		position:absolute;
		top: 0px;
		left: 0px;
		width: 100%;
		height:100%;
		float: none;
	}
}

/* ------------------------------------------------ */
/* 13.企業情報ページ専用スタイル
/* ------------------------------------------------ */

/* 企業情報のテーブル */
#company-prof {
	margin: 0 auto;
	width: 80%;
}
/* 会社概要のテーブルセル */
#company-prof th,
#company-prof td {
	border: 1px solid #0f6e38;
	padding: 1em;
}
@media screen and (max-width: 599px) {
	#company-prof th,
	#company-prof td {
		padding: 8px;
	}
}

/* 会社概要の見出しセル */
#company-prof th {
	white-space: nowrap;
	background: linear-gradient(to bottom, rgba(18,128,65,1) 0%,rgba(15,110,56,1) 100%);
	color: #ffffff;
	border-bottom: 1px solid #ffffff;
}
@media screen and (max-width: 599px) {
	#company-prof th {
		font-size: 14px;
	}
}

/* 最終行の見出しセルの境界線を着色 */
#company-prof tr:last-child th {
	border-bottom: 1px solid #0f6e38;
}

/* ------------------------------------------------ */
/* 14.お問い合わせページ専用スタイル
/* ------------------------------------------------ */

/* メールフォームのテーブル */
div.mw_wp_form {
	margin: 0 auto;
	width: 80%;
}
@media screen and (max-width: 599px) {
	div.mw_wp_form {
		width: 90%;
	}
}

/* メールフォームのテーブルセル */
div.mw_wp_form th {
	border: 1px solid #0f6e38;
	padding: 1em;
	vertical-align: middle;
	background: linear-gradient(to bottom, rgba(18,128,65,1) 0%,rgba(15,110,56,1) 100%);
	color: #ffffff;
	border-bottom: 1px solid #ffffff;
}
@media screen and (max-width: 599px) {
	div.mw_wp_form th {
		padding: 8px;
		font-size: 14px;
	}
}
div.mw_wp_form td {
	border: 1px solid #0f6e38;
	padding: 0.5em;
}
@media screen and (max-width: 599px) {
	div.mw_wp_form td {
		padding: 8px;
	}
}

div.mw_wp_form input, textarea {
    background-color: #fff;
    position: relative;
    border-radius: 3px;
    box-shadow: inset 1px 1px 1px 1px rgba(0,0,0,0.2);
    font-size: 110%;
}
@media screen and (min-width: 600px) and (max-width: 999px) {
	div.mw_wp_form td > input,textarea {
		width: 100%;
	}
}
@media screen and (max-width: 599px) {
	div.mw_wp_form td > input,textarea {
		width: 100%;
	}
}

div.mw_wp_form input:focus,textarea:focus {
    border-color: #0f6e38;
    box-shadow: none;
}

/* ------------------------------------------------ */
/* 15.固定ページ専用スタイル
/* ------------------------------------------------ */

/* 見出し */
body.page h2 {
	color: #000033;
	margin-top: 40px;
	margin-bottom: 40px;
	font-size: 180%;
	font-weight: 600;
	text-shadow: -1px 1px 0 rgba(255, 255, 255, 1);
}
@media screen and (min-width: 600px) and (max-width: 999px) {
	body.page h2 {
		margin-left: 10px;
	}
}
@media screen and (max-width: 599px) {
	body.page h2 {
		margin-left: 5px;
		margin-bottom: 20px;
	}
}

/* 中見出し h3 */
body.page .entry-content > h3 {
	color: #0f6e38;
	background-color: #ffffff;
	padding-left: 16px;
	padding-top: 6px;
	padding-right: 1px;
	padding-bottom: 1px;
	border-top: #CACACA 1px solid;
	border-bottom: #CACACA 1px solid;
	border-right: #CACACA 1px solid;
	border-left: 8px solid #0f6e38;
	border-radius: 5px;
	width: 100%;
	font-weight: 600;
	font-size: 120%;
	margin-top: 60px;
	margin-right: 0px;
	margin-bottom: 20px;
	margin-left: 0px;
	clear: both;
}
@media screen and (max-width: 599px) {
	body.page .entry-content > h3 {
		padding-left: 10px;
		padding-bottom: 1px;
		border-radius: 4px;
		font-size: 110%;
		margin-top: 30px;
	}
}

/* 小見出し h4 */
body.page .entry-content > h4 {
	color: #0f6e38;
	padding-left: 10px;
	border-left: 6px solid #0f6e38;
	border-radius: 2px;
	font-size: 110%;
	margin-top: 30px;
	margin-right: 0px;
	margin-bottom: 15px;
	margin-left: 14px;
	overflow: hidden;
}
@media screen and (max-width: 599px) {
	body.page .entry-content > h4 {
		margin-top: 20px;
		margin-right: 0px;
		margin-bottom: 10px;
		margin-left: 8px;
		overflow: hidden;
	}
}

/* 段落 p */
body.page .entry-content > p {
	margin-top: 10px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 20px;
}
@media screen and (max-width: 599px) {
	body.page .entry-content > p {
		margin-right: 5px;
		margin-left: 5px;
	}
}

/* 整形済みテキスト */
body.page .entry-content > pre {
	font-family: "ＭＳ ゴシック", "MS Gothic", "Osaka－等幅", Osaka-mono, monospace;
	margin-top: 10px;
	margin-right: 10px;
	margin-bottom: 10px;
	margin-left: 20px;
}
@media screen and (max-width: 599px) {
	body.page .entry-content > pre {
		padding-right: 40px;
	}
}

/* 太字 */
body.page .entry-content > p > strong {
	display: inline-block;
	margin-right: 3px;
	margin-left: 3px;
	font-weight: 700;
	color: #000;
}
body.page .entry-content > h3 > strong {
	display: inline-block;
	margin-right: 2px;
	margin-left: 2px;
	font-size: 130%;
}
body.page .entry-content > h4 > strong {
	display: inline-block;
	margin-right: 2px;
	margin-left: 2px;
	font-weight: 700;
	font-size: 130%;
}

/* イタリック */
body.page .entry-content > p > em {
	display: inline-block;
	margin-right: 3px;
	margin-left: 3px;
	font-style: italic;
	font-size: 105%;
	color: #000;
}

/* 番号リスト */
body.page .entry-content > ol {
	list-style: decimal;
	padding-left: 50px;
	overflow:hidden;
}
/* 番号なしリスト */
body.page .entry-content > ul {
	list-style: circle;
	padding-left: 50px;
	overflow:hidden;
}

/* 引用 */
body.page blockquote {
	position: relative;
	max-width: 680px;
	border-top: 1px solid #f0f0f0;
	border-bottom: 1px solid #f0f0f0;
	background-color: #E9E9E9;
	margin-top: 15px;
	margin-right: auto;
	margin-bottom: 15px;
	margin-left: auto;
	padding-top: 28px;
	padding-right: 25px;
	padding-bottom: 10px;
	padding-left: 25px;
}
body.page blockquote:before {
	position: absolute;
	left: 10px;
	top: 10px;
	content: "“";
	font-family: "Times New Roman", sans-serif;
	color: #666666;
	line-height: 0.76;
	font-size: 70px;
}
body.page blockquote:after {
    position: absolute;
    right: 10px;
    bottom: 0px;
    content: "”";
    font-family: "Times New Roman",sans-serif;
	color: #666666;
    line-height: 0.1;
    font-size: 70px;
}

/* ------------------------------------------------ */
/* 16.シングルページ専用スタイル
/* ------------------------------------------------ */

/* タグリスト */
#tag-list {
	margin-top: 40px;
	margin-bottom: 10px;
}
#tag-list li {
	float: left;
	width: auto;
}
#tag-list li a {
	display: block;
	padding-top: 3px;
	padding-right: 6px;
	color: #FFF;
	margin-right: 5px;
	margin-bottom: 2px;
	padding-bottom: 3px;
	padding-left: 6px;
	border-radius: 4px;
	background-color: #0f6e38;
	font-size: 12px;
	text-decoration: none;
}
#tag-list ul:after {
	content: "";
	display: block;
	clear: both;
}

/* 見出し */
body.single h2 {
	color: #000033;
	margin-top: 0px;
	margin-bottom: 0px;
	font-size: 160%;
	font-weight: 600;
	text-shadow: -1px 1px 0 rgba(255, 255, 255, 1);
}

/* 中見出し */
body.single .entry-content >  h3:before {
	position: absolute;
	left: 0px;
	top: 0px;
	content: url("img/icon_h3_check.png");
}
body.single .entry-content > h3 {
	position: relative;
	background-color: inherit;
	margin-top: 60px;
	margin-left: 0px;
	margin-bottom: 20px;
	padding-top: 1px;
	padding-left: 28px;
	padding-bottom: 0px;
	border-top: none;
	border-left: none;
	border-bottom: solid 1px #0f6e38;
	border-radius: 0px;
	font-size: 120%;
	font-weight: 500;
	clear: both;
}

/* 小見出し */
body.single .entry-content >  h4:before {
	position: absolute;
	left: 0px;
	top: 0px;
	content: url("img/icon_h4_check.png");
}
body.single .entry-content > h4 {
	position: relative;
	background-color: inherit;
	margin-top: 35px;
	margin-left: 6px;
	margin-bottom: 10px;
	padding-top: 0px;
	padding-left: 32px;
	padding-bottom: 0px;
	border: none;
	font-size: 110%;
	font-weight: 500;
	clear: both;
}

/* 段落 p */
body.single .entry-content > p {
	margin-top: 10px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 20px;
}

body.single .entry-content > pre {
	font-family: "ＭＳ ゴシック", "MS Gothic", "Osaka－等幅", Osaka-mono, monospace;
	margin-top: 10px;
	margin-right: 10px;
	margin-bottom: 10px;
	margin-left: 20px;
}

/* 太字 */
body.single .entry-content > p > strong {
	display: inline-block;
	margin-right: 3px;
	margin-left: 3px;
	font-weight: 700;
	color: #000;
}

/* イタリック */
body.single .entry-content > p > em {
	display: inline-block;
	margin-right: 3px;
	margin-left: 3px;
	font-style: italic;
	font-size: 105%;
	color: #000;
}

/* 番号リスト */
body.single .entry-content > ol {
	list-style: decimal;
	padding-left: 50px;
}
/* 番号なしリスト */
body.single .entry-content > ul {
	list-style: circle;
	padding-left: 50px;
}

/* 引用 */
body.single blockquote {
	position: relative;
	max-width: 680px;
	border-top: 1px solid #f0f0f0;
	border-bottom: 1px solid #f0f0f0;
	background-color: #E9E9E9;
	margin-top: 15px;
	margin-right: auto;
	margin-bottom: 15px;
	margin-left: auto;
	padding-top: 28px;
	padding-right: 25px;
	padding-bottom: 10px;
	padding-left: 25px;
}
body.single blockquote:before {
	position: absolute;
	left: 10px;
	top: 10px;
	content: "“";
	font-family: "Times New Roman", sans-serif;
	color: #666666;
	line-height: 0.76;
	font-size: 70px;
}
body.single blockquote:after {
    position: absolute;
    right: 10px;
    bottom: 0px;
    content: "”";
    font-family: "Times New Roman",sans-serif;
	color: #666666;
    line-height: 0.1;
    font-size: 70px;
}

/* 投稿日付 */
body.single .entry-meta {
	margin-top: 20px;
	margin-bottom: 40px;
	font-size: 90%;
}

/* 投稿用アイコン */
.icon-meta {
	vertical-align: top;
}

/* 投稿本文の枠 */
.entry-content {
	margin-bottom: 15px;
}
.entry-content:after {
	content: '';
	display: block;
	clear: both;
}

/* カテゴリー */
body.single .entry-category {
	margin-top: 40px;
	margin-bottom: 20px;
	font-size: 90%;
}

/* ＳＮＳシェアボタン */
#share-bottons-foot {
	margin-top: 20px;
	clear: both;
}
#share-bottons-foot li {
	float:left;
	width:auto;
	display: block;
	padding-top: 3px;
	padding-right: 3px;
	padding-bottom: 3px;
	padding-left: 3px;
}
#share-bottons-foot ul:after {
	content: "";
	display: block;
	clear: both;
}


/* ------------------------------------------------ */
/* 17.アーカイブページ専用スタイル
/* ------------------------------------------------ */

/* 見出し */
body.archive h2 {
	color: #000033;
	margin-top: 40px;
	margin-bottom: 0px;
	font-size: 160%;
	font-weight: 600;
	text-shadow: -1px 1px 0 rgba(255, 255, 255, 1);
}
@media screen and (min-width: 600px) and (max-width: 999px) {
	body.archive h2 {
		font-size: 140%;
	}
}
@media screen and (max-width: 599px) {
	body.archive h2 {
		margin-top: 30px;
		font-size: 120%;
	}
}

/* 投稿日付とカテゴリー */
body.archive .entry-meta {
	margin-top: 0px;
	margin-bottom: 10px;
	font-size: 90%;
}

/* アーカイブページのサムネイル */
body.archive .entry-content img {
	float: left;
	margin: 0 15px 15px 0;
	width: 250px;
	height: auto;
}
@media screen and (max-width: 599px) {
	body.archive .entry-content img {
		float: none;
		display: block;
		margin-top: 20px;
		margin-right: auto;
		margin-bottom: 20px;
		margin-left: auto;
	}
}

/* ------------------------------------------------ */
/* 18.フッター
/* ------------------------------------------------ */

#footer-pic {
	height:	180px;
	background-image: url(img/top_yorozuya_foot.jpg);	/* フッター用の画像を設定する */
	background-repeat: no-repeat;		/* 繰り返して配置しない */
	background-position: center bottom;	/* 下揃え */
	background-attachment: fixed; /* 固定配置 */
	box-shadow: 0px 8px 6px #262626 inset;
	clear: both;
}
@media print {
	#footer-pic {
		display: none;
	}
}

/* エリア外枠のスタイル */
footer {
	height:	170px;
	color: #ffffff;
	padding: 1em;
	clear: both;
	background: linear-gradient(to bottom, rgba(21,153,78,1) 0%,rgba(15,110,56,1) 100%);
}
@media print {
	footer {
		height:	100px;
		color: #ffffff;
		padding: 1em;
		clear: both;
		background: linear-gradient(to bottom, rgba(21,153,78,1) 0%,rgba(15,110,56,1) 100%);
	}
}

/* 著作権表記 */
#copyright {
	text-align: center;
	margin-top: 20px;
	display: block;
	font-size: 90%;
}
@media screen and (min-width: 600px) and (max-width: 999px) {
	#copyright {
		text-align: center;
		margin-top: 20px;
		display: block;
		font-size: 90%;
	}
}
@media screen and (max-width: 599px) {
	#copyright {
		text-align: center;
		margin-top: 20px;
		display: block;
		font-size: 12px;
	}
}


/* ------------------------------------------------ */
/* 19.フッターナビゲーション
/* ------------------------------------------------ */

/* メニューリストを囲む枠 */
#fNav ul {
	justify-content: center;
    display:-webkit-box;
    display:-moz-box;
    display:-ms-flexbox;
    display:-webkit-flex;
    display:-moz-flex;
    display:flex;
	flex-direction:row;
	width: 100%;
	margin: 0 auto;
}
@media screen and (min-width: 600px) and (max-width: 999px) {
	#fNav ul {
		justify-content: center;
		display:-webkit-box;
		display:-moz-box;
		display:-ms-flexbox;
		display:-webkit-flex;
		display:-moz-flex;
		display:flex;
		flex-direction:row;
		width: 100%;
		margin: 0 auto;
	}
}
@media screen and (max-width: 599px) {
	#fNav ul {
		justify-content: center;
		display:-webkit-box;
		display:-moz-box;
		display:-ms-flexbox;
		display:-webkit-flex;
		display:-moz-flex;
		display:flex;
		flex-flow: row wrap;
		width: 100%;
		margin: 0 auto;
	}
}

/* メニューリストの共通スタイル */
#fNav li {
	padding: 0 15px;
	border-right: 1px solid #ffffff;
	font-size: 14px;
}
@media screen and (min-width: 600px) and (max-width: 999px) {
	#fNav li {
		padding: 0 10px;
		border-right: 1px solid #ffffff;
		font-size: 14px;
	}
}
@media screen and (max-width: 599px) {
	#fNav li {
		padding: 0 10px;
		border-right: 1px solid #ffffff;
		font-size: 12px;
	}
}

/* 一番最後のメニュー */
#fNav li:last-child {
	border-right: none;
	padding-right: 0;
}

/* メニューリンクの共通スタイル */
#fNav a {
	color: #ffffff;
	text-decoration: none;
}

/* メニューリンクにマウスを乗せたときのスタイル */
#fNav a:hover {
	background-color: #ffffff;
	color: #2AA8E5;
	opacity: 1;
}
