@charset "UTF-8";
/*---------------------------------
  Basic
---------------------------------*/
body {
	color: #333;
  font-family: 游ゴシック, YuGothic, "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Verdana, sans-serif;
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 500;
	line-height: 1.8em;
	margin: 0;
	padding: 0;
  position: relative;
}

h1,h2,h3,h4,h5 {
  letter-spacing: 0.1em;
	margin: 0;
	padding: 0;
}

img {
	width: 100%;
	border: 0;
	vertical-align: bottom;
  display: block;
}

p,ul,li,dl,dt,dd,th,td {
	margin: 0;
	padding: 0;
}

ol,ul,li {
	list-style: none;
}

i {
	vertical-align: middle;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

::selection {
	background: #dfe1e5;
}

::-moz-selection {
	background: #dfe1e5;
}

@media screen and (max-width: 896px) {	
	body {
		min-width: 300px;
	}
}

/*---------------------------------
  Link
---------------------------------*/
a:link, a:visited, a:hover, a:active {
	color: #333;
	text-decoration: none;
}

.btn {
	max-width: 400px;
	height: 60px;
	line-height: 60px;
	color: #fff !important;
	font-weight: 700;
	letter-spacing: 0.1em;
	border-radius: 3px;
  background: #b4253d;
  margin-top: 3em;
	padding: 0 2em;
	display: block;
	position: relative;
}

.btn_forward:after {
	content: "\f105";
	font-family: 'Font Awesome 5 Free';
	position: absolute;
	right: 1.5em;
}

.btn_forward:hover:after {
	right: 1.3em;
	opacity: 0.8;
	transition: 0.3s;
}

.btn_back:after {
	content: "\f104";
	font-family: 'Font Awesome 5 Free';
	position: absolute;
	left: 1.5em;
}

.btn_back:hover:after {
	left: 1.3em;
	opacity: 0.8;
	transition: 0.3s;
}

/*---------------------------------
  Common
---------------------------------*/
.contents_wrap {
  margin-top: 5em;
}

.background_wrap {
  padding: 5em 0;
}

.wrapper {
	max-width: 1120px;
	margin: 0 auto;
	padding: 0 1em;
}

.index_wrap h2,
.page_wrap h2 {
  font-size: clamp(18px, 5vw, 36px);
  text-align: center;
  margin-bottom: 2em;
}

.index_wrap h2:after,
.page_wrap h2:after {
  content: '';
  width: 80px;
  height: 2px;
  background: #b4253d;
  display: block;
  margin: 1em auto 0 auto;
}

.page_wrap h3 {
  font-size: clamp(16px, 5vw, 24px);
	background-color: rgba(250,250,250,1);
	background-image:
	 radial-gradient(closest-side,
		 transparent 99.9%, rgba(236,236,236,0.8) 100%),
	 radial-gradient(closest-side,
		 transparent 99.9%, rgba(236,236,236,0.8) 100%);
	background-position: 0 0, 15px 15px;
	background-size: 30px 30px;
  border-left: solid 5px #b4253d;
  margin-bottom: 2em;
  padding: 0.5em 1em;
}

.text_box p:nth-child(n+2) {
  margin-top: 1em;
}

@media print, screen and (max-width: 896px) {
  .contents_wrap {
    margin-top: 3em;
  }
  
  .background_wrap {
    padding: 3em 0;
  }
  
  .wrapper {
    padding: 0 4%;
  }
}

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

  Header

---------------------------------*/
header {
  padding: 2em 4%;
}

.header_content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.header_content h1 {
  font-size: clamp(18px, 3vw, 24px);
  margin-right: auto;
}

.header_content h1 span {
  font-size: clamp(12px, 1.5vw, 16px);
  display: block;
}

.header_content nav {
  display: flex;
  flex-wrap: wrap;
  font-weight: 600;
}

.header_content nav li {
  padding: 0.5em 0.8em;
}

.header_content nav li:not(:last-child) a:hover {
  color: #b4253d;
  transition: 0.3s;
}

.header_content nav li:last-of-type a {
  color: #fff;
  border-radius: 3px;
  background: #b4253d;
  padding: 0.8em 2em;
}

.header_content nav li:last-of-type a:before {
	content: "\f0e0";
	font-family: 'Font Awesome 5 Free';
  font-size: 140%;
  font-weight: 500;
  vertical-align: middle;
  margin-right: 5px;
}

.header_content nav li:last-of-type a:hover {
  opacity: 0.8;
  transition: 0.3s;
}

@media print, screen and (max-width: 896px) {
  header {
    padding: 1em 4%;
  }
  
  .header_content nav {
    display: none;
  }
}

/*---------------------------------
  Burger
---------------------------------*/
.burger_area {
	position: absolute;
	top: 0;
	right: 0;
}

.btn_burger {
	display: flex;
	justify-content: flex-end;
}

.btn_burger a {
  z-index: 20;
  position: relative;
  width: 30px;
  height: 26px;
	display: block;
  cursor: pointer;
	margin: 15px;
}

.btn_burger a,
.btn_burger a span {
	display: inline-block;
  transition: all 0.3s;
  box-sizing: border-box;
}

.btn_burger a span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background: #333;
  border-radius: 4px;
}

