/* 外部媒体バナー（採用・店舗情報） */
.office_media_banners {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	gap: 10px;
	margin-top: 20px;
	margin-bottom: 10px;
}
.office_media_banners a {
	display: block;
	flex: 1 1 0;
	min-width: 0;
	background: #fff;
	border: 1px solid #e5e5e5;
}
.office_media_banners img {
	width: 100%;
	height: auto;
	max-height: 52px;
	object-fit: contain;
	display: block;
}
@media (max-width: 575px) {
	.office_media_banners {
		flex-direction: column;
		gap: 10px;
		margin-top: 20px;
		margin-bottom: 15px;
	}
	.office_media_banners img {
		max-height: none;
	}
}

.recruit_media_banners {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	margin: 30px 0 50px;
}
.recruit_media_banners a {
	display: block;
	width: 100%;
	/* max-width: 480px; */
	background: #fff;
	border: 1px solid #d9d9d9;
	box-sizing: border-box;
}
.recruit_media_banners img {
	width: 100%;
	height: auto;
	max-height: 80px;
	object-fit: contain;
	display: block;
}
@media (max-width: 575px) {
	.recruit_media_banners {
		gap: 12px;
		margin: 24px 0 36px;
	}
	.recruit_media_banners a {
		max-width: 100%;
	}
	.recruit_media_banners img {
		max-height: 64px;
	}
}
