/* ================================================
   about.css - 私たちについてページ
================================================ */

/* ================================
   事業内容：大タイトル（l-container外・中央）
================================ */
.sec-business__title-wrap {
	width: 90%;
	margin: 0 auto var(--spacing-lg);
	padding-top: var(--spacing-xl);
	background-color: var(--color-bg);
	/* wave-divider直後：page-heroの藁青が透けるのを防ぐ */
}

.sec-business__title-group {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}

.sec-business__main-title {
	font-size: clamp(1.75rem, 4vw, 3.25rem);
	font-weight: 500;
	color: var(--color-primary);
	margin: 0;
	text-align: center;
}

.sec-business__title-en {
	display: inline-block;
	font-family: var(--font-en);
	font-size: clamp(0.8rem, 1.5vw, 1.2rem);
	font-weight: 400;
	letter-spacing: 0.2em;
	color: #fff;
	background-color: var(--color-primary);
	padding: 0.35em 1.5em;
	border-radius: 9999px;
	margin: 0;
	line-height: 1.4;
}

/* ================================
   事業内容：イントロ（左テキスト・右画像・全幅）
================================ */
.sec-business {
	background-color: var(--color-bg);
	padding: 0;
}

.sec-business__intro {
	display: flex;
	flex-direction: column-reverse;
	/* 1024未満：画像上・テキスト下 */
	gap: 0;
}

@media (min-width: 1024px) {
	.sec-business__intro {
		flex-direction: row;
		align-items: stretch;
	}
}

.sec-business__intro-text {
	padding: 3rem 5%;
	flex: 1;
	background-color: var(--color-primary);
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
}

@media (min-width: 1024px) {
	.sec-business__intro-text {
		padding: 3rem 4rem 3rem 5%;
	}
}

.sec-business__intro-text .c-en-label {
	color: rgba(255, 255, 255, 0.7);
}

.sec-business__subtitle {
	font-size: clamp(1.4rem, 3vw, 2rem);
	font-weight: 500;
	color: #fff;
	margin: 0;
}

.sec-business__subtitle--sub {
	color: #ffffff;
}

.sec-business__subtitle--main {
	color: #e8d5a3;
}

.sec-business__intro-text p {
	color: rgba(255, 255, 255, 0.85);
	font-weight: 300;
	line-height: 1.9;
	margin: 0;
	font-size: clamp(1rem, 0.93rem + 0.3vw, 1.2rem);
}

/* ================================
   事業内容：バッジ
================================ */
.sec-business__intro-badge {
	position: absolute;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background-color: #e8d5a3;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.2rem;
	z-index: 2;
	top: -32px;
	left: 50%;
	transform: translateX(-50%);
}

.sec-business__intro-badge-sub {
	font-size: 0.5rem;
	font-weight: 500;
	color: #1a4a70;
	letter-spacing: 0.05em;
	line-height: 1;
}

.sec-business__intro-badge-main {
	font-size: 1.1rem;
	font-weight: 500;
	color: var(--color-primary-dark);
	line-height: 1;
}

@media (min-width: 375px) {
	.sec-business__intro-badge {
		width: 80px;
		height: 80px;
		top: -40px;
	}

	.sec-business__intro-badge-sub {
		font-size: 0.65rem;
	}

	.sec-business__intro-badge-main {
		font-size: 1.4rem;
	}
}

@media (min-width: 576px) {
	.sec-business__intro-badge {
		width: 100px;
		height: 100px;
		top: -50px;
	}

	.sec-business__intro-badge-sub {
		font-size: 0.75rem;
	}

	.sec-business__intro-badge-main {
		font-size: clamp(1.8rem, 3.2vw, 2.4rem);
	}
}

@media (min-width: 1024px) {
	.sec-business__intro-badge {
		width: 130px;
		height: 130px;
		top: 1.5rem;
		right: 1.5rem;
		left: auto;
		transform: none;
	}

	.sec-business__intro-badge-sub {
		font-size: 0.75rem;
	}

	.sec-business__intro-badge-main {
		font-size: 2.4rem;
	}
}

/* ================================
   事業内容：画像エリア
================================ */
.sec-business__intro-image {
	flex: 0 0 50%;
	width: 100%;
}

