@charset "utf-8";

@import url("asset.css");

body {
	background-color: #fff;
	color: #323232;
	font-family: "Noto Sans", sans-serif;
	font-family: "Noto Sans JP", sans-serif;
	margin: 0;
	padding: 0;
	min-width: 1280px;
	letter-spacing: 0.08em;
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	-webkit-user-drag: none;
	-khtml-user-drag: none;
}
@media only screen and (max-width: 640px) {
	body {
		min-width: initial;
	}
}

img {
	image-rendering: -webkit-optimize-contrast;
	/*
	user-drag: none;
	-webkit-user-drag: none;
	-moz-user-select: none;
	*/
}

a {
	transition: all 0.2s 0s ease;
	text-decoration: none;
}
a:link,
a:visited {
	color: #333;
}
a:hover {
	color: #aaa;
}

sup {
	font-size: 0.6em;
	vertical-align: super;
}
sub {
	font-size: 50%;
}

@media only screen and (max-width: 640px) {
	.pcBr {
		display: none;
	}
}

/*---------------------------
       	北川追加コード
---------------------------*/
.pc {
	display: block !important;
}
.sp {
	display: none !important;
}

@media screen and (max-width: 640px) {
	.pc {
		display: none !important;
	}
	.sp {
		display: block !important;
	}
}

img {
	width: 100%;
}
li {
	list-style: none;
}

/*--メイン画像-*/
.main_bg {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;

	height: 280px;
	width: 100%;

	display: table;
	position: relative;
}
.main_bg div {
	background-color: #fff;
	padding: 16px 7% 0 30px;
	border-radius: 0 65px 0 0;
	position: absolute;
	bottom: 0;
	left: 0;
}
@media screen and (max-width: 640px) {
	.main_bg {
		height: 30vh;
	}
	.main_bg div {
		padding: 20px 10% 0 4%;
		border-radius: 0;
		border-top-right-radius: 60px;
		height: 3.3em;
	}
}

/*--フォント--*/

/*--メインタイトル--*/
.font_1 {
	font-size: 40px;
	font-weight: 400;
	letter-spacing: 0.3rem;
	color: #175684;

	text-align: center;
	display: table-cell;
	vertical-align: middle;
}

/*--サブタイトル--*/
.font_2 {
	font-size: 28px;
	font-weight: 400;
	letter-spacing: 0.12rem;
	line-height: 2.6rem;
	color: #323232;

	margin-bottom: 10px;
}
.font_3 {
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.1rem;
	color: #0098e1;
}

@media screen and (max-width: 640px) {
	/*--メインタイトル--*/
	.font_1 {
		font-size: 28px;
		font-weight: 400;
		letter-spacing: 0.3rem;
		color: #175684;

		text-align: center;
		display: table-cell;
		vertical-align: middle;
	}

	/*--サブタイトル--*/
	.font_2 {
		font-size: 24px;
		letter-spacing: 0.08rem;
		line-height: 1.8rem;

		margin-bottom: 8px;
	}
	.font_3 {
		font-size: 11px;
		letter-spacing: 0.05rem;
	}
}

/*--ボタン--*/
a.btnAllNews_blu,
a.btnAllNews_gre,
a.btnAllNews_pur,
a.btnAllNews_nav,
a.btnAllNews_ora,
a.btnAllNews_pin {
	transition: all 0.2s 0s ease;
	display: block;
	position: relative;
	border: 1px solid transparent;
	color: #fff;
	line-height: 1.5em;
	padding: 1em 25px 1em 15px;
	text-align: center;
	text-decoration: none;
	margin: 0 auto;
	width: 30%;
}
a.btnAllNews_blu:after,
a.btnAllNews_gre:after,
a.btnAllNews_pur:after,
a.btnAllNews_nav:after,
a.btnAllNews_ora:after,
a.btnAllNews_pin:after {
	content: "";
	position: absolute;
	top: 50%;
	right: 8px;
	transform: translate(-50%, -50%) rotate(45deg);
	width: 5px;
	height: 5px;
	border: 2px solid #fff;
	border-left: none;
	border-bottom: none;
}
a.btnAllNews_blu:hover,
a.btnAllNews_gre:hover,
a.btnAllNews_pur:hover,
a.btnAllNews_nav:hover,
a.btnAllNews_ora:hover,
a.btnAllNews_pin:hover {
	background: #fff;
}

