:root {
	--corp-pad-side: clamp(20px, calc(15vw - 60px), 150px);
}

/* Box-sizing reset for corporate pages */
.site-main *,
.site-main *::before,
.site-main *::after {
	box-sizing: border-box;
}

/* Responsive break utilities */
.u-show-pc { display: none; }
.u-show-sp { display: inline; }
@media (min-width: 768px) {
	.u-show-pc { display: inline; }
	.u-show-sp { display: none; }
}

/* Remove WP global body padding on corporate pages */
body.corporate-page {
	padding-right: 0 !important;
	padding-left: 0 !important;
}

/**
 * Corporate Common Styles
 *
 * Shared styles for all corporate site pages.
 * Includes: breadcrumb, nav cards, business nav, business card, contact CTA.
 * Mobile-first: base 400px, desktop overrides at 768px+.
 *
 * @package Okayama
 */

/* ========================================
   Link Arrow Component (.link-arrow)
   Shared circle-arrow button used across footer
   banner labels, contact CTA, etc.
   ======================================== */

.link-arrow {
	--link-arrow-fill: #53bde5;
	--link-arrow-stroke: #fff;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
	color: #333;
	line-height: 1.6;
	text-decoration: none;
	transition: opacity 0.3s ease;
}

.link-arrow:hover {
	opacity: 0.7;
}

.link-arrow__icon {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
}

.link-arrow__icon circle {
	fill: var(--link-arrow-fill);
}

.link-arrow__icon path {
	stroke: var(--link-arrow-stroke);
}

/* Green variant (corporate pages) */
.link-arrow--green {
	--link-arrow-fill: #6bb529;
}

/* Empty-state message for news lists (no posts case) */
.news-archive__empty,
.portal-news__empty,
.corp-top-news__empty,
.news__empty {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 16px;
	color: #666;
	text-align: center;
	padding: 40px 20px;
	margin: 0;
}

/* ========================================
   Breadcrumb
   ======================================== */

.breadcrumb {
	padding: 16px 20px 0;
}

.breadcrumb__list {
	display: flex;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
	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.6;
}

.breadcrumb__item {
	display: flex;
	align-items: center;
}

.breadcrumb__item + .breadcrumb__item::before {
	content: '';
	display: inline-block;
	width: 6px;
	height: 6px;
	border-top: 1px solid #333;
	border-right: 1px solid #333;
	transform: rotate(45deg);
	margin: 0 8px;
}

.breadcrumb__link {
	color: #333;
	text-decoration: none;
}

.breadcrumb__link:hover {
	text-decoration: underline;
}

/* ========================================
   Corporate Navigation Cards (corp-nav)
   Figma: 165:7772
   ======================================== */

.corp-nav {
	padding: 80px 20px 0;
}

.corp-nav__inner {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.corp-nav__card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 64px;
	border-radius: 10px;
	background-color: #6bb529;
	text-decoration: none;
	padding: 0 16px;
	box-sizing: border-box;
	transition: opacity 0.3s ease;
}

.corp-nav__card:hover {
	opacity: 0.85;
}

.corp-nav__card-text {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: #fff;
	line-height: 1.6;
	white-space: nowrap;
}

.corp-nav__card-arrow {
	flex-shrink: 0;
}

.corp-nav__card-arrow svg {
	display: block;
	width: 20px;
	height: 20px;
}

/* ========================================
   Corporate Section Heading (corp-top-heading)
   White card with logo, title, green bar, and grey accents.
   SP (400px): 40px from screen edges → max 320px.
   PC (768px+): max 350px.
   Figma SP: 393:30507
   ======================================== */

.corp-top-heading {
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 320px;
	margin: 0 auto 24px;
}

.corp-top-heading__main {
	position: relative;
	background-color: #fff;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 32px 16px 8px;
	min-height: 100px;
	box-sizing: border-box;
}

