/*
Theme Name: NiiS 
 */

/* ============================
	common
============================ */
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
:root {
	--leading-trim: calc((1em - 1lh) / 2);
	--main-color: #15639D;
	--main-text-color: #1F1F1F;
	--bg-color: #E7EDF6;
	--border-color: #999;
	--link-color: #0a1b3d;
	--blue: #15639D;
	--green: #296A46;
	--black: #1F1F1F;
	--white: #fff;
	--container-size: 1140px;
	--container-padding: 20px;
}

.noto-sans {
	font-family: "Noto Sans JP", sans-serif;
	font-style: normal;
}

.jost {
  font-family: "Jost", sans-serif;
  font-style: normal;
}

.roboto {
  font-family: "Roboto", sans-serif;
	font-style: normal;
}

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

.flex-start {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.ofi {
  font-family: "object-fit: cover;";
  -o-object-fit: cover;
  object-fit: cover;
}

.youtube {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.youtube iframe {
  width: 100%;
  height: 100%;
}

.google-map iframe {
	aspect-ratio: 160 / 83;
	height: 100%;
	width: 100%;
}

.image-caption {
	bottom: 24px;
	color: var(--white);
	font-size: 1.3rem;
	left: 30px;
	letter-spacing: 0;
	position: absolute;
	text-shadow: 1px 1px 2px rgb(0 0 0 / .5)
}


/* ============================
	sp-menu
============================ */
#sp-menu {
  background-color: var(--bg-color);
  box-sizing: border-box;
	height: calc(100vh - 60px);
  right: -420px;
  opacity: 1;
  padding: 40px 20px;
  pointer-events: none;
  position: fixed;
  top: 70px;
  transition: all 0.35s ease;
	transform: translateZ(0);
  width: 420px;
	z-index: 11;
}

#sp-menu.opening {
  opacity: 1;
  pointer-events: auto;
	right: 0;
}

body:has(#sp-menu)::before {
	background-color: rgb(0 0 0 / .3);
	content: "";
	display: block;
	height: 100%;
	left: 0;
	opacity: 0;
	position: absolute;
	top: 0;
	transition: all 0.3s ease;
	width: 100%;
	z-index: -1;
}

body:has(#sp-menu.opening)::before {
	opacity: 1;
	z-index: 11;
}

#sp-menu .menu-item a {
	align-items: center;
	color: var(--green);
	display: flex;
	font-size: 1.5rem;
	font-weight: 500;
	gap: 10px;
	line-height: 1;
	margin-inline: auto;
	text-align: center;
	padding: 15px 0;
	position: relative;
	width: fit-content;
}

#sp-menu .menu-item a::before {
	background-color: var(--green);
	mask-repeat: no-repeat;
	mask-size: contain;
	display: block;
}

#sp-menu .menu-item.first a::before {
	content: "";
	mask-image: url("./images/home/icon_first_time.svg");
	height: 24px;
	width: 18px;
}

#sp-menu .menu-item.news a::before {
	content: "";
	mask-image: url("./images/home/icon_news.svg");
	height: 27px;
	width: 26px;
}

#sp-menu .menu-item.product a::before {
	content: "";
	mask-image: url("./images/home/icon_product.svg");
	height: 24px;
	width: 25px;
}

#sp-menu .menu-item.supplier a::before {
	content: "";
	mask-image: url("./images/home/icon_supplier.svg");
	height: 28px;
	width: 23px;
}

#sp-menu .menu-item.notice a::before {
	content: "";
	mask-image: url("./images/home/icon_notice.svg");
	height: 23px;
	width: 28px;
}


#sp-menu .sub-menu {
  display: none;
  opacity: 0;
  transition: 0.35s all ease;
}

#sp-menu .sub-menu.opening {
  display: block;
  opacity: 1;
  transition: 0.35s all ease;
}

#sp-menu .sp-contact-box {
  margin: 30px auto 0;
	width: fit-content;
}

#sp-menu .sp-contact-box a {
	background-color: var(--green);
}

@media screen and (max-width: 767px) {
	#sp-menu {
		right: -80%;
		top: 50px;
		width: 80%;
	}
	
	#sp-menu.opening {
	  height: calc(100vh - 50px);
	}
}

/* btn-hamburger */
#btn-hamburger {
  position: relative;
  top: 0;
  right: 0;
  background-color: var(--black);
  width: 70px;
  height: 70px;
  z-index: 1000;
  cursor: pointer;
}

#btn-hamburger .border {
  background: var(--white) no-repeat left top;
  height: 2px;
	left: 50%;
  transition: opacity, transform 0.2s ease;
  translate: -50% 0;
  position: absolute;
  width: 20px;
  z-index: 1;
}

#btn-hamburger .border:first-child {
  top: 38%;
}

#btn-hamburger .border:nth-child(2) {
  transform: rotate(0);
  opacity: 1;
  top: 50%;
}

#btn-hamburger .border:nth-child(3) {
  top: 62%;
}

#btn-hamburger.opening .border:first-child {
  transform: rotate(45deg);
  top: 50%;
}

#btn-hamburger.opening .border:nth-child(2) {
  opacity: 0;
}

#btn-hamburger.opening .border:nth-child(3) {
  top: 50%;
  transform: rotate(-45deg);
}

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

@media screen and (max-width: 767px) {
	#btn-hamburger {
		height: 50px;
		width: 50px;
	}
}

/* ============================
	header
============================ */
#header {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

#header.h-fixed {
  position: fixed;
}

#header .h-inner {
  align-items: center;
  background-color: rgb(21 99 157 / .2);
	display: flex;
	height: 70px;
  padding: 0 0 0 20px;
  width: 100%;
}

#h-gnav-box.flex-start {
  align-items: center;
}

#header .h-inner #h-site-logo {
	align-items: center;
	display: flex;
	justify-content: space-between;
	padding-right: 20px;
	width: calc(100% - 420px);
}

#header .h-inner #h-site-logo h1 {
	display: inline-block;
	position: relative;
	z-index: 1;
}

#header .h-inner #h-site-logo a {
	display: block;
	width: 74px;
}

#header .h-inner .menu-container {
	align-items: center;
	display: flex;
	width: 420px;
}

#header .h-inner  #h-gnav-box {
	display: flex;
}

#header .h-inner .menu-container .gnav-link {
	height: 70px;
	width: 175px;
}