.btn_burger a span:nth-of-type(1) {
  top: 0;
}

.btn_burger a span:nth-of-type(2) {
  top: 11px;
}

.btn_burger a span:nth-of-type(3) {
  bottom: 0;
}

.btn_burger a.active span:nth-of-type(1) {
  background: #fff;
  -webkit-transform: translateY(11px) rotate(-45deg);
  transform: translateY(11px) rotate(-45deg);
}

.btn_burger a.active span:nth-of-type(2) {
  opacity: 0;
}

.btn_burger a.active span:nth-of-type(3) {
  background: #fff;
  -webkit-transform: translateY(-11px) rotate(45deg);
  transform: translateY(-11px) rotate(45deg);
}

.burger {
  width: 100%;
  height: 100%;
  background: rgba(51,51,51,0.9);
  position: fixed;
  left: 0;
  top: 0;
  display: none;
  z-index: 10;
}

.burger.open {
	display: block;
}

.burger.close {
	display: none;
}

.burger_menu {
	height: 100%;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
}

.burger_menu li {
	font-weight: 600;
  display: block;
  margin: 2em;
}
	
.burger_menu li:before {
	color: #fff;
	content: "\f105";
	font-family: "Font Awesome 5 Free";
	vertical-align: middle;
	margin-right: 1em;
}

.burger_menu li a {
  color: #fff !important;
}

@media screen and (min-width: 897px) {
	.burger_area {
		display: none;
	}
}

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

  トップページ

---------------------------------*/
/*---------------------------------
  あいさつ
---------------------------------*/
.index_greeting_wrap {
  width: 100%;
  overflow: hidden;
}