/*--ボタン 色--*/
/*--水色--*/
a.btnAllNews_blu {
	background: #0097e0;
}
a.btnAllNews_blu:hover {
	border: 1px solid #0097e0;
	color: #0097e0;
}
a.btnAllNews_blu:hover:after {
	border-color: #0097e0;
}

/*--緑--*/
a.btnAllNews_gre {
	background: #006652;
}
a.btnAllNews_gre:hover {
	border: 1px solid #006652;
	color: #006652;
}
a.btnAllNews_gre:hover:after {
	border-color: #006652;
}

/*--紫--*/
a.btnAllNews_pur {
	background: #7030a0;
}
a.btnAllNews_pur:hover {
	border: 1px solid #7030a0;
	color: #7030a0;
}
a.btnAllNews_pur:hover:after {
	border-color: #7030a0;
}

/*--紺色--*/
a.btnAllNews_nav {
	background: #175684;
}
a.btnAllNews_nav:hover {
	border: 1px solid #175684;
	color: #175684;
}
a.btnAllNews_nav:hover:after {
	border-color: #175684;
}

/*--オレンジ--*/
a.btnAllNews_ora {
	background: #f5a20b;
}
a.btnAllNews_ora:hover {
	border: 1px solid #f5a20b;
	color: #f5a20b;
}
a.btnAllNews_ora:hover:after {
	border-color: #f5a20b;
}

/*--ピンク--*/
a.btnAllNews_pin {
	background: #ff7c80;
}
a.btnAllNews_pin:hover {
	border: 1px solid #ff7c80;
	color: #ff7c80;
}
a.btnAllNews_pin:hover:after {
	border-color: #ff7c80;
}

@media only screen and (max-width: 640px) {
	a.btnAllNews_blu,
	a.btnAllNews_gre,
	a.btnAllNews_pur,
	a.btnAllNews_nav,
	a.btnAllNews_ora,
	a.btnAllNews_pin {
		width: 70%;
	}
}

/*---------------------------
       	北川追加コード
---------------------------*/
.inner {
	/* コンテンツ幅指定用クラス header contents footer 共通で使用 */
	position: relative;
	clear: both;
	margin: 0 auto 8em;
	overflow: hidden;
	width: 1280px;
	/*width: 1465px;*/
}
.innerProductDetail {
	/* コンテンツ幅指定用クラス header contents footer 共通で使用 */
	position: relative;
	clear: both;
	margin: 0 auto 3em;
	overflow: hidden;
	width: 1180px;
	/*width: 1465px;*/
}
.inner.inner1760 {
	width: 1760px;
}
.inner.inner1465 {
	width: 1465px;
}
.inner.inner1100 {
	width: 1100px;
}
.inner.inner1180 {
	width: 1180px;
}
.inner.inner1280 {
	width: 1280px;
}
.inner.inner980 {
	width: 980px;
}
.inner2 {
	position: relative;
	margin: 0 auto;
	overflow: hidden;
	width: 1210px;
}
@media only screen and (max-width: 640px) {
	.inner {
		width: 95% !important;
		margin-right: auto;
		margin-left: auto;
		margin-bottom: 5em;
	}
	.inner2 {
		width: auto;
	}
	.inner1180 {
		width: 93%;
		margin: 0 auto;
	}
}

.mt130 {
	margin-top: 130px;
}
.pt40 {
	padding-top: 40px;
}

header {
	background-color: #fff;
	color: #000;
	margin: 0 0 30px 0;
	min-width: 100%;
}
header .inner {
	position: relative;
	padding: 20px 0 0;
	margin-bottom: 0;
}
header .inner_en {
	position: relative;
	padding: 30px 0 0;
	margin-bottom: 0;
}
header h1 {
	display: inline;
	font-size: 0.9em;
	margin: 0;
	padding: 0;
}
header h1 a {
	transition: all 0.5s 0s ease;
	display: inline-block;
	text-align: center;
	width: 180px;
}
header .inner_en h1 a {
	width: 210px;
}
header h1 a:link {
	color: #000;
	text-decoration: none;
}
header h1 a:visited,
header h1 a:hover {
	color: #333;
}
header h1 a img {
	transition: all 0.5s 0s ease;
	max-width: 100%;
	height: auto;
}
header h1 a:hover img {
	opacity: 0.8;
}
header h1 a span {
	display: block;
}
.headerSubImg {
	width: 160px;
	margin: 0.3em 0 0 10px;
}
.headerSubImg img {
	width: 100%;
}