@media (min-width: 1024px) {
	.sec-business__intro-image {
		width: 50%;
		background-color: var(--color-primary);
		padding: 1.5rem;
	}
}

.sec-business__intro-image img {
	width: 100%;
	display: block;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

@media (min-width: 1024px) {
	.sec-business__intro-image img {
		aspect-ratio: unset;
		height: 100%;
		object-fit: cover;
		border-radius: var(--radius-lg);
	}
}

/* sec-business → sec-commitment */
.wave-divider--business-to-commitment {
	--wave-img: url('../images/lightblue-wave-center.webp');
	background-color: var(--color-primary);
	/* 1024未満：intro-textと同色 */
}

/* ================================
   交配〜出荷の流れ
================================ */
.sec-flow {
	background-color: var(--color-bg-skyblue);
}

.sec-flow__title {
	font-size: clamp(1.4rem, 3vw, 2rem);
	color: var(--color-primary);
	margin: 0;
}

.sec-flow__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 2rem;
	/* 576未満 */
}

@media (min-width: 576px) {
	.sec-flow__list {
		gap: 3rem;
	}
}

@media (min-width: 768px) {
	.sec-flow__list {
		gap: 4rem;
	}
}

/* ---- SP/MD（〜1023px）：縦のドット線 --*/
.sec-flow__list {
	position: relative;
}

.sec-flow__list::before {
	content: '';
	position: absolute;
	top: 30px;
	/* 最初のnumの中心（60px/2） */
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	width: 6px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='28'%3E%3Crect x='1' y='9' width='4' height='10' rx='2' fill='white'/%3E%3C/svg%3E");
	background-size: 6px 22px;
	background-repeat: repeat-y;
	background-position: center top;
	opacity: 0.6;
	z-index: 0;
}

/* ---- SP/MD（1023px未満）：カードスタイル ---- */
.sec-flow__item {
	position: relative;
	background: #fff;
	border-radius: var(--radius-md);
	padding: 0 0 1.5rem;
	border-bottom: none;
	display: flex;
	flex-direction: column;
	margin-top: 1.5rem;
}

/* 画像：カード上部にフロー配置 */
.sec-flow__image {
	width: 100%;
	order: 0;
}

.sec-flow__image img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	object-position: center;
	/* デフォルト：03以降 */
	display: block;
	border-radius: var(--radius-md) var(--radius-md) 0 0;
}

@media (min-width: 768px) {
	.sec-flow__image img {
		aspect-ratio: 2 / 1;
	}
}

/* flow-01 */
.sec-flow__list > li:nth-child(1) .sec-flow__image img {
	object-position: center top;
}

/* flow-02 */
.sec-flow__list > li:nth-child(2) .sec-flow__image img {
	object-position: center 60%;
}

/* 番号バッジ：画像の下・中央 */
.sec-flow__num {
	position: relative;
	top: auto;
	left: auto;
	transform: none;
	width: 60px;
	height: 60px;
	background-color: transparent;
	color: #fff;
	font-size: 1.25rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
	order: 1;
	margin: -1.5rem auto 0;
}

.sec-flow__num::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 120%;
	height: 120%;
	/* 1024未満 */
	background-image: url('../images/sub-pig-budge.png');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	z-index: -1;
	pointer-events: none;
}

/* テキスト */
.sec-flow__body {
	order: 2;
	padding: 1rem 1.25rem 0;
}

.sec-flow__body h3 {
	font-size: clamp(1.1rem, 2.5vw, 1.25rem);
	font-weight: 500;
	color: var(--color-primary-dark);
	margin: 0 0 0.5rem;
	text-align: center;
}

.sec-flow__body p {
	font-size: clamp(0.925rem, 2vw, 0.975rem);
	margin: 0;
}

@media (min-width: 768px) {
	.sec-flow__body p {
		font-size: 1rem;
	}

	.sec-flow__body {
		padding-left: 2rem;
		padding-right: 2rem;
	}
}

/* イラスト：右下に絶対配置 */
.sec-flow__illust {
	position: absolute;
	bottom: -1.5rem;
	right: -0.75rem;
	width: 80px;
	z-index: 1;
	display: block;
}

