@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap');
/******************** CSS RESET ********************/
*, *::before, *::after {
	box-sizing: border-box;
}
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
img {
	max-width: 100%;
	vertical-align: bottom;
}
hr {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #ccc;
	margin: 1em 0;
	padding: 0;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
address {
	font-style: normal;
}
input:not([type="radio"]):not([type="checkbox"]), button, textarea {
	padding: 4px 10px;
	margin: 0;
	background: none;
	border: 1px solid #999;
	border-radius: 5px;
	-webkit-appearance: none;
}
input[type="radio"]{
	margin-top: 0;
	padding-top: 0;
}
input,
label{
	vertical-align: middle;
}
legend{
	width: 100%;
}
/******************** 共通設定 ********************/
html{
	scroll-behavior: smooth;
	overflow: auto;
}
body {
	font-family: "Noto Sans JP", arial, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	line-height: 1.5;
	letter-spacing: 0.05em;
	color: #333;
	font-size: 100%;
	font-weight: 400;
	background-color: #FCFAF5;
	-webkit-text-size-adjust: 100%;
	-webkit-overflow-scrolling: touch;
}

/**** リンク ****/
a:link {
	text-decoration: underline;
	color: #002EAA;
}
a:visited {
	text-decoration: underline;
	color: #791e78;
}
a:hover,
a:active{
	text-decoration: none;
	color: #860000;
}
a,a:hover,
a::before,a:hover::before,
a::after,a:hover::after,
a *,a *:hover,
a *::before,a *:hover::before,
a *::after,a *:hover::after{
	transition: 0.3s;
}

/**** フォーム ****/
input, button, textarea{
	background: #fff;
	border: 1px solid #999;
	font-size: 85%;
}
/* text,textarea */
input[type="text"], input[type="file"], input[type="password"], textarea{
	font-family: "Noto Sans JP", arial, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	background: #fff;
	border: 1px solid #999;
	padding: 8px 6px;
}
/* select */
select[size], select[multiple], select[size][multiple]{
	padding: 6px;
}
/* submit,reset,button */
input[type="submit"], input[type="reset"], input[type="button"], button{
	background: #316745;
	border-radius: 4px;
	cursor: pointer;
	color: #fff;
	display: inline-block;
	text-align: center;
	padding: 6px 16px;
	border: none;
}
input[type="submit"]:hover, input[type="reset"]:hover, input[type="button"]:hover, button:hover{
	background: #1f4a2f;
}
/**** 見出し等のフォント ****/
h1, h2, h3, h4, h5, h6, strong, th{
  font-weight: 700;
}
em, b{
  font-weight: 500;
}
/*その他*/
.anchor{
	display: block;
	height: 1px;
	margin-top: -1px;
}

/******************** Header ********************/
header{
	margin-bottom: 150px;
	background-color: #fff;
}
header .head_in{
	margin: 0 auto;
	padding: 20px 12px;
	width: 100%;
	max-width: 1224px;
	display: flex;
	flex-wrap: wrap;
	gap: 4px 20px;
	align-items: center;
	justify-content: space-between;
}
header .logo{
	width: 185px;
}
header p{
	color: #5D3B28;
	font-size: 87.5%;
}
@media only screen and (max-width: 768px){
	header{
		margin-bottom: 60px;
	}
	header .head_in{
		padding: 12px;
	}
	header .logo{
		width: 150px;
	}
	header p{
		font-size: 75%;
	}
}

/******************** Footer ********************/
footer{
	background-color: #fff;
	border-top: 1px solid #5D3B28;
}
footer .foot{
	margin: 0 auto;
	padding: 30px 12px 0;
	width: 100%;
	max-width: 1224px;
}
footer .foot .logo{
	width: 185px;
}
footer .foot .tit{
	margin-top: 10px;
}
footer .foot .address{
	font-size: 87.5%;
}
footer .foot_copy{
	margin-top: 30px;
	padding: 20px 0 30px;
	font-size: 87.5%;
	color: #555;
	border-top: 1px solid #ccc;
}

/********** TOP **********/
main{
	width: 100%;
	overflow: hidden;
}
main section{
	margin: 0 auto 180px;
	padding: 0 12px;
	max-width: 1024px;
}
main h2{
	margin-bottom: 50px;
	color: #5D3B28;
	font-size: 200%;
	text-align: center;
	letter-spacing: 0.35em;
}
main h2 span{
	padding: 6px 100px 7px;
	display: inline-block;
	position: relative;
}
main h2 span::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 8px;
	height: 100%;
	border: 1px solid #5D3B28;
	border-right: 0;
}
main h2 span::after{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 8px;
	height: 100%;
	border: 1px solid #5D3B28;
	border-left: 0;
}
@media only screen and (max-width: 768px){
	main section{
		margin: 0 auto 100px;
	}
	main h2{
		margin-bottom: 30px;
		font-size: 150%;
	}
	main h2 span{
		padding: 4px 60px 6px;
	}
}