#header .h-inner .menu-container #h-gnav-login {
	background-color: var(--blue);
}

#header .h-inner .menu-container #h-gnav-contact {
	background-color: var(--green);
}

#header .h-inner .menu-container a {
	align-items: center;
	color: var(--white);
	font-size: 1.5rem;
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1.4;
	display: flex;
	justify-content: center;
	height: 100%;
	width: 100%;
}

@media screen and (max-width: 895px) {
	#header .h-inner #h-site-logo {
		width: 100%;
	}
	
	#header .h-inner .search-box {
		display: none;
	}
	
	#header .h-inner .menu-container {
		width: fit-content;
	}
	
	#header .h-inner .menu-container #h-gnav-contact {
		display: none;
	}
}

@media screen and (max-width: 767px) {
  #header {
    margin: 0 auto;
    right: 0;
  }
	
	#header .h-inner {
		height: 50px;
	}
	
	#header .h-inner .menu-container .gnav-link {
		height: 50px;
	}
}

/* ============================
	footer
============================ */
#footer {
	background-image: url("./images/common/footer_bg.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	height: min-content;
	position: relative;
	width: 100%;
}

#footer::before {
	background-color: var(--blue);
	content: "";
	display: block;
	height: 100%;
	position: absolute;
	opacity: .2;
	inset: 0;
	width: 100%;
	z-index: 1;
}

#footer .f-content {
	height: 100%;
	padding-bottom: 15px;
	padding-top: 64px;
	position: relative;
	width: 100%;
	z-index: 2;
}

#footer .mv-container .mv-ttl {
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 0 10px;
}

#footer .mv-container .mv-ttl img {
	display: block;
	height: 48px;
	margin: 10px 0;
	width: 100%;
}

#footer .mv-container .mv-ttl .sentence1 {
	color: var(--white);
	font-size: 1.2rem;
	font-weight: 600;
	letter-spacing: .03em;
	line-height: 1;
}

#footer .mv-container .mv-ttl .sentence2 {
	color: var(--white);
	font-size: 1.6rem;
	font-weight: 600;
	letter-spacing: .03em;
	line-height: 1;
}

#footer .mv-container .nav-content {
	background-color: rgb(231 237 246 / .9);
	border-radius: 12px;
	box-sizing: border-box;
	display: flex;
	margin-inline: auto;
	margin-top: 30px;
	width: min(100%, 886px);
}

#footer .mv-container .nav-content .nav-box .link-group {
	display: flex;
	height: 84px;
}

#footer .mv-container .nav-content .nav-box .link-group a {
	align-items: center;
	border-left: 1px solid var(--border-color);
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	width: 154px;
}

#footer .mv-container .nav-content .nav-box .link-group a:first-child {
	border-left: none;
}

#footer .mv-container .nav-content .nav-box .link-group a span {
	font-size: 1.4rem;
}

#footer .mv-container .nav-content .nav-box .search-box {
	align-items: center;
	border-top: 1px solid var(--border-color);
	display: flex;
	height: 84px;
	justify-content: center
}

#footer .mv-container .nav-content .nav-box .search-box .search-wrapper {
	width: fit-content;
}

#footer .mv-container .nav-content .button-box {
	align-items: center;
	border-left: 1px solid var(--border-color);
	display: flex;
	flex-direction: column;
	gap: 4px;
	justify-content: center;
	width: 270px;
}

#footer .mv-container .nav-content .button-box a {
	align-items: center;
	color: var(--white);
	font-size: 1.5rem;
	font-weight: 400;
	display: flex;
	justify-content: center;
	height: 57px;
	width: 220px;
}

#footer .mv-container .nav-content .button-box a span {

}

#footer .mv-container .nav-content .button-box .login > a {
	background-color: var(--blue);
}

#footer .mv-container .nav-content .button-box .contact > a {
	background-color: var(--green);
}

#footer .mv-container .link-content {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	justify-content: center;
	margin-inline: auto;
	margin-top: 30px;
	
}

#footer .mv-container .link-content a {
	background-color: rgb(231 237 246 / .9);
	border: 1px solid var(--main-color);
	border-radius: 2px;
	box-sizing: border-box;
	color: var(--main-color);
	padding: 5px 10px;
	width: fit-content;
}

#footer .mv-container .link-content a.download {
	align-items: center;
	column-gap: 10px;
	display: flex;
}

#footer .mv-container .link-content a.download::after {
	background-color: var(--main-color);
	mask-image: url("./images/common/icon_download.svg");
	mask-repeat: no-repeat;
	mask-size: contain;
	content: "";
	display: block;
	height: 19px;
	width: 20px;
}

#footer .mv-container .organization-info {
	margin-top: 30px;
}

#footer .mv-container .organization-info .organization-item {
	align-items: center;
	background-color: rgb(231 237 246 / .9);
	border-radius: 2px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 15px 20px;
	margin-inline: auto;
	margin-top: 10px;
	padding: 5px 10px;
	width: fit-content;
}

#footer .mv-container .organization-info p,
#footer .mv-container .organization-info address {
	color: var(--main-color);
	font-size: 1.4rem;
	font-style: normal;
	font-weight: 500;
	text-align: center;
}
 
#footer .footer-text .copyright {
	bottom: 24px;
	color: var(--white);
	font-size: 1.3rem;
	right: 30px;
	letter-spacing: 0;
	position: absolute;
	text-shadow: 1px 1px 2px rgb(0 0 0 / .5);
}