.corp-top-heading__logo {
	position: absolute;
	left: 16px;
	top: 16px;
	width: 37px;
	height: 29px;
}

.corp-top-heading__logo-img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.corp-top-heading__title {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 28px;
	font-weight: 700;
	color: #333;
	line-height: 1.2;
	margin: 4px 0 0;
	letter-spacing: 0.025em;
	white-space: nowrap;
}

.corp-top-heading__subtitle {
	font-family: 'Reddit Sans', sans-serif;
	font-size: 14px;
	font-weight: 500;
	color: #6bb529;
	line-height: normal;
	text-transform: uppercase;
	margin: 0;
}

.corp-top-heading__bar {
	width: 100%;
	height: 20px;
	background-color: #6bb529;
}

.corp-top-heading__accents {
	width: 100%;
	height: 28px;
	display: flex;
	justify-content: space-between;
}

.corp-top-heading__accent {
	display: block;
	width: 12px;
	height: 100%;
	background-color: #d9d9d9;
}

/* ========================================
   Corporate Image Button (corp-img-btn)
   Shared image card link: photo bg + overlay + label + arrow.
   Figma PC: 399:19822 (300×200px)
   Figma SP: 297:15776 (320×120px)
   ======================================== */

.corp-img-btn {
	position: relative;
	display: flex;
	align-items: flex-end;
	width: 100%;
	height: 120px;
	border-radius: 3px;
	overflow: hidden;
	text-decoration: none;
	transition: opacity 0.3s ease;
}

.corp-img-btn:hover .corp-img-btn__bg {
	transform: scale(1.3);
}

.corp-img-btn__arrow-circle,
.corp-img-btn__arrow-path {
	transition: fill 0.3s ease, stroke 0.3s ease;
}

.corp-img-btn:hover .corp-img-btn__arrow-circle {
	fill: #6BB529;
}

.corp-img-btn:hover .corp-img-btn__arrow-path {
	stroke: #fff;
}

.corp-img-btn__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.corp-img-btn__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(51, 51, 51, 0.1) 0%, rgba(51, 51, 51, 0.5) 100%);
}

.corp-img-btn__text {
	position: relative;
	z-index: 1;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: clamp(18px, calc(17.2px + 0.2vw), 20px);
	font-weight: 700;
	color: #fff;
	line-height: 1.6;
	padding: 16px 56px 16px 16px;
}

.corp-img-btn__arrow {
	position: absolute;
	z-index: 1;
	right: 12px;
	bottom: 12px;
}

.corp-img-btn__arrow svg {
	display: block;
	width: 20px;
	height: 20px;
}

/* ========================================
   Corporate Business Navigation (corp-biz-nav)
   Figma: frame 146 — "他の事業も見る"
   ======================================== */

.corp-biz-nav {
	padding: 80px 20px 0;
}

.corp-biz-nav__title {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: clamp(23px, calc(18.2px + 1.2vw), 35px);
	font-weight: 700;
	color: #333;
	line-height: 1.6;
	text-align: center;
	margin: 0 0 24px;
}

.corp-biz-nav__grid {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

/* ========================================
   Business Card (biz-card) — shared base
   White card sections for business pages
   ======================================== */

.biz-card {
	background-color: #fff;
	border-radius: 18px;
	padding: 40px 20px;
}

/* Card Header (Title + Tags) */
.biz-card__header {
	margin-bottom: 16px;
}

.biz-card__title {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: clamp(23px, calc(18.2px + 1.2vw), 35px);
	font-weight: 700;
	color: #6bb529;
	line-height: 1.6;
	margin: 0 0 8px;
}

.biz-card__tags {
	display: flex;
	align-items: center;
	gap: 4px;
}

.biz-card__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(14px, calc(13.2px + 0.2vw), 16px);
	font-weight: 400;
	color: #fff;
	line-height: 1;
	white-space: nowrap;
}

/* Divider */
.biz-card__divider {
	border: none;
	border-top: 1px solid #6BB529;
	margin: 0 0 24px;
}

