:root {
	--navy: #0e2559;
	--navy-light: #33415f;
	--orange: #dd7004;
	--text: #202020;
	--muted: #69758c;
	--line: #e2e5eb;
	--tint: #f7f8fa;
	--container: 1120px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--text);
	background: #fff;
	font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
	line-height: 1.7;
	font-weight: 500;
}

body.admin-bar .site-header {
	top: 32px;
}

a {
	color: inherit;
	text-decoration: none;
	transition: color .4s ease, background-color .4s ease, border-color .4s ease, box-shadow .4s ease, opacity .4s ease, transform .4s ease, filter .4s ease, text-decoration-color .4s ease;
}

a::before,
a::after {
	transition: color .4s ease, background-color .4s ease, border-color .4s ease, opacity .4s ease, transform .4s ease;
}

a img,
a svg {
	transition: opacity .4s ease, transform .4s ease, filter .4s ease;
}

img {
	max-width: 100%;
	height: auto;
}

.skip-link {
	position: fixed;
	top: -100px;
	left: 16px;
	z-index: 9999;
	padding: 10px 16px;
	background: #fff;
	color: var(--navy);
}

.skip-link:focus {
	top: 16px;
}

.section-container {
	width: min(100% - 64px, var(--container));
	margin-inline: auto;
}

.section-label {
	margin: 0;
	color: var(--orange);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .1em;
}

.section-title {
	margin: 14px 0 0;
	color: var(--navy);
	font-size: clamp(24px, 2.4vw, 32px);
	line-height: 1.55;
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	color: var(--navy);
	font-size: 14px;
	font-weight: 700;
}

.text-link span {
	display: grid;
	width: 22px;
	height: 22px;
	place-items: center;
	border: 1px solid var(--orange);
	border-radius: 50%;
	color: var(--orange);
	font-size: 11px;
}

.media-placeholder {
	display: grid;
	place-items: center;
	overflow: hidden;
	background: linear-gradient(135deg, #d8dde6, #eef0f4);
	color: #707b8d;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .08em;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: #fff;
	box-shadow: 0 2px 9px rgb(14 37 89 / 8%);
}

.site-header__top {
	display: flex;
	height: 70px;
	align-items: center;
	justify-content: space-between;
	padding: 0 32px;
	border-bottom: 1px solid #eef0f3;
}

.site-logo {
	display: inline-flex;
	align-items: center;
	color: var(--navy);
}

.site-logo img {
	display: block;
	width: 224px;
	height: auto;
}

.site-header__contact {
	display: flex;
	align-items: center;
	gap: 18px;
}

.site-header__phone {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	color: var(--muted);
	font-weight: 700;
	line-height: 1.3;
}

.site-header__phone small {
	font-size: 9px;
}

.site-header__phone a {
	color: var(--navy);
	font-size: 19px;
}

.header-contact-button {
	padding: 11px 18px;
	background: var(--orange);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
}

.site-navigation {
	display: flex;
	height: 40px;
	align-items: center;
	justify-content: center;
}

.site-navigation__menu {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-navigation__menu li {
	display: flex;
	align-items: center;
}

.site-navigation__menu li+li::before {
	width: 1px;
	height: 13px;
	background: #dcdfe6;
	content: "";
}

.site-navigation__menu a {
	position: relative;
	display: block;
	padding: 8px 20px;
	color: var(--navy-light);
	font-size: 13px;
	font-weight: 600;
}

.site-navigation__menu a::after {
	position: absolute;
	right: 20px;
	bottom: 3px;
	left: 20px;
	height: 2px;
	background: var(--navy);
	content: "";
	opacity: 0;
	transform: scaleX(0);
	transform-origin: center;
}

.site-navigation__menu a:hover::after,
.site-navigation__menu .current-menu-item>a::after {
	opacity: 1;
	transform: scaleX(1);
}

.mobile-header-actions,
.mobile-menu-overlay,
.mobile-menu-drawer {
	display: none;
}

.home-hero {
	position: relative;
	height: calc(100vh - 110px);
	min-height: 580px;
	overflow-x: clip;
	overflow-y: visible;
}

.home-hero__background {
	position: absolute;
	inset: 0;
	overflow: hidden;
}

.home-hero__slide {
	position: absolute;
	inset: 0;
	background-image: url("../images/hero-pc.webp");
	background-position: bottom;
	background-size: cover;
	background-repeat: no-repeat;
	transform-origin: center;
	will-change: opacity, transform;
}

.home-hero__slide--first {
	animation: hero-slide 40s ease-in-out infinite;
}

.home-hero__slide--second,
.home-hero__slide--third,
.home-hero__slide--fourth {
	opacity: 0;
	animation: hero-slide 40s ease-in-out infinite;
}

.home-hero__slide--second {
	animation-delay: -30s;
}

.home-hero__slide--third {
	animation-delay: -20s;

}

.home-hero__slide--fourth {
	animation-delay: -10s;
}

@keyframes hero-slide {
	0% {
		opacity: 1;
		transform: scale(1);
	}

	21% {
		opacity: 1;
		transform: scale(1.07);
	}

	25% {
		opacity: 0;
		transform: scale(1.1);
	}

	26%,
	96% {
		opacity: 0;
		transform: scale(1);
	}

	100% {
		opacity: 1;
		transform: scale(1);
	}
}

.home-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(100deg, rgb(255 255 255 / 92%) 0%, rgb(255 255 255 / 72%) 28%, rgb(255 255 255 / 12%) 58%, transparent 70%);
}

.home-hero__content {
	position: absolute;
	z-index: 2;
	top: 50%;
	left: 4%;
	max-width: 650px;
	transform: translateY(-50%);
}

.home-hero__handwriting {
	position: absolute;
	z-index: 1;
	top: 40%;
	left: -30px;
	width: 560px;
	max-width: none;
	height: auto;
	opacity: .3;
	transform: translateY(-62%);
	pointer-events: none;
}

.home-hero__title {
	margin: 0 0 20px;
	color: var(--navy);
	font-size: clamp(36px, 4vw, 44px);
	line-height: 1.35;
	letter-spacing: .08em;
	font-weight: 700;
}

.home-hero__description {
	margin: 0;
	color: var(--navy-light);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.95;
}

.home-hero__title,
.home-hero__description {
	position: relative;
	z-index: 1;
}

.home-hero__marquee {
	position: absolute;
	right: 0;
	bottom: -56px;
	left: 0;
	overflow: hidden;
	color: rgb(14 37 89 / 14%);
	font-family: Georgia, serif;
	font-size: clamp(70px, 9vw, 120px);
	font-style: italic;
	line-height: 1;
	white-space: nowrap;
	pointer-events: none;
}

.home-hero__marquee-track {
	display: flex;
	width: max-content;
	animation: hero-marquee 200s linear infinite;
	will-change: transform;
}

.home-hero__marquee-group {
	display: flex;
	flex-shrink: 0;
	gap: 55px;
	padding-right: 55px;
}

@keyframes hero-marquee {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

.home-content {
	padding: 170px 0 150px;
}

.home-news {
	display: grid;
	grid-template-columns: 250px 1fr;
	gap: 64px;
	padding-block: 70px;
	background: var(--tint);
}

.home-news__heading {
	padding-left: 40px;
}

.home-news__heading .text-link {
	margin-top: 24px;
}

.home-news__list {
	padding-right: 40px;
}

.home-news__item {
	display: grid;
	grid-template-columns: 110px 1fr auto;
	gap: 28px;
	align-items: center;
	padding: 22px 0;
	border-bottom: 1px solid #c7cdd8;
	color: #1a2942;
	font-size: 14px;
	font-weight: 700;
}

.home-news__item time {
	color: #8a93a6;
	font-weight: 500;
}

.home-news__item b {
	color: var(--navy);
}

.home-news__empty {
	padding: 24px 0;
	border-bottom: 1px solid #c7cdd8;
	color: var(--muted);
}

.home-services {
	margin-top: 150px;
}

.home-services__heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	padding-bottom: 58px;
}

.service-row {
	padding: 80px 0;
}

.service-row--tint {
	background: var(--tint);
}

.service-row__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
}

.service-row__inner--reverse .service-row__body {
	order: 2;
}

.service-row__body>p:not(.service-row__number) {
	margin: 0 0 26px;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.95;
}

.service-row__number {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 16px;
	color: var(--navy);
	font-size: 14px;
	font-weight: 700;
}

.service-row__number span {
	width: 20px;
	height: 1px;
	background: var(--orange);
}

.service-row__number small {
	color: #8a93a6;
	font-size: 12px;
	letter-spacing: .12em;
}

.service-row h3 {
	margin: 0 0 16px;
	color: var(--navy);
	font-size: 26px;
}

.service-row__image {
	height: 300px;
	overflow: hidden;
}

.service-row__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.outline-button {
	display: inline-flex;
	align-items: center;
	gap: 13px;
	padding: 11px 22px;
	border: 1px solid var(--navy);
	color: var(--navy);
	font-size: 14px;
	font-weight: 700;
}

.outline-button span {
	display: grid;
	width: 22px;
	height: 22px;
	place-items: center;
	border-radius: 50%;
	background: var(--navy);
	color: #fff;
	font-size: 10px;
}

.home-contact {
	position: relative;
	overflow: hidden;
	color: #fff;
}

.home-contact__background,
.home-contact__overlay {
	position: absolute;
	inset: 0;
}

.home-contact__background {
	background: url("../images/contact-bg.webp") center / cover no-repeat;
}