@media screen and (max-width: 1087px) {
	#footer {
		height: 100%;
	}
	
	#footer .mv-container .nav-content {
		flex-direction: column;
		margin-inline: auto;
		padding-bottom: 30px;
		width: calc(100% - 40px);
	}
	
	#footer .mv-container .nav-content .nav-box .link-group {
		flex-wrap: wrap;
		height: auto;
	}
	
	#footer .mv-container .nav-content .nav-box .link-group a {
		align-items: center;
		border-bottom: 1px solid var(--border-color);
		border-left: none;
		box-sizing: border-box;
		display: flex;
		justify-content: center;
		padding: 15px 10px;
		width: 50%;
	}
	
	#footer .mv-container .nav-content .nav-box .link-group a:nth-child(odd) {
		border-right: 1px solid var(--border-color);
	}
	
	#footer .mv-container .nav-content .nav-box .link-group a:nth-child(3),
	#footer .mv-container .nav-content .nav-box .link-group a:last-child {
		border-bottom: none;
	}
	
	#footer .mv-container .nav-content .button-box {
		column-gap: 20px;
		flex-direction: row;
		margin-inline: auto;
		margin-top: 15px;
	}
	
	#footer .mv-container .organization-info {
		border-radius: 0;
		padding: 15px 20px;
	}
	
	#footer .mv-container .organization-info p,
	#footer .mv-container .organization-info address {
		font-size: 1.3rem;
		font-style: normal;
		padding: 0 10px;
		text-align: left;
	}
	
	#footer .footer-text {
		row-gap: 20px;
		display: flex;
		flex-direction: column-reverse;
		justify-content: space-between;
		margin-top: 20px;
		padding: 0 10px;
	}
	
	#footer .mv-container .link-content a {
		justify-content: center;
		text-align: center;
		width: 60%;
	}
	
	#footer .footer-text .image-caption {
		position: static;
	}
	
	#footer .footer-text .copyright {
		position: static;
	}
}

@media screen and (max-width: 767px) {
  #footer .mv-container .nav-content .button-box {
		border-left: none;
		flex-direction: column;
		row-gap: 20px;
	}
}

/* ============================
	search box
============================ */
.search-box form {
	align-items: center;
	column-gap: 10px;
	display: flex;
	justify-content: center;
}

.search-box #search {
	border-radius: 4px;
	background-color: #EFEFEF;
}

.search-box .searchsubmit {
	background-image: url("./images/common/icon_search.svg");
	background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
	border: none;
	border-radius: 4px;
  height: 40px;
	width: 40px;
}

@media screen and (max-width: 895px) {
	.search-box {
		display: none;
	}
}

/* ============================
	mainvisual
============================ */
.mainvisual {
  width: 100%;
  margin: 0;
}

.mainvisual .mv-wrapper {
	display: flex;
	height: 700px;
}

#top-mv .mv-container {
	align-items: center;
	background-image: url("./images/home/mv.png");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	display: flex;
	justify-content: center;
	position: relative;
	width: calc(100% - 420px);
}

#top-mv .mv-container .mv-ttl {
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 0 10px;
}

#top-mv .mv-container .mv-ttl img {
	display: block;
	margin: 10px 0;
}

#top-mv .mv-container .mv-ttl .sentence1 {
	color: var(--white);
	font-size: 2rem;
	font-weight: 600;
	letter-spacing: .03em;
	line-height: 1;
}

#top-mv .mv-container .mv-ttl .sentence2 {
	color: var(--white);
	font-size: 2.6rem;
	font-weight: 600;
	letter-spacing: .03em;
	line-height: 1;
}

#top-mv .pickup-container {
	align-items: center;
	display: flex;
	margin-top: 70px;
	width: 420px;
}

#top-mv .pickup-container .search-wrapper {
	margin: 24px 0;
}

#top-mv .pickup-content {
	padding: 40px 30px;
}

#top-mv .pickup-content h3 {
	align-items: center;
	display: flex;
	font-size: 1.2rem;
	font-weight: 400;
	gap: 15px;
}

#top-mv .pickup-content h3 span {
	font-size: 2.4rem;
	font-weight: 600;
}

#top-mv .pickup-content .pickup-box .item-conteiner {
	border-top: 1px solid var(--border-color);
	column-gap: 20px;
	display: flex;
	height: 124px;
	padding-top: 30px;
}

#top-mv .pickup-content .pickup-box .item-conteiner:first-child {
	margin-top: 10px;
}

#top-mv .pickup-content .pickup-box .item-conteiner + .item-conteiner {
	margin-top: 30px;
}

#top-mv .pickup-content .pickup-box .item-conteiner .post-meta {
	width: calc(100% - 168px);
}

#top-mv .pickup-content .pickup-box .item-conteiner .post-meta .post-cats {
	margin-bottom: 8px;
}

#top-mv .pickup-content .pickup-box .item-conteiner .post-meta .post-cats.product .post-cat {
	border-radius: 20px;
}

#top-mv .pickup-content .pickup-box .item-conteiner .text-box {
	max-width: 192px;
	width: 100%;
}

#top-mv .pickup-content .pickup-box .item-conteiner .text-box h4 {
	font-size: 1.5rem;
	font-weight: 500;
	letter-spacing: 0;
}

#top-mv .pickup-content .pickup-box .item-conteiner .text-box .supplier-title {
	font-size: 1.2rem;
	font-weight: 400;
	margin-top: 5px;
}

#top-mv .pickup-content .pickup-box .item-conteiner .image-box {
	aspect-ratio: 74 / 47;
	height: auto;
	max-width: 148px;
	width: 100%;
}

#top-mv .pickup-content .pickup-box .item-conteiner .image-box img {
	height: 100%;
	margin-inline: auto;
	object-fit: contain;
	object-position: center;
	width: auto;
}

@media screen and (max-width: 895px) {
	.mainvisual .mv-wrapper {
		height: 480px;
	}
	
	#top-mv .mv-container {
		width: 100%;
	}
	
	#top-mv .pickup-container {
		display: none;
	}
}

.page-mv {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	margin-top: 70px;
	position: relative;
	z-index: 1;
}

.page-mv .mv-inner {
	height: 260px;
}

.page-mv .page-ttl-box {
  left: 50%;
  position: absolute;
	top: 50%;
	translate: -50% -50%;
  width: 100%;
  z-index: 2;
}

.page-mv .page-ttl img {
	display: block;
	height: 180px;
	margin-inline: auto;
	width: 180px;
}

.page-mv .page-ttl {
	align-items: center;
	background-color: var(--green);
	border: 2px solid var(--white);
	border-radius: 12px;
	box-sizing: border-box;
	display: flex;
	height: 180px;
	justify-content: center;
	margin-inline: auto;
	padding: 0 10px;
	width: 180px;
}

.page-mv .page-ttl-box span {
	color: var(--white);
	font-size: 1.8rem;
	font-weight: 600;
	position: relative;
	text-align: center;
}

.page-mv .page-ttl-box span::before {
	aspect-ratio: 1 / 1;
	background-image: var(--title-image-url);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	content: "";
	display: block;
  height: auto;
	margin-bottom: 10px;
	margin-inline: auto;
	max-width: 60px;
	text-align: center;
	width: 100%;
}
.error404 .page-mv .page-ttl-box span::before {
	display: none;
}

