.ingredients {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
}

.ingredients .ingredientsList {
	display: flex;
	flex-flow: row wrap;
	margin-top: -16px;
}

.ingredients .ingredientsList__item {
	position: relative;
	overflow: hidden;
	width: calc((100% - 48px) / 4);
	margin-top: 16px;
	margin-left: 16px;
}

.ingredients .item__link {
	cursor: pointer;
}

.ingredients .item__pic {
	width: 100%;
	height: auto;
}

.ingredients .item__desc {
	position: absolute;
	top: 50%;
	left: 50%;

	width: 100%;

	transform: translate(-50%, -50%);
	text-align: center;
}

.ingredients .desc__titleJa, .desc__effect {
	font-size: 16px;
	font-weight: 700;
}

.ingredients .desc__titleEn {
	font-size: 12px;
}

.ingredients .textColor--white {
	color: #ffffff;
}

@media screen and (min-width: 768px) {
	.ingredients .ingredientsList__item:nth-child(4n + 1) {
		margin-left: 0;
	}
	.ingredients .item__pic {
		transition-duration: 1s;
	}
	.ingredients .item__link:hover .item__pic {
		transition-duration: 1s;
		transform: scale(1.1);

		opacity: 0.7;
	}
	.ingredients .desc__titleJa, .desc__effect {
		font-weight: 700;
	}
}

@media screen and (max-width: 767px) {
	.ingredients {
		width: 92%;
	}
  .ingredients .ingredientsList {
    margin-left: 0;
  }
	.ingredients .ingredientsList__item {
		width: calc((100% - 16px) / 2);
	}
	.ingredients .ingredientsList__item:nth-child(2n + 1) {
		margin-left: 0;
	}
}