/* Subtitle */
.biz-card__subtitle {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: clamp(18px, calc(15.6px + 0.6vw), 24px);
	font-weight: 700;
	color: #333;
	line-height: 1.6;
	margin: 0 0 16px;
}

/* Body Text */
.biz-card__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 32px;
}

/* Photo Grid */
.biz-card__photos {
	display: flex;
	flex-direction: column;
	gap: 24px;
	margin-bottom: 32px;
}

.biz-card__photos:last-child {
	margin-bottom: 0;
}

.biz-card__photo {
	margin: 0;
}

.biz-card__photo-img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 8px;
}

.biz-card__photo-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;
}

/* ========================================
   Bordered Category Sub-section (biz-category)
   Reusable bordered card with dot + title inside biz-card.
   Used by: product-dev, store-dev, food pages.
   ======================================== */

.biz-category {
	border: 1px solid #d9d9d9;
	border-radius: 10px;
	padding: 20px 16px;
	margin-top: 24px;
}

.biz-category__header {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 8px;
}

.biz-category__dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: #6bb529;
	flex-shrink: 0;
}

.biz-category__title {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: clamp(20px, calc(16.8px + 0.8vw), 28px);
	font-weight: 700;
	color: #333;
	line-height: 1.6;
	margin: 0;
}

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

.biz-category__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 16px;
}

.biz-category__photo {
	margin: 0;
}

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

/* ========================================
   Flow Steps (biz-flow)
   Reusable step-by-step process grid.
   Used by: product-dev, store-dev pages.
   ======================================== */

.biz-flow {
	margin-bottom: 40px;
}

.biz-flow__title {
	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 16px;
}

.biz-flow__grid {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.biz-flow__step {
	background-color: #f3f8e7;
	border-radius: 10px;
	padding: 10px;
	box-sizing: border-box;
}

.biz-flow__step-label {
	display: block;
	font-family: 'Reddit Sans', sans-serif;
	font-size: clamp(14px, calc(13.2px + 0.2vw), 16px);
	font-weight: 600;
	color: #6bb529;
	line-height: 1.6;
	text-transform: uppercase;
}

.biz-flow__step-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;
}

.biz-flow__step-text-small {
	font-size: clamp(12px, calc(11.2px + 0.2vw), 14px);
	line-height: 1.6;
}

.biz-flow__step-note {
	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;
	margin: 0;
}

/* ========================================
   Case Study (biz-case)
   Reusable tag + title + text + photo card.
   Used by: product-dev, store-dev pages.
   ======================================== */

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

.biz-case__info {
	display: flex;
	flex-direction: column;
}

.biz-case__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;
}

.biz-case__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 8px;
}

.biz-case__note {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: clamp(12px, calc(10.4px + 0.4vw), 16px);
	font-weight: 400;
	color: #333;
	line-height: 1.7;
	margin: -6px 0 8px;
}

.biz-case__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;
}

.biz-case__photo {
	margin: 0;
}

.biz-case__photo-img {
	width: 100%;
	height: auto;
	aspect-ratio: 288 / 163;
	object-fit: cover;
	display: block;
	border-radius: 8px;
}

/* ========================================
   Corporate Contact CTA (corp-contact)
   Figma: 165:9029
   ======================================== */

.corp-contact {
	padding: 80px 20px 80px;
}

.corp-contact__inner {
	display: block;
	background-color: #6bb529;
	border: 1px solid #6bb529;
	border-radius: 10px;
	padding: 32px 20px;
	text-decoration: none;
	transition: background-color 0.3s ease, border-color 0.3s ease;
}

.corp-contact__inner:hover {
	background-color: #fff;
	border-color: #6bb529;
}

.corp-contact__inner:hover .corp-contact__title,
.corp-contact__inner:hover .corp-contact__subtitle-en,
.corp-contact__inner:hover .corp-contact__description {
	color: #6bb529;
}