.sec-flow__illust img {
	width: 100%;
	height: auto;
	display: block;
}

/* プレースホルダー */
.sec-flow__illust:empty {
	width: 70px;
	height: 70px;
	border: 2px dashed var(--color-border);
	border-radius: var(--radius-md);
	background-color: var(--color-primary-light);
}

/* 偶数アイテム（02,04）：1024未満も右側に配置（奇数と統一） */

/* 画像切り替え：02はSPでleft-mini-pig / PCでmini-pig-right、
              04はSPでfat-pig / PCでright-fat-pig */
.sec-flow__illust img.sec-flow__illust-pc {
	display: none;
}

@media (min-width: 1024px) {
	.sec-flow__illust img.sec-flow__illust-sp {
		display: none;
	}

	.sec-flow__illust img.sec-flow__illust-pc {
		display: block;
	}
}

/* ---- PC（1024px〜）：左右交互・番号中央・画像はテキスト上に絶対配置 ---- */
@media (min-width: 1024px) {
	.sec-flow__list {
		gap: 0;
	}

	.sec-flow__item {
		position: relative;
		display: grid;
		grid-template-columns: 1fr 80px 1fr;
		grid-template-rows: auto;
		padding: 0 0 3rem;
		margin-top: 0;
		background: none;
		box-shadow: none;
		border-radius: 0;
		border-bottom: none;
		flex-direction: unset;
		align-items: unset;
		gap: 0;
	}

	/* PC：リスト全体に縦線を1本通す（SPの::beforeを上書き） */
	.sec-flow__list::before {
		content: '';
		position: absolute;
		top: 40px;
		/* 最初のnumの中心から */
		bottom: 40px;
		/* 最後のnumの中心まで */
		left: calc((100% - 80px) / 2 + 40px);
		transform: translateX(-50%);
		width: 6px;
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='28'%3E%3Crect x='1' y='9' width='4' height='10' rx='2' fill='white'/%3E%3C/svg%3E");
		background-size: 6px 22px;
		background-repeat: repeat-y;
		background-position: center top;
		opacity: 0.6;
		z-index: 0;
	}

	/* 番号：常に中央列に配置 */
	.sec-flow__num::before {
		width: 110%;
		height: 110%;
	}

	.sec-flow__num {
		position: relative;
		top: auto;
		left: auto;
		transform: none;
		order: unset;
		margin: 0;
		z-index: 1;
		grid-column: 2;
		grid-row: 1;
		align-self: center;
		justify-self: center;
		width: 80px;
		height: 80px;
		font-size: 1.5rem;
	}

	/* 画像：絶対配置でテキストの上に重ねる・幅を小さく */
	.sec-flow__image {
		position: absolute;
		top: 0;
		left: auto;
		width: calc((100% - 80px) / 2 * 0.6);
		z-index: auto;
		order: unset;
	}

	.sec-flow__image img {
		width: 100%;
		aspect-ratio: 4 / 3;
		border-radius: var(--radius-md);
		box-shadow: none;
	}

	/* イラスト：PCではリセット */
	.sec-flow__illust {
		position: static;
		bottom: auto;
		right: auto;
		width: auto;
	}

	/* テキスト：画像の高さ分だけpadding-topで逃げる */
	.sec-flow__body h3 {
		text-align: left;
	}

	.sec-flow__body {
		/* 画像幅 = 列幅 * 0.6、aspect-ratio 4/3 なので 高さ = 幅 * 3/4 */
		padding-top: calc((100% * 0.6) * 3 / 4 + 1.5rem);
		align-self: start;
	}

	/* イラスト：テキストがない側のグリッド列に配置（PCは再表示） */
	.sec-flow__illust {
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.sec-flow__illust img {
		width: 45%;
		height: auto;
		display: block;
	}

	/* プレースホルダー：画像未配置時の点線枠 */
	.sec-flow__illust:empty {
		aspect-ratio: 1 / 1;
		width: 50%;
		margin: auto;
		border: 2px dashed var(--color-border);
		border-radius: var(--radius-md);
		background-color: rgba(255, 255, 255, 0.4);
	}

	/* 奇数：イラストは右列 */
	.sec-flow__item:nth-child(odd) .sec-flow__illust {
		grid-column: 3;
		grid-row: 1;
	}

	/* 偶数：イラストは左列 */
	.sec-flow__item:nth-child(even) .sec-flow__illust {
		grid-column: 1;
		grid-row: 1;
	}

	/* 奇数（01,03,05）：テキスト左・画像左列内中央 */
	.sec-flow__item:nth-child(odd) .sec-flow__body {
		grid-column: 1;
		grid-row: 1;
	}

	.sec-flow__item:nth-child(odd) .sec-flow__num {
		grid-column: 2;
		grid-row: 1;
	}

	.sec-flow__item:nth-child(odd) .sec-flow__image {
		/* 左列内中央：(列幅 - 画像幅) / 2 = 列幅 * (1 - 0.6) / 2 = 列幅 * 0.2 */
		left: calc((100% - 80px) / 2 * 0.2);
	}

	/* 偶数（02,04）：テキスト右・画像右列内中央 */
	.sec-flow__item:nth-child(even) .sec-flow__body {
		grid-column: 3;
		grid-row: 1;
	}

	.sec-flow__item:nth-child(even) .sec-flow__num {
		grid-column: 2;
		grid-row: 1;
	}

	.sec-flow__item:nth-child(even) .sec-flow__image {
		/* 右列内中央：右列の開始 + (列幅 - 画像幅) / 2 */
		left: calc((100% - 80px) / 2 + 80px + (100% - 80px) / 2 * 0.2);
	}
}

/* ================================
   アオキ畜産の毎日
================================ */
.sec-daily {
	background-color: var(--color-bg);
}

.sec-daily__title {
	font-size: clamp(1.4rem, 3vw, 2rem);
	color: var(--color-primary);
	margin: 0;
}

.sec-daily__lead {
	max-width: 880px;
	margin: 0 auto 2rem;
	text-align: left;
	font-size: clamp(1rem, 2vw, 1.1rem);
}

@media (min-width: 768px) {
	.sec-daily__lead {
		text-align: center;
	}
}

.sec-daily__list {
	list-style: none;
	padding: 2rem 1.25rem;
	/* 375未満 */
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 3rem;
	background-color: var(--color-bg-skyblue);
	border-radius: var(--radius-lg);
	position: relative;
}

@media (min-width: 375px) {
	.sec-daily__list {
		padding: 2rem 1.5rem;
	}
}

@media (min-width: 475px) {
	.sec-daily__list {
		padding: 2rem;
	}
}

@media (min-width: 1024px) {
	.sec-daily__list {
		padding: 3rem 2rem;
	}
}

/* SP/MD（1024未満）：テキスト上・画像下 */
.sec-daily__item {
	display: flex;
	flex-direction: column-reverse;
	gap: 1.5rem;
	background-color: #fff;
	border-radius: var(--radius-md);
	padding: 1.5rem 1.25rem;
	overflow: hidden;
	position: relative;
}

.sec-daily__item::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: url('../images/blue-pig-footprint.png');
	background-size: 48px 48px;
	background-repeat: repeat;
	opacity: 0.045;
	border-radius: inherit;
	pointer-events: none;
	z-index: 0;
}