.headerNaviGlobal {
	position: absolute;
	top: 64px;
	right: 270px;
}
header .inner_en .headerNaviGlobal {
	top: 60px;
}
.headerNaviGlobal a {
	color: #000;
	font-size: 1em;
	text-decoration: none;
	font-weight: 500;
}
.headerNaviGlobal li {
	position: relative;
	display: inline-block;
	background: #fff;
	border: 1px solid transparent;
	color: #fff;
	padding: 15px 15px 15px 15px;
}
.headerNaviGlobal li:last-child {
	padding-right: 0;
}
.headerNaviGlobal li:after {
	content: "";
	position: absolute;
	top: 52%;
	left: 2px;
	transform: translate(-50%, -50%) rotate(45deg);
	width: 6px;
	height: 6px;
	border: 1px solid #175684;
	border-left: none;
	border-bottom: none;
	transition: all 0.2s 0s ease;
}
/* 
.headerNaviGlobal li:hover {
}
*/
.headerNaviGlobal li:hover:after {
	left: 6px;
}
.headerNaviLanguage {
	position: absolute;
	top: 20px;
	right: 270px;
	font-size: 0;
}
.headerNaviLanguage li {
	display: inline-block;
}
.headerNaviLanguage a {
	display: inline-block;
	width: 73px;
	margin: 0 -3px 0 0;
	padding: 7px 0;
	color: #0097e0;
	font-size: 12px;
	text-align: center;
	text-decoration: none;
	transition: all 0.2s 0s ease;
	border: solid 1px #0089d2;
}
.headerNaviLanguage a:hover {
	color: #fff;
	background: #0097e0;
}
.headerBanner {
	position: absolute;
	top: 20px;
	right: 0;
}
.headerBanner li {
	display: inline-block;
	vertical-align: bottom;
	width: 120px;
}
.headerBanner li a {
	position: relative;
	display: block;
	transition: all 0.2s 0s ease;
	background: #aaa;
	border-radius: 5px;
	color: #fff;
	font-size: 0.8em;
	height: 55px;
	line-height: 1.3em;
	text-align: center;
	text-decoration: none;
	padding: 5px;
}
.headerBanner li a span {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}
.headerBanner li a.bnrMember {
	background: #0097e0;
	line-height: 1.5em;
}
.headerBanner li a.bnrMember:hover {
	background: #43b6ef;
}
.headerBanner li a.bnrInquiry {
	background: #175684;
}
.headerBanner li a.bnrInquiry:hover {
	background: #1e75b3;
}
.headerBanner li a.bnrInquiry img {
	padding-top: 7px;
	width: 32%;
}
@media only screen and (max-width: 640px) {
	header h1 {
		display: block;
		text-align: center;
		padding-top: 0;
	}
	header h1 a {
		transition: all 0.5s 0s ease;
		display: inline-block;
		text-align: center;
		width: 150px;
	}
	.headerSubImg {
		width: 130px;
		margin: 0.3em auto 0;
	}
	.headerNaviGlobal {
		display: none;
	}
	.headerNaviLanguage {
		display: none;
	}
	.headerBanner {
		display: none;
	}
}