.spread_content {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.spread_box {
	width: 50%;
}

.spread_thumb {
	width: 40%;
}

.spread_thumb img {
	height: 500px;
	object-fit: cover;
}

/* 2カラム左はみ出し */
.spread_thumb_left {
	flex: 1;
	margin-left: calc(50% - 50vw);
	margin-right: 8%;
}

/* 2カラム右はみ出し */
.spread_content_reverse {
	flex-direction: row-reverse;
}

.spread_thumb_right {
	flex: 1;
	margin-right: calc(50% - 50vw);
	margin-left: 8%;
}

.index_greeting_wrap h2 {
  font-size: clamp(16px, 2vw, 24px);
  line-height: 1.8em;
  margin-bottom: 2em;
}

.index_greeting_wrap h2:after {
  content: '';
  width: 80px;
  height: 2px;
  background: #b4253d;
  display: block;
  margin-top: 1em;
}

@media print, screen and (max-width: 896px) {
  .spread_content {
    flex-direction: column;
  }
  
  .spread_box,
  .spread_thumb {
    width: 100%;
  }
  
  .spread_box {
    margin-top: 3em;
  }
  
  .spread_thumb img {
    height: 200px;
  }
}

@media print, screen and (max-width: 480px) {
  .index_greeting_wrap h2 br {
    display: none;
  }
}

/*---------------------------------
  商品情報
---------------------------------*/
.index_product_content{
  display: flex;
  flex-wrap: wrap;
}

.index_product_box {
  width: calc(100% / 3 - 2em);
  height: 155px;
  text-align: center;
  border-radius: 0.5em;
	background-color: rgba(110,131,56,1);
	background-image:
	 radial-gradient(closest-side,
		 transparent 99.9%, rgba(103,119,53,0.8) 100%),
	 radial-gradient(closest-side,
		 transparent 99.9%, rgba(103,119,53,0.8) 100%);
	background-position: 0 0, 15px 15px;
	background-size: 30px 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 1em;
  padding: 3em 1em;
  cursor: pointer;
}

.index_product_box:hover {
	background-color: rgba(103,119,53,1);
  transition: 0.3s;
}

.index_product_box h3 {
  font-size: clamp(16px, 3vw, 18px);
}

.index_product_box h3 a {
  color: #fff !important;
  display: block;
}

@media print, screen and (max-width: 896px) {
  .index_product_box {
    width: calc(100% / 2 - 2em);
  }
}

@media print, screen and (max-width: 480px) {
  .index_product_box {
    width: 100%;
    height: 100px;
  }
}

/*---------------------------------
  製造・販売加盟店募集/OEM食品受注
---------------------------------*/
.index_link_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.index_link_inner {
  width: 45%;
	border: solid 5px #333;
  padding: 2.5em 1.5em;
  position: relative;
}

.index_link_inner:before {
  content: '';
  border: solid 1px #333;
  position: absolute;
  top: 5px;
  right: 5px;
  bottom: 5px;
  left: 5px;
  display: block;
}

.index_link_inner p {
  font-size: clamp(16px, 2vw, 18px);
  text-align: center;
  font-weight: 600;
}

.index_link_inner .btn {
  max-width: 300px;
  margin: 1.5em auto 0 auto;
}

@media print, screen and (max-width: 896px) {
  .index_link_box {
    flex-direction: column;
  }
  
  .index_link_inner {
    width: 100%;
  }
  
  .index_link_inner:nth-of-type(n+2) {
    margin-top: 3em;
  }
}

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

  商品情報

---------------------------------*/
.product_box {
  display: flex;
  flex-wrap: wrap;
}

.product_inner {
  width: calc(100% / 3 - 2em);
  margin: 1em;
}

.product_inner h4 {
  font-size: clamp(16px, 3vw, 18px);
  margin: 1.5em 0 1em 0;
}

.product_inner h4 span {
  font-size: clamp(12px, 2.5vw, 14px);
  padding: 0 0.5em;
}

.product_inner h4:after {
  content: '';
  width: 80px;
  height: 2px;
  background: #6e8338;
  display: block;
  margin-top: 1em;
}

.product_thumb img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

@media print, screen and (max-width: 896px) {
  .product_box {
    flex-direction: column;
  }
  
  .product_inner {
    width: 100%;
    margin: 1em 0;
  }
  
  .product_thumb img {
    max-width: 300px;
  }
}

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

  企業情報

---------------------------------*/
/*---------------------------------
  ご挨拶
---------------------------------*/
.greeting_content .text_box p {
  text-indent: 1em;
  line-height: 2.5em;
}

.greeting_name_box {
  font-size: clamp(16px, 3vw, 18px);
  font-weight: 600;
  text-align: right;
  margin-top: 3em;
}

/*---------------------------------
  会社概要
---------------------------------*/
.about_box {
  display: flex;
  flex-wrap: wrap;
}

.about_box dt,
.about_box dd {
  border-bottom: dashed  1px #ccc;
  padding: 1em;
}

.about_box dt {
  width: 20%;
  font-weight: 600;
}

.about_box dd {
  width: 80%;
}

.about_group_list {
  display: flex;
  flex-wrap: wrap;
}

.about_group_list li {
  width: 50%;
}

@media print, screen and (max-width: 896px) {
  .about_box {
    flex-direction: column;
  }
  
  .about_box dt,
  .about_box dd {
    width: 100%;
  }
  
  .about_box dt {
    border-bottom: none;
    padding-bottom: 0;
  }
  
  .about_box dd {
    padding-top: 0.5em;
  }
  
  .about_group_list {
    flex-direction: column;
  }
  
  .about_group_list li {
    width: 100%;
  }
}

/*---------------------------------
  沿革
---------------------------------*/
.history_box {
	padding: 2em 0;
	position: relative;
}

.history_box:before {
	content: "";
	width: 3px;
	height: 100%;
	background: #dfe1e5;
	display: block;
	position: absolute;
	top: 0;
	left: 30px;
}

.history_box dl {
	display: flex;
	flex-wrap: wrap;
	padding-left: 16px;
}

.history_box dl dt,
.history_box dl dd {
	padding: 0.5em;
}

.history_box dl dt {
	width: 150px;
}

.history_box dl dt:before {
  content: "\f111";
  font-family: "Font Awesome 5 Free";
	color: #6e8338;
	font-weight: 600;
	margin-right: 1.5em;
	position: relative;
	z-index: 1;
}

.history_box dl dd {
	width: calc(100% - 150px);
}

@media print, screen and (max-width: 896px) {
	.history_box:before {
		left: 12px;
	}
	
	.history_box dl {
		flex-direction: column;
		padding-left: 0;
	}
	
	
	.history_box dl dt,
	.history_box dl dd {
		width: 100%;
	}
	
	.history_box dl dt {
		font-weight: 600;
		padding-bottom: 0;
	}
	
	.history_box dl dt:nth-of-type(n+2) {
		padding-top: 1em;
	}
	
	.history_box dl dd {
		padding: 0 0 0 40px;
	}
}

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

  Thanks

---------------------------------*/
.thanks_content .text_box p:nth-last-child(2)	{
	font-size: 21px;
	font-weight: 600;
  letter-spacing: 0.1em;
}

.thanks_content .text_box p:nth-last-child(2):before {
  content: "\f095";
	font-family: 'Font Awesome 5 Free';
  font-size: 21px;
  font-weight: 600;
  display: inline-block;
	vertical-align: middle;
	margin-right: 0.5em;
}

.thanks_content .btn {
  text-align: center;
  background: #b4253d;
  margin: 3em auto 0 auto;
}

@media print, screen and (max-width: 896px) {
  .thanks_content .text_box p:nth-last-child(2)	{
    font-size: 18px;
  }
  
  .thanks_content .text_box p:nth-last-child(2):before {
    font-size: 16px;
  }
}

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

  Footer

---------------------------------*/
footer {
  background: #f5f5f5;
  margin-top: 7em;
  padding: 5em 0;
}

.footer_contact_content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background: #fff;
  padding: 2em;
}