/*会社概要*/
main .about{
	max-width: 1124px;
}
main .about .flex_box{
	display: flex;
	gap: 40px 80px;
	align-items: center;
}
main .about .flex_box table{
	width: calc(60% - 80px);
	max-width: 580px;
	font-size: 112.5%;
	background-color: #FCFAF5;
	border-top: 1px solid #ccc;
}
main .about .flex_box table caption{
	position: absolute;
	z-index: -1;
}
main .about .flex_box table tr{
	border-bottom: 1px solid #ccc;
}
main .about .flex_box table th{
	padding: 16px 20px;
	color: #5D3B28;
	text-align: left;
}
main .about .flex_box table td{
	padding: 16px 0;
}
main .about .flex_box p{
	width: 40%;
	max-width: 440px;
}
@media only screen and (max-width: 1024px){
	main .about .flex_box{
		flex-direction: column;
	}
	main .about .flex_box table,
	main .about .flex_box p{
		width: 100%;
	}
}
@media only screen and (max-width: 768px){
	main .about .flex_box{
		gap: 30px;
	}
	main .about .flex_box table{
		max-width: 580px;
		font-size: 100%;
	}
	main .about .flex_box table th{
		padding: 14px 12px;
		width: 110px;
	}
	main .about .flex_box table td{
		padding: 14px 12px 14px 0;
	}
	main .about .flex_box table td span{
		display: inline-block;
	}
}

/*仕入れ*/
main .purchase .flex_box{
	display: flex;
	gap: 20px 60px;
	align-items: flex-start;
}
main .purchase .nestle{
	width: 600px;
}
main .purchase .nestle .list{
	padding-left: 16px;
	font-size: 125%;
	position: relative;
}
main .purchase .nestle .list::before{
	content: '';
	position: absolute;
	top: 12px;
	left: 0;
	width: 8px;
	height: 8px;
	background-color: #5D3B28;
}
main .purchase .nestle div{
	margin-top: 10px;
	padding: 30px;
	background-color: #F5F5F7;
	border: 1px solid #DBDBDD;
}
main .purchase .nestle .tit{
	margin-top: 30px;
	font-size: 125%;
}
main .purchase .nestle .tit:first-child{
	margin: 0;
}
main .purchase .nestle ul{
	padding-left: 10px;
}
main .purchase .nestle ul li{
	margin-top: 10px;
	padding-left: 14px;
	position: relative;
}
main .purchase .nestle li::before{
	content: '';
	position: absolute;
	top: 12px;
	left: 0;
	width: 8px;
	height: 1px;
	background-color: #5D3B28;
}
main .purchase .flex_box > ul{
	width: 340px;
}
main .purchase .flex_box > ul li{
	margin-top: 14px;
	padding-left: 16px;
	font-size: 125%;
	position: relative;
}
main .purchase .flex_box > ul li:first-child{
	margin-top: 0;
}
main .purchase .flex_box > ul li::before{
	content: '';
	position: absolute;
	top: 12px;
	left: 0;
	width: 8px;
	height: 8px;
	background-color: #5D3B28;
}
main .purchase .btn{
	margin: 60px auto 0;
	width: 100%;
	max-width: 400px;
}
main .purchase .btn a{
	padding: 25px 10px 26px;
	color: #333;
	font-size: 125%;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
	background-color: #fff;
	border: 1px solid #5D3B28;
	display: block;
}
main .purchase .btn a:hover{
	background-color: #efe9dc;
}
@media only screen and (max-width: 1024px){
	main .purchase .flex_box{
		flex-direction: column;
		align-items: center;
	}
	main .purchase .flex_box ul{
		width: 100%;
		max-width: 600px;
	}
}
@media only screen and (max-width: 768px){
	main .purchase .flex_box{
		gap: 16px 60px;
	}
	main .purchase .nestle{
		width: 100%;
		max-width: 600px;
	}
	main .purchase .nestle .list{
		padding-left: 14px;
		font-size: 100%;
	}
	main .purchase .nestle .list::before{
		top: 9px;
	}
	main .purchase .nestle div{
		padding: 16px;
	}
	main .purchase .nestle .tit{
		margin-top: 20px;
		font-size: 100%;
	}
	main .purchase .nestle ul{
		font-size: 87.5%;
	}
	main .purchase .nestle ul li{
		padding-left: 14px;
	}
	main .purchase .nestle li::before{
		top: 10px;
	}
	main .purchase .nestle span{
		display: inline-block;
	}
	main .purchase .flex_box > ul li{
		padding-left: 14px;
		font-size: 100%;
	}
	main .purchase .flex_box > ul li::before{
		top: 9px;
	}
	main .purchase .btn{
		margin-top: 30px;
	}
	main .purchase .btn a{
		padding: 20px 10px 21px;
		font-size: 112.5%;
	}
}

/*販売*/
main .sales .flex_box{
	display: flex;
	flex-wrap: wrap;
	gap: 40px 60px;
	align-items: center;
}
main .sales .flex_box ul{
	width: 500px;
}
main .sales .flex_box ul li{
	margin-top: 14px;
	padding-left: 16px;
	font-size: 125%;
	position: relative;
}
main .sales .flex_box ul li:first-child{
	margin-top: 0;
}
main .sales .flex_box ul li::before{
	content: '';
	position: absolute;
	top: 12px;
	left: 0;
	width: 8px;
	height: 8px;
	background-color: #5D3B28;
}
main .sales .flex_box p{
	width: 440px;
}
@media only screen and (max-width: 1024px){
	main .sales .flex_box{
		flex-direction: column-reverse;
	}
}
@media only screen and (max-width: 768px){
	main .sales .flex_box{
		gap: 20px 60px;
	}
	main .sales .flex_box ul{
		width: 100%;
		max-width: 500px;
	}
	main .sales .flex_box ul li{
		padding-left: 14px;
		font-size: 100%;
	}
	main .sales .flex_box ul li::before{
		top: 9px;
	}
	main .sales .flex_box p{
		width: 100%;
		max-width: 440px;
	}
}

/*印刷用*/
@media only print{
	.design .noscript{
		display: none!important;
	}
	.all{
		margin: 0!important;
		width: 1080px!important;
	}
}