@media screen and (max-width: 767px) {
	.page-mv {
		margin-top: 50px;
	}
	
	.page-mv .mv-inner {
		height: 160px;
	}
	
	.page-mv .page-ttl img {
		height: 100px;
		width: 100px;
	}
	
	.page-mv .page-ttl {
		border-radius: 12px;
		height: 120px;
		width: 120px;
	}
	
	.page-mv .page-ttl-box span {
		font-size: clamp(1rem, 0.6183rem + 1.6285vw, 1.4rem);
		margin-bottom: 10px;
	}

	.page-mv .page-ttl-box span::before {
		max-width: 30px;
	}
}

/* ============================
	section
============================ */
.sec-inner {
  padding: 100px 0;
}

.sec-ttl {
  text-align: center;
  margin: 0;
}

.content-width {
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0 var(--container-padding);
	width: min(100%, calc(var(--container-size) + var(--container-padding) * 2));
}

.content-box {
  margin: 50px 0 0;
}

@media screen and (max-width: 767px) {
	.sec-inner {
		padding: 60px 0;
	}

  .content-width {
    width: 100%;
  }
}

/* ============================
	breadcrumb
============================ */
.breadcrumbs {
	align-items: center;
	background-color: transparent;
  display: flex;
	height: fit-content;
	padding: 10px 0;
}

.breadcrumbs,
.breadcrumbs a,
.breadcrumbs span {
  color: var(--main-text-color);
	font-size: 1.3rem;
	font-weight: 400;
}

.breadcrumbs .content-width > span {
	margin-left: 0;
	position: relative;
}

.breadcrumbs .content-width > span:first-child {
	margin-left: 0;
}

.breadcrumbs .content-width > span::before {
	border: 1px solid var(--main-text-color);
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
	content: "";
	color: var(--main-text-color);
	display: inline-block;
	height: 6px;
	line-height: 1;
	margin: 0.45em 0.75em 0.15em 0.35em;
	transform: rotate(45deg);
	width: 6px;
}

.breadcrumbs .content-width > span:first-child::before {
	content: none;
}

@media screen and (max-width: 767px) {
	.breadcrumbs {
		padding: 10px 0;
	}
}

/* ============================
	pagenavi
============================ */
.wp-pagenavi {
  margin: 80px 0 0;
  font-size: 2rem;
  text-align: center;
}

.wp-pagenavi a,
.wp-pagenavi span {
	background-color: var(--white);
	border: 2px solid #BFBFBF;
	border-radius: 50%;
  color: #BFBFBF;
  display: inline-block;
	font-family: "Roboto", sans-serif;
	font-size: 1.6rem;
	font-weight: 700;
  height: 50px;
  line-height: 3;
  margin: 0 9px;
  text-align: center;
  transition: all 0.5s ease;
  vertical-align: middle;
  width: 50px;
}

.wp-pagenavi a:hover,
.wp-pagenavi span {
  background-color: var(--main-color);
	border-color: var(--main-color);
	color: var(--white);
  opacity: 1;
  text-decoration: none;
}

.wp-pagenavi a:hover {
  transition: all 0.5s ease;
}

.wp-pagenavi .extend {
  width: 1em;
  color: var(--main-color);
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  border: medium none;
}

.wp-pagenavi .extend::after {
  content: "…";
}

.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
	border: none;
	background-color: var(--main-color);
  position: relative;
  width: 63px;
  height: 63px;
  text-indent: -999999px;
  vertical-align: middle;
}

.wp-pagenavi .previouspostslink {
	margin-right: 50px;
}

.wp-pagenavi .nextpostslink {
	margin-left: 50px;
}

.wp-pagenavi .previouspostslink::after,
.wp-pagenavi .nextpostslink::after {
	background-color: var(--white);
	mask-image: url("./images/common/arrow_right.svg");
	mask-repeat: no-repeat;
	mask-size: contain;
	content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  display: block;
  width: 11px;
  height: 20px;
}

.wp-pagenavi .previouspostslink::after {
  transform: rotate(180deg);
}

.wp-pagenavi .nextpostslink::after {

}

.wp-pagenavi .previouspostslink:hover::after,
.wp-pagenavi .nextpostslink:hover::after {
  background-color: var(--white);
}

@media screen and (max-width: 767px) {
	.wp-pagenavi a,
	.wp-pagenavi span {
		height: 40px;
		line-height: 2.4;
		margin: 0 3px;
		width: 40px;
	}
	
	.wp-pagenavi .previouspostslink,
	.wp-pagenavi .nextpostslink {
		width: 48px;
		height: 48px;
	}
	
	.wp-pagenavi .previouspostslink {
		margin-right: 10px;
	}

	.wp-pagenavi .nextpostslink {
		margin-left: 10px;
	}
}

.result_count {
  margin-bottom: 15px;
  text-align: center;
  font-size: 1.4rem;
  color: #999;
}

/* ============================
	post parts
============================ */
.post-date {
  font-size: 1.5rem;
  min-width: 70px;
}

.post-cats {
	display: flex;
	gap: 10px;
}

.post-cat {
	background-color: var(--blue);
	box-sizing: border-box;
  color: var(--white);
  display: block;
  font-size: 1.2rem;
	height: fit-content;
  min-width: 110px;
  padding: 3px 5px;
  text-align: center;
	width: fit-content;
}

.post-cat.border-radius {
	border-radius: 20px;
}

.post-cat.grain {
	background-color: #AA831A;
	border: 1px solid #AA831A;
}

.post-cat.vegetables-fruits {
	background-color: #296A46;
	border: 1px solid #296A46;
}

.post-cat.processed-meat {
	background-color: #BD660F;
	border: 1px solid #BD660F;
}

.post-cat.processed-seafood {
	background-color: #1E7A7A;
	border: 1px solid #1E7A7A;
}

.post-cat.daily-products {
	background-color: #E1A231;
	border: 1px solid #E1A231;
}

.post-cat.grocery {
	background-color: #7B8D43;
	border: 1px solid #7B8D43;
}

.post-cat.noodle {
	background-color: #794788;
	border: 1px solid #794788;
}

.post-cat.snack {
	background-color: #AF272D;
	border: 1px solid #AF272D;
}