.home-contact__overlay {
	background: linear-gradient(90deg, rgb(14 37 89 / 94%), rgb(14 37 89 / 62%));
}

.home-contact__inner {
	position: relative;
	display: flex;
	min-height: 360px;
	align-items: center;
	justify-content: space-between;
	gap: 48px;
}

.home-contact h2 {
	margin: 0;
	font-size: clamp(25px, 3vw, 34px);
	line-height: 1.65;
}

.home-contact p {
	margin: 10px 0 0;
	color: #c3cde3;
	font-size: 13px;
}

.home-contact__actions {
	display: flex;
	width: 285px;
	flex-direction: column;
	gap: 14px;
}

.contact-button {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 15px 22px;
	border: 1px solid #fff;
	font-size: 14px;
	font-weight: 700;
}

.contact-button--accent {
	border-color: var(--orange);
	background: var(--orange);
}

.home-policy {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-block: 70px;
	text-align: center;
}

.home-policy .outline-button {
	margin-top: 25px;
}

.company-hero {
	position: relative;
	height: 700px;
	overflow: hidden;
	background: #eef2f9;
}

.company-hero__background,
.company-hero__overlay {
	position: absolute;
	inset: 0;
}

.company-hero__background {
	background: linear-gradient(135deg, #dfe5ee, #aab7ca);
}

.company-hero__overlay {
	background: linear-gradient(90deg, rgb(255 255 255 / 95%) 0%, rgb(255 255 255 / 80%) 30%, rgb(255 255 255 / 25%) 55%, transparent 70%);
}

.company-hero__content {
	position: relative;
	display: flex;
	width: calc(100% - 128px);
	max-width: 1120px;
	height: 100%;
	flex-direction: column;
	justify-content: center;
	margin-inline: auto;
}

.company-hero h1 {
	margin: 0;
	color: var(--navy);
	font-size: 42px;
	line-height: 1.4;
}

.company-hero__line {
	width: 56px;
	height: 3px;
	margin: 20px 0;
	background: var(--orange);
}

.company-hero__content p {
	margin: 0;
	color: var(--navy);
	font-size: 17px;
	font-weight: 700;
	line-height: 1.6;
}

.breadcrumbs {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 14px max(64px, calc((100% - 1120px) / 2));
	border-bottom: 1px solid #eef0f3;
	background: #fff;
	color: #5c6b85;
	font-size: 13px;
}

.breadcrumbs>span:not([aria-current]) {
	color: var(--orange);
	font-size: 18px;
}

.breadcrumbs [aria-current] {
	color: var(--navy);
	font-weight: 700;
}

.company-content {
	padding-top: 40px;
	background: #fff;
}

.company-section {
	width: calc(100% - 64px);
	max-width: 1120px;
	margin-inline: auto;
}

.company-message {
	padding-block: 140px 100px;
}

.company-section__heading {
	position: relative;
	display: inline-block;
}

.company-section__heading h2 {
	position: relative;
	z-index: 1;
	margin: 0;
	color: var(--navy);
	font-size: 24px;
}

.company-section__english {
	position: absolute;
	z-index: 0;
	bottom: -.1em;
	left: 0;
	color: #fbe6cc;
	font-size: 60px;
	font-weight: 700;
	letter-spacing: .05em;
	line-height: 1;
	opacity: .5;
	white-space: nowrap;
}

.company-section__line {
	display: block;
	width: 36px;
	height: 2px;
	margin: 16px 0 40px;
	background: var(--orange);
}

.company-message__body {
	display: flex;
	gap: 48px;
}

.company-message__text {
	flex: 1;
	min-width: 0;
}

.company-message__text>p {
	margin: 0 0 20px;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.9;
}

.company-message__signature {
	margin-top: 34px;
	text-align: right;
}

.company-message__signature img {
	display: inline-block;
	width: min(250px, 100%);
	height: auto;
}

.company-overview {
	padding-block: 64px 100px;
	background: #eef2f9;
}

.company-overview__layout {
	display: flex;
	align-items: flex-start;
	gap: 32px;
}

.company-overview__list {
	width: 600px;
	flex-shrink: 0;
	margin: 0;
	border-top: 1px solid #e2e4e8;
}

.company-overview__row {
	display: flex;
	align-items: center;
	gap: 20px;
	border-bottom: 1px solid #e2e4e8;
}

.company-overview__row dt {
	width: 140px;
	flex-shrink: 0;
	padding: 18px 0;
	color: var(--navy);
	font-size: 15px;
	font-weight: 700;
}

.company-overview__row dd {
	flex: 1;
	margin: 0;
	padding: 18px 0;
	font-size: 15px;
	font-weight: 500;
}

.company-overview__illustration {
	align-self: flex-end;
	width: 100%;
	height: 280px;
}

.company-overview__illustration img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center bottom;
}

.company-access {
	padding-block: 64px 100px;
	background: #fff;
}

.company-access__layout {
	display: flex;
	align-items: flex-start;
	gap: 48px;
	flex-wrap: wrap;
}

.company-access__map {
	min-width: 320px;
	height: 380px;
	flex: 1;
}

.company-access__map iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

.company-access__information {
	min-width: 280px;
	flex: 1;
}

.company-access__information h3 {
	margin: 0 0 12px;
	color: var(--navy);
	font-size: 18px;
}

.company-access__information>p {
	margin: 0 0 24px;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.9;
}

.company-access__route h4 {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 8px;
	color: var(--navy);
	font-size: 15px;
}

.company-access__route h4 span {
	color: var(--orange);
	font-size: 13px;
}

.company-access__route p {
	margin: 0 0 24px;
	color: #5c6b85;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.8;
}

.recruit-content {
	width: calc(100% - 64px);
	max-width: 1120px;
	margin-inline: auto;
	padding-block: 140px 60px;
}

.recruit-intro {
	margin-bottom: 56px;
	text-align: center;
}

.recruit-intro>p {
	margin: 0 0 16px;
	color: var(--orange);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .08em;
}

.recruit-intro h2 {
	margin: 0;
	color: var(--navy);
	font-size: 28px;
	line-height: 1.55;
}

.recruit-intro>span {
	display: block;
	width: 36px;
	height: 2px;
	margin: 24px auto 0;
	background: var(--orange);
}

.recruit-features {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-bottom: 64px;
}

.recruit-feature {
	display: flex;
	min-height: 114px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 24px 16px;
	border: 1px solid #eef0f3;
	text-align: center;
}

.recruit-feature>span {
	color: var(--orange);
	font-size: 24px;
	line-height: 1;
}

.recruit-feature strong {
	color: var(--navy);
	font-size: 15px;
}

.recruit-tabs {
	display: flex;
}

.recruit-tab {
	flex: 1;
	padding: 16px 20px;
	border: 0;
	background: var(--tint);
	color: #5c6b85;
	font: inherit;
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
}

.recruit-tab.is-active {
	background: var(--navy);
	color: #fff;
}

.recruit-tab:focus-visible {
	position: relative;
	z-index: 1;
	outline: 3px solid rgb(221 112 4 / 45%);
	outline-offset: -3px;
}

.recruit-panel {
	padding: 32px;
	border: 1px solid #eef0f3;
	border-top: 0;
}

.recruit-panel[hidden] {
	display: none;
}

.recruit-requirements {
	margin: 0;
}

.recruit-requirements__row {
	display: flex;
	border-bottom: 1px solid #eef0f3;
}

.recruit-requirements__row dt {
	width: 160px;
	flex-shrink: 0;
	padding: 16px;
	background: var(--tint);
	color: var(--navy);
	font-size: 15px;
	font-weight: 700;
}

.recruit-requirements__row dd {
	flex: 1;
	margin: 0;
	padding: 16px;
	font-size: 15px;
	font-weight: 500;
}

.recruit-appeal {
	position: relative;
	overflow: hidden;
	margin-top: 32px;
	padding: 32px;
	border-left: 4px solid var(--orange);
	background: var(--tint);
}

.recruit-appeal__quote {
	position: absolute;
	top: 4px;
	right: 24px;
	color: var(--orange);
	font-family: Georgia, serif;
	font-size: 70px;
	line-height: 1;
	opacity: .15;
}

.recruit-appeal h3 {
	margin: 0 0 16px;
	color: var(--orange);
	font-size: 18px;
	letter-spacing: .06em;
}

.recruit-appeal h3:not(:first-of-type) {
	margin-top: 28px;
}

.recruit-appeal p {
	margin: 0 0 14px;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.9;
}

.recruit-appeal p:last-child {
	margin-bottom: 0;
}

.recruit-appeal .recruit-appeal__lead {
	color: var(--navy);
	font-weight: 700;
}

.recruit-flow {
	margin-top: 32px;
}

.recruit-flow h3,
.recruit-fit>h3 {
	margin: 0 0 16px;
	color: var(--navy);
	font-size: 15px;
}

.recruit-flow__steps {
	display: grid;
	gap: 12px;
}

.recruit-flow__steps--three {
	grid-template-columns: repeat(3, 1fr);
}

.recruit-flow__steps--two {
	grid-template-columns: repeat(2, 1fr);
}

.recruit-flow__steps>div {
	display: flex;
	min-height: 94px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 18px;
	background: var(--tint);
	text-align: center;
}

.recruit-flow__note {
	margin: 16px 0 0;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.8;
}

.recruit-parttime__closing {
	margin: 32px 0 0;
	color: var(--navy);
	font-size: 17px;
	font-weight: 700;
	text-align: center;
}