.footer_contact_box,
.footer_contact_content ul {
  width: calc(100% / 2);
  padding: 2em;
}

.footer_contact_box {
  text-align: center;
  border-right: solid 1px #ccc;
}

.footer_contact_box h2 {
  font-size: clamp(16px, 3vw, 28px);
  margin-bottom: 1.5em;
}

.footer_contact_box h2:after {
  content: '';
  width: 80px;
  height: 2px;
  background: #b4253d;
  display: block;
  margin: 1em auto 0 auto;
}

.footer_contact_content ul li:first-of-type {
  color: #6e8338;
  font-size: clamp(21px, 3vw, 28px);
  font-weight: 600;
  text-align: center;
}

.footer_contact_content ul li:first-of-type a {
  color: #6e8338 !important;
}

.footer_contact_content ul li:first-of-type:before {
	content: "\f095";
	font-family: 'Font Awesome 5 Free';
  font-size: 90%;
  font-weight: 600;
  vertical-align: middle;
  margin-right: 0.5em;
}

.footer_contact_content .btn {
  max-width: inherit;
  width: 90%;
  margin: 2em auto 0 auto;
}

.footer_content {
  display: flex;
  flex-wrap: wrap;
  margin-top: 3em;
}

.footer_box,
.sitemap_box li {
  font-size: clamp(12px, 2vw, 14px);
}

.footer_box {
  width: 35%;
  padding: 0.5em;
}

.footer_box p:first-of-type {
  font-size: clamp(14px, 2vw, 21px);
  font-weight: 600;
  margin-bottom: 1em;
}

.sitemap_box {
  width: 65%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 14px;
  padding: 0.5em;
}

.sitemap_box li a {
  padding: 0.2em 0.5em;
}

address {
	color: #fff;
	font-size: 0.7em;
	font-style: normal;
	text-align: center;
	background: #b4253d;
	padding: 1em 0;
}

@media print, screen and (max-width: 896px) {
  .footer_contact_content {
    flex-direction: column;
  }
  
  .footer_contact_box,
  .footer_contact_content ul {
    width: 100%;
    padding: 0 0 2em 0;
  }
    
  .footer_contact_box {
    border-right: none;
  }
  
  .footer_content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer_box,
  .sitemap_box {
    width: 100%;
  }
  
  .sitemap_box {
    justify-content: center;
    margin-top: 2em;
  }
}

/*---------------------------------
  PageTop
---------------------------------*/
.pagetop {
	width: 60px;
	height: 60px;
	line-height: 50px;
	border-radius: 50%;
	color: #fff !important;
	font-size: 36px;
	text-align: center;
	background: rgba(110, 131, 56, 0.9);
	display: block;
	position: fixed;
	right: 40px;
	bottom: 40px;
	z-index: 1000;
}

.pagetop:hover {
	opacity: 0.8;
	transition: 0.3s;
}

@media screen and (max-width: 896px) {
	.pagetop {
		width: 50px;
		height: 50px;
		line-height: 40px;
		font-size: 28px;
		right: 10px;
		bottom: 10px;
	}
}

@media screen and (max-width: 480px) {
  .pagetop {
    display: none !important;
  }
}
