@charset "UTF-8";

.page-project-progress-lp {
	color: #243247;
	background: #fff;
}

.page-project-progress-lp *,
.page-project-progress-lp *::before,
.page-project-progress-lp *::after {
	box-sizing: border-box;
}

.page-project-progress-lp #l-main {
	line-height: 1.8;
}

.pp-container {
	width: min(1120px, calc(100% - 48px));
	margin-right: auto;
	margin-left: auto;
}

.pp-container--narrow {
	width: min(920px, calc(100% - 48px));
}

.pp-breadcrumb-wrap {
	width: min(1200px, calc(100% - 48px));
	margin: 0 auto;
	padding-top: 16px;
}

.pp-hero {
	position: relative;
	overflow: hidden;
	padding: 76px 0 84px;
	background:
		radial-gradient(circle at 90% 10%, rgba(29, 124, 189, .14), transparent 34%),
		linear-gradient(135deg, #f3f8fc 0%, #fff 62%);
}

.pp-hero::after {
	position: absolute;
	right: -120px;
	bottom: -180px;
	width: 420px;
	height: 420px;
	border: 70px solid rgba(232, 177, 43, .12);
	border-radius: 50%;
	content: "";
}

.pp-hero__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
	gap: 60px;
	align-items: center;
}

.pp-eyebrow,
.pp-section-label {
	margin: 0 0 14px;
	color: #1675b9;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: .12em;
}

.pp-hero h1 {
	margin: 0;
	color: #14283d;
	font-size: clamp(34px, 4vw, 54px);
	line-height: 1.34;
	letter-spacing: .01em;
}

.pp-hero__lead {
	margin: 30px 0 0;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.75;
}

.pp-hero__text {
	margin: 14px 0 0;
	font-size: 16px;
}

.pp-hero__visual {
	margin: 0;
	padding: 18px;
	border: 1px solid #dce6ef;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 24px 60px rgba(28, 58, 84, .15);
}

.pp-hero__visual img {
	display: block;
	width: 100%;
	height: auto;
}

.pp-hero__visual figcaption {
	margin-top: 12px;
	color: #5d6b79;
	font-size: 13px;
	text-align: center;
}

.pp-cta-group {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 30px;
}

.pp-cta-group--center {
	justify-content: center;
}