footer {
	background: #f4f4f4;
	clear: both;
	font-size: 0.9em;
	padding: 5em 0 0;
}
footer > .inner {
	margin-bottom: 0;
	padding-bottom: 3em;
}
.btnTop {
	position: fixed;
	right: 20px;
	bottom: 85px;
	display: none;
	z-index: 999;
}
.btnTop a {
	display: block;
	width: 50px;
	height: 50px;
}
.btnTop a:hover {
	opacity: 0.7;
}
.footerLogoBox {
	color: #0097e0;
	font-size: 1.2em;
	float: left;
	margin-right: 2.5em;
	width: 25%;
}
.footerLogoBox a {
	color: #008ad3;
	text-decoration: none;
	transition: all 0.2s 0s ease;
}
.footerLogoBox a:hover {
	color: #000;
}
.footerLogo {
	width: 45%;
	max-width: 100%;
	margin-bottom: 1.5em;
}
.footerInquiry {
	float: left;
	color: #175684;
}
.footerInquiry.setMaxWidth {
	max-width: 360px;
}
.footerCertification {
	float: right;
	max-width: 450px;
}
.footerCertification ul {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -10px;
}
.footerCertification li {
	flex: 1 0 33.3333%;
	max-width: 33.3333%;
	margin: 10px;
	background: #fff;
}
.footerInquiry p {
	line-height: 1.5em;
	margin-bottom: 1em;
}
.footerContact {
	line-height: 1.5em;
	margin-bottom: 1em;
}
.footerContact th,
.footerContact td {
	padding: 0.3em 0.1em;
	font-weight: 500;
}
.footerContact th {
	text-align: justify;
	text-align-last: justify;
	padding-right: 1em;
}
a.footerBtnInquiry {
	display: block;
	transition: all 0.2s 0s ease;
	background: #1580cf;
	border-radius: 5px;
	color: #fff;
	font-size: 0.9em;
	text-align: center;
	text-decoration: none;
	padding: 1.5em 0 1.5em 2em;
}
a.footerBtnInquiry:hover {
	background: #5296c7;
}
a.footerBtnInquiry span {
	position: relative;
}
a.footerBtnInquiry span:before {
	position: absolute;
	top: 50%;
	left: -50px;
	transform: translateY(-35%);
	display: block;
	content: "";
	background-image: url(../images/asInquiry.png);
	background-repeat: no-repeat;
	background-size: contain;
	height: 40px;
	width: 40px;
}
.footerNaviGlobal {
	clear: both;
	font-size: 1.2em;
	padding-top: 5em;
	text-align: center;
}
.footerNaviGlobal li {
	display: inline-block;
}
.footerNaviGlobal li a {
	position: relative;
	border: 1px solid transparent;
	color: #175684;
	text-decoration: none;
	padding: 15px 15px 15px 15px;
	margin-right: 2em;
}
.footerNaviGlobal li a:after {
	transition: all 0.5s 0s ease;
	content: "";
	position: absolute;
	top: 50%;
	left: -5px;
	transform: translate(-50%, -50%) rotate(45deg);
	width: 5px;
	height: 5px;
	border: 1px solid #175684;
	border-left: none;
	border-bottom: none;
}
.footerNaviGlobal li a:hover:after {
	left: -2px;
}
.copyright {
	background: #0097e0;
	color: #fff;
	font-size: 0.8em;
	line-height: 1.5em;
	padding: 20px 0;
	text-align: center;
}
@media only screen and (max-width: 640px) {
	.footerLogoBox {
		margin-bottom: 2em;
		width: 100%;
	}
	.footerLogo {
		width: 160px;
		margin-bottom: 0.6em;
	}
	.footerContact {
		font-size: 0.9em;
	}
	.footerNaviGlobal {
		padding-top: 3em;
	}
	.footerNaviGlobal > li {
		display: block;
		text-align: left;
		margin: 0 0 1em 2em;
	}
	.footerCertification {
		float: none;
		clear: both;
		width: 100%;
		padding-top: 30px;
	}
	.footerCertification ul {
		justify-content: center;
	}
	.footerCertification li {
		flex: 1 0 40%;
		max-width: 40%;
	}
}