.post-cat.seasoning {
	background-color: #2C4073;
	border: 1px solid #2C4073;
}

.post-cat.sweets {
	background-color: #C55E75;
	border: 1px solid #C55E75;
}

.post-cat.frozen-products {
	background-color: #15639D;
	border: 1px solid #15639D;
}

.post-cat.beverages {
	background-color: #753A24;
	border: 1px solid #753A24;
}

.post-cat:link {
  color: #fff;
}

.post-cat:visited {
  color: #fff;
}

/* ============================
	archive list
============================ */
.archive-list.news-list {
	
}

.archive-list.news-list .item-conteiner {
	border-top: 1px solid var(--border-color);
	display: block;
	justify-content: space-between;
	padding: 30px 20px;
	position: relative;
}

.archive-list.news-list .item-conteiner::after {
	background-image: url("./images/common/icon_news_arrow.svg");
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	display: block;
	height: 48px;
	position: absolute;
	right: 20px;
	top: 50%;
	translate: 0 -50%;
	width: 48px;
}

.archive-list.news-list .item-conteiner:last-child {
	border-bottom: 1px solid var(--border-color);
}

.archive-list.news-list .item-conteiner .post-meta {
	align-items: center;
	display: flex;
	gap: 20px;
}

.archive-list.news-list .item-conteiner .post-cat {
	font-size: 1.4rem;
	padding: 8px 10px;
}

.archive-list.news-list .item-conteiner .post-date {
	font-size: 1.4rem;
}

.archive-list.news-list .item-conteiner .post-ttl {
	font-size: 1.6rem;
	font-weight: 600;
	margin-top: 8px;
	width: calc(100% - 68px);
}

@media screen and (max-width: 767px) {
	.archive-list.news-list .item-conteiner {
		padding: 15px 10px;
	}
	
	.archive-list.news-list .item-conteiner::after {
		height: 24px;
		right: 10px;
		width: 24px;
	}
	
	.archive-list.news-list .item-conteiner .post-cat {
		font-size: 1.3rem;
		padding: 4px 8px;
	}
	
	.archive-list.news-list .item-conteiner .post-ttl {
		font-size: 1.4rem;
		width: calc(100% - 34px);
	}
}

.archive-list.product-list .swiper-wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 45px;
}

.archive-list.product-list .item-conteiner {
	transition: all .2s;
	width: calc(25% - 34px);
}

.archive-list.product-list .item-conteiner .image-box {
	aspect-ratio: 1 / 1;
}

.archive-list.product-list .item-conteiner .image-box img {
	border-radius: 20px;
	box-shadow: 0 0 10px rgba(6, 0, 0, .1);
	height: 100%;
	object-fit: contain;
	object-position: center;
	width: 100%;
}

.archive-list.product-list .item-conteiner .post-meta {
	margin-top: 20px;
}

.archive-list.product-list .item-conteiner .post-ttl {
	font-size: 1.6rem;
	font-weight: 500;
	letter-spacing: 0;
	line-height: 1.4;
	margin-top: 10px;
}

.archive-list.product-list .item-conteiner .post-info {
	margin-top: 5px;
}

.archive-list.product-list .item-conteiner .post-info p,
.archive-list.product-list .item-conteiner .post-info time {
	font-size: 1.2rem;
	font-weight: 300;
}

@media screen and (max-width: 767px) {
	.archive-list.product-list .swiper-wrapper {
		flex-wrap: nowrap;
		gap: 0;
	}
	
	.archive-list.product-list .item-conteiner {
		width: calc(50% - 10px);
	}
	
	.archive-list.product-list .item-conteiner .post-ttl {
		font-size: 1.4rem;
	}
}

.archive-list.supplier-list .swiper-wrapper {
	display: block;
	margin-inline: auto;
	width: min(100%, calc(640px + var(--container-padding) * 2));
}

.archive-list.supplier-list .item-conteiner {
	border: 1px solid var(--main-color);
	border-radius: 20px;
	box-shadow: 0 0 10px rgba(6, 0, 0, .1);
	display: block;
	padding: 15px 20px;
	width: 100%;
}

.archive-list.supplier-list .item-conteiner + .item-conteiner {
	margin-top: 30px;
}

.archive-list.supplier-list .item-conteiner .image-box {
	aspect-ratio: 1 / 1;
}

.archive-list.supplier-list .item-conteiner .image-box img {
	border-radius: 20px;
	box-shadow: 0 0 10px rgba(6, 0, 0, .1);
	height: 100%;
	object-fit: contain;
	object-position: center;
	width: 100%;
}

.archive-list.supplier-list .item-conteiner .post-ttl {
	font-size: 1.5rem;
	font-weight: 500;
	letter-spacing: .05em;
	line-height: 1.4;
}

.archive-list.supplier-list .item-conteiner .post-info {
	margin-top: 5px;
}

.archive-list.supplier-list .item-conteiner .post-info p,
.archive-list.supplier-list .item-conteiner .post-info time {
	font-size: 1.2rem;
	font-weight: 300;
}

.archive-list.supplier-list .item-conteiner .post-info .address {
	font-size: 1.4rem;
}


@media screen and (max-width: 767px) {
	.archive-list.supplier-list .swiper-wrapper {
		gap: 40px 20px;
	}
	
	.archive-list.supplier-list .item-conteiner + .item-conteiner {
		margin-top: 30px;
	}
	
	.archive-list.supplier-list .item-conteiner .post-ttl {
		font-size: 1.5rem;
	}
}

/* ============================
	contact form
============================ */
.contact-box {
	margin-inline: auto;
	width: min(100%, 900px);
}

.contact-box .required {
	background-color: var(--green);
	border-radius: 2px;
  color: var(--white);
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  margin: 0 0 0 10px;
  padding: 4px 10px;
}

.contact-box .wpcf7-not-valid-tip {
	color: #e52301;
}

.contact-box .optional {
  background-color: #9F9F9F;
	border-radius: 2px;
  color: var(--white);
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  margin: 0 0 0 10px;
  padding: 4px 10px;
}

.contact-box .flex {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 40px;
}

.contact-box .flex span {
	margin-right: 20px;
}