.corp-contact__inner:hover .corp-contact__button {
	color: #6bb529;
}

.corp-contact__inner:hover .link-arrow__icon circle {
	fill: #6bb529;
}

.corp-contact__inner:hover .link-arrow__icon path {
	stroke: #fff;
}

.corp-contact__heading {
	margin-bottom: 16px;
}

.corp-contact__title {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: clamp(24px, calc(19.6px + 1.1vw), 35px);
	font-weight: 700;
	color: #fff;
	line-height: 1.6;
	margin: 0;
}

.corp-contact__subtitle-en {
	font-family: 'Reddit Sans', sans-serif;
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	line-height: 1.6;
	margin: 4px 0 0;
	text-transform: uppercase;
}

.corp-contact__description {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: #fff;
	line-height: 1.6;
	margin: 0 0 24px;
}

.corp-contact__button {
	color: #fff;
	font-size: 16px;
	font-weight: 400;
	line-height: 1;
}

/* Default icon state: white circle + green arrow (on green background) */
.corp-contact__button .link-arrow__icon circle {
	fill: #fff;
}

.corp-contact__button .link-arrow__icon path {
	stroke: #6bb529;
}

/* ========================================
   Desktop Overrides (min-width: 768px)
   ======================================== */

@media (min-width: 768px) {
	/* Section Heading */
	.corp-top-heading {
		max-width: 350px;
	}

	.corp-top-heading__title {
		font-size: 35px;
	}

	.corp-top-heading__subtitle {
		font-size: 16px;
	}

	/* Breadcrumb */
	.breadcrumb {
		padding: 16px var(--corp-pad-side) 0;
	}

	/* Nav Cards */
	.corp-nav {
		padding: 100px var(--corp-pad-side) 0;
	}

	.corp-nav__inner {
		width: 100%;
		max-width: 940px;
		margin: 0 auto;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
		gap: 20px;
	}

	.corp-nav__card {
		width: 300px;
		height: 80px;
		padding: 0 20px;
	}

	.corp-nav__card-text {
		font-size: 20px;
	}

	.corp-nav__card-arrow svg {
		width: 24px;
		height: 24px;
	}

	/* Image Button */
	.corp-img-btn {
		width: 300px;
		height: 200px;
	}

	.corp-img-btn__arrow svg {
		width: 20px;
		height: 20px;
	}

	/* Business Nav */
	.corp-biz-nav {
		padding: 100px var(--corp-pad-side) 0;
	}

	.corp-biz-nav__title {
		margin-bottom: 40px;
	}

	.corp-biz-nav__grid {
		max-width: 1100px;
		margin: 0 auto;
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 20px;
	}

	.corp-biz-nav__grid .corp-img-btn {
		width: 100%;
	}

	/* Business Card */
	.biz-card {
		width: 100%;
		max-width: 1100px;
		margin: 0 auto;
		border-radius: 30px;
		padding: 64px clamp(20px, 6vw, 80px);
	}

	.biz-card__header {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 24px;
		margin-bottom: 24px;
	}

	.biz-card__title {
		margin-bottom: 0;
	}

	.biz-card__tags {
		gap: 8px;
	}

	.biz-card__subtitle {
		margin-bottom: 20px;
	}

	.biz-card__photos {
		flex-direction: row;
		gap: 20px;
	}

	.biz-card__photo {
		flex: 1;
		min-width: 0;
	}

	/* Bordered Category */
	.biz-category {
		border-width: 2px;
		border-radius: 20px;
		padding: 40px;
		margin-top: 40px;
	}

	.biz-category__subtitle {
		margin-bottom: 12px;
	}

	.biz-category__photo-img {
		max-width: 411px;
		aspect-ratio: 411 / 224;
	}

	/* Flow Steps */
	.biz-flow__grid {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
	}

	.biz-flow__step {
		min-height: 126px;
	}

	.biz-flow__step-note {
		line-height: 1.6;
	}

	/* Case Study */
	.biz-case {
		flex-direction: row;
		gap: 40px;
		padding-top: 56px;
	}

	.biz-case__info {
		flex: 1;
		min-width: 0;
	}

	.biz-case__tag {
		line-height: 1.6;
	}

	.biz-case__note {
		line-height: 2;
	}

	.biz-case__photo {
		flex: 0 1 40%;
		max-width: 424px;
		min-width: 0;
	}

	.biz-case__photo-img {
		width: 100%;
		height: auto;
		aspect-ratio: 424 / 240;
	}

	/* Contact CTA */
	.corp-contact {
		padding: 100px var(--corp-pad-side) 100px;
	}

	.corp-contact__inner {
		width: 100%;
		max-width: 1100px;
		margin: 0 auto;
		border-radius: 20px;
		padding: 40px clamp(20px, 4vw, 60px);
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		gap: 24px 40px;
	}

	.corp-contact__heading {
		margin-bottom: 0;
		flex-shrink: 0;
	}

	.corp-contact__description {
		line-height: 2;
		margin-bottom: 0;
		flex: 1;
		min-width: 200px;
	}

	.corp-contact__button {
		flex-shrink: 0;
	}
}