.pp-btn {
	display: inline-flex;
	min-height: 56px;
	padding: 14px 28px;
	border: 2px solid transparent;
	border-radius: 6px;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
	text-decoration: none;
	transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.pp-btn:hover,
.pp-btn:focus {
	transform: translateY(-2px);
	text-decoration: none;
}

.pp-btn--primary {
	color: #17283a;
	background: #f0bd35;
	box-shadow: 0 8px 20px rgba(177, 125, 0, .2);
}

.pp-btn--primary:hover,
.pp-btn--primary:focus {
	color: #17283a;
	background: #f7cc59;
}

.pp-btn--secondary {
	border-color: #1675b9;
	color: #0c639f;
	background: #fff;
}

.pp-btn--secondary:hover,
.pp-btn--secondary:focus {
	color: #0c639f;
	background: #edf7fd;
}

.pp-btn--light {
	border-color: rgba(255, 255, 255, .75);
	color: #fff;
	background: transparent;
}

.pp-btn--light:hover,
.pp-btn--light:focus {
	color: #14283d;
	background: #fff;
}

.pp-hero__note {
	margin: 14px 0 0;
	color: #637180;
	font-size: 13px;
}

.pp-local-nav {
	border-top: 1px solid #e5ebf0;
	border-bottom: 1px solid #e5ebf0;
	background: #fff;
}

.pp-local-nav ul {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	margin: 0;
	padding: 0;
	list-style: none;
}

.pp-local-nav li + li {
	border-left: 1px solid #e5ebf0;
}

.pp-local-nav a {
	display: block;
	padding: 18px 12px;
	color: #243247;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
}

.pp-local-nav a:hover,
.pp-local-nav a:focus {
	color: #1675b9;
	background: #f3f8fc;
}

.pp-section {
	padding: 92px 0;
}

.pp-section--muted {
	background: #f4f7f9;
}

.pp-section--dark {
	color: #fff;
	background: #14283d;
}

.pp-section h2,
.pp-mid-cta h2,
.pp-final-cta h2 {
	margin: 0 0 46px;
	color: #14283d;
	font-size: clamp(28px, 3.4vw, 42px);
	line-height: 1.45;
	text-align: center;
}

.pp-section--dark h2 {
	color: #fff;
}

.pp-section .pp-section-label,
.pp-mid-cta .pp-section-label,
.pp-final-cta .pp-section-label {
	text-align: center;
}

.pp-section-intro {
	max-width: 780px;
	margin: -24px auto 64px;
	font-size: 17px;
	text-align: center;
}

.pp-problem-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.pp-problem-list li {
	position: relative;
	padding: 22px 24px 22px 62px;
	border: 1px solid #dce6ef;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 8px 24px rgba(31, 59, 82, .05);
}

.pp-problem-list li::before {
	position: absolute;
	top: 22px;
	left: 24px;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	color: #fff;
	background: #d34b4b;
	content: "!";
	font-weight: 700;
	line-height: 24px;
	text-align: center;
}

.pp-lead-text {
	max-width: 820px;
	margin: 40px auto 0;
	padding: 24px 30px;
	border-left: 5px solid #f0bd35;
	background: #fffaf0;
	font-size: 17px;
}

.pp-card-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.pp-card {
	padding: 34px 30px;
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 12px 35px rgba(31, 59, 82, .08);
}

.pp-card__number {
	margin: 0 0 16px;
	color: #f0bd35;
	font-family: "Open Sans", sans-serif;
	font-size: 34px;
	font-weight: 700;
	line-height: 1;
}

.pp-card h3,
.pp-feature-row h3,
.pp-role-grid h3,
.pp-comparison h3,
.pp-step-list h3 {
	margin: 0 0 16px;
	color: #14283d;
	font-size: 21px;
	line-height: 1.55;
}

.pp-card p:last-child,
.pp-feature-row p:last-child,
.pp-role-grid p:last-child,
.pp-step-list p:last-child {
	margin-bottom: 0;
}

.pp-step-list {
	max-width: 900px;
	margin: 0 auto;
	padding: 0;
	list-style: none;
}

.pp-step-list li {
	display: grid;
	grid-template-columns: 66px 1fr;
	gap: 24px;
	align-items: start;
	padding: 30px 0;
	border-top: 1px solid rgba(255, 255, 255, .18);
}

.pp-step-list li:last-child {
	border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.pp-step-list > li > span {
	display: flex;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	align-items: center;
	justify-content: center;
	color: #14283d;
	background: #f0bd35;
	font-size: 24px;
	font-weight: 700;
}

.pp-step-list h3 {
	color: #fff;
}

.pp-feature-row {
	display: grid;
	grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
	gap: 64px;
	align-items: center;
	padding: 60px 0;
	border-top: 1px solid #e2e9ef;
}

.pp-feature-row--reverse .pp-feature-row__content {
	order: 2;
}

.pp-feature-row--reverse figure {
	order: 1;
}

.pp-feature-row__number {
	margin: 0 0 14px;
	color: #1675b9;
	font-family: "Open Sans", sans-serif;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: .14em;
}

.pp-feature-row h3 {
	font-size: 27px;
}

.pp-feature-row figure {
	margin: 0;
	padding: 14px;
	border: 1px solid #dce6ef;
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 14px 38px rgba(31, 59, 82, .1);
}

.pp-feature-row img {
	display: block;
	width: 100%;
	height: auto;
}

.pp-text-link {
	display: inline-block;
	margin-top: 12px;
	color: #0c6dad;
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 4px;
}

.pp-text-link::after {
	margin-left: 7px;
	content: "→";
}

.pp-comparison {
	display: grid;
	grid-template-columns: 1fr 50px 1fr;
	align-items: stretch;
}

.pp-comparison__column {
	padding: 34px 36px;
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 10px 30px rgba(31, 59, 82, .08);
}

.pp-comparison__column--before {
	border-top: 5px solid #8a98a7;
}

.pp-comparison__column--after {
	border-top: 5px solid #1675b9;
}

.pp-comparison__column ul {
	margin: 0;
	padding-left: 1.4em;
}

.pp-comparison__column li + li {
	margin-top: 9px;
}

.pp-comparison__arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #1675b9;
	font-size: 34px;
	font-weight: 700;
}

.pp-role-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.pp-role-grid section {
	padding: 30px;
	border: 1px solid #dce6ef;
	border-radius: 10px;
	background: #fff;
}

.pp-role-grid h3 {
	padding-bottom: 12px;
	border-bottom: 3px solid #f0bd35;
}

.pp-mid-cta {
	padding: 54px 0;
	color: #fff;
	background: #1b6698;
}

.pp-mid-cta__inner {
	display: flex;
	gap: 40px;
	align-items: center;
	justify-content: space-between;
}

.pp-mid-cta .pp-section-label,
.pp-mid-cta h2 {
	color: #fff;
	text-align: left;
}

.pp-mid-cta h2 {
	margin-bottom: 10px;
	font-size: 30px;
}

.pp-mid-cta p:last-child {
	margin-bottom: 0;
}

.pp-mid-cta .pp-btn {
	min-width: 260px;
}

.pp-faq details {
	border-top: 1px solid #dce6ef;
	background: #fff;
}

.pp-faq details:last-child {
	border-bottom: 1px solid #dce6ef;
}

.pp-faq summary {
	position: relative;
	padding: 24px 58px 24px 54px;
	cursor: pointer;
	font-size: 17px;
	font-weight: 700;
	list-style: none;
}

.pp-faq summary::-webkit-details-marker {
	display: none;
}

.pp-faq summary::before {
	position: absolute;
	top: 22px;
	left: 14px;
	color: #1675b9;
	content: "Q";
	font-family: "Open Sans", sans-serif;
	font-size: 22px;
	font-weight: 700;
}

.pp-faq summary::after {
	position: absolute;
	top: 50%;
	right: 22px;
	color: #1675b9;
	content: "+";
	font-size: 28px;
	font-weight: 400;
	transform: translateY(-50%);
}

.pp-faq details[open] summary::after {
	content: "−";
}

.pp-faq details > p {
	position: relative;
	margin: 0;
	padding: 0 54px 26px;
}

.pp-faq details > p::before {
	position: absolute;
	top: -4px;
	left: 14px;
	color: #f0a900;
	content: "A";
	font-family: "Open Sans", sans-serif;
	font-size: 22px;
	font-weight: 700;
}

.pp-final-cta {
	padding: 86px 0;
	color: #fff;
	background: linear-gradient(135deg, #14283d 0%, #1b5277 100%);
	text-align: center;
}

.pp-final-cta .pp-section-label,
.pp-final-cta h2 {
	color: #fff;
}

.pp-final-cta h2 {
	margin-bottom: 22px;
}

.pp-final-cta > .pp-container > p:not(.pp-section-label):not(.pp-related-links) {
	max-width: 760px;
	margin-right: auto;
	margin-left: auto;
}

.pp-related-links {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	justify-content: center;
	margin-top: 28px;
}

.pp-related-links a {
	color: #fff;
	text-decoration: underline;
	text-underline-offset: 4px;
}

@media screen and (max-width: 960px) {
	.pp-hero__inner,
	.pp-feature-row {
		grid-template-columns: 1fr;
	}

	.pp-hero__visual {
		max-width: 720px;
		margin: 0 auto;
	}

	.pp-card-grid {
		grid-template-columns: 1fr;
	}

	.pp-feature-row--reverse .pp-feature-row__content,
	.pp-feature-row--reverse figure {
		order: initial;
	}

	.pp-feature-row figure {
		max-width: 720px;
		margin: 0 auto;
	}
}

@media screen and (max-width: 767px) {
	.pp-container,
	.pp-container--narrow,
	.pp-breadcrumb-wrap {
		width: calc(100% - 32px);
	}

	.pp-breadcrumb-wrap {
		padding-top: 10px;
	}

	.pp-hero {
		padding: 48px 0 56px;
	}

	.pp-hero__inner {
		gap: 36px;
	}

	.pp-hero h1 {
		font-size: 31px;
	}

	.pp-hero h1 br {
		display: none;
	}

	.pp-hero__lead {
		font-size: 18px;
	}

	.pp-btn {
		width: 100%;
	}

	.pp-local-nav ul {
		grid-template-columns: repeat(2, 1fr);
	}

	.pp-local-nav li + li {
		border-left: 0;
	}

	.pp-local-nav li:nth-child(even) {
		border-left: 1px solid #e5ebf0;
	}

	.pp-local-nav li:nth-child(n+3) {
		border-top: 1px solid #e5ebf0;
	}

	.pp-local-nav a {
		padding: 13px 8px;
		font-size: 13px;
	}

	.pp-section {
		padding: 64px 0;
	}

	.pp-section h2,
	.pp-final-cta h2 {
		margin-bottom: 34px;
		font-size: 28px;
	}

	.pp-problem-list,
	.pp-role-grid {
		grid-template-columns: 1fr;
	}

	.pp-problem-list li {
		padding: 18px 18px 18px 52px;
	}

	.pp-problem-list li::before {
		top: 18px;
		left: 17px;
	}

	.pp-card,
	.pp-role-grid section,
	.pp-comparison__column {
		padding: 26px 22px;
	}

	.pp-step-list li {
		grid-template-columns: 46px 1fr;
		gap: 16px;
	}

	.pp-step-list > li > span {
		width: 42px;
		height: 42px;
		font-size: 19px;
	}

	.pp-feature-row {
		gap: 28px;
		padding: 46px 0;
	}

	.pp-feature-row h3 {
		font-size: 23px;
	}

	.pp-comparison {
		grid-template-columns: 1fr;
	}

	.pp-comparison__arrow {
		height: 54px;
		transform: rotate(90deg);
	}

	.pp-mid-cta__inner {
		display: block;
	}

	.pp-mid-cta .pp-section-label,
	.pp-mid-cta h2,
	.pp-mid-cta p {
		text-align: center;
	}

	.pp-mid-cta .pp-btn {
		min-width: 0;
		margin-top: 24px;
	}

	.pp-faq summary {
		padding: 20px 46px 20px 42px;
	}

	.pp-faq summary::before,
	.pp-faq details > p::before {
		left: 8px;
	}

	.pp-faq details > p {
		padding: 0 14px 22px 42px;
	}

	.pp-faq summary::after {
		right: 12px;
	}

	.pp-final-cta {
		padding: 64px 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	.pp-btn {
		transition: none;
	}
}