.contact-box input[type="text"],
.contact-box input[type="password"],
.contact-box input[type="email"],
.contact-box input[type="tel"],
.contact-box input[type="url"],
.contact-box input[type="number"],
.contact-box input[type="date"],
.contact-box textarea {
	background-color: #F8F8F8;
	border: 1px solid #E6E6E6;
	border-radius: 4px;
	box-shadow: unset;
	box-sizing: border-box;
	font-size: 1.7rem;
	font-weight: 500;
	padding: 4px 16px;
	width: 100%;
}

.contact-box textarea {
	max-height: 250px;
}

.contact-box input[type="text"].your-address {
	margin-top: 16px;
}

.contact-box input.size-m,
.contact-box select.size-m {
	width: 240px;
}

.contact-box input[type=radio]{
  position: absolute;
  visibility: hidden;
}

.contact-box .wpcf7-radio {
	display: flex;
	flex-direction: column;
	gap: 10px 20px;
}

.contact-box .wpcf7-list-item {
	margin: 0;
}

.contact-box .wpcf7-radio .wpcf7-list-item {
	flex-basis: auto;
	width: auto;
}

.contact-box .wpcf7-radio .wpcf7-list-item-label {
	color: var(--main-text-color);
  cursor: pointer;
  display: flex;
}

.contact-box .wpcf7-radio .wpcf7-list-item-label::before {
  background-color: var(--white);
	border: 1px solid var(--green);
  border-radius: 100%;
  content: "";
  height: 20px;
  margin-bottom: auto;
  margin-right: .5em;
  margin-top: auto;
  transition: background-color .3s;
  width: 20px;
}

.contact-box input[type="radio"]:checked + .wpcf7-list-item-label::before {
  background-color: var(--main-color);
  box-shadow: inset 0 0 0 2px var(--white);
}

.contact-box input[type="checkbox"] {
	background-color: var(--white);
	border: 1px solid #ccc;
	border-radius: 3px;
  position: relative;
  width: 24px;
  height: 24px;
  vertical-align: -5px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.contact-box input[type="checkbox"]:checked:before {
  position: absolute;
  top: 2px;
  left: 8px;
  transform: rotate(40deg);
  width: 8px;
  height: 15px;
  border-right: 3px solid var(--main-color);
  border-bottom: 3px solid var(--main-color);
  content: '';
}

.contact-box dl {
	border-top: 1px solid rgb(41 106 70 / .4);
	color: var(--white);
	font-size: 1.6rem;
	font-weight: 700;
	margin: 0;
	padding: 20px 10px;
}

.contact-box dd {
	color: var(--white);
	font-size: 1.6rem;
	font-weight: 700;
	margin: 16px 0 0 0;
}

.contact-box dd .event-name input {
	background-color: transparent;
	border: none;
	padding: 0;
}

.contact-box dd.note {
	font-size: 1.5rem;
	font-weight: 500;
	margin: 8px 0 24px 0;
}

.contact-box dd.flex-date {
	align-items: flex-start;
	display: flex;
	flex-wrap: wrap;
	gap: 20px 10px;
}

.contact-box dd.flex-check .wpcf7-checkbox {
	align-items: flex-start;
	display: flex;
	gap: 40px;
}

.contact-box dd.flex-check .wpcf7-checkbox .wpcf7-list-item-label {
	margin-left: .5em;
}

.contact-box .your-email {
  box-sizing: border-box;
  width: 100%;
}

.contact-box .zip {
  width: 150px;
  box-sizing: border-box;
}

.contact-box .your-address {
  box-sizing: border-box;
  width: 100%;
}

.contact-box .your-content {
  width: 100%;
  box-sizing: border-box;
}

.contact-box .wpcf7-acceptance input[type="checkbox"] {
	background-color: var(--white);
	border: 1px solid #ccc;
	border-radius: 3px;
  position: relative;
  width: 24px;
  height: 24px;
  vertical-align: -5px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.contact-box .wpcf7-acceptance input[type="checkbox"]:checked:before {
  position: absolute;
  top: 2px;
  left: 8px;
  transform: rotate(40deg);
  width: 8px;
  height: 15px;
  border-right: 3px solid var(--main-color);
  border-bottom: 3px solid var(--main-color);
  content: '';
}

.contact-box .wpcf7-select {
	background-color: #F8F8F8;
	border: 1px solid #ccc;
	border-radius: 3px;
	color: var(--main-text-color);
	font-size: 1.7rem;
	font-weight: 500;
	height: 48px;
	padding: 4px 36px 4px 24px;
	position: relative;
	width: auto;
}

.contact-box .wrap-select > span {
	position: relative;
}

.contact-box .wrap-select > span::after {
	content: "";
	position: absolute;
	right: 10px;
	top: 12px;
	width: 10px;
	height: 10px;
	border-top: 2px solid var(--main-text-color);
	border-left: 2px solid var(--main-text-color);
	transform: translateY(-50%) rotate(-135deg);
	font-size: 20px;
	pointer-events: none;
}

.contact-box .recaptcha-note p {
	font-size: 1.3rem;
	font-weight: 400;
	margin-inline: auto;
	margin-top: 50px;
	width: fit-content;
}

@media screen and (max-width: 767px) {
	.contact-box .wpcf7-select {
		width: 100%;
	}
	
	.contact-box dd.flex-date {
		flex-wrap: wrap;
	}
}

#consent-box {
	margin-top: 50px;
  text-align: center;
}

#consent-box .wpcf7-list-item-label {
	color: var(--main-text-color);
	font-size: 1.6rem;
	font-weight: 700;
	margin-left: 1em;
}

#consent-box .wpcf7-list-item-label a {
	text-decoration: underline;
}

#submit-box .wpcf7-response-output {
  text-align: center;
}

#submit-box {
  width: 300px;
  position: relative;
  margin: 0 auto;
}

#submit-box.wrap-send {
	height: auto;
	margin-inline: auto;
	margin-top: 30px;
	position: relative;
	width: fit-content;
}

#submit-box .wpcf7-spinner {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 0 0 10px;
}

#submit-box .btn-send {
	column-gap: 30px;
	background-color: var(--main-color);
	border: none;
	border-radius: 3px;
	color: var(--white);
	font-size: 2rem;
	font-weight: 700;
	height: 100%;
	line-height: 1;
	max-height: 70px;
	padding: 24px 20px 24px 20px;
	text-align: center;
	width: 230px;
}