.pageCatch {
	position: relative;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	height: 280px;
	margin-bottom: 7em;
	width: 100%;
	min-width: 1280px;
}
.pageCatchTitle {
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: min(2.4em, 10vw);
	font-weight: normal;
	color: #175684;
	text-align: center;
	width: 100%;
	letter-spacing: 0.2em;
}
.pageCatchSubTitle {
	box-sizing: border-box;
	position: absolute;
	left: 0;
	bottom: 0;
	display: block;
	width: 30%;
	/*min-width: 630px;*/
	height: 3em;
	font-size: min(1.8em, 5vw);
	font-weight: 500;
	line-height: 1.5em;
	letter-spacing: 0.1em;
	background-color: #fff;
	border-top-right-radius: 100px;
}
.pageCatchSubTitle > span {
	position: absolute;
	top: 60%;
	left: 30px;
	transform: translateY(-50%);
	width: 100%;
	display: inline-block;
}
.pageCatchSubTitleIcon {
	vertical-align: middle;
	margin: 0 0.5em 0.15em 0.8em;
	width: 1em;
}
@media only screen and (max-width: 640px) {
	.pageCatch {
		min-width: 0;
		height: 200px;
		margin-bottom: 7em;
	}
	.pageCatchTitle {
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		font-size: min(1.8em, 10vw);
	}
	.nonSubTitle {
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}
	.pageCatchSubTitle {
		border-top-right-radius: 60px;
		height: 3.3em;
		min-width: initial;
		width: 70%;
		font-size: min(1.8em, 5vw);
		font-weight: 400;
	}
	.pageCatchSubTitle > span {
		position: absolute;
		left: 5%;
		transform: translate(0, -50%);
		display: block;
		width: 90%;
	}
	.pageCatchSubTitleIcon {
		margin: 0 0.3em 0.15em 0.8em;
	}
}

.pageCatchSubTitle2 {
	box-sizing: border-box;
	position: absolute;
	top: calc(280px - 3em);
	left: 0;
	display: block;
	background-color: #fff;
	border-top-right-radius: 100px;
	font-size: min(1.8em, 5vw);
	font-weight: 500;
	height: 3em;
	line-height: 1.5em;
	width: 30%;
}
.pageCatchSubTitle2 > span {
	position: absolute;
	top: 60%;
	left: 30px;
	transform: translateY(-50%);
	display: inline-block;
	min-width: 360px;
}
.pageCatchSubTitle2 strong {
	display: block;
	color: #0098e1;
	font-size: 0.5em;
	font-weight: normal;
}
.pageCatchSubTitle2Icon {
	vertical-align: bottom;
	margin: 0 0.5em 0.02em 0;
	width: 0.9em;
}
.pageCatchSubTitle2Sdgs {
	position: absolute;
	bottom: -80px;
	left: 0;
	width: 68px;
	height: auto;
}

.pageCatchSubTitle3 {
	box-sizing: border-box;
	position: absolute;
	left: 0;
	bottom: 0;
	display: block;
	background-color: #fff;
	border-top-right-radius: 100px;
	font-size: min(1.8em, 5vw);
	font-weight: 500;
	width: 40%;
	height: 3em;
	line-height: 1.5em;
}
.pageCatchSubTitle3 > span {
	position: absolute;
	top: 70%;
	left: 40%;
	transform: translateX(-50%);
	display: inline-block;
}
.pageCatchSubTitle3Icon {
	margin: 0 0.5em 0.15em 0;
	width: 1em;
	vertical-align: middle;
}
.pageCatchSubTitleCh {
	position: absolute;
	top: -50px;
	left: 0;
	font-size: 0.7em;
	font-weight: 400;
}
.pageCatchSubTitleSdgs {
	position: absolute;
	bottom: -100px;
	width: 800px;
	max-width: 95vw;
}
.pageCatchSubTitleSdgs img {
	width: 66px;
	height: auto;
}
.pageCatchSubTitle4 {
	box-sizing: border-box;
	position: absolute;
	top: calc(280px - 3em);
	left: 0;
	display: block;
	background-color: #fff;
	border-top-right-radius: 100px;
	font-size: min(1.8em, 5vw);
	font-weight: 500;
	height: 3em;
	line-height: 1.5em;
	width: 30%;
}
.pageCatchSubTitle4 > span {
	position: absolute;
	top: 86%;
	left: 30px;
	transform: translateY(-50%);
	display: inline-block;
	min-width: 360px;
}
.pageCatchSubTitle4 strong {
	display: block;
	color: #0098e1;
	font-size: 0.5em;
	font-weight: normal;
}
@media only screen and (max-width: 640px) {
	.pageCatchSubTitle2 {
		border-top-right-radius: 60px;
		height: 3.3em;
		min-width: initial;
		width: 70%;
		font-weight: 400;
	}
	.pageCatchSubTitle2 > span {
		display: block;
		position: absolute;
		top: 60%;
		left: 5%;
		transform: translateY(-50%);
		width: 90%;
	}
	.pageCatchSubTitle3 {
		border-top-right-radius: 60px;
		height: 3.3em;
		min-width: initial;
		width: 70%;
		font-weight: 400;
	}
	.pageCatchSubTitle3 > span {
		display: block;
		position: absolute;
		top: 86%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 90%;
	}
	.pageCatchSubTitle4 {
		border-top-right-radius: 60px;
		height: 3.3em;
		min-width: initial;
		width: 90%;
		line-height: 1.3em;
		font-weight: 400;
	}
	.pageCatchSubTitle4 > span {
		display: block;
		position: absolute;
		left: 5%;
		transform: translateY(-50%);
		width: 90%;
	}
	.pageCatchSubTitleCh {
		top: -1.8em;
		left: 0;
	}
	.pageCatchSubTitleSdgs {
		bottom: -120px;
	}
	.pageCatchSubTitleSdgs img {
		width: 33px;
	}
	.pageCatchSubTitle2Sdgs {
		display: none;
	}
	.wh90 {
		width: 90%;
	}
}