.sec-daily__item > * {
	position: relative;
	z-index: 1;
}

@media (min-width: 576px) {
	.sec-daily__item {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
}

@media (min-width: 768px) {
	.sec-daily__item {
		padding-left: 2rem;
		padding-right: 2rem;
	}
}

/* 画像 */
.sec-daily__image {
	flex: 0 0 auto;
	width: 100%;
}

.sec-daily__image img {
	width: 100%;
	display: block;
	border-radius: var(--radius-md);
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

/* daily-01：やや上を表示 */
.sec-daily__list li:nth-child(1) .sec-daily__image img {
	object-position: center 30%;
}

/* daily-03（肥育管理）：上側フォーカス */
.sec-daily__list li:nth-child(3) .sec-daily__image img {
	object-position: center top;
}

/* PC（1024以上）：左テキスト・右画像 */
@media (min-width: 1024px) {
	.sec-daily__item {
		display: flex;
		flex-direction: row-reverse;
		align-items: center;
		gap: 4rem;
		padding: 2rem;
		overflow: visible;
	}

	.sec-daily__image {
		width: 48%;
	}

	.sec-daily__image img {
		aspect-ratio: 16 / 11;
	}
}

/* テキストエリア */
.sec-daily__body {
	flex: 1;
	position: relative;
	/* イラストの絶対位置基準 */
}

.sec-daily__illust {
	position: absolute;
	top: -1rem;
	right: 0;
	width: 80px;
	height: 80px;
	z-index: 2;
	border-radius: var(--radius-md);
}

.sec-daily__illust img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.sec-daily__en {
	display: block;
	font-family: var(--font-en);
	font-size: 0.85rem;
	color: var(--color-primary);
	letter-spacing: 0.1em;
	margin: 0 0 0.5rem;
	opacity: 0.8;
}

.sec-daily__en::before {
	content: '~ ';
}

.sec-daily__en::after {
	content: ' ~';
}

.sec-daily__body h3 {
	font-size: clamp(1.1rem, 2.5vw, 1.25rem);
	font-weight: 500;
	color: var(--color-primary-dark);
	margin: 0 0 0.5rem;
}

.sec-daily__body p:not(.sec-daily__en) {
	font-size: 0.975rem;
	margin: 0;
}

@media (min-width: 1024px) {
	.sec-daily__body h3 {
		font-size: 1.375rem;
	}

	.sec-daily__body p:not(.sec-daily__en) {
		font-size: 1rem;
	}
}

/* ================================
   wave divider（aboutページ専用）
================================ */

/* page-heroの波画像 */
.page-about .page-hero {
	--hero-wave-img: url('../images/white-wave-center.webp');
}

.page-about .page-hero__sign {
	bottom: -64px;
}

.page-about .page-hero .wave-divider__pig--right {
	width: clamp(132px, 13vw, 192px);
}

.page-about .page-hero__fv-img--left {
	object-position: 20% 0%;
}

@media (max-width: 767px) {
	.page-about .page-hero__fv-img--left {
		object-position: center;
	}
}

.page-about .page-hero__fv-img--right {
	object-position: center;
}

/* sec-commitment → sec-daily */
.wave-divider--commitment-to-daily {
	--wave-img: url('../images/white-wave-right.webp');
	background-color: var(--color-bg-light);
	/* 上：sec-commitmentと同色 */
}

/* sec-daily → sec-flow */
.wave-divider--daily-to-flow {
	--wave-img: url('../images/skyblue-wave-left.webp');
	background-color: var(--color-bg);
	/* 上：sec-dailyと同色 */
}

/* aboutページの共通リクルートセクション上側：sec-flowと同色 */
.page-about .wave-divider--to-recruit {
	background-color: var(--color-bg-skyblue);
}

/* ================================
   こだわり
================================ */
.sec-commitment {
	background-color: var(--color-bg-light);
}

.sec-commitment__title {
	font-size: clamp(1.4rem, 3vw, 2rem);
	color: var(--color-primary);
	margin: 0;
}

/* ① モザイク画像グリッド（5枚・2行） */
.sec-commitment__mosaic {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.5rem;
	margin-bottom: var(--spacing-lg);
	background-color: var(--color-primary-light);
	border-radius: var(--radius-md);
	padding: 0.5rem;
	position: relative;
}

@media (min-width: 1024px) {
	.sec-commitment__mosaic {
		gap: 1rem;
		padding: 1rem;
	}
}

/* item--01：グリッド配置を明示 */
.sec-commitment__mosaic-item--01 {
	grid-column: 1;
	grid-row: 1 / span 2;
}

.sec-commitment__mosaic-item {
	overflow: hidden;
	border-radius: var(--radius-sm);
}

.sec-commitment__mosaic-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* pig-environment02 モザイク（item04）：右上からトリミング */
.sec-commitment__mosaic-item--04 img {
	object-position: right top;
}

/* 01：左列縦長 */
.sec-commitment__mosaic-item--01 {
	grid-column: 1;
	grid-row: span 2;
	aspect-ratio: 4 / 5;
}

/* 02，03：右上2枚 */
.sec-commitment__mosaic-item--02 {
	grid-column: 2;
	aspect-ratio: 4 / 3;
}

.sec-commitment__mosaic-item--03 {
	grid-column: 3;
	aspect-ratio: 4 / 3;
}

/* 04，05：右下2枚 */
.sec-commitment__mosaic-item--04 {
	grid-column: 2;
	aspect-ratio: 4 / 3;
}

.sec-commitment__mosaic-item--05 {
	grid-column: 3;
	aspect-ratio: 4 / 3;
}

/* ② 各こだわり詳細 */
.sec-commitment__details {
	display: flex;
	flex-direction: column;
	gap: var(--spacing-lg);
	background-color: var(--color-bg);
	border-radius: var(--radius-lg);
	padding: 2rem 1.25rem;
	/* 375未満 */
}

@media (min-width: 375px) {
	.sec-commitment__details {
		padding: 2rem 1.5rem;
		/* 475未満 */
	}
}

@media (min-width: 475px) {
	.sec-commitment__details {
		padding: 2rem;
	}
}

@media (min-width: 1024px) {
	.sec-commitment__details {
		padding: 3rem 2rem;
	}
}

.sec-commitment__detail {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

@media (min-width: 768px) {
	.sec-commitment__detail {
		flex-direction: row;
		align-items: center;
		gap: 3rem;
	}

	.sec-commitment__detail--reverse {
		flex-direction: row-reverse;
	}
}

.sec-commitment__detail-image {
	width: 100%;
	flex-shrink: 0;
	position: relative;
	border-radius: var(--radius-md);
	overflow: hidden;
}

@media (min-width: 768px) {
	.sec-commitment__detail-image {
		width: 48%;
	}
}

.sec-commitment__detail-image img:not(.sec-commitment__detail-badge) {
	width: 100%;
	display: block;
	border-radius: var(--radius-md);
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

/* pig-environment02 こだわり詳細（環境）：右上からトリミング */
.sec-commitment__details .sec-commitment__detail:nth-child(3) .sec-commitment__detail-image img:not(.sec-commitment__detail-badge) {
	object-position: right top;
}

.sec-commitment__detail-badge {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 30%;
	pointer-events: none;
}

.sec-commitment__detail-body {
	flex: 1;
	position: relative;
}

.sec-commitment__detail-illust {
	position: absolute;
	top: -0.25rem;
	right: 0;
	width: 72px;
	height: auto;
	pointer-events: none;
	opacity: 0.9;
}

.sec-commitment__detail-label {
	font-family: var(--font-en);
	font-size: clamp(0.9rem, 2vw, 1.1rem);
	color: var(--color-primary);
	margin: 0 0 0.5rem;
	opacity: 0.8;
}

.sec-commitment__detail-title {
	font-size: clamp(1.1rem, 2.5vw, 1.5rem);
	font-weight: 500;
	color: var(--color-primary-dark);
	margin: 0 0 1rem;
}

.sec-commitment__detail-text {
	font-size: clamp(1rem, 2vw, 1.05rem);
	margin: 0;
}

/* 品種注記（黒豚・デュロック） */
.sec-commitment__breed-note {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	margin-top: 1.25rem;
	padding: 0.875rem 0;
	border-top: 1px dashed var(--color-border);
	border-bottom: 1px dashed var(--color-border);
}

.sec-commitment__breed-note-item {
	font-size: 0.875rem;
	color: var(--color-text-light);
	margin: 0;
	line-height: 1.6;
}

.sec-commitment__breed-note-item strong {
	color: var(--color-primary-dark);
	font-weight: 500;
	margin-right: 0.5em;
}

/* wave-divider--daily-to-flow：576未満は小さく・768以上はbottom -64px固定 */
@media (max-width: 575px) {
	.wave-divider--daily-to-flow .wave-divider__pig.wave-divider__pig--right,
	.wave-divider--daily-to-flow .wave-divider__pig.wave-divider__pig--left,
	.wave-divider--daily-to-flow .wave-divider__pig.wave-divider__pig--center {
		width: 104px;
	}
}

@media (min-width: 768px) {
	.wave-divider--daily-to-flow .wave-divider__pig--mini.wave-divider__pig--right,
	.wave-divider--daily-to-flow .wave-divider__pig--mini.wave-divider__pig--left {
		bottom: -64px;
	}
}