/* ========================================
   Hero Section (corp-kv)
   ======================================== */

.corporate-hero {
	position: relative;
	padding: 40px 0 0;
	overflow: hidden;
}


.corporate-hero::before {
	content: '';
	position: absolute;
	inset: -50%;
	width: 200%;
	height: 200%;
	background-image: url('../images/corp-deco-bg-horizontal.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100% 100%;
	transform: rotate(165deg);
	pointer-events: none;
	z-index: 0;
}

@media (max-width: 767px) {
	.corporate-hero::before {
		width: 150%;
		background-size: unset;
		transform: unset;
	}
}

.corporate-hero__inner {
	position: relative;
	z-index: 1;
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 20px;
}

.corporate-hero__text {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-bottom: 24px;
	text-align: center;
}

.corporate-hero__title {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: clamp(28px, calc(23.2px + 1.2vw), 40px);
	font-weight: 700;
	color: #333;
	line-height: 1.6;
	margin: 0;
}

.corporate-hero__subtitle-en {
	font-family: 'Reddit Sans', sans-serif;
	font-size: 16px;
	font-weight: 600;
	color: #6bb529;
	line-height: 1.6;
	margin: 0;
	text-transform: uppercase;
}

.corporate-hero__images {
	display: flex;
	gap: 16px;
	justify-content: center;
}

.corporate-hero__image-wrap {
	width: 172px;
	height: 181px;
	border-radius: 32px;
	overflow: hidden;
	border: 9px solid #d9d9d9;
	flex-shrink: 0;
	position: relative;
}

.corporate-hero__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.corporate-hero__decoration {
	position: absolute;
	top: -40px;
	right: -60px;
	width: 300px;
	pointer-events: none;
	z-index: 0;
}

.corporate-hero__decoration-img {
	width: 100%;
	height: auto;
}

@media (min-width: 768px) {
	.corporate-hero {
		padding: 80px 0 0;
	}

	.corporate-hero__inner {
		display: flex;
		align-items: flex-start;
		justify-content: space-between;
		/* padding: 0 var(--corp-pad-side); */
	}

	.corporate-hero__text {
		margin-bottom: 0;
		padding-top: 60px;
		text-align: left;
	}

	.corporate-hero__images {
		gap: 24px;
	}

	.corporate-hero__image-wrap {
		width: 240px;
		height: 253px;
		border-radius: 60px;
	}

	.corporate-hero__decoration {
		top: -80px;
		right: -40px;
		width: 500px;
	}
}

@media (min-width: 1400px) {
	.corporate-hero__inner {
		padding-left: 0;
		padding-right: 0;
	}

	.corporate-hero__image-wrap {
		width: 312px;
		height: 329px;
	}
}