.logoutLink {
	position: absolute;
	right: 0;
	top: 110%;
	font-size: 0.9em;
	line-height: 1.5em;
	margin: 1em 1em 0 0;
}
.locationList {
	position: absolute;
	right: 0;
	top: 100%;
	margin: 1em 1em 0 0;
	font-size: 0.9em;
	line-height: 1.5em;
	letter-spacing: 0;
}
.locationList > li {
	display: inline-block;
}
.home {
	padding-right: 1em !important;
}
.locationList a {
	position: relative;
	transition: all 0.5s 0s ease;
	color: #636363;
	margin-right: 0.8em;
	padding-right: 0.5em;
	text-decoration: none;
}
.locationList a:after {
	content: ">";
	position: absolute;
	right: -10px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 0.9em;
}
.locationList li:last-child a {
	padding-right: 0;
	margin-right: 0;
}
.locationList li:last-child a:after {
	display: none;
}
.locationList a:hover {
	color: #97999b;
}
@media only screen and (max-width: 640px) {
	.locationList {
		width: 90%;
		margin: 1em 0.5em 1em 0 0;
		font-size: 0.8em;
		text-align: right;
	}
	.logoutLink {
		font-size: 0.8em;
	}
}

.drawer-hamburger {
	display: none !important;
}
@media only screen and (max-width: 640px) {
	.drawer-hamburger {
		display: block !important;
	}
}
#hmb_box {
	padding: 10vmin 10vmin;
}
.hmbMenuLanguage {
	font-size: 0;
}
.hmbMenuLanguage > li {
	display: block;
	width: 70px;
	float: left;
}
.hmbMenuLanguage > li a {
	display: block;
	transition: all 0.2s 0s ease;
	border: 1px solid #008ad3;
	color: #008ad3;
	font-size: 12px;
	margin-right: -1px;
	padding: 0.5em 1em;
	text-decoration: none;
	text-align: center;
}
.hmbMenuLanguage > li a:hover {
	border-color: transparent;
	background-color: #008ad3;
	color: #fff;
}

.hmbMenuList {
	clear: both;
	margin: 3em 0;
}
.hmbMenuList > li {
	position: relative;
	border-bottom: 1px solid #e6e6e6;
	font-weight: 400;
	overflow: hidden;
}
.hmbMenuList a {
	display: block;
	cursor: pointer;
	transition: all 0.2s 0s ease;
	color: #323232;
	font-weight: 500;
	padding: 1.5em 0 1.5em 1.5em;
	text-decoration: none;
}
.hmbMenuList .food_additive_pharm {
	color: #0095de;
}
.hmbMenuList .cosme_quasi {
	color: #ff809c;
}
.hmbMenuList .riceoil_fertilizer_feed {
	color: #ffbe4d;
}
.hmbMenuList .general_cons {
	color: #16a476;
}
.hmbMenuList .new {
	color: #ff8e78;
}
.hmbMenuList > li > a:before {
	transition: all 0.2s 0s ease;
	content: "";
	position: absolute;
	top: 1.7em;
	left: 3px;
	transform: rotate(45deg);
	border-top: 2px solid #175684;
	border-right: 2px solid #175684;
	width: 6px;
	height: 6px;
	z-index: 10;
}
.hmbMenuList > li.active > a:before {
	transform: rotate(135deg);
}
.hmbMenuList a:hover {
	opacity: 0.7;
}
.hmbMenuList > li > ul > li {
	transition: all 0.2s 0s ease;
	overflow: hidden;
	height: 0;
}
.hmbMenuList > li.active > ul {
	margin-bottom: 1em;
}
.hmbMenuList > li.active > ul > li {
	height: 2.5em;
}
.hmbMenuList > li > ul a {
	padding: 0.2em 0 0.8em 2em;
}

