/**
 * Corporate Food & Drink Business Page Styles (飲食事業)
 *
 * Mobile-first: base styles for 400px, desktop overrides via media queries.
 * Shared styles (biz-category) are in corporate-common.css.
 * This file contains only page-specific overrides and unique components.
 *
 *
 * @package Okayama
 */



.page-corporate-food {
	background-color: #f3f8e7;
}



.food-content {
	padding: 80px 20px 0;
	display: flex;
	flex-direction: column;
	gap: 80px;
}




.food-category__photos {
	display: flex;
	gap: 8px;
	margin-bottom: 24px;
}

.food-category__photo {
	flex: 1;
	min-width: 0;
	margin: 0;
}

.food-category__photo-img {
	width: 100%;
	height: 75px;
	object-fit: cover;
	display: block;
	border-radius: 8px;
}



.food-shop {
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding-top: 40px;
}

.food-shop:first-of-type {
	padding-top: 0;
}

.food-shop__info {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.food-shop__tag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 23px;
	padding: 0 12px;
	background-color: #6bb529;
	border-radius: 400px;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: clamp(12px, calc(11.2px + 0.2vw), 14px);
	font-weight: 400;
	color: #fff;
	line-height: 1.7;
	white-space: nowrap;
	align-self: flex-start;
	margin-bottom: 8px;
}

.food-shop__name {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: clamp(18px, calc(15.6px + 0.6vw), 24px);
	font-weight: 700;
	color: #6bb529;
	line-height: 1.6;
	margin: 0 0 2px;
}

.food-shop__location {
	display: flex;
	align-items: flex-start;
	gap: 4px;
	margin-bottom: 8px;
}

.food-shop__location-icon {
	flex-shrink: 0;
	margin-top: 3px;
}

.food-shop__location-text {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: clamp(12px, calc(11.2px + 0.2vw), 14px);
	font-weight: 700;
	color: #333;
	line-height: 1.7;
}

.food-shop__text {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: clamp(14px, calc(13.2px + 0.2vw), 16px);
	font-weight: 400;
	color: #333;
	line-height: 2;
	margin: 0 0 8px;
}

.food-shop__link {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: clamp(14px, calc(13.2px + 0.2vw), 16px);
	font-weight: 400;
	color: #333;
	line-height: 2;
	text-decoration: none;
	transition: opacity 0.3s ease;
}

.food-shop__link:hover {
	opacity: 0.7;
}

.food-shop__link-arrow {
	flex-shrink: 0;
	width: 15px;
	height: 15px;
}


.food-shop__images {
	display: flex;
	gap: 8px;
	align-items: flex-start;
}

.food-shop__photo-img {
	width: 141px;
	height: 152px;
	object-fit: cover;
	display: block;
	border-radius: 8px;
	flex-shrink: 0;
}

.food-shop__product-wrap {
	width: 141px;
	height: 152px;
	border-radius: 8px;
	overflow: hidden;
	flex-shrink: 0;
}

.food-shop__product-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}



.food-fc-grid {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.food-fc-item {
	margin: 0;
}

.food-fc-item__img {
	width: 100%;
	height: auto;
	aspect-ratio: 420 / 225;
	object-fit: cover;
	display: block;
	border-radius: 8px;
}

.food-fc-item__caption {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: clamp(12px, calc(11.2px + 0.2vw), 14px);
	font-weight: 400;
	color: #333;
	line-height: 1.7;
	text-align: center;
	margin-top: 8px;
}



@media (min-width: 768px) {

	.food-content {
		padding: 80px var(--corp-pad-side) 0;
		gap: 100px;
	}


	.food-category__photos {
		gap: 20px;
		margin-bottom: 56px;
	}

	.food-category__photo-img {
		height: 225px;
	}


	.food-shop {
		flex-direction: row;
		gap: 40px;
		padding-top: 56px;
	}

	.food-shop__info {
		flex: 0 1 260px;
		min-width: 180px;
	}

	.food-shop__tag {
		line-height: 1.6;
	}

	.food-shop__location-text {
		line-height: 1.6;
	}

	.food-shop__link {
		gap: 8px;
	}

	.food-shop__link-arrow {
		width: 20px;
		height: 20px;
	}


	.food-shop__images {
		flex: 1;
		min-width: 0;
		gap: 12px;
		align-items: flex-start;
	}

	.food-shop__photo-img {
		flex: 1;
		min-width: 0;
		max-width: 275px;
		height: auto;
		aspect-ratio: 275 / 296;
	}

	.food-shop__product-wrap {
		flex: 1;
		min-width: 0;
		max-width: 275px;
		height: auto;
		aspect-ratio: 275 / 296;
	}


	.food-fc-grid {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 20px;
	}

	.food-fc-item__caption {
		line-height: 1.6;
	}
}