.contact-box .content-policy .content-box {
	background-color: var(--white);
	border: 1px solid #E6E6E6;
	border-radius: 6px;
	margin-top: 20px;
	max-height: 150px;
	padding: 0 20px;
	overflow-y: auto;
	width: 100%;
}

.contact-box .content-policy .title p {
	font-size: 1.6rem;
	font-weight: 700;
	margin: 0;
}

@media screen and (max-width: 767px) {
  .contact-box input[type="text"],
  .contact-box input[type="password"],
  .contact-box input[type="email"],
  .contact-box input[type="tel"],
  .contact-box input[type="url"],
  .contact-box input[type="number"],
	.contact-box input[type="date"],
  .contact-box textarea {
    width: 100%;
  }

	.contact-box .wpcf7-radio .wpcf7-list-item {
		display: flex;
		flex-wrap: wrap;
	}
	
	.contact-box .wpcf7-radio .wpcf7-list-item label {
		flex-basis: 100%;
	}
	
	#consent-box .wpcf7-list-item-label {
		font-size: 1.3rem;
	}
	
	.contact-box .content-policy .content-box {
		max-height: 300px;
	}
}

/* ============================
	404
============================ */
#error-404 .content-box p {
  text-align: center;
}

@media screen and (max-width: 1000px) {
  #h-gnav-box {
    display: none;
  }
}

/* ============================
	link
============================ */
.c-link {
	align-items: center;
	background-color: var(--black);
	border-radius: 36px;
	column-gap: 15px;
	cursor: pointer;
	display: flex;
	font-size: 2rem;
	font-weight: 700;
	min-width: 245px;
	justify-content: space-between;
	padding: 15px 20px 15px 36px;
	position: relative;
	transition: all .4s;
	width: fit-content;
}

.c-link .text {
	color: var(--white);
	flex-basis: auto;
	font-size: 1.5rem;
	font-weight: 500;
	letter-spacing: 0;
	line-height: 2;
	text-align: center;
	width: calc(100% - 15px);
}

.c-link .arrow {
	background-color: var(--white);
	mask-image: url("./images/common/arrow_right.svg");
	mask-size: cover;
	display: block;
	height: 15px;
	left: 0;
	position: relative;
	transition: all .4s;
	width: 8px;
}

.c-link.read-more {
	padding: 19px 20px 19px 55px;
	width: 300px;
}

.c-link.read-more .text {
	font-size: 2rem;
	font-weight: 600;
}

@media (hover: hover) {
	.c-link.is-hover,
	.c-link:hover {
		background-color: var(--main-color) !important;
		opacity: 1;
	}
	
	.c-link.is-hover .text,
	.c-link:hover .text {
		color: var(--white);
	}
	
	.c-link.is-hover .circle::before,
	.c-link:hover .circle::before {
		background-color: var(--white);
	}
}

/* ============================
	m-swiper-container 
============================ */
.m-swiper-container {
	position: relative;
}

.m-swiper-container .arrow-button {
	position: absolute;
	z-index: 20;
}

.m-swiper-container .swiper-button-prev,
.m-swiper-container .swiper-button-next {
	margin-top: 0 !important;
	place-items: center;
	position: absolute;
	transition: all .4s;
	left: unset;
	height: 56px;
	translate: 0 -50%;
	width: 56px;
}

.m-swiper-container .swiper-button-prev {
	left: 15px !important;
	translate: -30px 0;
}

.m-swiper-container .swiper-button-next {
	right: 15px !important;
	translate: 30px 0;
}

.m-swiper-container .swiper-button-prev::after,
.m-swiper-container .swiper-button-next::after {
	background-image: url("./images/common/icon_slider_arrow.svg");
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	display: block;
	height: 48px;
	transition: .2s opacity;
	width: 48px;
}

.m-swiper-container .swiper-button-prev::after {
	rotate: 180deg;
}

.m-swiper-container .swiper-pagination {
	text-align: left;
}

.m-swiper-container .swiper-pagination-bullet {
	background-color: var(--white);
	border: 1px solid #C4C4C4;
	width: 5px;
	height: 5px;
	opacity: 1;
	margin: 0 8px;
}

.m-swiper-container .swiper-pagination-bullet-active {
	background-color: #FCCF00;
	width: 10px;
	border: none;
	height: 10px;
	top: 2px;
	position: relative;
}

.m-swiper-container .swiper-navigation-icon {
	display: none;
}

@media screen and (max-width: 1050px) {
	.m-swiper-container .swiper-button-prev {
		left: 0;
		translate: -15px 0;
	}

	.m-swiper-container .swiper-button-next {
		right: 0;
		translate: 15px 0;
	}
}

@media screen and (max-width: 767px) {
	.m-swiper-container .swiper-button-prev,
	.m-swiper-container .swiper-button-next {
		bottom: unset;
		top: var(--swiper-navigation-top-offset, 50%) !important;
		height: 40px;
		width: 40px;
	}
	.m-swiper-container .swiper-button-prev::after,
	.m-swiper-container .swiper-button-next::after {
		
	}
}

/* .m-has-thumb-slider */
.m-has-thumb-slider .swiper-wrapper {
	align-items: center;
}

.m-has-thumb-slider .swiper-slide {

	height: auto;
	position: relative;
	width: 100%;
}

.m-has-thumb-slider .swiper-slide img {
	aspect-ratio: 66 / 43;
	border-radius: 8px;
	display: block;
	height: 100%;
	margin-inline: auto;
	object-fit: contain;
	width: 100%;
}

.m-has-thumb-slider .swiper-pagination {
	background-color: var(--sub-color);
	color: var(--white);
	position: absolute;
	top: 15px;
	left: 15px;
	height: 30px;
	line-height: 1.7;
	text-align: center;
	width: 60px;
}

@media screen and (max-width: 767px) {
	.m-has-thumb-slider .swiper-slide {
		aspect-ratio: 3 / 2;
	}

	.m-has-thumb-slider .swiper-slide img {
		height: auto;
		aspect-ratio: 3 / 2;
	}

	.m-has-thumb-slider .swiper-button-prev {
		left: -18px;
	}

	.m-has-thumb-slider .swiper-button-next {
		right: -18px;
	}
}

/* .m-thumb-slider */
.m-thumb-slider {
	margin-top: 10px;
}

.m-thumb-slider .swiper-wrapper {
	align-items: center;
}