.hmbMenuSubList {
	margin: 0 auto 3em;
	width: 92%;
}
.hmbMenuSubList > li {
	margin-bottom: 1em;
}
a.hmbMenuBanner {
	display: block;
	position: relative;
	background: #008ad3;
	border: 1px solid transparent;
	border-radius: 5px;
	color: #fff;
	font-size: 1.1em;
	font-size: min(1.1em, 4vmin);
	font-weight: 400;
	text-decoration: none;
	padding: 1.5em 1.5em 1.5em 7vmin;
}
a.hmbMenuBanner:after {
	content: "";
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translate(-50%, -50%) rotate(45deg);
	width: 8px;
	height: 8px;
	border: 2px solid #fff;
	border-left: none;
	border-bottom: none;
}
a.hmbMenuBanner:hover {
	opacity: 0.7;
}
a.hmbMenuBanner.inquiry {
	background-color: #175684;
}
.hmbMenuBannerIcon {
	margin-right: 0.8em;
	vertical-align: middle;
	width: 15%;
}

@media only screen and (max-width: 640px) {
	.scroll table {
		width: 99%;
	}
	.scroll {
		overflow: auto;
		/*white-space: nowrap;*/
	}
	.scroll::-webkit-scrollbar {
		height: 5px;
	}
	.scroll::-webkit-scrollbar-track {
		background: #f1f1f1;
	}
	.scroll::-webkit-scrollbar-thumb {
		background: #bcbcbc;
	}
}

::placeholder {
	color: #c1c1c1;
	font-weight: 300;
	vertical-align: middle;
}
:focus {
	outline: none;
}

/* レフトメニューの固定 */
.fixedLeftMenu {
	display: none;
	transition: 0.5s;
}
.leftMenuFixed {
	display: block;
	position: fixed;
	top: 2em;
	left: 3em;
	padding: 0;
	width: 200px;
	z-index: 1000;
	transition: 0.5s;
}
.afterScroll {
	opacity: 0;
}
@media only screen and (max-width: 640px) {
	.leftMenuFixed {
		display: none;
	}
}
/* レフトメニューの固定 */
.fixedProductSideMenu {
	position: fixed;
	top: 0;
	width: 100%; /*横幅指定*/
	z-index: 999;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #f0f8fc;
	text-align: center;
	padding: 10px 0;
}
.default {
	display: none !important;
}

/*fixedでブロックがなくなるのではじめの要素のトップに余白を持たせる*/
section#area-1 {
	padding-top: 100px;
}

/*==ふわっと出現させるためのCSS*/

/*　上に上がる動き　*/

#fixedIcon.UpMove {
	position: fixed;
	width: 100%;
	animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
	from {
		opacity: 1;
		transform: translateY(0);
	}
	to {
		opacity: 0;
		transform: translateY(-100px);
	}
}

/*　下に下がる動き　*/