.recruit-flow__steps small {
	color: var(--orange);
	font-size: 13px;
	font-weight: 700;
}

.recruit-flow__steps strong {
	margin-top: 7px;
	color: var(--navy);
	font-size: 15px;
}

.recruit-fit {
	margin-top: 32px;
}

.recruit-fit__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.recruit-fit__grid>div {
	padding: 20px;
	background: var(--tint);
}

.recruit-fit__grid h4 {
	margin: 0 0 12px;
	color: var(--navy);
	font-size: 15px;
}

.recruit-fit__grid ul {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.recruit-fit__grid li {
	position: relative;
	padding-left: 22px;
	font-size: 15px;
}

.recruit-fit__grid li::before {
	position: absolute;
	top: 0;
	left: 0;
	font-weight: 700;
}

.recruit-fit__welcome li::before {
	color: var(--orange);
	content: "✓";
}

.recruit-fit__unsuitable li::before {
	color: #8a93a6;
	content: "×";
}

.recruit-entry {
	margin-top: 40px;
	padding: 40px;
	background: var(--navy);
	text-align: center;
}

.recruit-entry p {
	margin: 0 0 16px;
	color: #fff;
	font-size: 17px;
	font-weight: 700;
}

.recruit-entry a {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 32px;
	background: #fff;
	color: var(--navy);
	font-size: 15px;
	font-weight: 700;
}

.site-footer {
	border-top: 1px solid #eef0f3;
	color: var(--navy);
}

.site-footer__top {
	display: flex;
	justify-content: space-between;
	gap: 50px;
	padding-block: 58px 40px;
}

.site-footer address {
	margin-top: 20px;
	color: #5c6b85;
	font-size: 13px;
	font-style: normal;
	font-weight: 500;
	line-height: 2;
}

.site-footer__nav {
	display: grid;
	grid-template-columns: repeat(2, minmax(120px, 1fr));
	gap: 15px 32px;
	color: var(--navy-light);
	font-size: 13px;
	font-weight: 600;
}

.site-footer__banners {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 14px;
	padding-bottom: 25px;
}

.footer-banner {
	display: flex;
	height: 64px;
	align-items: center;
	justify-content: center;
	padding: 7px 10px;
	border: 1px solid var(--line);
	background: #fff;
}

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

.site-footer__bottom {
	position: relative;
	padding: 20px 70px;
	border-top: 1px solid #eef0f3;
	color: #8a93a6;
	text-align: center;
}

.page-top {
	position: absolute;
	top: 50%;
	right: 32px;
	display: grid;
	width: 36px;
	height: 36px;
	place-items: center;
	border-radius: 50%;
	background: var(--navy);
	color: #fff;
	transform: translateY(-50%);
}

@media (hover: hover) {

	.text-link,
	.outline-button,
	.contact-button,
	.header-contact-button,
	.site-navigation a,
	.site-footer a,
	.home-news__item {
		transition: opacity .4s ease;
	}

	.text-link:hover,
	.outline-button:hover,
	.contact-button:hover,
	.header-contact-button:hover,
	.site-navigation a:hover,
	.site-footer a:hover,
	.home-news__item:hover {
		opacity: .68;
	}
}

html.reveal-enabled [data-reveal] {
	opacity: 0;
	transition: opacity .8s ease var(--reveal-delay, 0ms), transform .8s cubic-bezier(.22, 1, .36, 1) var(--reveal-delay, 0ms);
	will-change: opacity, transform;
}

html.reveal-enabled [data-reveal="up"] {
	transform: translate3d(0, 34px, 0);
}

html.reveal-enabled [data-reveal="down"] {
	transform: translate3d(0, -24px, 0);
}

html.reveal-enabled [data-reveal="left"] {
	transform: translate3d(-38px, 0, 0);
}

html.reveal-enabled [data-reveal="right"] {
	transform: translate3d(38px, 0, 0);
}

html.reveal-enabled [data-reveal].is-visible {
	opacity: 1;
	transform: translate3d(0, 0, 0);
	will-change: auto;
}

@media (max-width: 782px) {
	body.admin-bar .site-header {
		top: 46px;
	}

	body.admin-bar .mobile-menu-overlay,
	body.admin-bar .mobile-menu-drawer {
		top: 102px;
	}
}

@media (max-width: 767px) {
	.section-container {
		width: 100%;
		max-width: var(--container);
		padding-inline: 20px;
	}

	.section-title {
		font-size: 17px;
	}

	.site-header__top {
		height: 56px;
		padding: 0 16px;
	}

	.site-logo img {
		width: 140px;
	}

	.site-header__contact,
	.site-navigation {
		display: none;
	}

	.mobile-header-actions {
		display: flex;
		align-items: center;
		gap: 10px;
	}

	.mobile-header-button {
		display: flex;
		width: 34px;
		height: 34px;
		align-items: center;
		justify-content: center;
		padding: 0;
		border: 0;
		border-radius: 50%;
		color: #fff;
		cursor: pointer;
	}

	.mobile-header-button svg {
		width: 14px;
		height: 14px;
		fill: currentcolor;
		stroke: currentcolor;
		stroke-width: 1.7;
	}

	.mobile-header-button--phone {
		background: var(--navy);
	}

	.mobile-header-button--mail {
		background: var(--orange);
	}

	.mobile-header-button--mail svg {
		fill: none;
	}

	.mobile-header-button--menu {
		flex-direction: column;
		gap: 4px;
		background: #eef0f3;
	}

	.mobile-header-button--menu span {
		width: 17px;
		height: 1.5px;
		background: var(--navy);
		transition: transform .2s ease, opacity .2s ease;
	}

	body.mobile-menu-open {
		overflow: hidden;
	}

	body.mobile-menu-open .mobile-header-button--menu span:first-child {
		transform: translateY(5.5px) rotate(45deg);
	}

	body.mobile-menu-open .mobile-header-button--menu span:nth-child(2) {
		opacity: 0;
	}

	body.mobile-menu-open .mobile-header-button--menu span:last-child {
		transform: translateY(-5.5px) rotate(-45deg);
	}

	.mobile-menu-overlay {
		position: fixed;
		z-index: 90;
		top: 56px;
		right: 0;
		bottom: 0;
		left: 0;
		display: block;
		background: rgb(14 37 89 / 55%);
	}

	.mobile-menu-drawer {
		position: fixed;
		z-index: 95;
		top: 56px;
		right: 0;
		bottom: 0;
		display: flex;
		width: 78%;
		max-width: 320px;
		flex-direction: column;
		background: #fff;
		box-shadow: -8px 0 24px rgb(0 0 0 / 20%);
		overflow-y: auto;
	}

	.mobile-menu-overlay[hidden],
	.mobile-menu-drawer[hidden] {
		display: none;
	}

	.mobile-menu-drawer__nav {
		overflow-y: auto;
	}

	.mobile-menu-drawer__nav a {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 14px 24px;
		border-bottom: 1px solid #f1f2f5;
		color: var(--navy-light);
		font-size: 15px;
		font-weight: 600;
	}

	.mobile-menu-drawer__nav a.is-active {
		color: var(--navy);
	}

	.mobile-menu-drawer__nav a span {
		color: var(--orange);
		font-size: 20px;
		line-height: 1;
	}

	.mobile-menu-drawer__contact {
		padding: 20px 24px 24px;
	}

	.mobile-menu-drawer__phone {
		display: flex;
		align-items: center;
		gap: 8px;
		color: var(--navy);
		font-size: 19px;
		font-weight: 700;
		letter-spacing: .02em;
	}

	.mobile-menu-drawer__contact p {
		margin: 3px 0 20px;
		color: #5c6b85;
		font-size: 11px;
		font-weight: 700;
	}

	.mobile-menu-drawer__contact-button {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 8px;
		padding: 14px;
		background: var(--orange);
		color: #fff;
		font-size: 14px;
		font-weight: 700;
	}

	html.reveal-enabled [data-reveal="left"],
	html.reveal-enabled [data-reveal="right"] {
		transform: translate3d(0, 28px, 0);
	}

	.company-hero {
		height: 340px;
	}

	.company-hero__content {
		width: 100%;
		padding-inline: 20px;
	}

	.company-hero h1 {
		font-size: 28px;
	}

	.company-hero__line {
		margin: 18px 0;
	}

	.company-hero__content p {
		font-size: 13px;
	}

	.breadcrumbs {
		padding: 14px 20px;
		flex-wrap: wrap;
		gap: 4px 10px;
	}

	.company-content {
		padding-top: 0;
	}

	.company-section {
		width: 100%;
		padding-inline: 20px;
	}

	.company-message {
		padding-block: 48px 60px;
	}

	.company-section__heading h2 {
		font-size: 20px;
	}

	.company-section__english {
		font-size: 48px;
	}

	.company-section__line {
		margin-bottom: 32px;
	}

	.company-message__body {
		flex-direction: column;
		gap: 24px;
	}

	.company-message__text>p {
		font-size: 14px;
	}

	.company-message__signature img {
		width: min(220px, 100%);
	}

	.company-overview,
	.company-access {
		padding-block: 48px 60px;
	}

	.company-overview__layout,
	.company-access__layout {
		flex-direction: column;
		gap: 24px;
	}

	.company-overview__list {
		width: 100%;
	}

	.company-overview__row {
		align-items: flex-start;
		flex-direction: column;
		gap: 4px;
		padding: 14px 0;
	}

	.company-overview__row dt,
	.company-overview__row dd {
		width: 100%;
		padding: 0;
		font-size: 14px;
	}

	.company-overview__illustration {
		height: 200px;
	}

	.company-access__map {
		width: 100%;
		min-width: 0;
		height: 260px;
		flex: none;
	}

	.company-access__information {
		width: 100%;
		min-width: 0;
	}

	.recruit-content {
		width: 100%;
		padding: 64px 20px 48px;
	}

	.recruit-intro {
		margin-bottom: 38px;
	}

	.recruit-intro h2 {
		font-size: 22px;
	}

	.recruit-features {
		grid-template-columns: 1fr;
		gap: 12px;
		margin-bottom: 42px;
	}

	.recruit-feature {
		min-height: 94px;
	}

	.recruit-tabs {
		align-items: stretch;
	}

	.recruit-tab {
		padding: 13px 10px;
		font-size: 13px;
		line-height: 1.5;
	}

	.recruit-panel {
		padding: 20px;
	}

	.recruit-requirements__row {
		flex-direction: column;
	}

	.recruit-requirements__row dt {
		width: 100%;
		padding: 12px 14px;
	}

	.recruit-requirements__row dd {
		padding: 14px;
		font-size: 14px;
	}

	.recruit-appeal {
		padding: 24px 20px;
	}

	.recruit-appeal p {
		font-size: 14px;
	}

	.recruit-flow__steps--three,
	.recruit-flow__steps--two {
		grid-template-columns: 1fr;
	}

	.recruit-flow__steps>div {
		min-height: 78px;
	}

	.recruit-fit__grid {
		grid-template-columns: 1fr;
	}

	.recruit-fit__grid li {
		font-size: 14px;
	}

	.recruit-entry {
		padding: 32px 20px;
	}

	.recruit-entry p {
		font-size: 14px;
	}

	.recruit-entry a {
		width: 100%;
		justify-content: center;
		padding-inline: 16px;
	}

	.home-hero {
		height: calc(90vh - 56px);
		min-height: 0;
	}

	.home-hero__slide {
		background-image: url("../images/hero-sp.webp");
	}

	.home-hero__overlay {
		background: linear-gradient(0deg, #fff 0%, rgb(255 255 255 / 68%) 48%, rgb(255 255 255 / 12%) 100%);
	}

	.home-hero__content {
		top: auto;
		left: 0;
		padding: 0 20px;
		bottom: 62px;
		transform: none;
	}

	.home-hero__handwriting {
		top: auto;
		bottom: 130px;
		left: -34px;
		width: 270px;
		transform: none;
		    opacity: .8;
	}

	.home-hero__title {
		font-size: 28px;
	}

	.home-hero__description {
		font-size: 14px;
	}

	.home-hero__description br {
		display: none;
	}

	.home-hero__marquee {
		bottom: -28px;
		font-size: 58px;
	}

	.home-content {
		padding: 95px 0 80px;
	}

	.home-news {
		grid-template-columns: 1fr;
		gap: 25px;
		padding: 45px 20px;
	}

	.home-news__heading,
	.home-news__list {
		padding: 0;
	}

	.home-news__heading .text-link {
		margin-top: 15px;
	}

	.home-news__item {
		grid-template-columns: 1fr auto;
		gap: 6px 12px;
		padding: 16px 0;
	}

	.home-news__item time {
		grid-column: 1 / -1;
		font-size: 12px;
	}

	.home-services {
		margin-top: 85px;
	}

	.home-services__heading {
		align-items: flex-start;
		flex-direction: column;
		gap: 18px;
		padding-bottom: 35px;
	}

	.service-row {
		padding: 48px 0;
	}

	.service-row__inner {
		grid-template-columns: 1fr;
		gap: 27px;
	}

	.service-row__body,
	.service-row__inner--reverse .service-row__body {
		order: 2;
	}

	.service-row h3 {
		font-size: 21px;
	}

	.service-row__body>p:not(.service-row__number) {
		font-size: 14px;
	}

	.service-row__image {
		height: 235px;
		order: 1;
	}

	.home-contact__inner {
		min-height: 0;
		align-items: stretch;
		flex-direction: column;
		padding-block: 55px;
	}

	.home-contact h2 {
		font-size: 22px;
	}

	.home-contact__actions {
		width: 100%;
	}

	.home-policy {
		padding-block: 52px;
	}

	.site-footer__top {
		flex-direction: column;
		padding-block: 45px 35px;
	}

	.site-footer__nav {
		grid-template-columns: repeat(2, 1fr);
	}

	.site-footer__banners {
		grid-template-columns: repeat(2, 1fr);
	}

	.site-footer__bottom {
		padding: 20px 58px 20px 20px;
		text-align: left;
	}

	.page-top {
		right: 16px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.home-hero__slide {
		animation: none;
	}

	.home-hero__slide--first {
		opacity: 1;
	}

	.home-hero__slide--second,
	.home-hero__slide--third,
	.home-hero__slide--fourth {
		opacity: 0;
	}

	.home-hero__marquee-track {
		animation-play-state: paused;
	}

	html.reveal-enabled [data-reveal] {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

/* Single news */
.single-news {
	max-width: 880px;
	padding-block: 90px;
}

.single-news__header {
	padding-bottom: 28px;
	border-bottom: 1px solid #dcdfe6;
}

.single-news__meta {
	display: flex;
	align-items: center;
	gap: 14px;
	margin: 0 0 14px;
	color: #5c6b85;
	font-size: 13px;
}

.single-news__meta span {
	padding: 4px 12px;
	background: #eef2f9;
	color: var(--navy);
}

.single-news__header h1 {
	margin: 0;
	color: var(--navy);
	font-size: clamp(24px, 3vw, 34px);
	line-height: 1.6;
}

.single-news__thumbnail {
	margin: 40px 0;
}

.single-news__thumbnail img {
	display: block;
	width: 100%;
	height: auto;
}

.single-news__content {
	color: #202020;
	font-size: 15px;
	font-weight: 500;
	line-height: 2;
	padding-top: 40px;
}

.single-news__content> :first-child {
	margin-top: 0;
}

.single-news__content img {
	max-width: 100%;
	height: auto;
}

.single-news__content h2,
.single-news__content h3,
.single-news__content h4 {
	margin-top: 2em;
	color: var(--navy);
	line-height: 1.6;
}

.single-news__navigation {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 16px;
	margin-top: 56px;
	padding-top: 28px;
	border-top: 1px solid #dcdfe6;
	font-size: 14px;
	font-weight: 700;
}

.single-news__nav-btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 13px 24px;
	border: 1px solid var(--navy);
	color: var(--navy);
	font-size: 14px;
	font-weight: 700;
	white-space: nowrap;
}

.single-news__nav-btn--prev {
	justify-self: start;
}

.single-news__nav-btn--next {
	justify-self: end;
	flex-direction: row-reverse;
}

.single-news__nav-arrow {
	display: grid;
	width: 22px;
	height: 22px;
	flex: none;
	place-items: center;
	border-radius: 50%;
	background: var(--navy);
	color: #fff;
	font-size: 10px;
	transition: background-color .4s ease, color .4s ease;
}

.single-news__nav-btn--prev:hover,
.single-news__nav-btn--next:hover {
	background: var(--navy);
	color: #fff;
}

.single-news__nav-btn--prev:hover .single-news__nav-arrow,
.single-news__nav-btn--next:hover .single-news__nav-arrow {
	background: #fff;
	color: var(--navy);
}

.single-news__nav-btn--list {
	justify-self: center;
	padding: 13px 28px;
	border-color: var(--navy);
	background: var(--navy);
	color: #fff;
}

.single-news__nav-btn--list:hover {
	border-color: var(--orange);
	background: var(--orange);
}

.single-news__nav-icon {
	font-size: 15px;
}

.single-news__nav-btn--disabled {
	border-color: var(--line);
	color: #b7bfcc;
	pointer-events: none;
}

.single-news__nav-btn--disabled .single-news__nav-arrow {
	background: var(--line);
	color: #fff;
}

@media (max-width: 767px) {
	.single-news {
		padding-block: 60px;
	}

	.single-news__navigation {
		grid-template-columns: 1fr 1fr;
		grid-template-areas:
			"list list"
			"prev next";
		gap: 10px;
	}

	.single-news__nav-btn--list {
		grid-area: list;
	}

	.single-news__nav-btn--prev {
		grid-area: prev;
	}

	.single-news__nav-btn--next {
		grid-area: next;
	}

	.single-news__nav-btn {
		justify-self: stretch;
		justify-content: center;
		padding: 13px 12px;
		font-size: 13px;
	}
}

/* 404 page */
.error-404 {
	position: relative;
	display: grid;
	min-height: 600px;
	overflow: hidden;
	background: linear-gradient(135deg, #f8f9fb 0%, #eef2f9 100%);
	place-items: center;
	text-align: center;
}

.error-404__decoration {
	position: absolute;
	top: 50%;
	left: 50%;
	color: rgb(14 37 89 / 5%);
	font-size: clamp(220px, 31vw, 480px);
	font-weight: 900;
	letter-spacing: -.08em;
	line-height: .8;
	transform: translate(-50%, -50%);
	white-space: nowrap;
}

.error-404__content {
	position: relative;
	padding-block: 100px;
}

.error-404__code {
	margin: 0 0 14px;
	color: var(--orange);
	font-size: 20px;
	font-weight: 800;
	letter-spacing: .18em;
}

.error-404 h1 {
	margin: 0;
	color: var(--navy);
	font-size: clamp(28px, 4vw, 44px);
}

.error-404__line {
	display: block;
	width: 56px;
	height: 3px;
	margin: 26px auto;
	background: var(--orange);
}

.error-404__message {
	margin: 0;
	color: #33415f;
	font-size: 15px;
	font-weight: 500;
	line-height: 2;
}

.error-404__button {
	margin-top: 36px;
	background: #fff;
}

@media (max-width: 767px) {
	.error-404 {
		min-height: 480px;
	}

	.error-404__content {
		padding-block: 72px;
	}

	.error-404__message {
		font-size: 14px;
	}

	.error-404__message br {
		display: none;
	}
}

/* Business page */
.business-hero {
	position: relative;
	width: 100%;
	height: 700px;
	overflow: hidden;
	background: #fff;
}

.business-hero__background {
	position: absolute;
	inset: 0;
}

.business-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(255, 255, 255, .95) 0%, rgba(255, 255, 255, .8) 30%, rgba(255, 255, 255, .25) 55%, transparent 70%);
}

.business-hero__content {
	position: relative;
	display: flex;
	width: calc(100% - 128px);
	max-width: 1120px;
	height: 100%;
	margin-inline: auto;
	padding: 0;
	flex-direction: column;
	justify-content: center;
}

.business-hero__content h1 {
	margin: 0;
	color: var(--navy);
	font-size: 42px;
}

.business-hero__content>span {
	width: 56px;
	height: 3px;
	margin: 20px 0;
	background: var(--orange);
}

.business-hero__content p {
	margin: 0;
	color: var(--navy);
	font-size: 17px;
	font-weight: 700;
	line-height: 1.6;
}

.business-page {
	overflow: hidden;
	background: #fff;
	padding-top: 80px;
}

.business-service,
.business-section-inner {
	width: min(100% - 64px, 1120px);
	margin-inline: auto;
}

.business-service[id] {
	scroll-margin-top: 120px;
}

.business-service--01 {
	padding-top: 64px;
}

.business-service--02 {
	padding-block: 80px 100px;
}

.business-service__lead {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	align-items: center;
	gap: 56px;
}

.business-service--reverse .business-service__image {
	order: 2;
}

.business-service__image {
	height: 320px;
}

.business-service__image img,
.business-advisor__photo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.business-service__copy {
	display: flex;
	align-items: flex-start;
	gap: 16px;
}

.business-service__number {
	flex-shrink: 0;
	margin-top: -16px;
	color: #dce3ef;
	font-size: 56px;
	font-style: italic;
	font-weight: 500;
	line-height: 1;
}

.business-service__copy h2 {
	margin: 0 0 8px;
	color: var(--navy);
	font-size: 28px;
}

.business-service__line {
	display: block;
	width: 36px;
	height: 2px;
	margin-bottom: 12px;
	background: var(--orange);
}

.business-service__copy h3 {
	margin: 0 0 20px;
	color: var(--navy);
	font-size: 16px;
	line-height: 1.6;
}

.business-service__copy p {
	margin: 0;
	color: #202020;
	font-size: 15px;
	font-weight: 500;
	line-height: 2;
}

.business-service__cards {
	display: grid;
	gap: 16px;
	margin-top: 32px;
}

.business-service__cards--2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.business-service__cards--3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.business-card {
	display: flex;
	padding: 20px;
	flex-direction: column;
	gap: 10px;
	background: #fff;
	box-shadow: 0 2px 10px rgba(14, 37, 89, .06);
}

.business-card>div {
	display: flex;
	align-items: center;
	gap: 10px;
}

.business-card>div>span {
	display: grid;
	width: 36px;
	height: 36px;
	flex-shrink: 0;
	border-radius: 50%;
	background: #eef2f9;
	color: var(--navy);
	font-size: 20px;
	place-items: center;
}

.business-card h3 {
	margin: 0;
	color: var(--navy);
	font-size: 16px;
}

.business-card p {
	margin: 0;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.6;
}

.business-service__points {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin-top: 24px;
	padding: 20px 32px;
	background: #eef2f9;
}

.business-service__points strong {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	gap: 8px;
	color: var(--navy);
	font-size: 15px;
}

.business-service__points strong span {
	color: var(--orange);
	font-size: 11px;
}

.business-service__points>div {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px 32px;
}

.business-service__points>div>span {
	position: relative;
	color: #33415f;
	font-size: 14px;
	font-weight: 600;
}

.business-service__points>div>span:not(:first-child)::before {
	position: absolute;
	left: -17px;
	color: #c3cde3;
	content: "|";
}

.business-lease__points {
	margin-top: 32px;
	gap: 32px;
}

.business-lease__points>div {
	max-width: 700px;
	gap: 8px 32px;
}

.business-lease__points>div>span {
	width: calc(50% - 16px);
}

.business-problems {
	margin-top: 80px;
	padding-top: 56px;
	background: #eef2f9;
}

.business-heading {
	margin-bottom: 40px;
	text-align: center;
}

.business-heading>p {
	margin: 0 0 12px;
	color: var(--orange);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .08em;
}

.business-heading h2 {
	margin: 0;
	color: var(--navy);
	font-size: 26px;
}

.business-problems__list {
	position: relative;
	height: 290px;
	margin: 0 0 48px;
	padding: 0;
	list-style: none;
}

.business-problems__list li {
	position: absolute;
	display: flex;
	max-width: 720px;
	padding: 18px 24px;
	align-items: baseline;
	gap: 10px;
	background: #fff;
	box-shadow: 0 2px 10px rgba(14, 37, 89, .08);
}

.business-problems__list li:nth-child(1) {
	top: 0;
	left: 10%;
}

.business-problems__list li:nth-child(2) {
	top: 46px;
	right: 10%;
}

.business-problems__list li:nth-child(3) {
	top: 92px;
	left: 10%;
}

.business-problems__list li:nth-child(4) {
	top: 138px;
	right: 10%;
}

.business-problems__list li:nth-child(5) {
	top: 184px;
	left: 10%;
}

.business-problems__list li:nth-child(6) {
	top: 230px;
	right: 10%;
}

.business-problems__list span,
.business-problems__list strong {
	color: var(--orange);
	font-weight: 700;
}

.business-problems__list p {
	margin: 0;
	font-size: 15px;
	font-weight: 600;
}

.business-problems__illustrations {
	display: flex;
	justify-content: center;
	gap: 8px;
}

.business-problems__illustrations>div {
	width: 300px;
	height: 230px;
	flex-shrink: 0;
	background: transparent;
}

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

.business-advisor {
	padding-top: 80px;
}

.business-advisor__panel {
	padding: 48px;
	background: #fff;
	box-shadow: 0 4px 24px rgba(14, 37, 89, .08);
}

.business-advisor__heading {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 32px;
	margin-bottom: 36px;
}

.business-advisor__person {
	position: relative;
	display: grid;
	width: 240px;
	height: 240px;
	flex-shrink: 0;
	place-items: center;
}

.business-advisor__person img {
	position: relative;
	z-index: 1;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.business-advisor__person>span {
	position: absolute;
	width: 200px;
	height: 200px;
	border-radius: 50%;
	background: #fbe8d3;
}

.business-advisor__person>div {
	position: relative;
	width: 240px;
	height: 240px;
	background: transparent;
}

.business-advisor__heading p {
	display: inline-block;
	margin: 0 0 20px;
	padding: 10px 24px;
	background: var(--navy);
	color: #fff;
	font-size: 14px;
	font-weight: 700;
}

.business-advisor__heading h2 {
	margin: 0;
	color: var(--navy);
	font-size: 32px;
	line-height: 1.5;
}

.business-advisor__divider {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 32px;
}

.business-advisor__divider span {
	height: 1px;
	flex: 1;
	background: #c3cde3;
}

.business-advisor__divider b {
	color: #c3cde3;
	font-size: 20px;
}

.business-advisor__body {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 48px;
}

.business-advisor__body>p {
	min-width: 280px;
	margin: 0;
	flex: 1.4;
	color: #202020;
	font-size: 16px;
	font-weight: 500;
	line-height: 2.1;
}

.business-advisor__photo {
	min-width: 280px;
	flex: 1;
}

.business-flow {
	position: relative;
	margin: 80px 0 140px;
	padding: 80px 0;
	overflow: hidden;
}

.business-flow__background,
.business-flow__overlay {
	position: absolute;
	inset: 0;
}

.business-flow__background {
	background: url("../images/contact-bg.webp") center / cover no-repeat;
}

.business-flow__overlay {
	background: rgba(255, 255, 255, .82);
}

.business-flow__inner {
	position: relative;
	width: min(100% - 64px, 1120px);
	margin-inline: auto;
}

.business-flow .business-heading {
	margin-bottom: 48px;
}

.business-flow__row {
	display: grid;
	margin: 0;
	padding: 0;
	gap: 20px;
	list-style: none;
}

.business-flow__row--first {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin-bottom: 20px;
}

.business-flow__row--last {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.business-flow__row li {
	padding: 28px 20px;
	background: rgba(255, 255, 255, 1);
}

.business-flow__row li>div {
	display: flex;
	align-items: baseline;
	gap: 10px;
	margin-bottom: 12px;
}

.business-flow__row span {
	color: var(--orange);
	font-size: 32px;
	font-weight: 700;
	line-height: 1;
}

.business-flow__row h3 {
	margin: 0;
	color: var(--navy);
	font-size: 16px;
}

.business-flow__row p {
	margin: 0;
	color: #202020;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.8;
}

.business-flow__note {
	margin: 32px 0 0;
	padding: 18px 28px;
	background: #fff;
	border-left: 4px solid var(--orange);
	color: var(--navy);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.8;
	box-shadow: 0 2px 10px rgba(14, 37, 89, .08);
}

@media (max-width: 767px) {
	.business-hero {
		height: 340px;
	}

	.business-hero__content {
		width: calc(100% - 40px);
		padding: 0;
	}

	.business-hero__content h1 {
		font-size: 28px;
	}

	.business-service,
	.business-section-inner {
		width: min(100% - 40px, 1120px);
	}

	.business-service--01 {
		padding-top: 48px;
	}

	.business-service--02 {
		padding-block: 60px 72px;
	}

	.business-service__lead {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.business-service--reverse .business-service__image {
		order: initial;
	}

	.business-service__image {
		height: 230px;
	}

	.business-service__copy {
		align-items: stretch;
		flex-direction: column;
		gap: 10px;
	}

	.business-service__number {
		margin-top: 0;
		font-size: 32px;
	}

	.business-service__copy h2 {
		font-size: 22px;
	}

	.business-service__cards--2,
	.business-service__cards--3 {
		grid-template-columns: 1fr;
	}

	.business-service__points {
		align-items: flex-start;
		flex-direction: column;
		gap: 14px;
	}

	.business-service__points>div {
		align-items: flex-start;
		flex-direction: column;
	}

	.business-service__points>div>span,
	.business-lease__points>div>span {
		width: 100%;
	}

	.business-service__points>div>span:not(:first-child)::before {
		display: none;
	}

	.business-problems {
		margin-top: 60px;
		padding-top: 48px;
	}

	.business-heading h2 {
		font-size: 21px;
		line-height: 1.6;
	}

	.business-problems__list {
		display: grid;
		height: auto;
		margin-bottom: 36px;
		gap: 10px;
	}

	.business-problems__list li,
	.business-problems__list li:nth-child(n) {
		position: static;
		padding: 15px;
	}

	.business-problems__illustrations {
		gap: 4px;
		overflow: hidden;
	}

	.business-problems__illustrations>div {
		width: calc((100% - 8px) / 3);
		height: 87px;
	}

	.business-advisor {
		padding-top: 60px;
	}

	.business-advisor__panel {
		padding: 28px 14px;
	}

	.business-advisor__heading {
		justify-content: center;
		text-align: center;
	}

	.business-advisor__person {
		width: 200px;
		height: 200px;
	}

	.business-advisor__person>span {
		width: 170px;
		height: 170px;
	}

	.business-advisor__person>div {
		width: 200px;
		height: 200px;
	}

	.business-advisor__heading p {
		padding: 9px 14px;
	}

	.business-advisor__heading h2 {
		font-size: 16px;
	}

	.business-advisor__body {
		gap: 28px;
	}

	.business-advisor__body>p {
		min-width: 0;
		font-size: 14px;
	}

	.business-advisor__photo {
		width: 100%;
		min-width: 0;
		flex: none;
	}

	.business-flow {
		width: 100%;
		margin: 60px 0 80px;
		padding: 60px 0 72px;
	}

	.business-flow__inner {
		width: min(100% - 40px, 1120px);
	}

	.business-flow__row--first,
	.business-flow__row--last {
		grid-template-columns: 1fr;
		margin-bottom: 14px;
		gap: 14px;
	}

	.business-flow__note {
		padding: 16px 20px;
	}
}

/* Rental property archive */
.rent-listing {
	background: #fff;
	padding: 140px 0 100px;
}

.rent-listing__inner {
	display: grid;
	grid-template-columns: 280px minmax(0, 1fr);
	align-items: start;
	gap: 32px;
	max-width: 1200px;
}

.rent-filter {
	border: 1px solid #eef0f3;
	padding: 28px;
	background: #fff;
}

.rent-filter__title {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 20px;
	color: #0e2559;
	font-size: 15px;
}

.rent-filter__title span {
	color: #dd7004;
}

.rent-filter__field {
	min-width: 0;
	margin: 0 0 20px;
	padding: 0;
	border: 0;
}

.rent-filter__field label,
.rent-filter__field legend {
	display: block;
	margin-bottom: 8px;
	color: #33415f;
	font-size: 13px;
	font-weight: 700;
}

.rent-filter select,
.rent-filter input[type="number"],
.rent-results__toolbar select {
	width: 100%;
	min-width: 0;
	border: 1px solid #dcdfe6;
	border-radius: 0;
	background: #fafafa;
	color: #33415f;
	font: inherit;
	font-size: 13px;
	padding: 12px;
}

.rent-filter__range {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
	align-items: center;
	gap: 8px;
}

.rent-filter__range input {
	appearance: textfield;
}

.rent-filter__range input::-webkit-inner-spin-button {
	appearance: none;
}

.rent-filter__checks {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.rent-filter__checks label {
	display: flex;
	align-items: center;
	gap: 6px;
	margin: 0;
	font-weight: 500;
}

.rent-filter__checks input {
	width: 16px;
	height: 16px;
	accent-color: #0e2559;
}

.rent-filter__submit {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	border: 0;
	background: #0e2559;
	color: #fff;
	cursor: pointer;
	font: inherit;
	font-size: 14px;
	font-weight: 700;
	padding: 16px;
	transition: background-color .25s ease;
}

.rent-filter__submit:hover,
.rent-filter__submit:focus-visible {
	background: #dd7004;
}

.rent-filter__reset {
	display: block;
	margin-top: 12px;
	color: #5c6b85;
	font-size: 12px;
	text-align: center;
	text-decoration-line: underline;
	text-decoration-color: transparent;
	text-underline-offset: 4px;
}

.rent-filter__reset:hover,
.rent-filter__reset:focus-visible {
	color: var(--navy);
	text-decoration-color: currentColor;
}

.rent-results {
	min-width: 0;
}

.rent-results__toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 20px;
}

.rent-results__toolbar h2 {
	margin: 0;
	color: #33415f;
	font-size: 14px;
	font-weight: 500;
}

.rent-results__toolbar select {
	width: auto;
	background: #fff;
	padding: 10px 16px;
}

.rent-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.rent-card {
	min-width: 0;
	border: 1px solid #eef0f3;
	background: #fff;
	transition: border-color .3s ease-in-out, box-shadow .3s ease-in-out, transform .3s ease-in-out;
}

.rent-card:hover,
.rent-card:focus-within {
	border-color: #d8deea;
	box-shadow: 0 12px 28px rgba(14, 37, 89, .12);
	transform: translateY(-3px);
}

.rent-card>a {
	display: block;
	height: 100%;
	color: inherit;
}

.rent-card__media {
	position: relative;
	height: 210px;
	overflow: hidden;
	background: #e9ecf2;
}

.rent-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: filter .3s ease-in-out, transform .3s ease-in-out;
}

.rent-card:hover .rent-card__media img,
.rent-card:focus-within .rent-card__media img {
	filter: brightness(.96);
	transform: scale(1.035);
}

.rent-card__badge {
	position: absolute;
	z-index: 1;
	top: 10px;
	left: 10px;
	background: #dd7004;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	padding: 4px 10px;
}

.rent-card__body {
	padding: 16px;
}

.rent-card__body h3 {
	overflow: hidden;
	margin: 0 0 6px;
	color: #0e2559;
	font-size: 14px;
	font-weight: 700;
	text-overflow: ellipsis;
	transition: color .3s ease-in-out;
	white-space: nowrap;
}

.rent-card:hover .rent-card__body h3,
.rent-card:focus-within .rent-card__body h3 {
	color: var(--orange);
}

.rent-card__body p {
	margin: 0 0 2px;
	color: #5c6b85;
	font-size: 12px;
}

.rent-card__body .rent-card__price {
	margin-bottom: 8px;
	color: #dd7004;
	font-size: 19px;
	font-weight: 700;
}

.rent-pagination {
	margin-top: 40px;
}

.rent-pagination .page-numbers {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.rent-pagination a,
.rent-pagination span {
	display: grid;
	min-width: 40px;
	height: 40px;
	padding: 0 10px;
	place-items: center;
	border: 1px solid #dcdfe6;
	background: #fff;
	color: #33415f;
	font-size: 13px;
}

.rent-pagination a:hover,
.rent-pagination a:focus-visible {
	border-color: var(--navy);
	background: var(--navy);
	color: #fff;
}

.rent-pagination .current {
	border-color: #0e2559;
	background: #0e2559;
	color: #fff;
	font-weight: 700;
}

.rent-results__empty {
	border: 1px solid #eef0f3;
	padding: 64px 24px;
	color: #5c6b85;
	text-align: center;
}

.rent-results__empty h3 {
	margin: 0 0 12px;
	color: #0e2559;
	font-size: 20px;
}

.rent-results__empty p {
	margin: 0;
	font-size: 14px;
}

@media (max-width: 1024px) and (min-width: 768px) {
	.rent-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {

	.business-page {
		padding-top: 0;
	}
	.rent-listing {
		padding: 40px 0 60px;
	}

	.rent-listing__inner {
		grid-template-columns: minmax(0, 1fr);
		gap: 32px;
	}

	.rent-filter {
		width: 100%;
		padding: 24px 20px;
	}

	.rent-results__toolbar {
		align-items: flex-start;
	}

	.rent-results__toolbar select {
		max-width: 180px;
	}

	.rent-grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 14px;
	}

	.rent-card__media {
		height: 210px;
	}
}

/* News archive */
.news-archive {
	background: #fff;
	padding: 140px 0 100px;
}

.news-archive__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 280px;
	align-items: start;
	gap: 32px;
	max-width: 1200px;
}

.news-main {
	min-width: 0;
}

.news-categories {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 28px;
}

.news-categories a {
	background: #f7f8fa;
	color: #5c6b85;
	font-size: 13px;
	font-weight: 700;
	padding: 10px 20px;
	transition: background-color .4s ease, color .4s ease;
}

.news-categories a:hover,
.news-categories a:focus-visible,
.news-categories a.is-active {
	background: #0e2559;
	color: #fff;
}

.news-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.news-card {
	min-width: 0;
	overflow: hidden;
	border: 1px solid #eef0f3;
	background: #fff;
	transition: box-shadow .4s ease, transform .4s ease;
}

.news-card:hover {
	box-shadow: 0 12px 28px rgba(14, 37, 89, .12);
	transform: translateY(-3px);
}

.news-card>a {
	display: block;
	height: 100%;
	color: inherit;
}

.news-card__media {
	height: 170px;
	overflow: hidden;
	background: #e9ecf2;
}

.news-card__media.media-placeholder {
	background: #eef5ff;
	color: var(--navy);
}

.news-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .4s ease;
}

.news-card:hover .news-card__media img {
	transform: scale(1.035);
}

.news-card__body {
	padding: 16px;
}

.news-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 8px;
	color: #8a93a6;
	font-size: 12px;
}

.news-card__body h3 {
	margin: 0 0 8px;
	color: #0e2559;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.5;
}

.news-card__excerpt {
	display: -webkit-box;
	overflow: hidden;
	margin: 0;
	color: #5c6b85;
	font-size: 13px;
	line-height: 1.6;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.news-popular {
	min-width: 0;
}

.news-popular>h2 {
	margin: 0 0 16px;
	color: #0e2559;
	font-size: 14px;
}

.news-popular__item {
	display: block;
	margin-bottom: 12px;
	border: 1px solid #eef0f3;
	padding: 16px;
	color: #33415f;
	transition: border-color .4s ease, box-shadow .4s ease;
}

.news-popular__item:hover,
.news-popular__item:focus-visible {
	border-color: #c3cde3;
	box-shadow: 0 8px 20px rgba(14, 37, 89, .08);
}

.news-popular__item h3 {
	margin: 0 0 8px;
	color: #0e2559;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.6;
}

.news-popular__item p,
.news-popular__empty {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
	color: #8a93a6;
	font-size: 11px;
}

@media (max-width: 1024px) and (min-width: 768px) {
	.news-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.news-archive {
		padding: 40px 0 60px;
	}

	.news-archive__inner {
		grid-template-columns: minmax(0, 1fr);
		gap: 48px;
	}

	.news-categories {
		gap: 8px;
	}

	.news-categories a {
		padding: 9px 14px;
	}

	.news-grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 14px;
	}

	.news-card__media {
		height: 190px;
	}
}

/* Contact page / Contact Form 7 */
.contact-page {
	width: min(100% - 40px, 840px);
	margin-inline: auto;
	padding: 140px 0;
}

.contact-page__heading {
	margin-bottom: 56px;
	text-align: center;
}

.contact-page__heading .section-label {
	margin-bottom: 16px;
}

.contact-page__heading h2 {
	margin: 0;
	color: #0e2559;
	font-size: 28px;
}

.contact-page__heading>span {
	display: block;
	width: 36px;
	height: 2px;
	margin: 24px auto 0;
	background: #dd7004;
}

.contact-page__heading>p:last-child {
	margin: 32px 0 0;
	color: #202020;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.9;
}

.cf7-contact {
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.cf7-contact__row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.cf7-contact__field {
	min-width: 0;
}

.cf7-contact__field>label {
	display: block;
	margin-bottom: 10px;
	color: #0e2559;
	font-size: 14px;
	font-weight: 700;
}

.cf7-contact__required {
	color: #dd7004;
	font-size: 12px;
}

.cf7-contact .wpcf7-form-control-wrap {
	display: block;
}

.cf7-contact input[type="text"],
.cf7-contact input[type="email"],
.cf7-contact input[type="tel"],
.cf7-contact select,
.cf7-contact textarea {
	width: 100%;
	border: 1px solid #d8dbe2;
	border-radius: 0;
	background: #fff;
	color: #202020;
	font: inherit;
	font-size: 15px;
	padding: 14px 16px;
}

.cf7-contact textarea {
	min-height: 180px;
	resize: vertical;
}

.cf7-contact input:focus,
.cf7-contact select:focus,
.cf7-contact textarea:focus {
	border-color: #0e2559;
	outline: 2px solid rgba(14, 37, 89, .12);
	outline-offset: 1px;
}

.cf7-contact__acceptance {
	color: #202020;
	font-size: 14px;
	font-weight: 500;
}

.cf7-contact__acceptance label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.cf7-contact__acceptance input {
	width: 17px;
	height: 17px;
	accent-color: #0e2559;
}

.cf7-contact__acceptance a {
	color: #0e2559;
	text-decoration: underline;
}

.cf7-contact__submit {
	position: relative;
	align-self: center;
}

.cf7-contact__submit::after {
	position: absolute;
	top: 50%;
	right: 30px;
	color: #fff;
	content: "→";
	pointer-events: none;
	transform: translateY(-50%);
}

.cf7-contact input[type="submit"] {
	min-width: 210px;
	border: 0;
	border-radius: 0;
	background: #dd7004;
	color: #fff;
	cursor: pointer;
	font: inherit;
	font-size: 15px;
	font-weight: 700;
	padding: 16px 56px;
	transition: background-color .4s ease;
}

.cf7-contact input[type="submit"]:hover,
.cf7-contact input[type="submit"]:focus-visible {
	background: #0e2559;
}

.cf7-contact .wpcf7-not-valid-tip {
	margin-top: 6px;
	font-size: 12px;
}

.cf7-contact .wpcf7-response-output {
	margin: 8px 0 0;
	padding: 12px 16px;
	font-size: 13px;
}

.cf7-contact .wpcf7-spinner {
	display: none;
}

.contact-form__notice,
.contact-form__unavailable {
	border: 1px solid #d8dbe2;
	background: #f7f8fa;
	padding: 24px;
	color: #5c6b85;
	font-size: 14px;
	text-align: center;
}

.contact-form__notice p {
	margin: 4px 0;
}

@media (max-width: 767px) {
	.contact-page {
		width: min(100% - 40px, 840px);
		padding: 48px 0;
	}

	.contact-page__heading {
		margin-bottom: 40px;
	}

	.contact-page__heading h2 {
		font-size: 22px;
	}

	.contact-page__heading>p:last-child {
		font-size: 14px;
	}

	.contact-page__heading br {
		display: none;
	}

	.cf7-contact__row {
		grid-template-columns: minmax(0, 1fr);
		gap: 28px;
	}

	.cf7-contact__submit,
	.cf7-contact input[type="submit"] {
		width: 100%;
	}
}

/* Customer harassment policy */
.harassment-policy {
	background: #fff;
	padding: 64px 20px 100px;
}

.harassment-policy__inner {
	width: min(100%, 840px);
	margin-inline: auto;
}

.harassment-policy__inner>h2 {
	margin: 0 0 24px;
	color: #0e2559;
	font-size: 24px;
	line-height: 1.6;
}

.harassment-policy__lead,
.harassment-policy__box {
	border: 1px solid #dcdfe6;
	background: #fafbfc;
}

.harassment-policy__lead {
	margin: 0 0 40px;
	padding: 24px;
	color: #202020;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.9;
}

.harassment-policy__sections {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.harassment-policy__sections h3 {
	margin: 0 0 12px;
	color: #0e2559;
	font-size: 16px;
	line-height: 1.6;
}

.privacy-policy__sections h2 {
	margin: 0 0 12px;
	color: #0e2559;
	font-size: 16px;
	line-height: 1.6;
}

.harassment-policy__sections p {
	margin: 0 0 12px;
	color: #202020;
	font-size: 15px;
	font-weight: 600;
	line-height: 2;
}

.harassment-policy__sections p:last-child {
	margin-bottom: 0;
}

.harassment-policy__box {
	margin: 0;
	padding: 20px 24px 20px 46px;
	color: #202020;
	font-size: 15px;
	font-weight: 600;
	line-height: 2.1;
}

.harassment-policy__box+p {
	margin-top: 12px;
}

.harassment-policy__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 4px;
	color: #dd7004;
	font-size: 14px;
	font-weight: 700;
	text-decoration-line: underline;
	text-decoration-color: transparent;
	text-underline-offset: 4px;
}

.harassment-policy__link:hover,
.harassment-policy__link:focus-visible {
	text-decoration-color: currentColor;
}

@media (max-width: 767px) {

	.harassment-hero .company-hero__content h1,
	.privacy-hero .company-hero__content h1 {
		font-size: 24px;
	}

	.harassment-policy {
		padding: 48px 20px 60px;
	}

	.harassment-policy__inner>h2 {
		font-size: 20px;
	}

	.harassment-policy__lead {
		padding: 20px;
		font-size: 14px;
	}

	.harassment-policy__sections p,
	.harassment-policy__box {
		font-size: 14px;
	}

	.harassment-policy__box {
		padding: 18px 18px 18px 38px;
	}
}

/* Documents download page */
.documents-page {
	background: #fff;
	padding: 140px 20px 100px;
}

.documents-page__inner {
	width: min(100%, 1120px);
	margin-inline: auto;
}

.documents-page__heading h2 {
	margin: 0 0 12px;
	color: #0e2559;
	font-size: 22px;
}

.documents-page__heading p {
	margin: 0 0 28px;
	color: #202020;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.8;
}

.documents-list {
	margin-bottom: 32px;
	border: 1px solid #eef0f3;
}

.documents-list__item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 20px 24px;
	border-bottom: 1px solid #eef0f3;
}

.documents-list__item:last-child {
	border-bottom: 0;
}

.documents-list__item h3 {
	margin: 0;
	color: #0e2559;
	font-size: 15px;
}

.documents-list__item>a,
.documents-list__unavailable {
	display: inline-flex;
	flex-shrink: 0;
	align-items: center;
	gap: 8px;
	min-width: 150px;
	justify-content: center;
	padding: 10px 22px;
	font-size: 13px;
	font-weight: 700;
	white-space: nowrap;
}

.documents-list__item>a {
	background: #0e2559;
	color: #fff;
	transition: background-color .4s ease;
}

.documents-list__item>a:hover,
.documents-list__item>a:focus-visible {
	background: #dd7004;
}

.documents-list__item>a span,
.documents-list__unavailable span {
	border: 1px solid currentColor;
	padding: 1px 6px;
	font-size: 10px;
}

.documents-list__unavailable {
	background: #eef0f3;
	color: #8a93a6;
}

.documents-return>h2 {
	margin: 0 0 12px;
	color: #0e2559;
	font-size: 16px;
}

.documents-return>h2 {
	margin-bottom: 16px;
}

.documents-return__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.documents-return__grid>div {
	border: 1px solid #eef0f3;
	padding: 24px;
	text-align: center;
}

.documents-return__grid>div>span {
	display: block;
	margin-bottom: 12px;
	color: #dd7004;
	font-size: 22px;
}

.documents-return__grid h3 {
	margin: 0;
	color: #0e2559;
	font-size: 14px;
}

.documents-return__grid p {
	margin: 8px 0 0;
	color: #5c6b85;
	font-size: 13px;
	line-height: 1.6;
}

@media (max-width: 767px) {
	.documents-page {
		padding: 40px 20px 60px;
	}

	.documents-page__heading h2 {
		font-size: 20px;
	}

	.documents-list__item {
		align-items: stretch;
		flex-direction: column;
		gap: 14px;
		padding: 18px;
	}

	.documents-list__item>a,
	.documents-list__unavailable {
		width: 100%;
	}

	.documents-return__grid {
		grid-template-columns: minmax(0, 1fr);
	}
}

/* Rental property detail */
.property-detail__breadcrumbs {
	font-size: 13px;
}

.property-detail {
	background: #fff;
	padding: 48px 20px 100px;
}

.property-detail__inner {
	width: min(100%, 1120px);
	margin-inline: auto;
}

.property-detail__header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 24px;
}

.property-detail__type {
	display: inline-block;
	background: #dd7004;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	padding: 5px 14px;
}

.property-detail__header h1 {
	margin: 12px 0 0;
	color: #0e2559;
	font-size: 28px;
	line-height: 1.5;
}

.property-detail__header>div>p {
	margin: 6px 0 0;
	color: #202020;
	font-size: 16px;
}

.property-detail__price {
	flex-shrink: 0;
	margin: 0;
	color: #dd7004;
	font-size: 36px;
	font-weight: 700;
}

.property-gallery__main {
	position: relative;
	height: 520px;
	overflow: hidden;
	background: #e9ecf2;
}

.property-gallery__main img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.property-gallery__arrow {
	position: absolute;
	top: 50%;
	z-index: 1;
	display: grid;
	width: 48px;
	height: 48px;
	border: 1px solid rgba(255, 255, 255, 0.7);
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.48);
	color: #fff;
	font-size: 32px;
	line-height: 1;
	place-items: center;
	transform: translateY(-50%);
	cursor: pointer;
}

.property-gallery__arrow--prev {
	left: 20px;
}

.property-gallery__arrow--next {
	right: 20px;
}

.property-gallery__slider {
	display: grid;
	grid-template-columns: 40px minmax(0, 1fr) 40px;
	align-items: center;
	gap: 8px;
	margin-top: 12px;
}

.property-gallery__thumbs {
	display: flex;
	gap: 12px;
	overflow-x: auto;
	scroll-behavior: smooth;
	scroll-snap-type: x proximity;
	scrollbar-width: thin;
}

.property-gallery__thumbs button {
	flex: 0 0 calc((100% - 36px) / 4);
	height: 140px;
	overflow: hidden;
	border: 3px solid transparent;
	background: #e9ecf2;
	cursor: pointer;
	padding: 0;
	scroll-snap-align: start;
}

.property-gallery__thumbs button.is-active {
	border-color: #dd7004;
}

.property-gallery__thumbs img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.property-gallery__thumb-arrow {
	display: grid;
	width: 40px;
	height: 52px;
	padding: 0;
	border: 1px solid #c7cbd2;
	background: #fff;
	color: #253248;
	font-size: 28px;
	place-items: center;
	cursor: pointer;
}

.property-gallery__arrow:hover,
.property-gallery__arrow:focus-visible,
.property-gallery__thumb-arrow:hover,
.property-gallery__thumb-arrow:focus-visible {
	outline: 2px solid #dd7004;
	outline-offset: 2px;
}

.property-detail__section {
	margin-top: 48px;
}

.property-detail__section>h2 {
	margin: 0 0 16px;
	border-left: 4px solid #dd7004;
	padding-left: 12px;
	color: #0e2559;
	font-size: 20px;
}

.property-specs {
	margin: 0;
	border-top: 1px solid #dcdfe6;
}

.property-specs>div {
	display: grid;
	grid-template-columns: 220px minmax(0, 1fr);
	border-right: 1px solid #dcdfe6;
	border-bottom: 1px solid #dcdfe6;
	border-left: 1px solid #dcdfe6;
}

.property-specs dt,
.property-specs dd {
	margin: 0;
	padding: 15px 18px;
	color: #202020;
	font-size: 14px;
	line-height: 1.7;
}

.property-specs dt {
	background: #fafbfc;
	color: #0e2559;
	font-weight: 700;
}

.property-specs__text {
	display: inline-block;
}

.property-equipment {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.property-equipment li {
	border: 1px solid #dcdfe6;
	background: #fafbfc;
	padding: 8px 14px;
	color: #33415f;
	font-size: 13px;
}

.property-map {
	width: 100%;
	height: 280px;
	overflow: hidden;
	background: #e9ecf2;
}

.property-map iframe {
	width: 100%;
	height: 100%;
	border: 0;
}

.property-detail__description {
	margin: 12px 0 0;
	color: #202020;
	font-size: 15px;
	line-height: 1.8;
}

.property-detail__remarks {
	border: 1px solid #eef0f3;
	background: #fafafa;
	padding: 24px;
	color: #202020;
	font-size: 15px;
	line-height: 1.8;
}

.property-inquiry {
	margin-top: 48px;
	border: 2px solid #0e2559;
	padding: 32px;
}

.property-inquiry h2 {
	margin: 0 0 12px;
	color: #0e2559;
	font-size: 21px;
}

.property-inquiry p {
	margin: 0 0 20px;
	color: #33415f;
	font-size: 15px;
}

.property-inquiry__form {
	margin-top: 28px;
}

.property-inquiry .cf7-contact__row {
	gap: 14px;
}

.property-inquiry .cf7-contact__choices {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 24px;
}

.property-inquiry .cf7-contact__choices .wpcf7-list-item {
	margin: 0;
}

.property-inquiry .cf7-contact__choices label {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.property-inquiry input[readonly] {
	background: #f7f8fa;
	color: #33415f;
}

@media (max-width: 767px) {
	.property-detail {
		padding: 32px 20px 60px;
	}

	.property-detail__header {
		align-items: flex-start;
		flex-direction: column;
		gap: 16px;
	}

	.property-detail__header h1 {
		font-size: 20px;
	}

	.property-detail__price {
		font-size: 24px;
	}

	.property-gallery__main {
		height: 260px;
	}

	.property-gallery__arrow {
		width: 38px;
		height: 38px;
		font-size: 26px;
	}

	.property-gallery__arrow--prev {
		left: 10px;
	}

	.property-gallery__arrow--next {
		right: 10px;
	}

	.property-gallery__slider {
		grid-template-columns: 32px minmax(0, 1fr) 32px;
		gap: 6px;
	}

	.property-gallery__thumbs {
		gap: 8px;
	}

	.property-gallery__thumbs button {
		flex-basis: calc((100% - 16px) / 3);
		height: 100px;
	}

	.property-gallery__thumb-arrow {
		width: 32px;
		height: 44px;
		font-size: 24px;
	}

	.property-specs>div {
		grid-template-columns: 32% minmax(0, 1fr);
	}

	.property-specs dt,
	.property-specs dd {
		padding: 12px;
		font-size: 13px;
		word-break: break-word;
	}

	.property-inquiry {
		padding: 24px 20px;
	}

	.property-inquiry .cf7-contact__choices {
		flex-direction: column;
		gap: 10px;
	}
	
	.br {
		display: block;
	}
}
