@charset "UTF-8";
/* addbase.css */
/* chokuhan.html（農家から直接買うということ）専用の追加スタイル */
/* 既存の base.css / navi.css は変更せず、このファイルのみで完結させる */
/* 影響範囲を chokuhan.html 内に限定するため、クラス名はすべて chokuhan- で始める */

/* ---------------------------------------------- */
/* 4章「育てる・乾燥する・選別する・保管する」の視覚整理 */
/* ---------------------------------------------- */
#main ul.chokuhan-process {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	margin: 0 0 30px 0;
	padding: 0;
}

#main ul.chokuhan-process li {
	flex: 1 1 auto;
	text-align: center;
	padding: 14px 8px;
	margin: 0 6px 6px 0;
	border: 1px solid #ccc;
	font-size: 1rem;
	color: #333;
	background-color: #fafafa;
}

#main ul.chokuhan-process li:last-child {
	margin-right: 0;
}

/* ---------------------------------------------- */
/* 5章「去年のお米がおいしかったから、今年も同じ農家から買いたい」の強調 */
/* ---------------------------------------------- */
#main blockquote.chokuhan-highlight {
	margin: 0 0 40px 0;
	padding: 0.6em 1.2em;
	border-left: 4px solid #95714d;
	font-size: 1.3rem;
	line-height: 1.7;
	color: #333;
	background-color: transparent;
}

/* ---------------------------------------------- */
/* 6章「代金は次の米づくりにもつながります」の囲み文 */
/* ---------------------------------------------- */
#main blockquote.chokuhan-box {
	margin: 0 0 40px 0;
	padding: 1.2em 1.4em;
	background-color: #f7f2ec;
	border: 1px solid #e2d6c6;
	line-height: 1.8;
	color: #333;
}

/* ---------------------------------------------- */
/* 7章「農家直販には、不便な点もあります」の3点整理 */
/* ---------------------------------------------- */
#main ul.chokuhan-notice {
	list-style: disc;
	margin: 0 0 40px 1.4em;
	padding: 0;
	line-height: 1.8;
	color: #333;
}

#main ul.chokuhan-notice li {
	margin-bottom: 6px;
}

/* ---------------------------------------------- */
/* 10章「もっとイトウファームを知る」の各リンクブロック */
/* ---------------------------------------------- */
#main div.chokuhan-related-item {
	margin-bottom: 30px;
	padding-bottom: 20px;
	border-bottom: 1px solid #ddd;
}

#main div.chokuhan-related-item:last-child {
	border-bottom: none;
}

#main div.chokuhan-related-item h3 {
	margin: 0 0 8px 0;
	font-size: 1.05rem;
}

/* ---------------------------------------------- */
/* スマートフォン表示（既存サイトのブレークポイントに合わせる） */
/* ---------------------------------------------- */
@media screen and (max-width: 640px) {

	#main ul.chokuhan-process {
		display: block;
	}

	#main ul.chokuhan-process li {
		margin: 0 0 8px 0;
		width: auto;
	}

	#main blockquote.chokuhan-highlight {
		font-size: 1.1rem;
		padding: 0.5em 1em;
	}

	#main blockquote.chokuhan-box {
		padding: 1em 1.1em;
	}
}

/* ---------------------------------------------- */
/* kakaku.html（イトウファームの価格について）専用の追加スタイル */
/* 「届けたいお米→そのために必要な設備→維持・修理・更新が必要」の */
/* 因果関係を示す縦の流れ。アイコン画像は使わず、罫線と矢印のみで表現する */
/* ---------------------------------------------- */
#main div.kakaku-flow {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 0 0 40px 0;
}

#main div.kakaku-flow-step {
	width: 100%;
	max-width: 420px;
	box-sizing: border-box;
	padding: 14px 20px;
	border: 1px solid #ccc;
	background-color: #fafafa;
	text-align: center;
	font-size: 1.05rem;
	color: #333;
}

#main div.kakaku-flow-arrow {
	margin: 4px 0;
	font-size: 1.4rem;
	line-height: 1;
	color: #95714d;
}

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

	#main div.kakaku-flow-step {
		max-width: 100%;
		font-size: 1rem;
	}
}