#fixedIcon.DownMove {
	position: fixed;
	width: 100%;
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime {
	from {
		opacity: 0;
		transform: translateY(-100px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* カテゴリー別 見出し */
/* 新製品 */
.addColorNewIcon {
	display: inline-block;
	margin-bottom: 10px;
	padding: 10px 20px;
	font-size: 1.3em;
	font-weight: 500;
	letter-spacing: 0.1em;
	color: #fff;
	background-color: #f74040;
	box-sizing: border-box;
}
.addColorNewLabel {
	background-color: #fff2f2 !important;
}
/* 機能性表示食品対応原料 */
.addColorFuncIcon {
	display: inline-block;
	margin-bottom: 10px;
	padding: 10px 20px;
	font-size: 1.3em;
	font-weight: 500;
	letter-spacing: 0.1em;
	color: #fff;
	background-color: #f5a20b;
}
.addColorFuncLabel {
	background-color: #fff2d9 !important;
}
/* 一般食品向け機能性食品原料 */
.addColorGeneralFuncIcon {
	display: inline-block;
	margin-bottom: 10px;
	padding: 10px 20px;
	font-size: 1.3em;
	font-weight: 500;
	letter-spacing: 0.1em;
	color: #fff;
	background-color: #f5d000;
}
.addColorGeneralFuncLabel {
	background-color: #fffbe3 !important;
}
/* 食品添加物 */
.addColorFoodAddIcon {
	display: inline-block;
	margin-bottom: 10px;
	padding: 10px 20px;
	font-size: 1.3em;
	font-weight: 500;
	letter-spacing: 0.1em;
	color: #fff;
	background-color: #6d51c2;
}
.addColorFoodAddLabel {
	background-color: #f2edff !important;
}
/* 医薬品原料 */
.addColorMdcnIcon {
	display: inline-block;
	margin-bottom: 10px;
	padding: 10px 20px;
	font-size: 1.3em;
	font-weight: 500;
	letter-spacing: 0.1em;
	color: #fff;
	background-color: #165684;
}
.addColorMdcnLabel {
	background-color: #f0f8fc !important;
}
/* 医薬部外品原料 */
.addColorOmedIcon {
	display: inline-block;
	margin-bottom: 10px;
	padding: 10px 20px;
	font-size: 1.3em;
	font-weight: 500;
	letter-spacing: 0.1em;
	color: #fff;
	background-color: #ff7c80;
}
.addColorOmedLabel {
	background-color: #fff2f2 !important;
}
/* 化粧品原料・医薬部外品原料 */
.addColorCosmeIcon {
	display: inline-block;
	margin-bottom: 10px;
	padding: 10px 20px;
	font-size: 1.3em;
	font-weight: 500;
	letter-spacing: 0.1em;
	color: #fff;
	background-color: #ff7c80;
}
.addColorCosmeLabel {
	background-color: #fff2f2 !important;
}

/* 訴求別検索ポップアップ */
.popup {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	transition: 0.6s;
}
.popup.is-show {
	opacity: 1;
	visibility: visible;
}
.popup-inner {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 80%;
	padding: 0;
	z-index: 2;
}
.black-background {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	z-index: 1;
	cursor: pointer;
}

.approvalScreen {
	box-sizing: border-box;
	background-color: #f0f8fc;
	padding: 60px;
	margin: 0 auto;
	width: 80%;
	max-width: 100%;
}
.approvalScreen p {
	font-size: 1em;
	line-height: 2em;
	margin-bottom: 25px;
}
p.approvalScreenNotice {
	color: #e60012;
	font-size: 1.2em;
	font-weight: 600;
	margin-bottom: 40px;
}
.approvalScreenSelect {
	display: flex;
	justify-content: space-between;
	margin: 0 auto;
	width: 70%;
	max-width: 100%;
}
.approvalScreenSelect > button {
	line-height: 100px;
	width: 46%;
}
button.approvalScreenSelectBtn {
	position: relative;
	display: block;
	height: 100px;
	color: #fff;
	font-size: 1.7em;
	font-weight: 500;
	text-align: center;
	background-color: #4097db;
	border: 1px solid transparent;
	border-radius: 10px;
	transition: all 0.2s 0s ease;
}
button.approvalScreenSelectBtn:hover {
	background-color: #fff;
	border: 1px solid #4097db;
	color: #4097db;
	text-decoration: none;
}
button.approvalScreenSelectBtn a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
@media only screen and (max-width: 640px) {
	.popup-inner {
		text-align: justify;
		width: 90%;
	}
	.approvalScreen {
		padding: 30px 20px;
		width: 100%;
		max-width: 100%;
	}
	.approvalScreen p {
		font-size: 0.8em;
		line-height: 1.6em;
		margin-bottom: 20px;
	}
	p.approvalScreenNotice {
		font-size: 0.9em;
		margin-bottom: 20px;
	}
	.approvalScreenSelect {
		width: 100%;
	}
	.approvalScreenSelect > button {
		line-height: 60px;
		width: 46%;
	}
	button.approvalScreenSelectBtn {
		height: 60px;
		font-size: 1.1em;
	}
}
/* custom header */
.lang-item a {
	border-right: none;
}