.m-thumb-slider .swiper-slide {
	position: relative;
	text-align: center;
	cursor: pointer;
	transition: all .3s ease;
}

.m-thumb-slider .swiper-slide:hover {
	opacity: 0.8;
	transition: all .3s ease;
}

.m-thumb-slider .swiper-slide::before {
	background-color: var(--black);
	border-radius: 8px;
	content: '';
	opacity: .5;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
}

.m-thumb-slider .swiper-slide-thumb-active::before {
	content: none;
}

.m-thumb-slider .swiper-slide {
	aspect-ratio: 43 / 28;
	box-sizing: border-box;
	height: 100%;
	width: 100%;
}

.m-thumb-slider .swiper-slide img {
	border-radius: 8px;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

@media screen and (max-width: 767px) {
	.m-thumb-slider .swiper-slide {
		aspect-ratio: 3 / 2;
	}

	.m-thumb-slider .swiper-slide img {
		height: unset;
		aspect-ratio: 3 / 2;
	}
}

body.post-type-archive-product .content-box {
	margin-top: 0;
}

body.post-type-archive-product .category-title {
	color: var(--main-text-color);
}

body.post-type-archive-product .term-list {
	display: flex;
	flex-wrap: wrap;
	gap: 25px;
	margin-bottom: 60px;
	margin-top: 30px;
	padding-bottom: 20px;
}

body.post-type-archive-product .term-list a .post-cat {
	border-radius: 20px;
	color: var(--white);
	font-size: 1.5rem;
	font-weight: 500;
	padding: 4px 0;
	text-align: center;
	width: 165px;
}

body.post-type-archive-product .term-list a .post-cat.all {
	color: var(--main-text-color);
	background-color: var(--white);
	border: 1px solid  var(--main-text-color);
}

body.post-type-archive-product .term-list a .post-cat.grain {
	color: #AA831A;
	background-color: var(--white);
	border: 1px solid #AA831A;
}

body.post-type-archive-product .term-list a .post-cat.vegetables-fruits {
	color: #296A46;
	background-color: var(--white);
	border: 1px solid #296A46;
}

body.post-type-archive-product .term-list a .post-cat.processed-meat {
	color: #BD660F;
	background-color: var(--white);
	border: 1px solid #BD660F;
}

body.post-type-archive-product .term-list a .post-cat.processed-seafood {
	color: #1E7A7A;
	background-color: var(--white);
	border: 1px solid #1E7A7A;
}

body.post-type-archive-product .term-list a .post-cat.beverages {
	color: #753A24;
	background-color: var(--white);
	border: 1px solid #753A24;
}

body.post-type-archive-product .term-list a .post-cat.daily-products {
	color: #E1A231;
	background-color: var(--white);
	border: 1px solid #E1A231;
}

body.post-type-archive-product .term-list a .post-cat.grocery {
	color: #7B8D43;
	background-color: var(--white);
	border: 1px solid #7B8D43;
}

body.post-type-archive-product .term-list a .post-cat.noodle {
	color: #794788;
	background-color: var(--white);
	border: 1px solid #794788;
}

body.post-type-archive-product .term-list a .post-cat.snack {
	color: #AF272D;
	background-color: var(--white);
	border: 1px solid #AF272D;
}

body.post-type-archive-product .term-list a .post-cat.seasoning {
	color: #2C4073;
	background-color: var(--white);
	border: 1px solid #2C4073;
}

body.post-type-archive-product .term-list a .post-cat.sweets {
	color: #C55E75;
	background-color: var(--white);
	border: 1px solid #C55E75;
}

body.post-type-archive-product .term-list a .post-cat.frozen-products {
	color: #15639D;
	background-color: var(--white);
	border: 1px solid #15639D;
}

body.post-type-archive-product .term-list a.current .post-cat.all {
	background-color:  var(--main-text-color);
	color: var(--white);
}

body.post-type-archive-product .term-list a.current .post-cat.grain {
	background-color: #AA831A;
	color: var(--white);
}

body.post-type-archive-product .term-list a.current .post-cat.vegetables-fruits {
	background-color: #296A46;
	color: var(--white);
}

body.post-type-archive-product .term-list a.current .post-cat.processed-meat {
	background-color: #BD660F;
	color: var(--white);
}

body.post-type-archive-product .term-list a.current .post-cat.processed-seafood {
	background-color: #1E7A7A;
	color: var(--white);
}

body.post-type-archive-product .term-list a.current .post-cat.daily-products {
	background-color: #E1A231;
	color: var(--white);
}

body.post-type-archive-product .term-list a.current .post-cat.grocery {
	background-color: #7B8D43;
	color: var(--white);
}

body.post-type-archive-product .term-list a.current .post-cat.noodle {
	background-color: #794788;
	color: var(--white);
}

body.post-type-archive-product .term-list a.current .post-cat.snack {
	background-color: #AF272D;
	color: var(--white);
}

body.post-type-archive-product .term-list a.current .post-cat.seasoning {
	background-color: #2C4073;
	color: var(--white);
}

body.post-type-archive-product .term-list a.current .post-cat.sweets {
	background-color: #C55E75;
	color: var(--white);
}

body.post-type-archive-product .term-list a.current .post-cat.frozen-products {
	background-color: #2C4073;
	color: var(--white);
}

body.post-type-archive-product .term-list a.current .post-cat.beverages {
	background-color: #753A24;
	color: var(--white);
}


body.post-type-archive-product .archive-list.product-list .swiper-wrapper {
	flex-wrap: wrap;
	gap: 45px;
}

@media screen and (max-width: 767px) {
	body.post-type-archive-product .archive-list.product-list .swiper-wrapper {
		gap: 40px 20px;
	}
}

body.post-type-archive-supplier .content-box {
	margin-top: 0;
}

body.post-type-archive-news .archive-list.news-list .swiper-wrapper {
	display: block;
}


body.search-results .search-title {
	align-items: center;
	background-color: var(--bg-color);
	border-top: 4px solid var(--main-color);
	border-radius: 2px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	flex-direction: column;
	display: flex;
	margin-bottom: 60px;
	margin-inline: auto;
	max-width: 680px;
	padding: 20px;
	width: 100%;
}

body.search-results .search-title p {
	font-size: 1.8rem;
}

@media screen and (max-width: 767px) {
	body.search-results .search-title p {
		font-size: 1.6rem;
	}
}
